/* 全局基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
ul, li {
  list-style: none;
}
:root {
  --green: #417143;
  --white: #ffffff;
  --gray: #666666;  
  --transparent-white: rgba(255,255,255,0.2);
  --z-index-999: 999;
  --z-index-1000: 1000;
}

/* 头部核心样式：悬浮透明、1200px范围 */
.site-header {
  position: fixed; /* 固定顶部，滚动切换核心 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-1000); /* 置顶，覆盖原有层级 */
  backdrop-filter: blur(5px);
  background-color: transparent; /* 默认透明背景 */
  transition: all 0.3s ease-in-out; /* 所有样式平滑切换 */
  margin: 0;
  padding: 8px 0; /* 基础内边距，保证高度 */
}

/* 下滑激活样式：白色背景+轻微阴影 */
.site-header.header-active {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  backdrop-filter: none; /* 白色背景取消模糊 */
}

.header-logo, .header-slogan {
  max-height: 40px;
  object-fit: contain;
   transition: all 0.3s ease;
}


.header-logo-active, .header-slogan-active {
  max-height: 40px;
  object-fit: contain;
  display: none; /* 默认隐藏 */
  transition: all 0.3s ease;
}
/* 激活状态：隐藏原图，显示新图 */
.site-header.header-active .header-logo,
.site-header.header-active .header-slogan {
  display: none;
}
.site-header.header-active .header-logo-active,
.site-header.header-active .header-slogan-active {
  display: inline-block;
}


/* 头部第一行：语言按钮+搜索框+汉堡按钮 */
.lang-btn {
  color: var(--white); /* 默认白色文字 */
  border: none;
  background: transparent;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: var(--transparent-white);
  transition: all 0.3s ease;
}

/* 下滑后语言按钮：灰色文字+灰色hover背景 */
.site-header.header-active .lang-btn {
  color: var(--gray);
}
.site-header.header-active .lang-btn:hover {
  background-color: #f5f5f5;
}

/* 搜索框样式优化+颜色切换 */
.search-input {
  height: 36px;
  padding: 0 15px;
  border: none;
  background-color: var(--transparent-white);
  color: var(--white); /* 默认白色输入文字 */
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: var(--transparent-white);
   opacity: 1;
}

/* 下滑后搜索框：浅灰背景+灰色文字/占位符 */
.site-header.header-active .search-input {
  background-color: #f5f5f5;
  color: var(--gray);
}
.site-header.header-active .search-input::placeholder {
  color: var(--gray);
}


.search-btn {
  width: 36px;
  height: 36px;
   border: none;
  background-color: transparent;
  color: var(--white); /* 默认白色图标 */
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center; /* 图标绝对居中 */
  font-size: 16px; /* 图标大小 */
  transition: all 0.3s ease;
}
/* 搜索按钮hover+激活状态：绿色背景+白色图标（保留原有品牌色） */
.search-btn:hover,
.site-header.header-active .search-btn {
  background-color: var(--green);
  color: var(--white);
}

/* 下滑后按钮hover：绿色加深，增强交互 */
.site-header.header-active .search-btn:hover {
  background-color: #355f37; /* 比--green稍深 */
}

