/*=====banner========*/

.widget .wpo-support-btn {
  display: block;
  padding: 18px 40px;
  background: linear-gradient(to right, #3884f4, #07b4d4);
  font-size: 18px;
  font-family: "Futura PT Demi";
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s;
}

.widget .wpo-support-btn a {
  color: #ffffff;
}

/* 轮播图样式 - 使用前缀避免冲突 */
.banner-section {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

/* 轮播容器 */
.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 轮播幻灯片 */
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  will-change: opacity, visibility;
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

@media (min-width: 768px) {
  .banner-section {
    height: 550px;
  }
}

/* 背景图 */
.banner-slide-bg {
  position: absolute;
  inset: 0;
  opacity: 1;
  transform: none;
  overflow: hidden;
}

.banner-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  will-change: transform;
}

/* 活动幻灯片的背景图动画 */
.banner-slide.active .banner-slide-bg img {
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

/* 渐变遮罩 */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(30, 64, 175, 0.75), rgba(22, 78, 99, 0.6));
}

/* 光斑装饰 */
.banner-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.decoration-item {
  border-radius: 9999px;
  filter: blur(3rem);
}

.decoration-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(59, 130, 246, 0.2);
  transform: scale(1.00569);
}

.decoration-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background-color: rgba(34, 211, 238, 0.2);
  transform: scale(1.14484);
}

/* 左右箭头 */
.banner-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
}

.banner-slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.banner-slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.banner-slider-left {
  left: 24px;
}

.banner-slider-right {
  right: 24px;
}

/* 移动端箭头缩小 */
@media (max-width: 767px) {
  .banner-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .banner-slider-left {
    left: 12px;
  }

  .banner-slider-right {
    right: 12px;
  }
}

/* 核心内容 */
.banner-slider-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.banner-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.banner-content-text {
  opacity: 1;
  transform: none;
  margin-bottom: 32px;
}

/* 按钮样式 */
.banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.banner-btn-primary {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  color: #ffffff;
}

.banner-btn-primary:hover {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.banner-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.banner-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
  transform: translateY(-2px);
}

/* 轮播内容样式 */
.banner-tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  color: #ffffff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.banner-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.banner-subtitle {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* 轮播内容动画 */
.banner-slide .banner-tag,
.banner-slide .banner-title,
.banner-slide .banner-subtitle,
.banner-slide .banner-buttons {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.banner-slide.active .banner-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.banner-slide.active .banner-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.banner-slide.active .banner-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.banner-slide.active .banner-buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* 按钮悬停效果 */
.btn-primary:hover {
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.tag {
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(4px);
  color: #67e8f9;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: 0 0 22.212px rgba(6, 182, 212, 0.224);
}

.title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 60px;
  }
}

.subtitle {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 16px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 20px;
  }
}

.desc {
  font-size: 16px;
  color: #67e8f9;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .desc {
    font-size: 18px;
  }
}

/* 按钮组 */
.content-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  opacity: 1;
  transform: none;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.25);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* 底部指示器 */
.banner-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.banner-dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.banner-dot.active {
  width: 32px;
  background-color: #22d3ee;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

/* 移动端适配 */
@media (max-width: 767px) {
  .content-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 80%;
    justify-content: center;
  }
}

/* ===========================模块2 =============================*/


/* 主体容器 */
.who-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .who-section {
    padding: 112px 0;
  }
}

/* 背景光斑装饰 */
.bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decoration-item {
  border-radius: 9999px;
  filter: blur(3rem);
}

.decoration-1 {
  position: absolute;
  top: 40px;
  right: 0;
  width: 384px;
  height: 384px;
  background: linear-gradient(to bottom left, rgba(219, 234, 254, 0.4), transparent);
  transform: scale(1.01264);
}

.decoration-2 {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 320px;
  height: 320px;
  background: linear-gradient(to top right, rgba(207, 250, 254, 0.3), transparent);
  transform: scale(1.11249);
}

/* 内容容器 */
.who-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

@media (min-width: 1024px) {
  .content-wrapper {
    flex-direction: row;
    gap: 80px;
  }
}

/* 左侧图片列 */
.image-column {
  width: 100%;
}

@media (min-width: 1024px) {
  .image-column {
    width: 50%;
  }
}

.image-container {
  position: relative;
  width: 100%;
}

.image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .image-card img {
    height: 480px;
  }
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 64, 175, 0.4), transparent);
}

