.hero-slide-bg img {
  object-fit: fill;
}

.container {
  max-width: 54%;
  margin: 13% 0 15% 10%;
  padding: 0;
}

.section {
  float: none;
}

.hero-slide-item {
  height: 400px !important;
}

.container .title {
  font-weight: bold;
  font-size: 32px;
  color: #333333;
  line-height: 48px;
  text-align: justify;
  font-style: normal;
}

.container h3 {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: justify;
  font-style: normal;
}

.footer-section {
  /* padding: 20px 10% !important; */
}

/* 产品展示模块 */
.product-section {
  padding: 0 10%;
  margin: 20px 0;
  background-color: #fff;
  /* 白色背景，与页面呼应 */
}

.product-cards {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 30px;
  justify-content: center;
  /* 水平居中 */
}

.product-card {
  flex: 1;
  border-radius: 12px;
  box-shadow: 0px 4px 7px 4px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 24px;
  transition: all 0.3s ease;
  /* 悬停动画 */
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  /* 轻微上移 */
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
  object-fit: cover;
}

.product-card p {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* 产品特点模块 */
.product-features {
  padding: 0 10%;
  margin-bottom: 20px;
}

.feature-list {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feature-number {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #2563eb;
  /* 主品牌色 */
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  margin-right: 16px;
  flex-shrink: 0;
  /* 防止数字框缩小 */
}

.feature-item p {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: justify;
  font-style: normal;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .product-card {
    max-width: 340px;
  }

  .feature-list {
    padding: 20px;
  }

  .feature-item p {
    font-size: 13px;
  }
}

/* 顶端心智模块 - 全局样式 */
.apexmind-section {
  font-family: "Microsoft YaHei", sans-serif;
  color: #333;
}

/* 顶部介绍区 */
.apexmind-hero {
  /* padding: 20px 0; */
  position: relative;
}

.hero-row {
  flex-wrap: wrap;
  /* 响应式换行 */
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: absolute;
  top: 40%;
  max-width: 900px;
  left: 9%;
}

.hero-row p {
  font-size: 16px;
}

.hero-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}

.hero-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.hero-illustration {}

.hero-illustration img {
  width: 100%;
  height: auto;
  /* 保持图片比例 */
}

/* 产品简介区 */
.product-intro {
  padding: 30px 10%;
}

.intro-row {
  /* display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px; */
  display: grid;
  flex-wrap: wrap;
  align-items: anchor-center;
  display: grid;
  grid-template-columns: 49% 50%;
  gap: 50px
}

.intro-img {
  flex: 1;
  text-align: end;
}

.intro-img img {
  max-width: 100%;
  height: 100%;
  border: 1px solid #eee;
  border-radius: 8px;
  /* 图片圆角 */
}

.intro-text {
  flex: 1;
}

.product-intro h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #333;
  text-align: center;
}

/* 功能模块通用样式 */
.intro-item {
  margin-bottom: 50px;
}

/* 标签样式（不同颜色区分模块） */
.tag {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  margin-bottom: 8px;
}

.core-feature .tag {
  background-color: #42a5f5;
  /* 蓝色：核心功能 */
}

.tech-advantage .tag {
  background-color: #ff9800;
  /* 橙色：技术优势 */
}

.product-value .tag {
  background-color: #4caf50;
  /* 绿色：产品价值 */
}

.intro-item p {
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
}

/* 响应式适配（手机端） */
@media (max-width: 768px) {

  .hero-row,
  .intro-row {
    flex-direction: column;
    /* 垂直堆叠 */
    text-align: center;
  }

  .hero-illustration {
    text-align: center;
    /* 插图居中 */
    margin-top: 20px;
  }

  .intro-img {
    order: 1;
    /* 图片放顶部 */
  }

  .intro-text {
    order: 2;
    /* 文字放底部 */
  }
}

/* 视觉中枢 */
/* 产品模块容器 */
.product-section {
  padding: 30px 10%;
}

/* 主标题样式 */
.product-section h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: #2c3e50;
}

/* 副标题样式 */
.subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