/* 汉堡按钮样式+颜色切换 */
.hamburger-btn {
  color: var(--white);
  border: none;
  background: transparent;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* 汉堡按钮样式 */
.hamburger-btn:hover {
  background-color: var(--transparent-white);
}
.hamburger-icon {
  font-size: 18px;
  line-height: 1;
}

/* 下滑后汉堡按钮：灰色文字+浅灰hover背景 */
.site-header.header-active .hamburger-btn {
  color: var(--gray);
}
.site-header.header-active .hamburger-btn:hover {
  background-color: #f5f5f5;
}

/* 头部第二行：上下双线 + 导航 */
.header-nav-wrap {
  position: relative;
  padding: 0;
  /*overflow: hidden; */
  /* 隐藏移动端导航溢出 */
}
.nav-line {
  width: 100%;
  height: 1px;
  background-color: var(--white);
  opacity: 0.8;
  transition: all 0.3s ease; /* 线条颜色平滑切换 */
}
/* 下滑后导航线条：灰色 */
.site-header.header-active .nav-line {
  background-color: var(--gray);
  opacity: 0.5;
}

.top-line {
  position: absolute;
  top: 0;
  left: 0;
}
.bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* 导航容器：移动端弹出核心样式 */
.nav-container {
  position: relative;
  z-index: var(--z-index-999);
  transition: all 0.3s ease-in-out;
}
/* 移动端导航关闭按钮：右上角定位+协调间距+样式优化 */
.nav-close-btn {
  /* 绝对定位：基于移动端导航容器（.nav-container）定位 */
  position: absolute;
  top: 20px; /* 顶部间距，与汉堡按钮上下间距协调 */
  right: 20px; /* 右侧协调间距，不贴边不拥挤 */
  /* 基础样式：保证点击区域、图标大小 */
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--white); /* 初始白色，适配导航黑色背景 */
  font-size: 20px; /* 图标大小适中，易点击 */
  cursor: pointer;
  transition: color 0.3s ease;
  /* 层级保证：不被导航内容遮挡 */
  z-index: var(--z-index-1000);
}
/* 移动端导航关闭按钮 */
.nav-close-btn:hover {
  color: var(--green);
}
/* 大屏导航：水平排列 */
@media (min-width: 768px) {
  .nav-container {
    height: auto !important; /* 强制覆盖移动端高度 */
  }
}
/* 小屏导航：默认隐藏，点击后全屏弹出 */
@media (max-width: 768px) {
  .nav-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    overflow: hidden;
    z-index: var(--z-index-1000);
  }
  /* 移动端导航展开状态 */
  .nav-container.show {
    height: 100vh;
    padding-top: 60px;
      overflow-y: auto;
  }
  /* 移动端导航垂直排列 */
  .nav-main {
    padding: 20px;
    gap: 0 !important;
  }
  .nav-item {
    width: 100%;
    text-align: left;
    padding: 12px 15px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  /* 移动端下拉箭头 */
  .dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
  }
  .has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
  /* 移动端下拉菜单：内嵌到导航项，不悬浮 */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    min-width: 100%;
    box-shadow: none;
    background-color: rgba(255,255,255,0.05);
    margin-top: 0;
    z-index: 1; /* 移动端层级无需过高 */
  }
  .dropdown-item {
    padding-left: 30px !important;
  }
  .dropdown-item:hover {
    padding-left: 35px !important;
  }
}

/* 导航主样式 */
.nav-main {
  position: relative;
  z-index: var(--z-index-999);
}
.nav-item {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-item > a {
  color: inherit;
}

/* 新增：头部激活（下滑）时，导航文字变灰色 */
.site-header.header-active .nav-item {
  color: var(--gray);
}

.nav-item:hover {
  color: var(--white)!important;
  background-color: var(--green);
}

/* 下拉菜单样式 */
.has-dropdown {
  position: relative;
   z-index: 1000; 
}
.dropdown-menu {
  display: none;
  min-width: 120px;
  background-color: var(--white);
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: var(--z-index-999);
    z-index: 1001; 
  padding: 8px 0;
  margin-top: 8px;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-item {
  color: #333;
  padding: 10px 20px;
  display: block;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background-color: var(--green);
  color: var(--white);
  padding-left: 25px;
}

/* 轮播图核心样式 */
.carousel {
  margin-top: -1px;
}
.custom-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.custom-indicators button {
  width: 80px;
  height: 3px;
  border-radius: 0;
  background-color: var(--transparent-white);
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}
.custom-indicators button.active {
  background-color: var(--white);
  height: 20px;
  width: 20px;
}

/* 响应式布局：适配手机/平板/电脑 */
@media (max-width: 768px) {
  .header-logo {
    width: 60px;
  }
  .header-slogan {
    display: none;
  }
  .lang-btn {
    padding: 2px 8px;
    font-size: 14px;
  }
  .search-input {
    width: 120px;
  }
  .custom-indicators button {
    width: 60px;
  }
  .custom-indicators button.active {
    width: 70px;
  }
}
@media (max-width: 576px) {
  .site-header .container-xl {
    padding: 0 10px;
  }
  .lang-btn {
    display: none;
  }
  .nav-container {
    width: 100%;
    max-width: none;
  }
  .custom-indicators {
    bottom: 20px;
  }
  .custom-indicators button {
    width: 40px;
    gap: 10px;
  }
  .custom-indicators button.active {
    width: 50px;
  }
  .carousel-item img {
    object-position: center;
  }
}

/* 可选：下拉菜单超出视口时自动右对齐 */
.dropdown-menu {
  right: 0;
  left: auto;
}
/* 仅对右侧导航项生效，可给右侧导航项加 class="dropdown-right" 控制 */
.has-dropdown.dropdown-right .dropdown-menu {
  right: 0;
  left: auto;
}


/* 关于我们板块：通栏背景图 + 1200px居中 */
.about {
  position: relative;
  background: url("../images/main1.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  /* 背景图遮罩，提升文字可读性 */
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.7);*/
  z-index: 1;
}
.about > .container-xl {
  position: relative;
  z-index: 2; /* 保证内容在遮罩上层 */
}

/* 上部分：左右结构样式 */
.about-top {
  min-height: 400px;
}
.about-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--green);
}
.about-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--gray);
  text-align: justify;
}
/* 了解详情按钮：黑色边框 + 右侧箭头 */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border: 1px solid #000;
  background-color: transparent;
  color: var(--gray);
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
}
.about-btn:hover {
  background-color: var(--green);
  color: var(--white);
  transform: translateX(5px);
}
.btn-arrow {
  font-size: 18px;
  line-height: 1;
}
/* 右侧图片适配 */
.about-img {
  height: auto;
  object-fit: cover;
  min-height: 300px;
}