/* 右下角悬浮卡片 */
.float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 16px;
  border: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 767px) {
  .float-card {
    bottom: -16px;
    right: -16px;
    padding: 12px;
  }
}

.float-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

@media (max-width: 767px) {
  .float-icon {
    width: 40px;
    height: 40px;
  }
}

.float-text .float-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .float-text .float-title {
    font-size: 20px;
  }
}

.float-text .float-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-top: 2px;
}

/* 左上角装饰方块 */
.corner-decoration {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 96px;
  height: 96px;
  background: linear-gradient(to bottom right, #22d3ee, #3b82f6);
  border-radius: 16px;
  opacity: 0.2;
  transform: rotate(4.08541deg);
}

@media (max-width: 767px) {
  .corner-decoration {
    width: 72px;
    height: 72px;
    top: -12px;
    left: -12px;
  }
}

/* 右侧文字列 */
.text-column {
  width: 100%;
  text-align: left;
}

@media (min-width: 1024px) {
  .text-column {
    width: 50%;
  }
}

/* 顶部英文标签 */
.top-tag {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #3b82f6;
  margin-bottom: 16px;
}

/* 标题行 */
.title-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.title-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.title-tag {
  font-size: 18px;
  font-weight: 500;
  color: #2563eb;
}

/* 主标题 */
.main-title {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .main-title {
    font-size: 36px;
  }
}

/* 描述文本 */
.desc-text {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
}

.highlight-text {
  color: #2563eb;
  font-weight: 500;
}

/* 信息卡片 */
.info-card {
  background: linear-gradient(to bottom right, #eff6ff, #ecfeff);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #dbeafe;
  margin-bottom: 24px;
}

.info-text {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
}

.highlight-cyan {
  color: #0891b2;
  font-weight: 500;
}

.highlight-blue {
  color: #2563eb;
  font-weight: 500;
}

/* 标签组 */
.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-tag {
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: #2563eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* 移动端适配优化 */
@media (max-width: 767px) {
  .info-card {
    padding: 20px;
  }

  .desc-text {
    font-size: 16px;
  }

  .info-text {
    font-size: 15px;
  }

  .title-tag {
    font-size: 16px;
  }
}

/*===============模块4===================*/
/* 主体容器 */
.challenges-section {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
  overflow: hidden;
}

@media (min-width: 768px) {
  .challenges-section {
    padding: 60px 0;
  }
}

/* 背景光斑装饰 */
.bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decoration-item {
  border-radius: 9999px;
  filter: blur(3rem);
}

.decoration-1 {
  position: absolute;
  top: 80px;
  right: 40px;
  width: 288px;
  height: 288px;
  background: rgba(219, 234, 254, 0.5);
  transform: scale(1.19261);
}

.decoration-2 {
  position: absolute;
  bottom: 80px;
  left: 40px;
  width: 256px;
  height: 256px;
  background: rgba(207, 250, 254, 0.5);
  transform: scale(1.2);
}

/* 内容容器 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

/* 标题区域 */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.top-tag {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #3b82f6;
  margin-bottom: 16px;
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .main-title {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .main-title {
    font-size: 32px;
  }
}

.subtitle {
  font-size: 16px;
  color: #4b5563;
  max-width: 768px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 18px;
  }
}

/* 顶部横幅卡片 */
.banner-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto 64px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.banner-card img {
  width: 100%;
  height: 288px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .banner-card img {
    height: 320px;
  }
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 64, 175, 0.7), rgba(30, 64, 175, 0.5), transparent);
}

.challenges-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 32px;
}

@media (min-width: 768px) {
  .challenges-banner-content {
    padding: 0 48px;
  }
}

.challenges-banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 600px;
}

@media (min-width: 768px) {
  .challenges-banner-content p {
    font-size: 20px;
  }
}

/* 三大挑战网格布局 */
.challenges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .challenges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* 挑战卡片 */
.challenge-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 卡片图片区域 */
.card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.challenge-card:hover .card-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.6), transparent);
}

.card-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: #3b82f6;
}

/* 卡片内容区域 */
.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.4;
}

.title-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  margin-bottom: 16px;
}

/* 答案按钮 */
.answer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
  transition: box-shadow 0.3s ease;
}

.answer-btn:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* 解决方案标题 */
.solution-title {
  font-size: 15px;
  font-weight: 600;
  color: #0891b2;
  margin-bottom: 8px;
}

