/* 顶部标题区 */
.solution-hero {
  background-color: #e6f2ff; /* 浅蓝色背景 */
  /* padding: 60px 0; */
  text-align: center;
  position: relative;
}
.solution-hero h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: justify;
}
.solution-hero p {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: justify;
  font-style: normal;
}
.contre {
  position: absolute;
  left: 13%;
  top: 36%;
  max-width: 54%;
}
.hero-illustration img {
  width: 100%;
  height: auto; /* 保持图片比例 */
}
/* 方案优势区 */
.solution-advantage {
  padding: 40px 10%;
}
.solution-advantage h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}
.advantage-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
}
.advantage-four {
  gap: 0px;
}
.advantage-img {
  text-align: end;
  max-width: 50%;
  flex: 1;
}
.advantag-row-img {
  text-align: end;
  max-width: 50%;
  flex: 1;
}
.advantag-row-img p {
  text-align: center !important;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: justify;
  font-style: normal;
}
.advantag-img img {
  width: 100%;
  height: 382px;
  border-radius: 8px;
}
.advantag-img p {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: justify;
  font-style: normal;
}
.advantage-text {
  flex: 1;
}
.advantage-item {
  margin-bottom: 60px;
}
.advantage-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333333;
}
.advantage-item p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}
.advantage-item p span {
  font-size: 16px;
  color: #007aff;
  line-height: 1.6;
}
/* 其他解决方案区 */
.other-solutions {
  padding: 40px 10%;
  background-color: #fff;
}
.other-solutions h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.solution-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* 卡片间距 */
  justify-content: space-between; /* 水平居中 */
}
.solution-carda {
  background-color: #f9fbff; /* 卡片背景色 */
  border: 1px solid #dceaf8;
  border-radius: 8px;
  padding: 16px 24px;
  width: 19%;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease; /* 悬停动画 */
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-carda:hover {
  background-color: #e6f2ff;
  transform: translateY(-2px); /* 轻微上移 */
}
.solution-carda {
  font-size: 14px;
  color: #333;
}
.case h3 {
  text-align: center;
  padding-bottom: 40px;
}
.case {
  padding: 40px 10%;
}

/* 响应式适配（手机端） */
@media (max-width: 768px) {
  .advantage-row {
    flex-direction: column; /* 图片与文字垂直堆叠 */
  }
  .solution-cards {
    justify-content: space-between; /* 手机端左对齐 */
  }
}
.advantage-row-img {
  width: 100%;
}
.introduction {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: justify;
  font-style: normal;
}
.introduction p:first-child {
  margin-bottom: 44px;
}
.introduction p:last-child {
  margin-bottom: 20px;
}
/* 案例介绍布局 */
.case-intro {
  display: flex;
  align-items: stretch; /* 确保卡片高度一致 */
  justify-content: space-between;
  gap: 20px; /* 卡片间距 */
  margin: 0 auto;
}

/* 卡片通用样式 */
.case-item {
  flex: 1; /* 自动平分宽度 */
  padding: 24px;
  border-radius: 8px; /* 圆角 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* 轻微阴影 */
  background-color: #fff;
}

/* 标题样式 */
.case-item h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 20px;
}

/* 内容文本样式 */
.case-item p {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: justify;
  font-style: normal;
}

/* 背景卡片（浅蓝色） */
.background {
  background-color: #f2f8ff; /* 浅蓝 */
}
.background h3 {
  color: #007aff; /* 深蓝色标题 */
}

/* 研究内容卡片（浅橙色） */
.research {
  background-color: #fff4e9; /* 浅橙 */
}
.research h3 {
  color: #ff8200; /* 橙色标题 */
}

/* 项目成果卡片（浅绿色） */
.achievement {
  background-color: #e9fffe; /* 浅绿 */
}
.achievement h3 {
  color: #00b893; /* 绿色标题 */
}

/* 响应式适配（手机端纵向排列） */
@media (max-width: 768px) {
  .case-intro {
    flex-direction: column; /* 纵向布局 */
  }
  .case-item {
    margin-bottom: 20px; /* 纵向间距 */
  }
}
/* 其他解决方案模块 - 整体布局（对齐通用模块 padding） */
.other-solutions {
  padding: 20px 10%;
  overflow: hidden;
  margin-bottom: 40px; /* 与下一个模块间距，对齐其他模块 */
}

/* 标题样式（复用通用h2样式，补充间距） */
.other-solutions h2 {
  margin: 40px 0 30px; /* 对齐 .certificate-section h2 间距 */
  text-align: center;
}

/* 卡片容器：分页滚动（对齐通用卡片容器阴影/圆角） */
.solution-cards {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  background: #fff; /* 通用白色背景 */
  border-radius: 8px; /* 通用圆角 */
  padding: 30px 0px 14px;
  margin-bottom: 20px; /* 与切换器间距 */
}

/* 单页容器：控制每页卡片布局（对齐通用flex卡片逻辑） */
.solution-page {
  display: none;
}
.activea {
  min-width: 100%; /* 每页占满容器宽度 */
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  justify-content: flex-start; /* 卡片水平居中，对齐 .tech-cards */
}
/* 解决方案卡片（对齐通用标签/卡片样式） */
.solution-carda {
  background: #fff;
  border: 1px solid #2196f3; /* 通用品牌蓝边框（参考 .service-tags span） */
  border-radius: 8px; /* 通用圆角 */
  padding: 0;
  min-width: 220px; /* 卡片最小宽度，适配小屏幕 */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease; /* 通用过渡动画 */
  margin-bottom: 20px;
  height: 80px;
  background-image: url("../images/solution/19.png");
  background-size: 108% 127%;
  background-repeat: no-repeat;
  background-position: center;
}

/* 卡片文字样式（对齐通用文字颜色） */
.solution-carda a {
  text-decoration: none;
  color: #2196f3;
  font-size: 14px;
  padding: 16px 24px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 卡片悬停效果（对齐 .service-tags span:hover 逻辑） */
.solution-carda:hover {
  transform: translateY(-3px); /* 轻微上浮，对齐 .cert-card:hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* 加深阴影，对齐 .cert-card:hover */
}
/*  */

/* 分页切换器（自定义样式，对齐通用按钮风格） */
.pagination {
  display: flex;
  justify-content: center;
  gap: 12px; /* 切换器间距，适配通用间距逻辑 */
}

/* 切换器圆点（参考滚动条滑块/通用按钮颜色） */
.dot {
  width: 24px;
  height: 5px;
  background: #c0c6cc;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 切换器激活态（品牌蓝，对齐通用激活色） */
.dot.active {
  background: #2196f3; /* 通用品牌蓝，参考 .icons 背景色 */
  transform: scale(1.2); /* 激活态放大，增强视觉反馈 */
}

/* 响应式适配（对齐通用小屏幕逻辑，max-width:768px） */
@media (max-width: 768px) {
  .other-solutions {
    padding: 20px 20px; /* 小屏幕缩小左右padding，对齐 .certificate-section 响应式 */
  }
  .solution-cards {
    padding: 20px; /* 小屏幕缩小内边距 */
  }
  .solution-carda {
    min-width: 160px; /* 小屏幕缩小卡片最小宽度 */
    padding: 12px 16px; /* 小屏幕缩小内边距 */
  }
  .solution-carda a {
    font-size: 13px; /* 小屏幕缩小字体 */
  }
}
.application-smartControl {
  padding-bottom: 6%;
  h4 {
    font-size: 24px;
  }
}