/* 下部分：1行4列 数字统计样式 */
.about-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
/* 动态数字样式 */
.count-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1;
  display: inline-flex; /* 关键：让数字和符号并排 */
  align-items: baseline; /* 文字基线对齐，更美观 */
  gap: 4px; /* 数字和符号间距 */
}
/* 数字部分（用于动画） */
.num-value {
  display: inline-block;
}
/* 新增：数字后面的符号样式 */
.num-symbol {
  font-size: 32px; /* 比数字小，突出数字 */
  font-weight: 500;
  color: var(--green); /* 和数字同色 */
  line-height: 1;
}
/* 数字下方小字 */
.count-text {
  font-size: 14px;
   color: var(--gray);
  text-transform: capitalize;
}

/* 响应式布局：平板（md:768px） */
@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }
  .about-title {
    font-size: 24px;
  }
  .about-top {
    min-height: auto;
    flex-direction: column;
  }
  .count-num {
    font-size: 36px;
  }
    .num-symbol {
    font-size: 24px; /* 同步缩小符号 */
  }
  .about-img {
    min-height: 250px;
  }
}

/* 响应式布局：手机（sm:576px） */
@media (max-width: 576px) {
  .about {
    padding: 60px 0;
  }
  .about-title {
    font-size: 20px;
  }
  .about-desc {
    font-size: 14px;
  }
  .about-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .count-num {
    font-size: 28px;
  }
   .num-symbol {
    font-size: 18px; /* 手机端符号适配 */
  }
  .count-text {
    font-size: 12px;
  }
  .about-bottom {
    gap: 0px !important;
  }
}



/* 全球营销网络板块：通栏背景图 + 1200px居中，复用about遮罩逻辑 */
.netsalse {
  position: relative;
  background: url("../images/main2.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  margin-top: -1px; /* 消除板块间间隙，与整体衔接 */
}
/* 背景半透明遮罩，提升文字/地图可读性，透明度与about一致 */
.netsalse::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.7);*/
  z-index: 1;
}
/* 内容层：1200px范围内，高于遮罩 */
.netsalse > .container-xl {
  position: relative;
  z-index: 2;
  text-align: center; /* 全局居中，子元素继承 */
}

/* 主标题样式：居中，突出显示 */
.netsalse-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
/* 标题底部小横线装饰，与品牌风格呼应 */
.netsalse-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--green);
}

/* 简介文字样式：居中，适度控宽避免大屏太散 */
.netsalse-desc {
  font-size: 18px;
  line-height: 1.8;
  color:  var(--gray);
  max-width: 100%; /* 大屏最大宽度，提升阅读体验 */
}

/* 地图容器：适配1200px范围，适度内边距，保证地图展示效果 */
.netsalse-map-wrap {
  max-width: 1000px; /* 地图略窄于1200px，更美观 */
  margin: 0 auto;
  padding: 50px 20px;
}
/* 地图图片：响应式自适应，加轻微阴影提升质感 */
.netsalse-map {
  height: auto;
  object-fit: contain; /* 关键：保证地图比例不变，不拉伸变形 */
  border-radius: 8px;
  /*box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);*/
}

/* 响应式布局：平板（md:768px） */
@media (max-width: 768px) {
  .netsalse {
    padding: 120px 0;
  }
  .netsalse-title {
    font-size: 28px;
    padding-bottom: 12px;
  }
  .netsalse-title::after {
    width: 60px;
    height: 2px;
  }
  .netsalse-desc {
    font-size: 14px;
    max-width: 600px;
  }
  .netsalse-map-wrap {
    max-width: 500px;
  }
}

/* 响应式布局：手机（sm:576px） */
@media (max-width: 576px) {
  .netsalse {
    padding: 90px 0;
  }
  .netsalse-title {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .netsalse-desc {
    font-size: 13px;
    line-height: 1.7;
  }
  .netsalse-map-wrap {
    max-width: 100%;
    padding: 0 10px;
  }
  /* 手机端地图去掉阴影，减少视觉负担 */
  .netsalse-map {
    box-shadow: none;
    border-radius: 4px;
  }
}

/* 统一板块内边距适配（与about板块保持一致） */
.py-18 {
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .py-18 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (max-width: 576px) {
  .py-18 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}



/* 探索我们的医疗之旅：通栏背景+100%全屏显示 */
.Explore {
  position: relative;
  background: url("../images/main3.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  margin-top: -1px; /* 无缝衔接上一板块 */
}
/* 背景遮罩：与前序板块统一透明度，提升内容可读性 */
.Explore::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/* 内容层：高于遮罩，全局居中 */
.explore-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 4rem 0;
}

/* 主标题样式：与全球营销网络板块统一，底部绿色装饰线 */
.explore-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 1.5rem;
}
.explore-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--green);
}