/* 解决方案描述 */
.solution-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-top: auto;
}

/* 移动端适配优化 */
@media (max-width: 767px) {
  .banner-card {
    margin-bottom: 48px;
  }

  .challenges-banner-content p {
    font-size: 16px;
  }

  .card-content {
    padding: 20px;
  }

  .card-title {
    font-size: 16px;
  }
}

/*====================模块五====================*/
/* 主体容器 */
.capabilities-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .capabilities-section {
    padding: 60px 0;
  }
}

/* 背景装饰点 */
.bg-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: rgba(96, 165, 250, 0.2);
  border-radius: 50%;
}

.dot-1 {
  left: 72.8638%;
  top: 75.2776%;
  transform: translateY(-5.09758px);
}

.dot-2 {
  left: 35.3999%;
  top: 78.4414%;
  transform: translateY(-6.42655px);
}

.dot-3 {
  left: 27.9929%;
  top: 21.5072%;
  transform: translateY(-0.498773px);
}

.dot-4 {
  left: 46.9209%;
  top: 33.4673%;
  transform: translateY(-27.062px);
}

.dot-5 {
  left: 25.8989%;
  top: 54.6953%;
  transform: translateY(-22.9379px);
}

.dot-6 {
  left: 70.5555%;
  top: 64.7134%;
  transform: translateY(-14.6155px);
}

.dot-7 {
  left: 72.8843%;
  top: 74.3191%;
  transform: translateY(-29.6014px);
}

.dot-8 {
  left: 30.3302%;
  top: 77.9588%;
  transform: translateY(-27.7879px);
}

/* 内容容器 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

/* 标题区域 */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.top-tag {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #3b82f6;
  margin-bottom: 16px;
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .main-title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .main-title {
    font-size: 32px;
  }
}

.subtitle {
  font-size: 16px;
  color: #4b5563;
  max-width: 768px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 18px;
  }
}

/* 上半部分布局 */
.top-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .top-row {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
  }
}

/* 左侧图片卡片 */
.image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.image-card img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

@media (min-width: 768px) {
  .image-card img {
    min-height: 360px;
  }
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 64, 175, 0.5), transparent);
}

.image-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #ffffff;
}

.image-text h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.image-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* 右侧服务列表 */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* 服务图标 */
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  flex-shrink: 0;
}