/* 产品卡片布局 */
.product-cards {
  /* display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; */

  /* display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
    display: grid;
    flex-wrap: wrap;
    align-items: anchor-center;
    display: grid;
    grid-template-columns: 50% 50%; */
}

.product-cards img {
  width: 100%;
  overflow: hidden;
}

/* 单个卡片样式 */
.visualCenter_card {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

/* 卡片悬停效果 */
.visualCenter_card:hover {
  transform: translateY(-5px);
}

/* 卡片图片样式 */
.visualCenter_card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* 卡片标题样式 */
.visualCenter_card h3 {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: justify;
  font-style: normal;
}

/* 卡片描述样式 */
.visualCenter_card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* 智能分析区标题 */
.analysis-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 40px 0 20px;
  color: #2c3e50;
}

/* 分析区图片布局 */
.analysis-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* 分析区图片样式 */
.analysis-container img {
  flex: 1;
  min-width: 400px;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.analysis-introduce {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  font-style: normal;
  text-align: center;
  padding: 10px 0;
}

.visualCenter_analysis {
  background: #ffffff;
  box-shadow: 0px 4px 7px 4px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 20px;
}

/* 响应式适配（小屏幕优化） */
@media (max-width: 768px) {
  .visualCenter_card {
    min-width: 100%;
  }

  .analysis-container img {
    min-width: 100%;
    max-width: 100%;
  }
}

/* 数字人 */
/* 产品简介模块：唯一前缀 prod-intro- */
.prod-intro-section {
  padding: 30px 10%;
  background-color: #ffffff;
}

.prod-intro-container {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  display: grid;
  flex-wrap: wrap;
  align-items: anchor-center;
  display: grid;
  grid-template-columns: 49% 50%;
  gap: 50px;

}

/* 左侧数字人卡片 */
.prod-intro-card {
  flex: 1;
  border-radius: 12px;
  /* padding: 20px; */
  text-align: end;
}
.prod-intro-card img{
  width: 100%;
}
.prod-intro-avatar {
  width: 100%;
  max-width: 280px;
  /* 限制图片宽度 */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* 语音按钮 */
.prod-intro-btn {
  width: 80%;
  padding: 12px 16px;
  background: #e6f2ff;
  /* 更深的浅蓝 */
  border: 1px solid #b3d7ff;
  border-radius: 8px;
  color: #2196f3;
  /* 品牌蓝 */
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* 图标与文字间距 */
  transition: all 0.3s ease;
}

.prod-intro-btn:hover {
  background: #cce6ff;
}

.prod-intro-mic {
  width: 20px;
  height: 20px;
  fill: #2196f3;
  /* 图标颜色 */
}

/* 右侧内容区 */
.prod-intro-content {
  flex: 1;
  /* 占比更大 */
}

.prod-intro-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  text-align: center;
}

.prod-intro-item {
  margin-bottom: 24px;
}

.prod-intro-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  /* 深灰标题 */
  margin-bottom: 8px;
}

.prod-intro-item p {
  font-size: 14px;
  color: #666666;
  /* 浅灰描述 */
  line-height: 1.6;
}

/* 响应式适配（小屏幕堆叠） */
@media (max-width: 768px) {
  .prod-intro-container {
    flex-direction: column;
    /* 垂直排列 */
  }

  .prod-intro-card,
  .prod-intro-content {
    width: 100%;
    max-width: 400px;
    /* 限制最大宽度 */
    margin: 0 auto;
    /* 水平居中 */
  }
}

/* ========== 平台架构模块 ========== */
.arch-section {
  padding: 30px 10%;
}

.arch-section h2 {
  text-align: center;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 32px;
  color: #333333;
}

.arch-desc {
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  text-align: justify;
  font-style: normal;
  line-height: 1.6;
}