/* 简介文字样式：适度控宽，避免大屏过散 */
.explore-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* 轮播外层容器：定位基准（按钮+遮罩）+ 固定1200px + 居中 */
.explore-swiper-wrap {
  position: relative; /* 按钮、遮罩均基于此定位 */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0; /* 无内边距，保证定位精准 */
}
/* 轮播核心容器：固定显示区域 + 隐藏溢出 */
.explore-swiper {
  width: 100%;
  min-height: 400px;
  overflow: hidden; /* 隐藏滑块滚动溢出部分，固定显示区域 */
  position: relative;
}
/* 轮播滚动容器：flex横向 + 垂直居中 + 精准滚动对齐 */
.swiper-wrapper {
  display: flex;
  align-items: center; /* 滑块与按钮垂直居中 */
  gap: 20px; /* 滑块间距均匀 */
  transition: transform 0.3s ease-in-out; /* 滚动平滑过渡 */
  scroll-snap-type: x mandatory; /* 核心：滑块滚动精准对齐位置 */
}
/* 轮播项slider：固定宽度 + 无默认模糊 */
.swiper-slide {
  flex: 0 0 auto; /* 固定宽度，不收缩不拉伸 */
  width: calc(25% - 15px); /* 1行4列，适配gap:20px，无重叠 */
  padding: 0 15px;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start; /* 核心：滚动时滑块精准对齐容器位置 */
  transition: all 0.3s ease-in-out;
  opacity: 1;
  filter: blur(0); /* 无默认模糊，靠遮罩实现 */
}
/* slider底部线条：默认灰色，hover变绿 */
.slide-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #999;
  transition: background-color 0.3s ease;
}
.swiper-slide:hover .slide-line {
  background-color: var(--green);
}

/* 🔥 核心柔化：左右遮罩更柔和（降低模糊强度+减弱渐变暗度） */
.explore-swiper-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(25% - 15px + 20px); /* 保留过渡区，边缘更顺滑 */
  height: 100%;
  left: 0;
  backdrop-filter: blur(4px); /* 降低模糊半径：从6px→4px，更柔和 */
  background: linear-gradient(to right, rgba(255,255,255,0.05), rgba(0,0,0,0)); /* 降低暗度：从0.08→0.05，过渡更自然 */
  z-index: 2;
  pointer-events: none;
}
.explore-swiper-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: calc(25% - 15px + 20px);
  height: 100%;
  right: 0;
  backdrop-filter: blur(4px); /* 同步降低模糊半径 */
  background: linear-gradient(to left, rgba(255,255,255,0.05), rgba(0,0,0,0)); /* 同步降低暗度 */
  z-index: 2;
  pointer-events: none;
}

/* slider内部元素：图片+标题+简介 */
.slide-img {
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}
.slide-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.slide-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  text-align: left;
}

/* 左右按钮：收缩至中间2个清晰区域范围内（保留原有定位） */
.swiper-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* 垂直居中不变 */
  z-index: 3; /* 最高层级，不被遮挡 */
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-prev {
  left: calc( (20% - 15px) + 10px )!important;
}
.swiper-next {
  right: calc( (20% - 15px) + 10px )!important;
}
/* 按钮hover效果：绿底+缩放，不偏移位置 */
.swiper-btn:hover {
  background-color: var(--green);
  transform: translateY(-50%) scale(1.1);
}

/* 查看更多按钮：品牌风格统一 */
.explore-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 180px;
  padding: 12px 30px;
  border: 2px solid #000;
  background-color: transparent;
  color: var(--gray);
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
  margin-top: 3rem;
}
.explore-more-btn:hover {
  background-color: #000;
  color: var(--white);
  transform: translateX(5px);
  text-decoration: none;
}
.explore-more-btn .btn-arrow {
  font-size: 18px;
  line-height: 1;
}

/* 响应式布局：平板（≤768px）- 1行2列 */
@media (max-width: 768px) {
  .explore-title {
    font-size: 28px;
    padding-bottom: 12px;
  }
  .explore-title::after {
    width: 60px;
    height: 2px;
  }
  .explore-desc {
    font-size: 14px;
    max-width: 600px;
  }
  .explore-swiper {
    min-height: 380px;
  }
  .swiper-slide {
    width: calc(50% - 10px); /* 2列宽度 */
  }
  .slide-img {
    height: 180px;
  }
  .slide-title {
    font-size: 16px;
  }
  /* 平板：隐藏遮罩，2列全部清晰 */
  .explore-swiper-wrap::before,
  .explore-swiper-wrap::after {
    display: none;
  }
  /* 平板按钮：收缩至2列中间区域 */
  .swiper-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .swiper-prev {
    left: calc( (50% - 10px) + 5px );
  }
  .swiper-next {
    right: calc( (50% - 10px) + 5px );
  }
  .explore-more-btn {
    padding: 10px 25px;
    font-size: 15px;
  }
}