.icon-blue {
  background: linear-gradient(to bottom right, #3b82f6, #2563eb);
}

.icon-cyan {
  background: linear-gradient(to bottom right, #06b6d4, #0891b2);
}

.icon-teal {
  background: linear-gradient(to bottom right, #14b8a6, #0d9488);
}

.service-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.service-content p {
  font-size: 14px;
  color: #6b7280;
}

/* 下半部分布局 */
.bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .bottom-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* 底部特色卡片 */
.feature-card {
  background: linear-gradient(to bottom right, #f9fafb, #ffffff);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  flex-shrink: 0;
}

.icon-emerald {
  background: linear-gradient(to bottom right, #10b981, #059669);
}

.icon-sky {
  background: linear-gradient(to bottom right, #0ea5e9, #0284c7);
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* 移动端适配优化 */
@media (max-width: 767px) {
  .image-text {
    bottom: 16px;
    left: 16px;
  }

  .image-text h4 {
    font-size: 18px;
  }

  .service-item {
    padding: 16px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-content h4 {
    font-size: 16px;
  }
}

/* ========== 主体区域样式 ========== */
.Training-section {
  position: relative;
  padding: 2rem 1rem;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
  overflow: hidden;
}

/* 背景装饰 */
.Training-bg-decoration {
  position: absolute;
  top: 33.333%;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(191, 219, 254, 0.3);
  border-radius: 9999px;
  filter: blur(64px);
  transform: translateX(-0.00128704px) scale(1.00001);
  pointer-events: none;
  z-index: 0;
}

.Training-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* ========== 标题区域样式 ========== */
.Training-header {
  text-align: center;
  margin-bottom: 4rem;
}

.Training-subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.Training-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.Training-desc {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
}

/* ========== 卡片网格布局 ========== */
.Training-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

/* ========== 卡片样式 ========== */
.Training-card-item {
  opacity: 1;
  transform: none;
}

.Training-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.Training-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

/* 卡片图标区域 */
.Training-card-icon-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.Training-card-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.Training-card:hover .Training-card-number {
  opacity: 0.3;
}

/* 图标容器 */
.Training-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  color: #ffffff;
}

/* 图标颜色区分 */
.Training-icon-blue {
  background: linear-gradient(to bottom right, #3b82f6, #2563eb);
  --tw-gradient-from: #3b82f6;
  --tw-gradient-to: #2563eb;
}

.Training-icon-cyan {
  background: linear-gradient(to bottom right, #06b6d4, #0891b2);
  --tw-gradient-from: #06b6d4;
  --tw-gradient-to: #0891b2;
}

.Training-icon-teal {
  background: linear-gradient(to bottom right, #14b8a6, #0d9488);
  --tw-gradient-from: #14b8a6;
  --tw-gradient-to: #0d9488;
}

.Training-icon-emerald {
  background: linear-gradient(to bottom right, #10b981, #059669);
  --tw-gradient-from: #10b981;
  --tw-gradient-to: #059669;
}

/* 卡片文字 */
.Training-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.Training-card-desc {
  font-size: 0.875rem;
  color: #4b5563;
}

/* ========== 响应式适配（手机样式） ========== */
/* 平板端：768px 以下 */
@media (max-width: 768px) {
  .Training-section {
    padding: 3rem 1rem;
  }

  .Training-title {
    font-size: 2rem;
  }

  .Training-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* 手机端：480px 以下 */
@media (max-width: 480px) {
  .Training-section {
    padding: 2.5rem 1rem;
  }

  .Training-title {
    font-size: 1.75rem;
  }

  .Training-desc {
    font-size: 1rem;
  }

  .Training-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .Training-card {
    padding: 1.25rem;
  }
}

/*=================我能为你做什么===================*/
.can-section {
  padding: 2rem 1rem;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.can-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ========== 标题区域样式 ========== */
.can-header {
  text-align: center;
  margin-bottom: 4rem;
}

.can-subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.can-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.can-desc {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
}

/* ========== 轮播主体容器 ========== */
.can-carousel-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
}

/* ========== 左侧图片轮播 ========== */
.can-carousel-img-container {
  position: relative;
  border-radius: 1rem;
  overflow: visible;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  height: 520px;
}

.can-carousel-img-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.can-carousel-img-item {
  min-width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.can-carousel-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.can-carousel-img-item.active {
  opacity: 1;
}

.can-carousel-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.can-carousel-img-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 58, 138, 0.4), transparent);
  pointer-events: none;
}

/* ========== 右侧内容轮播 ========== */
.can-carousel-content-container {
  position: relative;
  height: 520px;
}

.can-carousel-content-track {
  height: 100%;
  position: relative;
}

.can-carousel-content-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.can-carousel-content-item.active {
  opacity: 1;
  pointer-events: auto;
}

/* 内容卡片样式 */
.can-content-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 2px solid #e5e7eb;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* 卡片头部（不同主题色） */
.can-card-header {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}

.can-header-enterprise {
  background: linear-gradient(to right, #06b6d4, #0891b2);
}

.can-header-government {
  background: linear-gradient(to right, #3b82f6, #2563eb);
}

.can-header-park {
  background: linear-gradient(to right, #8b5cf6, #7c3aed);
}

.can-header-invest {
  background: linear-gradient(to right, #f59e0b, #d97706);
}

.can-header-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.can-header-icon svg {
  width: 2rem;
  height: 2rem;
}

.can-header-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.can-header-text p {
  font-size: 1rem;
  opacity: 0.9;
  color: #ffffff;
}

/* 卡片主体 */
.can-card-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: visible;
}

.can-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.can-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.can-check-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.can-feature-text h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.25rem;
}

.can-feature-text p {
  font-size: 1rem;
  color: #6b7280;
}

/* ========== 箭头按钮样式 ========== */
.can-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  border: none;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.can-carousel-arrow:hover {
  background: linear-gradient(to right, #2563eb, #0891b2);
  transform: translateY(-50%) scale(1.1);
}

.can-arrow-img {
  left: -3rem;
}

.can-arrow-content {
  right: -3rem;
}

.can-carousel-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffffff;
}

/* ========== 指示器样式 ========== */
.can-carousel-indicators {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.can-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.can-indicator.active {
  width: 2rem;
  background: linear-gradient(to right, #3b82f6, #06b6d4);
}

/* ========== 响应式适配 ========== */
/* 平板端：1024px 以下 */
@media (max-width: 1024px) {
  .can-carousel-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .can-carousel-img-container,
  .can-carousel-content-container {
    height: 500px;
  }

  .can-arrow-img {
    left: 1rem;
  }

  .can-arrow-content {
    right: 1rem;
  }
}

/* 手机端：768px 以下 */
@media (max-width: 768px) {
  .can-section {
    padding: 3rem 1rem;
  }

  .can-title {
    font-size: 2rem;
  }

  .can-desc {
    font-size: 1rem;
  }

  .can-carousel-img-container,
  .can-carousel-content-container {
    height: 400px;
  }

  .can-card-header {
    padding: 1.5rem;
  }

  .can-header-icon {
    width: 3rem;
    height: 3rem;
  }

  .can-header-text h3 {
    font-size: 1.25rem;
  }

  .can-card-body {
    padding: 1.5rem;
  }

  .can-arrow-img,
  .can-arrow-content {
    width: 2rem;
    height: 2rem;
  }

  .can-arrow-img {
    left: 0.5rem;
  }

  .can-arrow-content {
    right: 0.5rem;
  }
}

/* 小屏手机：480px 以下 */
@media (max-width: 480px) {

  .can-carousel-img-container,
  .can-carousel-content-container {
    height: 350px;
  }

  .can-header-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .can-header-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .can-header-text h3 {
    font-size: 1.125rem;
  }

  .can-header-text p {
    font-size: 0.875rem;
  }
}

/*====================招商培育 ===============*/
/* 外层容器 */
.cultivation-section {
  padding: 60px 0;
  background: #ffffff;
}

.cultivation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 标题 */
.cultivation-header {
  text-align: center;
  margin-bottom: 40px;
}

.cultivation-subtitle {
  font-size: 14px;
  color: #007bff;
  margin-bottom: 10px;
}

.cultivation-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.cultivation-desc {
  font-size: 16px;
  color: #666;
}

/* 卡片布局：一行4个 */
.cultivation-cards-wrapper {
  width: 100%;
}

.cultivation-cards-track {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cultivation-card-item {
  width: calc(25% - 15px);
  min-width: 260px;
}

/* 卡片样式 */
.cultivation-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s;
}

.cultivation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 卡片图片 */
.cultivation-card-img-wrap {
  height: 160px;
  position: relative;
}

.cultivation-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cultivation-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.cultivation-overlay-blue {
  background: #007bff;
}

.cultivation-overlay-cyan {
  background: #06b6d4;
}

.cultivation-overlay-teal {
  background: #14b8a6;
}

.cultivation-overlay-emerald {
  background: #10b981;
}

.cultivation-card-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cultivation-card-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* 卡片内容 */
.cultivation-card-content {
  padding: 20px;
}

.cultivation-card-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 6px;
}

.cultivation-card-subtitle {
  font-size: 13px;
  color: #007bff;
  margin-bottom: 10px;
}

.cultivation-card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
}

.cultivation-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cultivation-tag {
  font-size: 12px;
  padding: 3px 8px;
  background: #f5f7fa;
  color: #666;
  border-radius: 4px;
}

/* 底部 */
.cultivation-footer {
  text-align: center;
  margin-top: 40px;
}

.cultivation-footer-content {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 9999px;
  box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.4);
}

.cultivation-footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
}

.cultivation-footer-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cultivation-footer-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.5px;
}
/*====================四大方案 ===============*/
.details-section {
  padding: 60px 0;
  background: #f9fafb;
}
.details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 标题区域 */
.details-header {
  text-align: center;
  margin-bottom: 40px;
}
.details-subtitle {
  font-size: 14px;
  color: #0066cc;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.details-title {
  font-size: 32px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 10px;
}
.details-desc {
  font-size: 16px;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

/* 卡片列表容器 */
.details-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 单个解决方案卡片 */
.details-solution-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 卡片头部（可点击折叠/展开） */
.details-card-header {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 0;
  position: relative;
}
@media (min-width: 768px) {
  .details-card-header {
    flex-direction: row;
  }
}

/* 图片容器 */
.details-img-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .details-img-wrapper {
    width: 35%;
    height: auto;
    min-height: 220px;
  }
}
.details-img {
  width: 405.297px;
  height: 270.531px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.details-solution-card:hover .details-img {
  transform: scale(1.05);
}

/* 图片遮罩层（不同方案主题色） */
.details-img-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.details-overlay-blue { background: #3b82f6; }    /* 园区运营 */
.details-overlay-cyan { background: #06b6d4; }   /* 政府招商 */
.details-overlay-teal { background: #14b8a6; }   /* 园区招商 */
.details-overlay-emerald { background: #10b981; }/* 企业服务 */

/* 左下角图标 */
.details-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.details-icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

/* 右上角折叠/展开箭头 */
.details-toggle-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.details-toggle-arrow svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
  transition: transform 0.3s ease;
}
.details-solution-card.expanded .details-toggle-arrow svg {
  transform: rotate(180deg);
}

/* 文字内容容器 */
.details-text-wrapper {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .details-text-wrapper {
    width: 65%;
    padding: 32px;
  }
}
.details-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 8px;
}
.details-card-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}
.details-card-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 12px;
}
.details-toggle-text {
  font-size: 13px;
  color: #3b82f6;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.details-toggle-text svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.details-solution-card.expanded .details-toggle-text svg {
  transform: rotate(180deg);
}

/* 展开内容区域（默认隐藏） */
.details-content-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background: #f9fafb;
  padding: 0 24px;
}
.details-solution-card.expanded .details-content-wrapper {
  max-height: 2000px;
  padding: 24px;
}
@media (min-width: 768px) {
  .details-content-wrapper {
    padding: 0 32px;
  }
  .details-solution-card.expanded .details-content-wrapper {
    padding: 32px;
  }
}

/* 模块标题 */
.details-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.details-section-title svg {
  width: 18px;
  height: 18px;
  color: #3b82f6;
  flex-shrink: 0;
}

/* 问题网格 */
.details-problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .details-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.details-problem-item {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.details-problem-icon {
  width: 18px;
  height: 18px;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 2px;
}
.details-problem-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}
.details-problem-text p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}

/* 解决方案网格 */
.details-solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .details-solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.details-solution-item {
  padding: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.details-solution-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.details-solution-icon {
  width: 20px;
  height: 20px;
  color: #3b82f6;
  margin-bottom: 6px;
}
.details-solution-item h5 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}
.details-solution-item p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}

/* 解决方案列表（单列） */
.details-solution-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.details-solution-list-item {
  padding: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.details-solution-list-item h5 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.details-solution-list-item h5 svg {
  width: 16px;
  height: 16px;
  color: #3b82f6;
}
.details-solution-list-item p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 8px;
}
.details-solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.details-solution-tag {
  font-size: 11px;
  padding: 2px 8px;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 4px;
}

/* 为什么选择我们 */
.details-why-section {
  margin-top: 24px;
}
.details-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .details-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.details-why-item {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.details-why-icon {
  width: 18px;
  height: 18px;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 2px;
}
.details-why-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}
.details-why-text p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}
/*==============双平台====================*/
/* 双平台协同模块 - 左右结构，无蓝色背景 */
.double-section {
  padding: 60px 20px;
  background: transparent; /* 完全透明，无背景色 */
  position: relative;
  overflow: hidden;
}

.double-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* 左侧区域：标题 + 大图 */
.double-left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 标题区 */
.double-header {
  text-align: left;
}
.double-subtitle {
  font-size: 14px;
  color: #3b82f6; /* 蓝色副标题，适配白底 */
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}
.double-title {
  font-size: 36px;
  font-weight: bold;
  color: #1e293b; /* 深灰主标题，适配白底 */
  margin-bottom: 12px;
  line-height: 1.2;
}
.double-desc {
  font-size: 18px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.6;
}

/* 左侧大图 */
.double-top-banner {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.double-top-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右侧区域：两个卡片上下排列 */
.double-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 单个卡片 */
.double-card {
  background: #ffffff; /* 纯白卡片，无蓝色背景 */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.double-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}

/* 卡片图片区 */
.double-card-img-wrap {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.double-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.double-card-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.double-card-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.double-card-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.double-card-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

/* 卡片内容区 */
.double-card-content {
  padding: 24px;
}
.double-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #1e293b; /* 深灰标题，适配白底 */
  margin-bottom: 6px;
}
.double-card-subtitle {
  font-size: 14px;
  color: #3b82f6; /* 蓝色副标题，适配白底 */
  margin-bottom: 12px;
}
.double-card-desc {
  font-size: 14px;
  color: #64748b; /* 浅灰描述，适配白底 */
  line-height: 1.6;
  margin-bottom: 16px;
}

/* 标签组 */
.double-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.double-tag {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid;
}
.double-tag.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}
.double-tag.cyan {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.3);
}

/* 底部总结区（跨列，桌面端通栏，手机端通栏） */
.double-summary {
  grid-column: 1 / -1;
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px 32px;
  border: 1px solid #e2e8f0;
  text-align: center;
  margin-top: 16px;
}
.double-summary-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
}
.double-summary-text .highlight {
  color: #3b82f6;
  font-weight: 500;
}
.double-summary-text .strong {
  color: #1e293b;
  font-weight: bold;
}

/* 桌面端（≥768px）左右结构 */
@media (min-width: 768px) {
  .double-container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
  }

  .double-left-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .double-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .double-header {
    text-align: left;
    padding: 24px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }

  .double-top-banner {
    flex: 1;
    min-height: 300px;
  }

  .double-summary {
    grid-column: 1 / -1;
  }
}

/* 手机端（<768px）优化 */
@media (max-width: 767px) {
  .double-section {
    padding: 40px 16px;
  }
  .double-title {
    font-size: 28px;
  }
  .double-desc {
    font-size: 16px;
  }
  .double-card-img-wrap {
    height: 160px;
  }
  .double-card-content {
    padding: 20px;
  }
  .double-summary {
    padding: 24px 16px;
  }
  .double-summary-text {
    font-size: 16px;
  }
}
/*================选择果岭====================*/
/* 您将获得模块 - benefits- 前缀 */
.benefits-section {
  padding: 60px 20px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* 背景光晕 */
.benefits-bg-glow {
  position: absolute;
  bottom: 20px;
  right: 10px;
  width: 256px;
  height: 256px;
  background: rgba(34, 211, 238, 0.3);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* 标题区 */
.benefits-header {
  text-align: center;
  margin-bottom: 48px;
}
.benefits-subtitle {
  font-size: 14px;
  color: #3b82f6;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}
.benefits-title {
  font-size: 36px;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.2;
}
.benefits-desc {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
}

/* 三卡片网格区 */
.benefits-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .benefits-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 单个卡片 */
.benefits-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}
.benefits-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

/* 卡片图标 */
.benefits-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.benefits-card:hover .benefits-card-icon {
  transform: scale(1.1);
}
.benefits-card-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.benefits-card-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.benefits-card-icon.teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}
.benefits-card-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

/* 卡片标签 */
.benefits-card-tag {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
}
.benefits-card-tag.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.benefits-card-tag.cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.benefits-card-tag.teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

/* 卡片标题 */
.benefits-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 12px;
}

/* 卡片描述 */
.benefits-card-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
}

/* 手机端适配 */
@media (max-width: 767px) {
  .benefits-section {
    padding: 40px 16px;
  }
  .benefits-title {
    font-size: 28px;
  }
  .benefits-desc {
    font-size: 16px;
  }
  .benefits-card {
    padding: 28px 20px;
  }
}
/*================后面banner====================*/
/* 合作共赢模块 — advance- 前缀 */
.advance-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 背景图 + 渐变遮罩 */
.advance-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.advance-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advance-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(8, 47, 73, 0.85) 100%);
}

/* 背景光晕 */
.advance-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.advance-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  text-align: center;
}

/* 顶部标签栏 */
.advance-tag-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.advance-tag-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advance-tag-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}
.advance-tag-text {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* 主标题 */
.advance-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 描述文本 */
.advance-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* 按钮组 */
.advance-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* 主按钮 */
.advance-btn-primary {
  padding: 16px 32px;
  background: #ffffff;
  color: #2563eb;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.advance-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.advance-btn-primary svg {
  width: 20px;
  height: 20px;
}

/* 次按钮 */
.advance-btn-secondary {
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.advance-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.advance-btn-secondary svg {
  width: 20px;
  height: 20px;
}

/* 响应式 */
@media (max-width: 1024px) {
  .advance-title {
    font-size: 36px;
  }
  .advance-desc {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .advance-section {
    padding: 60px 16px;
    min-height: auto;
  }
  .advance-title {
    font-size: 28px;
  }
  .advance-desc {
    font-size: 16px;
    line-height: 1.7;
  }
  .advance-btn-primary,
  .advance-btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
  }
}