/* 架构布局：左-中-右 */
.arch-layout {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.arch-layout img {
  margin: auto;
  width: 100%;
}

/* 左侧/右侧体系栏 */
.arch-side {
  width: 120px;
  background: #eaf5ff;
  /* 浅蓝背景 */
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.arch-side-item {
  font-size: 14px;
  color: #333;
  margin: 8px 0;
}

/* ========== 产品简介模块 ========== */
.prod-intro-section {
  padding: 30px 10%;
}

.prod-intro-section h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

.intro-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  /* align-items: center; */
  justify-content: center;
}

.intro-img {
  flex: 1;
  min-width: 300px;
}

.intro-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro-text {
  flex: 1;
  min-width: 300px;
}

.intro-text p {
  color: #666;
  line-height: 2;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
}

.intro-text-mind p {
  color: #666;
  line-height: 2;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px !important;
  color: #333333;
}

/* 按钮组 */
.intro-buttons {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.intro-btn {
  padding: 2px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
}

.blue-btn {
  background: #2196f3;
}

.orange-btn {
  background: #ff9800;
}

.green-btn {
  background: #4caf50;
}

/* ========== 响应式适配 ========== */
@media (max-width: 768px) {

  /* 平台架构：侧边栏横向排列 */
  .arch-layout {
    flex-direction: column;
    align-items: center;
  }

  .arch-side {
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
  }

  .arch-core {
    width: 100%;
  }

  /* 产品简介：垂直堆叠 */
  .intro-container {
    flex-direction: column;
  }
}

.feature-item p span {
  color: #007aff;
}

.feature-ai {
  display: grid;
  grid-template-columns: 50% 50%;
}

/* 产品展示模块：唯一前缀 product-show- */
.product-show {
  padding: 40px 10%;
}

.product-show h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.show-container {
  display: flex;
  align-items: center;
}

/* 左侧核心设备 */
.device-main {
  /* flex: 1; */
  display: flex;
  justify-content: center;
}

.device-main img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

/* 中间连接区 */
.connect-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 20px;
}

.connect-icon {
  width: 60px;
  height: 60px;
  color: #42a5f5;
  /* 品牌蓝色 */
}

.connect-area p {
  font-size: 16px;
  color: #42a5f5;
  font-weight: 500;
}

/* 右侧产品矩阵（网格布局） */
.product-grid {
  /* flex: 2; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  /* 卡片间距 */
}

.product-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  /* 悬停动画 */
}

.product-show-container img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}

.product-show-container p {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: center;
}

/* ========== 响应式适配 ========== */
@media (max-width: 992px) {
  .show-container {
    flex-direction: column;
    /* 垂直堆叠 */
    align-items: center;
  }

  .device-main,
  .product-grid {
    width: 100%;
    max-width: 500px;
    /* 限制最大宽度 */
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 两列布局 */
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
    /* 单列布局 */
  }
}

.product-graphics {
  display: flex;
  align-items: center;
  gap: 30px;
}

.product-graphics img {
  max-width: 48%;
  flex: 1;
}

.section-title {
  margin-top: 20px;
}

/* 设备展示模块：唯一前缀 device- */
.device-section {
  padding: 80px 10%;
}

.device-section h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

/* 单个设备卡片 */
.device-card {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  gap: 30px;/
}


.card-media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  /* 消除底部间隙 */
}

.card-media p {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  text-align: justify;
  font-style: normal;
  text-align: center;
}

/* 文字信息区 */
.card-info {
  /* flex: 1; */
      margin-top: 20px;
}

.card-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.card-info ul {
  list-style: none;
  /* 去除默认列表样式 */
  padding: 0;
}

.card-info li {
  font-size: 14px;
  color: #666;
  line-height: 2;
  margin-bottom: 8px;
}

/* ========== 响应式适配 ========== */
@media (max-width: 768px) {
  .device-card {
    flex-direction: column;
    /* 垂直堆叠 */
    align-items: center;
  }

  .card-media {
    margin-bottom: 15px;
    /* 图片与文字间距 */
  }

  .card-info h3 {
    text-align: center;
    /* 标题居中 */
  }
}

.swiperContainer {
  max-width: 50%;
  margin: 13% 0 15% 5%;
  padding: 0;
}

.swiperContainer h2 {
  text-align: end !important;
}