/* 响应式布局：手机（≤576px）- 1行1列 */
@media (max-width: 576px) {
  .explore-content {
    padding: 2rem 0;
  }
  .explore-title {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 1rem;
  }
  .explore-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  .explore-swiper {
    min-height: 350px;
  }
  .swiper-slide {
    width: calc(100% - 10px); /* 1列宽度 */
  }
  .slide-img {
    height: 160px;
  }
  .slide-desc {
    font-size: 13px;
  }
  /* 手机：隐藏遮罩，1列清晰 */
  .explore-swiper-wrap::before,
  .explore-swiper-wrap::after {
    display: none;
  }
  /* 手机按钮：适度收缩，不贴边 */
  .swiper-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .swiper-prev {
    left: 20px;
  }
  .swiper-next {
    right: 20px;
  }
  .explore-more-btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 160px;
    margin-top: 2rem;
  }
}

/* 统一间距类：与整站保持一致 */
.mb-12 {
  margin-bottom: 3rem;
}
.mt-12 {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .mb-12 {
    margin-bottom: 2.5rem;
  }
  .mt-12 {
    margin-top: 2.5rem;
  }
}
@media (max-width: 576px) {
  .mb-12 {
    margin-bottom: 2rem;
  }
  .mt-12 {
    margin-top: 2rem;
  }
}
/* 统一间距类：与整站保持一致 */
.mb-12 {
  margin-bottom: 3rem;
}
.mt-12 {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .mb-12 {
    margin-bottom: 2.5rem;
  }
  .mt-12 {
    margin-top: 2.5rem;
  }
}
@media (max-width: 576px) {
  .mb-12 {
    margin-bottom: 2rem;
  }
  .mt-12 {
    margin-top: 2rem;
  }
}
/* 新闻中心板块：通栏背景+1200px居中，无缝衔接上一板块 */
.newslist {
  position: relative;
  background: url("../images/main4.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  margin-top: -1px;
}
/* 背景遮罩：与前序板块统一透明度0.7，提升文字可读性 */
.newslist-mask {
  /*background-color: rgba(0, 0, 0, 0.7);*/
}
/* 基础定位复用 */
.absolute {
  position: absolute;
}
.top-0 {
  top: 0;
}
.left-0 {
  left: 0;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}

/* 左侧大标题样式：延续品牌风格，底部绿色装饰线，大屏左对齐，小屏居中 */
.newslist-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 0;
}
.newslist-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--green);
  /* 小屏时装饰线居中 */
}
@media (max-width: 768px) {
  .newslist-title {
    text-align: center;
  }
  .newslist-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* 新闻列表：清除默认样式，间距均匀 */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* 新闻列表项：相对定位（供圆点定位），底部边框分隔，上下内边距 */
.news-item {
  position: relative;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* 最后一项去掉底部边框 */
}
.news-item:last-child {
  border-bottom: none;
}
/* 列表项前置圆点：绿色，垂直居中，固定左侧位置 */
.news-item::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 14px;
  line-height: 1;
}

/* 新闻链接：flex布局，实现标题+时间并列，占满整行 */
.news-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 25px; /* 给圆点留空间 */
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-link:hover {
  color: var(--green);
}

/* 新闻标题：左对齐，占满剩余空间，超出省略 */
.news-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1; /* 关键：防止时间挤压标题 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 20px; /* 与时间保持间距 */
}

/* 新闻时间：浅白色，固定宽度，右对齐 */
.news-time {
  font-size: 14px;
 color: var(--gray);
  line-height: 1.6;
  white-space: nowrap;
}

/* 查看更多按钮：与医疗之旅板块完全一致，黑色边框+左文字右箭头 */
.news-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 180px;
  padding: 12px 30px;
  border: 1px solid #000;
  background-color: transparent;
  color: var(--gray);
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
}
.news-more-btn:hover {
  background-color: var(--green);
  color: var(--white);
  transform: translateX(5px);
  text-decoration: none;
}
.news-more-btn .btn-arrow {
  font-size: 18px;
  line-height: 1;
}

/* 响应式布局：平板（md:768px）- 左右结构堆叠，列表项间距缩小 */
@media (max-width: 768px) {
  .newslist-title {
    font-size: 28px;
    padding-bottom: 12px;
  }
  .newslist-title::after {
    width: 60px;
    height: 2px;
  }
  .news-item {
    padding: 15px 0;
  }
  .news-title {
    font-size: 15px;
  }
  .news-time {
    font-size: 13px;
  }
  .news-more-btn {
    padding: 10px 25px;
    font-size: 15px;
  }
}

/* 响应式布局：手机（sm:576px）- 字体进一步缩小，间距适配 */
@media (max-width: 576px) {
  .newslist-title {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .news-item {
    padding: 12px 0;
  }
  .news-link {
    padding-left: 20px;
  }
  .news-title {
    font-size: 14px;
    padding-right: 15px;
  }
  .news-time {
    font-size: 12px;
  }
  .news-more-btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 160px;
  }
  .mt-10 {
    margin-top: 2.5rem !important;
  }
}

/* 统一间距类：与前序板块保持一致 */
.g-8 {
  gap: 2rem;
}
.mt-10 {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .g-8 {
    gap: 1.5rem;
  }
}


/* 网站底部：通栏背景+1200px居中，无缝衔接上一板块 */
/* -------------------------- 网站底部 footer 【最终版】 -------------------------- */
/* 基础样式：通栏背景+1200px居中+遮罩 */
.footer {
  position: relative;
  /*background: url("../images/footer.jpg") no-repeat center center;*/
  background: #416f3d;
  background-size: cover;
  color: #ffffff;
  font-size: 14px;
  margin-top: -1px; /* 无缝衔接上一板块 */
}
/* 背景遮罩：稍深更沉稳，保证文字可读性 */
.footer-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 5;
}
/* 内容层：高于遮罩，相对定位 */
.footer > .container-xl {
  position: relative;
  z-index: 10;
}

/* 第一行：footer-top 样式 */
.footer-top {
  align-items: flex-start;
}
/* 左侧logo：限制高度，防止拉伸 */
.footer-logo {
  max-height: 60px;
  width: auto;
}
/* 左侧介绍文字：浅灰，舒适行高 */
.footer-desc {
  color: #cccccc;
  line-height: 1.8;
  margin: 0;
}
/* 右侧3列：绿色标题（主色） */
.footer-col-title {
  color: var(--green);
  font-size: 16px;
  /*font-weight: 700;*/
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(var(--green-rgb), 0.3);
  display: inline-block;
}

.footer-col-title a{
      color: var(--white);
  font-size: 16px;
    
}
/* 列列表：清除默认样式，灰色文字 */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 10px;
}
.footer-list li:last-child {
  margin-bottom: 0;
}
/* 列表链接：灰色默认，hover浅白，无下划线 */
.footer-list li a {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-list li a:hover {
  color: #eeeeee;
}

/* 第二行：footer-bottom 样式 */
/* 左侧联系方式：4行布局，图标+文字 */
.contact-list {
  line-height: 2;
}
.contact-item {
  color: #ffffff;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
}
.contact-item i{margin-right:.5rem}
.contact-item i img{max-width:100%; height:auto}
.contact-item .icon {
  color: var(--green);
  margin-right: 10px;
  font-size: 16px;
  font-style: normal;
}
.contact-item:last-child {
  margin-bottom: 0;
}
/* 右侧二维码：固定尺寸+白色边框 */
.footer-qrcode {
  width: 100px;
  height: 100px;
  border: 0px solid #ffffff;
  padding: 5px;
  box-sizing: border-box;
   border-radius: 15px;
}

/* 二维码下方文字：浅灰小字体 */
.qrcode-text {
  color: #cccccc;
  margin: 0;
  font-size: 13px;
}

/* 第三行：版权信息样式（新增） */
.footer-copyright {
  color: #999999; /* 浅灰文字，与列表统一 */
  font-size: 13px;
}
.copyright-text {
  margin: 0;
  line-height: 1.6;
  text-align: left; /* 强制靠左 */
}

/* -------------------------- 响应式布局（与整站统一断点） -------------------------- */
/* 平板：768px 以下 */
@media (max-width: 768px) {
  .footer {
    padding: 80px 0 40px;
  }
  .footer-top {
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto 4px;
  }
  .footer-col-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .contact-list {
    text-align: center;
  }
  .qrcode-group {
    margin-top: 20px;
  }
  /* 版权信息适配：小屏仍靠左，字体不变 */
  .copyright-text {
    text-align: left;
  }
}

/* 手机：576px 以下 */
@media (max-width: 576px) {
  .footer {
    font-size: 13px;
    padding: 60px 0 30px;
  }
  .footer-desc {
    font-size: 12px;
    line-height: 1.6;
  }
  .footer-list li {
    margin-bottom: 8px;
  }
  /* 联系方式适配 */
  .contact-item {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 5px;
  }
  .contact-item .icon {
    font-size: 14px;
    margin-right: 8px;
  }
  /* 二维码适配 */
  .footer-qrcode {
    width: 80px;
    height: 80px;
  }
  .qrcode-text {
    font-size: 12px;
  }
  /* 版权信息适配：字体缩小，保持靠左 */
  .footer-copyright {
    font-size: 12px;
  }
  /* 间距适配：压缩上下间距 */
  .footer-top {
    padding-bottom: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .footer-bottom {
    margin-bottom: 1rem !important;
  }
  .g-8 {
    gap: 1.5rem !important;
  }
  .g-6 {
    gap: 1rem !important;
  }
  .pt-4 {
    padding-top: 0.75rem !important;
  }
}

/* 统一间距类（与整站保持一致，避免冲突） */
.g-8 {
  gap: 2rem;
}
.g-6 {
  gap: 1.5rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.pt-4 {
  padding-top: 1rem;
}
/* 透明边框色 */
.border-gray-200/20 {
  border-color: rgba(229, 229, 229, 0.2) !important;
}
.border-gray-200/10 {
  border-color: rgba(229, 229, 229, 0.1) !important;
}



    /* 补充基础样式，确保布局效果 */
    .contact-banner {
      width: 100%;
      height: 480px; /* 可根据实际banner图调整高度 */
    }
    .contact-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .contact-main {
      padding: 80px 0;
    }
    .contact-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 40px; /* 标题与内容的间距 */
    }
    .contact-content {
      font-size: 1rem;
      line-height: 1.8;
      color: #333;
    }
    /* 响应式适配 */
    @media (max-width: 768px) {
      .contact-title {
        font-size: 2rem;
        margin-bottom: 20px;
      }
      .contact-main {
        padding: 40px 0;
      }
    }
    
        /* 产品列表页面专属样式 */
    .product-banner {
      width: 100%;
      height: 480px;
    }
    .product-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .product-main {
      padding: 80px 0;
      width: 90%;
      margin: 0 auto;
    }
    .product-left-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 40px;
    }
    .product-column-list {
      list-style: none;
      padding: 0;
    }
    .product-column-item {
      font-size: 1.1rem;
      line-height: 2.2;
      color: #333;
      cursor: pointer;
      padding: 8px 0;
      border-bottom: 1px solid #eee;
    }
        .product-column-item a{

   
      color: #333;

    }
    .product-column-item.active {
      color: #009688;
      font-weight: 600;
    }
    .product-right-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .product-right-desc {
      font-size: 1rem;
      line-height: 1.8;
      color: #666;
      margin-bottom: 40px;
    }
    .product-card {
      margin-bottom: 30px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
       .product-card img{max-width:100%; height:auto}
    .product-card-img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }
    .product-card-content {
      padding: 15px;
    }
    .product-card-text {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #333;
      text-align: center;
      margin-bottom: 8px;
    }
    .product-pagination {
      margin-top: 40px;
      justify-content: center;
    }
    .product-pagination .page-link {
      color: #333;
      border: 1px solid #eee;
      margin: 0 5px;
    }
    .product-pagination .page-item.active .page-link {
      background-color: #009688;
      border-color: #009688;
      color: #fff;
    }

    /* 响应式适配 */
    @media (max-width: 768px) {
      .product-main {
        width: 95%;
        padding: 40px 0;
      }
      .product-left-title {
        font-size: 2rem;
        margin-bottom: 20px;
      }
      .product-right-title {
        font-size: 1.6rem;
      }
      .product-card-img {
        height: auto;
      }
    }
      /* 通栏 Banner */
    .feedback-banner {
      width: 100%;
      height: 480px;
    }
    .feedback-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 主体容器：90% 宽度居中 */
    .feedback-main {
      width: 90%;
      margin: 0 auto;
      padding: 80px 0;
    }

    /* 左侧 60% */
    .feedback-left {
      width: 60%;
      padding-right: 40px;
    }
    .feedback-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 40px;
      color: #333;
    }

    /* 表单间距 */
    .feedback-form .form-group {
      margin-bottom: 20px;
    }
    .feedback-form label {
      font-weight: 500;
      margin-bottom: 8px;
      color: #333;
    }
    .feedback-form .form-control {
      height: 46px;
      border-radius: 4px;
      border: 1px solid #ddd;
      padding: 0 15px;
      font-size: 1rem;
    }
    .feedback-form textarea.form-control {
      height: 140px;
      resize: none;
      padding: 15px;
    }

    /* 按钮组 */
    .form-btn-group {
      margin-top: 20px;
      gap: 15px;
    }
    .form-btn-group .btn {
      min-width: 120px;
      height: 46px;
      border-radius: 4px;
      font-size: 1rem;
    }
    .btn-confirm {
      background-color: #009688;
      color: #fff;
    }
    .btn-confirm:hover {
      background-color: #008075;
      color: #fff;
    }
    .btn-reset {
      background-color: #f5f5f5;
      color: #333;
      border: 1px solid #ddd;
    }
    .btn-reset:hover {
      background-color: #eee;
    }

    /* 右侧 40%：图片居顶、垂直居中 */
    .feedback-right {
      width: 40%;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 60px;
    }
    .feedback-right img {
      max-width: 100%;
      border-radius: 8px;
      box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    }

    /* 响应式 */
    @media (max-width: 991px) {
      .feedback-main {
        width: 95%;
      }
      .feedback-left,
      .feedback-right {
        width: 100%;
        padding-right: 0;
      }
      .feedback-right {
        margin-top: 50px;
        padding-top: 0;
      }
    }
    @media (max-width: 768px) {
      .feedback-main {
        padding: 40px 0;
      }
      .feedback-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
      }
    }
    
    
    /* 关于我们 主体样式 */
/* 全局锁定90%宽度容器居中 */
.about-container {
    width: 90% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.about-section {
    background: #f9f9f9;
}
.about-content-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
/* 主标题 企业简介+英文 */
.about-main-title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid #28a745;
    padding-bottom: 10px;
    display: inline-block;
}
.about-main-title span {
    font-size: 22px;
    color: #666;
    font-weight: 400;
}

/* 顶部企业形象图（原右侧图片） */
.about-top-img img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* 6图标模块样式 */
.about-icon-group {
    margin: 0 auto;
    max-width: 90%;
}
.about-icon-group .icon-box {
    background: #f8f9fa;
    border-radius: 50%;
    padding: 10px;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.08);*/
}
.icon-box img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}
.icon-txt {
    font-size: 12px;
    color: #333;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.3;
}

/* 正文通用样式 */
.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
    text-align: left;
}

/* 厂区图片 */
.about-img img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* 子标题 圆点样式 */
.about-sub-title {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.about-sub-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin: 0;
}
.blue-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #1677ff;
    border-radius: 50%;
    display: inline-block;
}
.yellow-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #f5ba00;
    border-radius: 50%;
    display: inline-block;
}

/* 强体系 圆形标签 */
.strong-system-tag span {
    display: inline-block;
    width: 120px;
    height: 120px;
    background-color: #06b8a2;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    line-height: 120px;
    box-shadow: 0 3px 10px rgba(6,184,162,0.3);
}

/* 响应式适配 */
@media (max-width: 767px) {
    .inner-banner {
        height: 200px;
    }
    .inner-banner-content h1 {
        font-size: 24px;
    }
    .about-content-wrap {
        padding: 20px;
    }
    .about-main-title {
        font-size: 24px;
    }
    .about-icon-group .col-2 {
        flex: 0 0 33.333%;
        margin-bottom: 15px;
    }
    .about-top-img img, .about-img img {
        max-height: 250px;
    }
    .strong-system-tag span {
        width: 100px;
        height: 100px;
        font-size: 24px;
        line-height: 100px;
    }
}


/* 6图标模块样式 */
.about-icon-group .icon-box {
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.08);*/
}
.icon-box img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}
.icon-txt {
    font-size: 12px;
    color: #333;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.3;
}

/* 正文通用样式 */
.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
    text-align: left;
}
/* 厂区图片 */
.about-img img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

/* 子标题 圆点样式 还原图片 */
.about-sub-title {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.about-sub-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin: 0;
}
/* 蓝色圆点 团队精神/服务理念 */
.blue-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #1677ff;
    border-radius: 50%;
    display: inline-block;
}
/* 黄色圆点 文化创新 */
.yellow-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #f5ba00;
    border-radius: 50%;
    display: inline-block;
}

/* 强体系 圆形标签 还原图片 */
.strong-system-tag {
    margin-top: 30px;
    text-align: right;
}
.strong-system-tag span {
    display: inline-block;
    width: 120px;
    height: 120px;
    background-color: #06b8a2;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    line-height: 120px;
    box-shadow: 0 3px 10px rgba(6,184,162,0.3);
}

/* 右侧图片样式 */
.about-sidebar-img {
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.about-sidebar-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 响应式适配 */
@media (max-width:767px) {
    .inner-banner, .inner-banner-content {
        height: 200px;
    }
    .inner-banner-content h1 {
        font-size: 24px;
    }
    .about-main-title {
        font-size: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .about-icon-group .col-2 {
        flex: 0 0 33.333%;
        margin-bottom: 15px;
    }
    .about-right {
        margin-top: 20px;
    }
    .strong-system-tag {
        text-align: center;
    }
}
 .pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px;}
.pagination>li{display:inline;}
.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px;}
.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px;}
.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px;}
.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd;}
.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default;}