/* ============================================================================
   金马世纪 CMS 主题样式 (v2)
   基底: 原 cms.css 全量样式 (含手改的悬浮客服/首页区块等, 2026-08 固化为源)
   追加: v2 全站导航/页脚/悬浮客服换肤 + 首页「关于我们」「客户」保留板块 (见末尾 v2 区块)
   编译: npx lessc public/assets/less/cms.less public/assets/css/cms.css
   ============================================================================ */
.cms-body {
  padding-top: 0;
  background: #fff;
  color: #333;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}
a {
  color: #0071BC;
  transition: color 0.2s, background 0.2s;
}
a:hover,
a:focus {
  color: #21a6ff;
  text-decoration: none;
}
.cms-topbar {
  background: #1a2b3c;
  color: #cfd8e3;
  font-size: 13px;
  line-height: 38px;
  display: none;
}
.cms-topbar .cms-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cms-topbar .cms-topbar-tel i {
  color: #21a6ff;
  margin-right: 6px;
}
.cms-topbar .cms-topbar-tel span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
/* ===== 导航栏 (目标站 module_703651623: 1500px 容器, 透明底, Logo左 + Tab菜单中 + 搜索右) ===== */
.cms-navbar {
  background: #ffffff;
  border: none;
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
  z-index: 1030;
  /* 全宽下拉面板的定位父级 + 面板贴住菜单行底部 (容器下 padding) */
  position: relative;
  --cms-nav-pad-b: 11px;
}
.cms-navbar .container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  /* 目标站容器 1500px (覆盖 BS3 .container 固定 width:1170px) */
  width: 100%;
  max-width: 1500px;
  /* 目标站 BodyCenter 上下 padding 0.7479% (1500px 时 ≈ 11px) */
  padding-top: 11px;
  padding-bottom: 11px;
}
.cms-navbar .navbar-header {
  margin-left: 0;
}
/* 菜单+搜索同行 (目标站三列栅格: Logo 2/12 | 菜单 8/12 | 搜索 2/12), 仅 PC/平板 */
/* !important 覆盖 Bootstrap .navbar-collapse.collapse{display:block!important} */
@media (min-width: 768px) {
  /* 目标站 Logo 列 (对齐目标菜单中心 x≈952 / 搜索框左缘 x≈1481) */
  .cms-navbar .navbar-header {
    flex: 0 0 201px;
  }
  .cms-navbar .navbar-collapse {
    display: flex !important;
    align-items: stretch;
    flex: 1;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    border: none;
    overflow: visible;
  }
}
/* Logo: 目标站 col-sm-2 (250px) 内 600x239 图, 右侧留白 32.4% → 显示约 169x67px */
.cms-navbar .cms-brand {
  height: 67px;
  padding: 0;
  font-size: 0;
  display: flex;
  align-items: center;
}
.cms-navbar .cms-brand img {
  height: 67px;
  width: auto;
}
/* Tab 菜单 (目标站 module_703651626): 居中, 每项 120x60, 16px, #333, 悬停/选中蓝色+3px下划线 */
.cms-navbar .cms-menu {
  margin: 0;
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-self: flex-end;
}
.cms-navbar .cms-menu > li {
  float: none;
  display: inline-block;
}
.cms-navbar .cms-menu > li > a {
  display: block;
  width: 120px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  color: #333333;
  font-size: 16px;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
  font-weight: normal;
  background: none !important;
  border-bottom: 3px solid transparent;
  transition: none;
}
.cms-navbar .cms-menu > li > a:hover,
.cms-navbar .cms-menu > li > a:focus,
.cms-navbar .cms-menu > li > a.active {
  color: #0071bc;
  background: none !important;
}
.cms-navbar .cms-menu > li:hover > a,
.cms-navbar .cms-menu > li.active > a,
.cms-navbar .cms-menu > li.cms-hover > a {
  color: #0071bc;
  background: none !important;
  border-bottom: 3px solid #0071bc;
}
/* ===== 全宽悬停下拉面板 (复刻目标站 tab_content_clone) =====
   目标站实测: 通栏 #f8f8f8 底, 阴影 0 2px 2px rgba(0,0,0,.1), 无上边框,
   紧贴菜单行下缘展开, 高度动画展开 (~0.3s) */
.cms-mega-panel {
  position: absolute;
  top: calc(100% - var(--cms-nav-pad-b, 11px));
  left: 0;
  right: 0;
  height: 0;
  overflow: hidden;
  background: #f8f8f8;
  z-index: 9990;
  transition: height 0.3s ease;
}
.cms-mega-panel.open {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.cms-mega-panel .container {
  /* 覆盖 .cms-navbar .container 的 flex 布局 (面板容器为普通块级, 行占满宽度) */
  display: block;
  width: 100%;
  max-width: 1500px;
  /* 目标站面板实测高 ~193px: 上下留白 ≈10px */
  padding-top: 10px;
  padding-bottom: 10px;
}
.cms-mega-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
/* 三列结构 (目标站 Tab2138: 标题列/链接列/图片列各占 33.3333%) */
.cms-mega-group {
  flex: 1 1 0;
  min-width: 0;
}
/* 栏目标题 (目标站 module_714474832: 16px 加粗 #333 + 3px 蓝色左杠, margin-top 2.7%≈13px) */
.cms-mega-title {
  margin: 13px 0 4px;
  padding-left: 10px;
  border-left: 3px solid rgba(0, 113, 188, 0.96);
  font-size: 16px;
  font-weight: 700;
  color: #333;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
  line-height: 1.5;
}
/* 面板链接 (目标站 main-class-item 实测: 14px #333, 36px 行高, 左 4px, 悬停蓝) */
.cms-mega-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cms-mega-links li {
  break-inside: avoid;
}
.cms-mega-links li > a {
  display: block;
  height: 36px;
  line-height: 36px;
  padding-left: 4px;
  font-size: 14px;
  color: #333;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cms-mega-links li > a:hover,
.cms-mega-links li > a:focus {
  color: rgba(0, 113, 188, 0.96);
}
/* 右侧宣传图 (目标站 module_714971918: 33.33% 列内 margin-left 22.31%≈110px / margin-top 1.42%≈7px) */
.cms-mega-media {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  box-sizing: border-box;
  /* 110px ≈ 整行 7.5% */
  padding-left: 7.5%;
  margin-top: 7px;
}
.cms-mega-media a {
  display: block;
  line-height: 0;
}
.cms-mega-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  border: none;
}
/* ===== 卡片式面板 (目标站关于我们 tabPane_6653: 4 列 116x86 图 + 下方居中文字链接, 右侧标题列) ===== */
.cms-mega-cards {
  display: flex;
  align-items: flex-start;
}
.cms-mega-card {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  /* 目标站: 图片距面板顶 ≈52px */
  padding-top: 42px;
}
.cms-mega-card > a {
  display: inline-block;
  text-decoration: none;
}
.cms-mega-card-img {
  display: block;
  width: 116px;
  height: 86px;
  margin: 0 auto;
  overflow: hidden;
  line-height: 0;
}
.cms-mega-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
.cms-mega-card-name {
  display: block;
  /* 目标站: 图下间距 ≈21px, 文字 16px 高 */
  margin-top: 21px;
  font-size: 14px;
  line-height: 16px;
  color: #333;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
  white-space: nowrap;
}
.cms-mega-card > a:hover .cms-mega-card-name,
.cms-mega-card > a:focus .cms-mega-card-name {
  color: rgba(0, 113, 188, 0.96);
}
/* 右侧标题列 (目标站: 标题距顶 ≈15px, 下方 40x40 小图) */
.cms-mega-cards-side {
  flex: 0 0 330px;
  max-width: 330px;
  box-sizing: border-box;
  padding-left: 30px;
}
.cms-mega-side-img {
  display: block;
  width: 40px;
  height: 40px;
  margin: 18px 0 0 10px;
  overflow: hidden;
  line-height: 0;
}
.cms-mega-side-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
/* 手机端内联二级菜单 (桌面端由全宽面板接管) */
.cms-menu-sub {
  display: none;
}
/* 搜索框 (目标站实测 @1920: x≈1481-1702, 宽219, 高40, 上偏移12px) */
.cms-navbar .cms-nav-search {
  position: relative;
  flex: 0 0 auto;
  align-self: flex-start;
  width: 220px;
  margin: 12px -12px 0 0;
}
.cms-navbar .cms-nav-search form {
  display: flex;
  align-items: center;
  margin: 0;
  position: relative;
  height: 40px;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  background: #fff;
}
.cms-navbar .cms-nav-search input {
  flex: 1;
  min-width: 0;
  height: 38px;
  line-height: 38px;
  padding: 0 0 0 16px;
  border: none;
  border-radius: 20px 0 0 20px;
  font-size: 14px;
  color: #333;
  outline: none;
  background: #fff;
  box-shadow: none;
}
.cms-navbar .cms-nav-search input::placeholder {
  color: #bababa;
}
.cms-navbar .cms-nav-search button {
  width: 62px;
  height: 38px;
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  padding: 0;
  cursor: pointer;
}
.cms-navbar .cms-nav-search button:hover {
  color: #333;
}
.cms-navbar .navbar-toggle {
  margin-top: 13px;
  margin-bottom: 13px;
}
.cms-navbar .navbar-toggle .icon-bar {
  background: #0071BC;
}
/* ===== PC 轮播 (目标站 module_703651334): 图片驱动高度(1920x650), 1400px 内容层, 大字白文 ===== */
.cms-hero {
  position: relative;
}
.cms-hero .swiper-slide {
  position: relative;
  overflow: hidden;
}
.cms-hero .cms-hero-slide {
  position: relative;
  overflow: hidden;
  /* 1920x650 图片比例 33.854% */
  height: 33.854vw;
  min-height: 400px;
}
.cms-hero .cms-hero-slide .cms-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 1400px 内容层 (目标站 SubContainer: absolute 居中, max-width 1400px)
   文字与 MORE 按钮纵向流动排列, 按钮始终紧跟文字下方, 不重叠不错位 */
.cms-hero .cms-hero-slide .cms-hero-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cms-hero .cms-hero-slide--left .cms-hero-container {
  align-items: flex-start;
}
.cms-hero .cms-hero-slide--center .cms-hero-container {
  align-items: center;
}
/* 屏1 (金马世纪定位): 文字块距顶约 16% 视高 (=5.42vw, 轮播高 33.854vw), 左对齐; 52px 粗体白字 x2 行 + 32px 副行 */
.cms-hero .cms-hero-slide--left .cms-hero-text {
  width: 100%;
  margin-top: 5.42vw;
  padding: 10px;
}
.cms-hero .cms-hero-line-lg {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.cms-hero .cms-hero-line-md {
  margin: 0;
  font-size: 32px;
  color: #fff;
  line-height: 1.5;
}
/* 屏1 MORE 按钮: 居中文案正下方流动, 180x50, #055c9f */
.cms-hero .cms-hero-slide--left .cms-hero-btn-blue {
  display: block;
  width: 180px;
  height: 50px;
  line-height: 50px;
  margin: 18px auto 0;
  background: #055c9f;
  color: #fff;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  border-radius: 0;
  transition: background 0.3s;
}
.cms-hero .cms-hero-slide--left .cms-hero-btn-blue:hover {
  background: #0071bc;
  color: #fff;
  text-decoration: none;
}
/* 屏2 (金马世纪经营理念): 文字块距顶约 14% 视高 (=4.74vw), 居中 60px 粗体 x2 行 + 32px 副行 + 居中按钮 */
.cms-hero .cms-hero-slide--center .cms-hero-text {
  width: 100%;
  margin-top: 4.74vw;
  text-align: center;
  padding: 10px;
}
.cms-hero .cms-hero-line-xl {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
/* 屏2 居中 MORE 按钮: 跟随文字下方流动居中 (目标站 module_703651363) */
.cms-hero .cms-hero-slide--center .cms-hero-btn-ghost {
  width: 100%;
  text-align: center;
  margin-top: 16px;
}
.cms-hero .cms-hero-slide--center .cms-hero-btn-ghost > span {
  display: inline-block;
  width: 150px;
  height: 50px;
  line-height: 48px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #fff;
  color: #055c9f;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  transition: background 0.3s, color 0.3s;
}
.cms-hero .cms-hero-slide--center .cms-hero-btn-ghost:hover > span {
  background: #055c9f;
  color: #fff;
}
/* 分页/箭头 (目标站 Slick layout-103: cyan 圆点 + 30x70 半透明品牌蓝箭头带相邻页缩略图) */
.cms-hero .swiper-pagination {
  bottom: 32px;
}
.cms-hero .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 20px;
}
.cms-hero .swiper-pagination-bullet-active {
  background: #139d8f;
  opacity: 1;
}
.cms-hero .cms-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  /* 目标站 slick-prev/next: 30x70 半透明品牌蓝 + 相邻页缩略图 (layout-103: 缩略图平时隐藏, 悬停展开 130px 显示) */
  width: 30px;
  height: 70px;
  background: rgba(0, 112, 192, 0.49);
  color: #fff;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.25s, width 0.25s;
}
.cms-hero .cms-hero-arrow > i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.cms-hero .cms-hero-arrow:hover {
  background: rgba(0, 112, 192, 0.78);
  width: 130px;
}
.cms-hero .cms-hero-arrow.cms-hero-prev {
  left: 30px;
}
.cms-hero .cms-hero-arrow.cms-hero-prev > i {
  left: 3px;
}
.cms-hero .cms-hero-arrow.cms-hero-next {
  right: 30px;
}
.cms-hero .cms-hero-arrow.cms-hero-next > i {
  right: 3px;
}
.cms-hero .cms-hero-arrow-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  overflow: hidden;
  z-index: 1;
  display: none;
}
.cms-hero .cms-hero-arrow-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cms-hero .cms-hero-prev .cms-hero-arrow-thumb {
  right: 0;
}
.cms-hero .cms-hero-next .cms-hero-arrow-thumb {
  left: 0;
}
.cms-hero .cms-hero-arrow:hover .cms-hero-arrow-thumb {
  display: block;
}
/* ===== 手机轮播 (金马世纪竖版背景图): 40px #21a6ff 标题 + 18px 白副标 + 更多按钮 ===== */
.cms-hero-m .swiper-slide {
  position: relative;
  overflow: hidden;
}
.cms-hero-m .cms-hero-slide {
  position: relative;
  overflow: hidden;
  color: #fff;
  /* 竖版背景图 1248x2048 (比例0.61), 高约 105vw 展示完整主体 */
  height: 105vw;
  min-height: 320px;
  max-height: 92vh;
}
.cms-hero-m .cms-hero-slide .cms-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cms-hero-m .cms-hero-slide .cms-hero-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.cms-hero-m .cms-hero-slide .cms-hero-title {
  font-size: 34px;
  font-weight: 700;
  color: #21a6ff;
  margin: 0 0 14px;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.cms-hero-m .cms-hero-slide .cms-hero-sub {
  font-size: 17px;
  color: #fff;
  margin: 0 0 26px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.cms-hero-m .cms-hero-slide .cms-hero-btn {
  display: inline-block;
  width: 175px;
  height: 42px;
  line-height: 40px;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
}
.cms-hero-m .cms-hero-slide .cms-hero-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #29abe2;
  color: #fff;
}
.cms-hero-m .swiper-pagination {
  bottom: 14px;
}
.cms-hero-m .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px;
}
.cms-hero-m .swiper-pagination-bullet-active {
  background: #139d8f;
  opacity: 1;
}
/* (原口号带轮播已并入 PC 轮播 .cms-hero — 目标站口号带即 PC 首屏轮播 module_703651334) */
.cms-main {
  min-height: 60vh;
}
.cms-section {
  padding: 60px 0;
}
.cms-section.cms-section-gray {
  background: #f5f6f8;
}
.cms-section-head {
  text-align: center;
  margin-bottom: 44px;
}
.cms-section-head .cms-section-tag {
  font-size: 16px;
  color: #999;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.cms-section-head h2 {
  font-size: 44px;
  font-weight: 700;
  color: #22272e;
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: 2px;
}
.cms-section-head .cms-section-divider {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #0071BC;
  line-height: 1;
  letter-spacing: 8px;
}
.cms-section-head .cms-more {
  display: inline-block;
  margin-left: 16px;
  font-size: 13px;
  color: #999;
  vertical-align: middle;
}
.cms-section-head .cms-more:hover {
  color: #0071BC;
}
/* ===== 服务范围标题区 (目标站 module_703651635/703651394: 白底, 上留白 2.14%, 48px 标题 + 装饰图 115x36) ===== */
.cms-service-head {
  background: #fff;
  padding-top: 30px;
}
.cms-title-deco {
  text-align: center;
  margin-bottom: 0;
}
.cms-title-deco h2 {
  font-size: 48px;
  font-weight: 400;
  color: #333;
  margin: 0 0 10px;
  line-height: 1.4;
}
.cms-title-deco img {
  display: inline-block;
  width: 115px;
  height: auto;
}
/* ===== 服务范围内容区 (目标站 module_705879962: 1400px 容器, 1398x590 背景图) ===== */
.cms-service {
  background: #0b2742;
  text-align: center;
}
.cms-service .cms-service-inner {
  max-width: 1400px;
  margin: 0 auto;
  background: url('/uploads/migrated/202608/svc-cards/svc-bg.jpg') no-repeat top center / cover;
}
/* 副标带 (目标站 module_705879978: rgba(0,0,0,0.57) 底, 上下留白 5%, 左右 11.43%, 26px 白字) */
.cms-service .cms-service-sub {
  margin: 70px 11.4286% 70px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.57);
  color: #fff;
  font-size: 26px;
  line-height: 1.5;
}
/* 5 列卡片 (目标站 module_705879983: 行左右 2.14% 下 7.14%, 卡片宽 calc((99%-4px)/5), 图 70%, 24px 白字 pt 18) */
.cms-service .cms-service-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0 2.1429% 100px;
}
.cms-service .cms-service-card {
  flex: 1 1 0;
  width: calc((99% - 4px) / 5);
  max-width: calc((99% - 4px) / 5);
  margin-right: 1px;
  padding: 0 15px;
  background: none;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cms-service .cms-service-card:last-child {
  margin-right: 0;
}
.cms-service .cms-service-card .cms-service-card-icon {
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  box-sizing: content-box;
}
.cms-service .cms-service-card .cms-service-card-icon img {
  width: 100%;
  height: auto;
}
.cms-service .cms-service-card .cms-service-card-name {
  padding-top: 18px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}
.cms-service .cms-service-card:hover {
  text-decoration: none;
  background: none;
}
.cms-service .cms-service-card:hover .cms-service-card-name {
  color: #fff;
}
.cms-product {
  background: #fff;
  padding: 60px 0 0;
}
.cms-product .cms-product-head {
  text-align: center;
  margin-bottom: 36px;
}
.cms-product .cms-product-head h2 {
  font-size: 48px;
  font-weight: 700;
  color: #22272e;
  margin: 0 0 10px;
  letter-spacing: 2px;
  line-height: 1.2;
}
.cms-product .cms-product-head img {
  display: inline-block;
  max-width: 200px;
}
.cms-product .cms-product-accordion {
  display: flex;
  width: 100%;
  height: 40vw;
  min-height: 320px;
  max-height: 560px;
  overflow: hidden;
}
.cms-product .cms-product-panel {
  position: relative;
  flex: 0 0 12%;
  overflow: hidden;
  display: block;
  cursor: pointer;
  color: #fff;
  transition: flex-basis 0.35s ease-in-out;
  text-decoration: none;
}
.cms-product .cms-product-panel.active {
  flex: 0 0 40%;
}
.cms-product .cms-product-panel .cms-product-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cms-product .cms-product-panel .cms-product-panel-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 45, 0.35) 0%, rgba(0, 20, 45, 0.55) 100%);
}
.cms-product .cms-product-collapsed {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 8px;
  transition: opacity 0.3s;
}
.cms-product .cms-product-collapsed .cms-product-icon-sm {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.cms-product .cms-product-collapsed .cms-product-name {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 6px;
}
.cms-product .cms-product-collapsed .cms-product-en {
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
  opacity: 0.85;
  word-break: break-word;
}
.cms-product .cms-product-expanded {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  display: flex;
  align-items: center;
}
.cms-product .cms-product-expanded .cms-product-expanded-inner {
  width: 100%;
  box-sizing: border-box;
  padding: 0 8% 0 9%;
}
.cms-product .cms-product-expanded .cms-product-expanded-inner .cms-product-icon-lg {
  width: 56px;
  height: 56px;
  display: block;
  margin-bottom: 18px;
}
.cms-product .cms-product-expanded .cms-product-expanded-inner .cms-product-name {
  display: block;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
}
.cms-product .cms-product-expanded .cms-product-expanded-inner .cms-product-name .cms-product-dash {
  display: block;
  font-size: 24px;
  color: #fff;
  line-height: 1;
  margin-top: 2px;
}
.cms-product .cms-product-expanded .cms-product-expanded-inner .cms-product-desc-line {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 1.9;
}
.cms-product .cms-product-expanded .cms-product-expanded-inner .cms-product-go {
  display: inline-block;
  margin-top: 22px;
}
.cms-product .cms-product-expanded .cms-product-expanded-inner .cms-product-go img {
  width: 36px;
  height: 36px;
}
.cms-product .cms-product-panel.active .cms-product-collapsed {
  opacity: 0;
}
.cms-product .cms-product-panel.active .cms-product-expanded {
  opacity: 1;
  pointer-events: auto;
}
.cms-about {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -12px;
}
.cms-about .cms-about-text {
  flex: 1 1 460px;
  margin: 12px;
}
.cms-about .cms-about-text .cms-about-en {
  color: #21a6ff;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cms-about .cms-about-text .cms-about-cn {
  font-size: 28px;
  font-weight: 700;
  color: #1b57ed;
  margin: 6px 0 14px;
}
.cms-about .cms-about-text p {
  color: #666;
  font-size: 14px;
  line-height: 2;
}
.cms-about .cms-about-img {
  flex: 1 1 420px;
  margin: 12px;
}
.cms-about .cms-about-img img {
  width: 100%;
  border-radius: 6px;
}
.cms-about .cms-about-more {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 30px;
  border: 1px solid #0071BC;
  border-radius: 22px;
  color: #0071BC;
  font-size: 14px;
  letter-spacing: 2px;
}
.cms-about .cms-about-more:hover {
  background: #0071BC;
  color: #fff;
}
.cms-about-cards {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -12px 0;
}
.cms-about-cards .cms-about-card {
  flex: 1 1 22%;
  min-width: 150px;
  max-width: 25%;
  margin: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s;
}
.cms-about-cards .cms-about-card img {
  width: 100%;
  max-width: 120px;
  margin-bottom: 12px;
}
.cms-about-cards .cms-about-card span {
  font-size: 16px;
  color: #333;
  transition: color 0.2s;
}
.cms-about-cards .cms-about-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
}
.cms-about-cards .cms-about-card:hover span {
  color: #0071BC;
}
.cms-news-home .cms-news-row {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}
.cms-news-home .cms-news-row > a {
  flex: 1 1 31%;
  max-width: 31%;
  min-width: 260px;
  margin: 12px;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #333;
}
.cms-news-home .cms-news-row > a:hover {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.cms-news-home .cms-news-row > a .cms-news-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.cms-news-home .cms-news-row > a .cms-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.cms-news-home .cms-news-row > a:hover .cms-news-img img {
  transform: scale(1.06);
}
.cms-news-home .cms-news-row > a .cms-news-body {
  padding: 18px 20px 22px;
}
.cms-news-home .cms-news-row > a .cms-news-title {
  font-size: 16px;
  font-weight: 600;
  color: #22272e;
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cms-news-home .cms-news-row > a time {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}
.cms-news-home .cms-news-row > a .cms-news-summary {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cms-news-home .cms-news-more {
  text-align: center;
  margin-top: 30px;
}
.cms-news-home .cms-news-more a {
  display: inline-block;
  padding: 8px 32px;
  border: 1px solid #0071BC;
  border-radius: 22px;
  color: #0071BC;
  font-size: 14px;
  letter-spacing: 2px;
}
.cms-news-home .cms-news-more a:hover {
  background: #0071BC;
  color: #fff;
}
.cms-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -10px;
}
.cms-logos .cms-logo-item {
  flex: 0 0 18%;
  max-width: 18%;
  margin: 10px;
  padding: 16px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #f0f2f5;
  border-radius: 4px;
  transition: box-shadow 0.2s;
}
.cms-logos .cms-logo-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.cms-logos .cms-logo-item img {
  max-width: 90%;
  max-height: 70%;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
}
.cms-logos .cms-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.cms-page-banner {
  background: linear-gradient(135deg, #0071BC 0%, #2b8fd6 100%);
  color: #fff;
  text-align: center;
  padding: 46px 0 40px;
}
.cms-page-banner h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 2px;
}
.cms-page-banner p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}
.cms-page-wrap {
  padding: 28px 0 50px;
}
.cms-breadcrumb {
  padding: 14px 0;
  margin-bottom: 22px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  color: #999;
}
.cms-breadcrumb a {
  color: #999;
}
.cms-breadcrumb a:hover {
  color: #0071BC;
}
.cms-breadcrumb .sep {
  margin: 0 8px;
  color: #ccc;
}
.cms-breadcrumb .current {
  color: #0071BC;
}
.cms-sidebar {
  background: #fff;
  border: 1px solid #f0f2f5;
  border-radius: 4px;
  margin-bottom: 22px;
  overflow: hidden;
}
.cms-sidebar .cms-sidebar-title {
  background: #0071BC;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 18px;
  text-align: center;
  letter-spacing: 2px;
}
.cms-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}
.cms-sidebar li a {
  display: block;
  padding: 11px 22px;
  color: #666;
  font-size: 14px;
  border-left: 3px solid transparent;
}
.cms-sidebar li a:hover {
  color: #0071BC;
  background: #f2f8fd;
  border-left-color: #0071BC;
}
.cms-sidebar li a.active {
  color: #0071BC;
  background: #f2f8fd;
  border-left-color: #0071BC;
  font-weight: 600;
}
.cms-content {
  background: #fff;
  border: 1px solid #f0f2f5;
  border-radius: 4px;
  padding: 26px 30px;
}
.cms-content .cms-content-title {
  font-size: 22px;
  font-weight: 700;
  color: #22272e;
  margin: 0 0 16px;
}
.cms-article-title {
  font-size: 26px;
  font-weight: 700;
  color: #22272e;
  text-align: center;
  margin: 10px 0 14px;
  line-height: 1.4;
}
.cms-article-meta {
  text-align: center;
  color: #999;
  font-size: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 24px;
}
.cms-article-meta span {
  margin: 0 10px;
}
.cms-article-content {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
}
.cms-article-content img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 12px auto;
  border-radius: 4px;
}
.cms-article-content p {
  margin: 0 0 14px;
}
.cms-article-content h1,
.cms-article-content h2,
.cms-article-content h3,
.cms-article-content h4 {
  color: #22272e;
  margin: 22px 0 12px;
  line-height: 1.4;
}
.cms-article-content a {
  color: #0071BC;
}
.cms-article-content table {
  width: 100% !important;
  max-width: 100%;
  border-collapse: collapse;
}
.cms-article-content table td,
.cms-article-content table th {
  border: 1px solid #e5e5e5;
  padding: 8px 10px;
}
.cms-article-content ul,
.cms-article-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.cms-article-content [style*="width"],
.cms-article-content [style*="Width"] {
  width: auto !important;
  max-width: 100% !important;
}
.cms-prevnext {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid #f0f0f0;
  margin-top: 10px;
}
.cms-prevnext a {
  display: block;
  width: 48%;
  min-width: 220px;
  padding: 10px 14px;
  background: #f5f6f8;
  border-radius: 4px;
  font-size: 13px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cms-prevnext a:hover {
  background: #eef4fa;
  color: #0071BC;
}
.cms-prevnext a.next {
  text-align: right;
  margin-left: auto;
}
.cms-product-detail {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.cms-product-detail .cms-product-detail-cover {
  flex: 1 1 320px;
  margin: 15px;
  text-align: center;
}
.cms-product-detail .cms-product-detail-cover img {
  max-width: 100%;
  border-radius: 6px;
}
.cms-product-detail .cms-product-detail-info {
  flex: 1 1 380px;
  margin: 15px;
}
.cms-product-detail .cms-product-detail-name {
  font-size: 24px;
  font-weight: 700;
  color: #22272e;
  margin-bottom: 10px;
}
.cms-product-detail .cms-product-detail-summary {
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.cms-product-detail .cms-product-detail-specs {
  background: #f5f6f8;
  border-radius: 4px;
  padding: 16px 20px;
}
.cms-product-detail .cms-product-detail-specs h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0071BC;
  margin: 0 0 10px;
}
.cms-product-detail .cms-product-detail-specs .spec-item {
  font-size: 13px;
  color: #666;
  padding: 5px 0;
  border-bottom: 1px dashed #e5e5e5;
}
.cms-product-detail .cms-product-detail-specs .spec-item:last-child {
  border: none;
}
.cms-list-item {
  display: flex;
  background: #fff;
  border: 1px solid #f0f2f5;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 18px;
  transition: box-shadow 0.2s;
}
.cms-list-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.cms-list-item .cms-list-thumb {
  flex: 0 0 200px;
  background: #f5f6f8;
}
.cms-list-item .cms-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cms-list-item .cms-list-main {
  flex: 1;
  padding: 18px 22px;
  min-width: 0;
}
.cms-list-item .cms-list-title {
  font-size: 17px;
  font-weight: 600;
  color: #22272e;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cms-list-item .cms-list-meta {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 8px;
}
.cms-list-item .cms-list-summary {
  font-size: 13px;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cms-pagination {
  text-align: center;
  padding: 20px 0 40px;
}
.cms-no-data {
  text-align: center;
  color: #999;
  font-size: 15px;
  padding: 60px 0;
}
.cms-pro-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 10px 60px;
  background: #fff;
}
.cms-pro-wrap .cms-pro-main {
  padding: 0 10px;
}
.cms-pro-wrap .cms-pro-name {
  font-size: 32px;
  font-weight: 700;
  color: #0070c0;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
.cms-pro-wrap .cms-pro-split {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin: 28px 0;
}
.cms-pro-wrap .cms-pro-cover {
  text-align: center;
  margin-bottom: 20px;
}
.cms-pro-wrap .cms-pro-cover img {
  max-width: 100%;
  height: auto;
}
.cms-pro-wrap .cms-pro-summary {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 16px;
}
.cms-pro-wrap .cms-pro-specs {
  background: #f5f6f8;
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.cms-pro-wrap .cms-pro-specs h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0071BC;
  margin: 0 0 10px;
}
.cms-pro-wrap .cms-pro-specs .spec-item {
  font-size: 13px;
  color: #666;
  padding: 5px 0;
  border-bottom: 1px dashed #e5e5e5;
}
.cms-pro-wrap .cms-pro-specs .spec-item:last-child {
  border: none;
}
.cms-pro-wrap .cms-pro-content {
  font-size: 16px;
  color: #333;
  line-height: 2em;
  text-align: justify;
}
.cms-pro-wrap .cms-pro-content p {
  margin: 0 0 14px;
}
.cms-pro-wrap .cms-pro-content img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 12px auto;
}
.cms-pro-wrap .cms-pro-content strong {
  color: #0070c0;
}
.cms-pro-wrap .cms-pro-content ul,
.cms-pro-wrap .cms-pro-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.cms-pro-wrap .cms-pro-content table {
  width: 100% !important;
  max-width: 100%;
  border-collapse: collapse;
}
.cms-pro-wrap .cms-pro-content table td,
.cms-pro-wrap .cms-pro-content table th {
  border: 1px solid #e5e5e5;
  padding: 8px 10px;
}
.cms-pro-wrap .cms-pro-content [style*="width"],
.cms-pro-wrap .cms-pro-content [style*="Width"] {
  width: auto !important;
  max-width: 100% !important;
}
.cms-pro-wrap .cms-pro-prevnext {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid #f0f0f0;
  margin-top: 10px;
}
.cms-pro-wrap .cms-pro-prevnext a,
.cms-pro-wrap .cms-pro-prevnext span {
  display: block;
  width: 48%;
  min-width: 220px;
  padding: 10px 14px;
  background: #f5f6f8;
  border-radius: 4px;
  font-size: 13px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cms-pro-wrap .cms-pro-prevnext a:hover,
.cms-pro-wrap .cms-pro-prevnext span:hover {
  background: #eef4fa;
  color: #0071BC;
  text-decoration: none;
}
.cms-pro-wrap .cms-pro-prevnext a.next,
.cms-pro-wrap .cms-pro-prevnext span.next {
  text-align: right;
  margin-left: auto;
}
.cms-pro-wrap .cms-pro-prevnext a.empty,
.cms-pro-wrap .cms-pro-prevnext span.empty {
  color: #bbb;
}
.cms-pro-wrap .cms-pro-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.cms-pro-wrap .cms-pro-share .cms-pro-share-label {
  font-size: 13px;
  color: #999;
}
.cms-pro-wrap .cms-pro-share .cms-share-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f6f8;
  color: #666;
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}
.cms-pro-wrap .cms-pro-share .cms-share-btn .cms-share-tip {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 10;
}
.cms-pro-wrap .cms-pro-share .cms-share-btn:hover {
  background: #0071BC;
  color: #fff;
  text-decoration: none;
}
.cms-pro-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 10px 20px;
}
.cms-card-grid {
  margin: -10px;
}
.cms-card {
  display: block;
  background: #fff;
  border: 1px solid #f0f2f5;
  border-radius: 6px;
  overflow: hidden;
  margin: 10px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.cms-card:hover {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  text-decoration: none;
}
.cms-card .cms-card-img {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background: #f5f6f8;
}
.cms-card .cms-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.cms-card .cms-card-img .cms-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: #cfd8e3;
}
.cms-card .cms-card-title {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #22272e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  transition: color 0.2s;
}
.cms-card:hover .cms-card-img img {
  transform: scale(1.06);
}
.cms-card:hover .cms-card-title {
  color: #0071BC;
}
.cms-related {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px 50px;
}
.cms-related .cms-related-title {
  font-size: 22px;
  font-weight: 700;
  color: #22272e;
  text-align: center;
  margin: 0 0 20px;
}
.cms-news-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 10px 20px;
}
.cms-news-list .cms-news-container {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cms-news-list .cms-news-item {
  border-bottom: 1px solid #f0f0f0;
}
.cms-news-list .cms-news-item:last-child {
  border-bottom: none;
}
.cms-news-list .cms-news-item:hover {
  background: #fafbfc;
}
.cms-news-list .cms-news-item-link {
  display: flex;
  align-items: center;
  padding: 24px 10px;
  color: #333;
}
.cms-news-list .cms-news-item-link:hover {
  text-decoration: none;
}
.cms-news-list .cms-news-date {
  flex: 0 0 110px;
  text-align: center;
  margin-right: 30px;
}
.cms-news-list .cms-news-date .cms-news-date-md {
  font-size: 32px;
  font-weight: 700;
  color: #d0021b;
  line-height: 1.1;
}
.cms-news-list .cms-news-date .cms-news-date-md span {
  margin: 0 2px;
}
.cms-news-list .cms-news-date .cms-news-date-y {
  font-size: 13px;
  color: #999;
  margin-top: 6px;
}
.cms-news-list .cms-news-main {
  flex: 1;
  min-width: 0;
}
.cms-news-list .cms-news-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  color: #22272e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.cms-news-list .cms-news-desc {
  margin: 0;
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cms-news-list .cms-news-item-link:hover .cms-news-title {
  color: #0071BC;
}
.cms-news-detail-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 10px 50px;
}
.cms-news-detail-wrap .cms-news-detail {
  background: #fff;
  padding: 30px 36px;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: #22272e;
  margin: 0 0 16px;
  line-height: 1.4;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-meta {
  font-size: 13px;
  color: #999;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 24px;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-meta span {
  margin-right: 18px;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content {
  font-size: 16px;
  color: #333;
  line-height: 2em;
  text-align: justify;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content p {
  margin: 0 0 14px;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 12px auto;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content strong {
  color: #0070c0;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content h1,
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content h2,
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content h3,
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content h4 {
  color: #0070c0;
  margin: 22px 0 12px;
  line-height: 1.4;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content ul,
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content table {
  width: 100% !important;
  max-width: 100%;
  border-collapse: collapse;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content table td,
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content table th {
  border: 1px solid #e5e5e5;
  padding: 8px 10px;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content [style*="width"],
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-content [style*="Width"] {
  width: auto !important;
  max-width: 100% !important;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-prevnext {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0 0;
  border-top: 1px solid #f0f0f0;
  margin-top: 24px;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-prevnext a {
  display: block;
  width: 48%;
  min-width: 200px;
  padding: 10px 14px;
  background: #f5f6f8;
  border-radius: 4px;
  font-size: 13px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-prevnext a:hover {
  background: #eef4fa;
  color: #0071BC;
  text-decoration: none;
}
.cms-news-detail-wrap .cms-news-detail .cms-news-detail-prevnext a.next {
  text-align: right;
  margin-left: auto;
}
.cms-news-detail-wrap .cms-news-related .cms-news-related-title {
  background: #d0021b;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  padding: 14px 0;
  margin: 0;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}
.cms-news-detail-wrap .cms-news-related .cms-news-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}
.cms-news-detail-wrap .cms-news-related .cms-news-related-item {
  display: flex;
  padding: 16px 14px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  transition: background 0.2s;
}
.cms-news-detail-wrap .cms-news-related .cms-news-related-item:hover {
  background: #fafbfc;
  text-decoration: none;
}
.cms-news-detail-wrap .cms-news-related .cms-news-related-img {
  flex: 0 0 74px;
  height: 58px;
  overflow: hidden;
  background: #f5f6f8;
  margin-right: 12px;
}
.cms-news-detail-wrap .cms-news-related .cms-news-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cms-news-detail-wrap .cms-news-related .cms-news-related-body {
  flex: 1;
  min-width: 0;
}
.cms-news-detail-wrap .cms-news-related .cms-news-related-name {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #22272e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.cms-news-detail-wrap .cms-news-related time {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
}
.cms-news-detail-wrap .cms-news-related .cms-news-related-desc {
  margin: 0;
  font-size: 12px;
  color: #999;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cms-news-detail-wrap .cms-news-related .cms-news-related-item:hover .cms-news-related-name {
  color: #0071BC;
}
.cms-inner-banner {
  position: relative;
  overflow: hidden;
}
.cms-inner-banner .cms-inner-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.cms-inner-banner .cms-inner-banner-img--m {
  display: none;
}
.cms-inner-banner .cms-inner-banner-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.cms-inner-banner .cms-inner-banner-en {
  font-size: 30px;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 4px;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}
.cms-inner-banner .cms-inner-banner-cn {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.cms-pagination .pagination {
  margin: 0;
}
.cms-pagination li a,
.cms-pagination li span {
  color: #555;
  border-radius: 4px !important;
  margin: 0 3px;
  border: 1px solid #e5e5e5;
}
.cms-pagination .active a,
.cms-pagination .active a:hover {
  background: #0071BC;
  border-color: #0071BC;
  color: #fff;
}
.cms-footer {
  background: #1a2b3c;
  color: #b9c4cf;
  font-size: 13px;
  margin-top: 0;
}
.cms-footer .cms-footer-main {
  padding: 44px 0 26px;
}
.cms-footer .cms-footer-col {
  margin-bottom: 20px;
}
.cms-footer .cms-footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 2;
}
.cms-footer .cms-footer-contact {
  line-height: 2.1;
  font-size: 14px;
}
.cms-footer .cms-footer-contact i {
  color: #21a6ff;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}
.cms-footer .cms-footer-contact a {
  color: #b9c4cf;
}
.cms-footer .cms-footer-contact a:hover {
  color: #21a6ff;
}
.cms-footer .cms-footer-qr {
  text-align: center;
}
.cms-footer .cms-footer-qr img {
  width: 120px;
  height: 120px;
  background: #fff;
  padding: 6px;
  border-radius: 4px;
}
.cms-footer .cms-footer-qr p {
  margin: 8px 0 0;
  color: #8b96a3;
}
.cms-footer .cms-footer-links a {
  display: block;
  margin-bottom: 10px;
  max-width: 160px;
}
.cms-footer .cms-footer-links a img {
  max-width: 100%;
  height: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.cms-footer .cms-footer-links a:hover img {
  opacity: 1;
}
.cms-footer .cms-footer-social {
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
}
.cms-footer .cms-footer-social img {
  width: 38px;
  height: 38px;
  margin: 4px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.cms-footer .cms-footer-social img:hover {
  opacity: 1;
}
.cms-footer .cms-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  text-align: center;
  color: #8b96a3;
  font-size: 12px;
}
.cms-footer .cms-footer-bottom a {
  color: #8b96a3;
}
.cms-footer .cms-footer-bottom a:hover {
  color: #fff;
}
/* ===== 右侧悬浮客服 (fixed right:20px top:250px, 3 个白底方钮) ===== */
.cms-float-service {
  position: fixed;
  right: 20px;
  top: 250px;
  z-index: 4001;
}
.cms-float-service .cms-float-btns {
  float: left;
}
.cms-float-service .cms-float-btn {
  display: block;
  width: 48px;
  height: 48px;
  line-height: 46px;
  background: #fff;
  border: 1px solid #d1d1d1;
  color: #999;
  font-size: 22px;
  text-align: center;
  margin-top: -1px;
  transition: color 0.2s;
}
.cms-float-service .cms-float-btn:first-child {
  margin-top: 0;
}
.cms-float-service .cms-float-btn:hover,
.cms-float-service .cms-float-btn.active {
  color: #1e88e5;
  text-decoration: none;
}
/* 回到顶部按钮 (目标站: 图标 rgb(0,113,188), 边框 #e1e1e1) */
.cms-float-service .cms-float-btn.cms-float-top {
  border-color: #e1e1e1;
}
.cms-float-service .cms-float-btn.cms-float-top i {
  color: #0071bc;
}
.cms-float-service .cms-float-btn.cms-float-top:hover,
.cms-float-service .cms-float-btn.cms-float-top.active {
  color: #1e88e5;
}
.cms-float-service .cms-float-btn.cms-float-top.active i {
  color: #1e88e5;
}
/* 悬停展开面板 (白底, 顶边 #1e88e5, 位于按钮列左侧, 向屏幕内侧展开) */
.cms-float-service .cms-float-panel {
  position: absolute;
  right: 55px;
  width: 190px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-top: 2px solid #1e88e5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  padding: 15px 18px;
  display: none;
  z-index: 4002;
}
.cms-float-service .cms-float-panel-open {
  display: block;
}
.cms-float-service .cms-float-panel-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.cms-float-service .cms-float-contact-item {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.6;
}
.cms-float-service .cms-float-contact-item em {
  display: block;
  font-style: normal;
  color: #999;
}
.cms-float-service .cms-float-contact-item span {
  color: #333;
}
.cms-float-service .cms-float-panel-qrcode {
  text-align: center;
}
.cms-float-service .cms-float-panel-qrcode img {
  width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid #f0f0f0;
  padding: 4px;
}
.cms-float-service .cms-float-panel-qrcode p {
  margin: 8px 0 0;
  font-size: 13px;
  color: #666;
}
@media (max-width: 1199px) {
  /* 平板: PC 轮播文字等比缩小 (目标站平台按宽度缩放模块字号) */
  .cms-hero .cms-hero-line-lg {
    font-size: 40px;
  }
  .cms-hero .cms-hero-line-md {
    font-size: 24px;
  }
  .cms-hero .cms-hero-line-xl {
    font-size: 44px;
  }
  .cms-hero .cms-hero-slide--left .cms-hero-btn-blue {
    width: 150px;
    height: 46px;
    line-height: 46px;
  }
  .cms-hero .cms-hero-slide--center .cms-hero-btn-ghost > span {
    width: 130px;
    height: 46px;
    line-height: 44px;
  }
  .cms-navbar .cms-nav-search {
    width: 170px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* 平板(目标站用横向滚动按钮防溢出, 这里压缩菜单项 + 菜单区横向可滚动防溢出) */
  .cms-navbar {
    --cms-nav-pad-b: 6px;
  }
  .cms-navbar .container {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .cms-navbar .navbar-header {
    flex: 0 0 150px;
  }
  .cms-navbar .navbar-collapse {
    min-width: 0;
  }
  .cms-navbar .cms-menu {
    justify-content: flex-start;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cms-navbar .cms-menu::-webkit-scrollbar {
    display: none;
  }
  .cms-navbar .cms-brand {
    height: 44px;
  }
  .cms-navbar .cms-brand img {
    height: 44px;
  }
  .cms-navbar .cms-menu > li > a {
    width: 82px;
    height: 52px;
    line-height: 52px;
    font-size: 14px;
  }
  .cms-navbar .cms-nav-search {
    width: 120px;
    margin-left: 6px;
    margin-top: 8px;
  }
  .cms-navbar .cms-nav-search input {
    padding-left: 10px;
  }
  .cms-navbar .cms-nav-search button {
    width: 40px;
  }
  .cms-hero .cms-hero-slide {
    min-height: 300px;
  }
  .cms-hero .cms-hero-line-lg {
    font-size: 28px;
  }
  .cms-hero .cms-hero-line-md {
    font-size: 18px;
  }
  .cms-hero .cms-hero-line-xl {
    font-size: 30px;
  }
  .cms-hero .cms-hero-slide--left .cms-hero-btn-blue {
    width: 120px;
    height: 40px;
    line-height: 40px;
  }
  .cms-hero .cms-hero-slide--center .cms-hero-btn-ghost > span {
    width: 110px;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
  }
  .cms-hero .cms-hero-text {
    padding: 6px;
  }
  .cms-title-deco h2 {
    font-size: 32px;
  }
  .cms-service .cms-service-sub {
    font-size: 18px;
    margin: 40px 6% 40px;
  }
  .cms-service .cms-service-grid {
    padding: 0 3% 60px;
  }
  .cms-service .cms-service-card .cms-service-card-name {
    font-size: 16px;
    padding-top: 12px;
  }
  .cms-product .cms-product-head h2 {
    font-size: 32px;
  }
  /* 平板: 卡片面板隐藏右侧标题列, 卡片压缩间距 */
  .cms-mega-cards-side {
    display: none;
  }
  .cms-mega-card {
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .cms-hero .cms-hero-line-lg {
    font-size: 32px;
  }
  .cms-hero .cms-hero-line-md {
    font-size: 20px;
  }
  .cms-hero .cms-hero-line-xl {
    font-size: 34px;
  }
  .cms-service .cms-service-sub {
    font-size: 20px;
    margin: 46px 8% 46px;
  }
  .cms-service .cms-service-grid {
    padding-bottom: 66px;
  }
  .cms-service .cms-service-card .cms-service-card-name {
    font-size: 18px;
  }
  .cms-section {
    padding: 42px 0;
  }
  .cms-section-head h2 {
    font-size: 32px;
  }
  .cms-title-deco h2 {
    font-size: 32px;
  }
  .cms-product {
    padding: 44px 0 0;
  }
  .cms-product .cms-product-head h2 {
    font-size: 36px;
  }
  .cms-product .cms-product-accordion {
    height: 46vw;
  }
  .cms-product .cms-product-collapsed .cms-product-name {
    font-size: 18px;
  }
  .cms-about-cards .cms-about-card {
    flex-basis: 45%;
    max-width: 46%;
  }
  .cms-news-home .cms-news-row > a {
    flex-basis: 47%;
    max-width: 47%;
  }
  .cms-logos .cms-logo-item {
    flex-basis: 23%;
    max-width: 23%;
  }
}
@media (max-width: 767px) {
  /* 手机: 复刻目标站头部 — logo左 + 电话/搜索圆钮 + 汉堡按钮, 菜单收进抽屉 */
  .cms-navbar .navbar-collapse {
    display: none;
  }
  .cms-navbar .navbar-collapse.in {
    display: block;
  }
  .cms-navbar .navbar-header {
    position: relative;
    border-bottom: 1px solid #e8e8e8;
  }
  .cms-navbar .cms-m-icons {
    position: absolute;
    right: 62px;
    top: 9px;
    white-space: nowrap;
  }
  .cms-navbar .cms-m-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 30px;
    margin-left: 10px;
    text-align: center;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    color: #666;
    font-size: 14px;
    background: #fff;
  }
  .cms-navbar .cms-m-icon:active,
  .cms-navbar .cms-m-icon:hover {
    color: #0071BC;
    border-color: #0071BC;
  }
  .cms-navbar .navbar-toggle {
    display: block;
    float: right;
    margin: 6px 0;
    padding: 12px 10px;
    border: none;
    background: none;
  }
  .cms-navbar .navbar-toggle .icon-bar {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #666;
    margin: 5px 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .cms-navbar .navbar-toggle:not(.collapsed) .icon-bar:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
  .cms-navbar .navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
  }
  .cms-navbar .navbar-toggle:not(.collapsed) .icon-bar:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
  .cms-navbar .container {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cms-navbar .cms-brand {
    height: 50px;
    padding: 0 15px;
  }
  .cms-navbar .cms-brand img {
    height: 32px;
  }
  .cms-navbar .cms-menu {
    display: block;
    margin: 0 -15px;
  }
  .cms-navbar .cms-menu > li {
    display: block;
  }
  .cms-navbar .cms-menu > li > a {
    position: relative;
    width: auto;
    height: auto;
    line-height: 24px;
    padding: 12px 18px;
    background: #fff;
    border-bottom: 1px solid #f4f6f8;
  }
  .cms-navbar .cms-menu > li:hover > a,
  .cms-navbar .cms-menu > li.active > a,
  .cms-navbar .cms-menu > li.cms-hover > a {
    border-bottom: 1px solid #f4f6f8;
  }
  /* 有子菜单的项: 右侧 +/− 展开符 (复刻目标站手风琴) */
  .cms-navbar .cms-menu > li.has-sub > a::before {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
    font-weight: normal;
  }
  .cms-navbar .cms-menu > li.has-sub.open > a::before {
    content: "−";
  }
  /* 手机端: 隐藏全宽悬停面板, 改用菜单内联二级 (点击展开) */
  .cms-mega-panel {
    display: none !important;
  }
  .cms-menu-sub {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fafafa;
  }
  .cms-navbar .cms-menu > li.open .cms-menu-sub {
    display: block;
  }
  .cms-menu-sub > li > a {
    display: block;
    padding: 10px 18px 10px 34px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
  }
  .cms-menu-sub > li > a:hover,
  .cms-menu-sub > li > a:active {
    color: #0071bc;
    background: #fff;
  }
  .cms-navbar .cms-nav-search {
    display: none;
  }
  /* 手机全屏搜索层 (复刻目标站 ModuleSearchGiant mobile) */
  .cms-m-search-layer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    background: #fff;
  }
  .cms-m-search-layer.show {
    display: block;
  }
  .cms-m-search-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    padding: 0 12px;
    border-bottom: 1px solid #eee;
  }
  .cms-m-search-back {
    width: 36px;
    font-size: 26px;
    color: #333;
    text-align: center;
  }
  .cms-m-search-input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .cms-m-search-input input {
    width: 100%;
    height: 34px;
    line-height: 34px;
    padding: 0 14px;
    border: 1px solid #d9d9d9;
    border-radius: 17px;
    background: #f5f5f5;
    font-size: 14px;
    outline: none;
  }
  .cms-m-search-go {
    margin-left: 10px;
    color: #0071BC;
    font-size: 15px;
  }
  /* 悬浮客服: 手机隐藏 (目标站手机端隐藏 ModuleOnLineServiceGiant) */
  .cms-float-service {
    display: none;
  }
  .cms-hero-m .cms-hero-slide {
    /* 竖版背景图: 保持 105vw 高度适配, 不压缩为窄条 */
    min-height: 240px;
  }
  .cms-hero-m .cms-hero-slide .cms-hero-title {
    font-size: 25px;
    line-height: 1.3;
  }
  .cms-hero-m .cms-hero-slide .cms-hero-sub {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 22px;
  }
  .cms-hero-m .cms-hero-slide .cms-hero-btn {
    width: 130px;
    height: 38px;
    line-height: 36px;
    font-size: 13px;
  }
  /* 手机服务范围 (目标站 module_723168129/723168131: 16px 白副标, 卡片 2 列) */
  .cms-service-head {
    padding-top: 20px;
  }
  .cms-title-deco h2 {
    font-size: 24px;
  }
  .cms-title-deco img {
    width: 86px;
  }
  .cms-service .cms-service-sub {
    font-size: 16px;
    line-height: 1.6;
    margin: 30px 6% 30px;
    padding: 8px;
  }
  .cms-service .cms-service-grid {
    padding: 0 4% 50px;
  }
  .cms-service .cms-service-card {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .cms-service .cms-service-card .cms-service-card-icon {
    padding: 0;
  }
  .cms-service .cms-service-card .cms-service-card-icon img {
    max-width: 84px;
  }
  .cms-service .cms-service-card .cms-service-card-name {
    padding-top: 10px;
    font-size: 16px;
  }
  .cms-section {
    padding: 34px 0;
  }
  .cms-section-head {
    margin-bottom: 26px;
  }
  .cms-section-head h2 {
    font-size: 26px;
  }
  .cms-product {
    padding: 36px 0 24px;
  }
  .cms-product .cms-product-head {
    margin-bottom: 22px;
  }
  .cms-product .cms-product-head h2 {
    font-size: 28px;
  }
  .cms-product .cms-product-head img {
    max-width: 140px;
  }
  .cms-product .cms-product-accordion {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .cms-product .cms-product-panel {
    flex: 0 0 50%;
    width: 50%;
    height: 200px;
    min-height: 200px;
  }
  .cms-product .cms-product-panel.active {
    flex: 0 0 50%;
  }
  .cms-product .cms-product-panel .cms-product-collapsed {
    opacity: 1 !important;
  }
  .cms-product .cms-product-panel .cms-product-collapsed .cms-product-icon-sm {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .cms-product .cms-product-panel .cms-product-collapsed .cms-product-name {
    font-size: 16px;
  }
  .cms-product .cms-product-panel .cms-product-collapsed .cms-product-en {
    font-size: 12px;
  }
  .cms-product .cms-product-panel .cms-product-expanded {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .cms-about-cards .cms-about-card {
    flex-basis: 45%;
    max-width: 45%;
  }
  .cms-news-home .cms-news-row > a {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .cms-logos .cms-logo-item {
    flex-basis: 30%;
    max-width: 30%;
  }
  .cms-page-banner {
    padding: 30px 15px;
  }
  .cms-page-banner h1 {
    font-size: 24px;
  }
  .cms-content {
    padding: 18px;
  }
  .cms-list-item .cms-list-thumb {
    flex-basis: 110px;
  }
  .cms-list-item .cms-list-main {
    padding: 12px 14px;
  }
  .cms-article-title {
    font-size: 21px;
  }
  .cms-prevnext a {
    width: 100%;
    min-width: 0;
    text-align: left !important;
    margin-left: 0;
  }
  .cms-pro-wrap {
    padding: 20px 5px 40px;
  }
  .cms-pro-wrap .cms-pro-name {
    font-size: 24px;
  }
  .cms-pro-wrap .cms-pro-prevnext a,
  .cms-pro-wrap .cms-pro-prevnext span {
    width: 100%;
    min-width: 0;
    text-align: left !important;
    margin-left: 0;
  }
  .cms-news-list {
    padding: 24px 5px 10px;
  }
  .cms-news-list .cms-news-item-link {
    padding: 18px 6px;
  }
  .cms-news-list .cms-news-date {
    flex-basis: 76px;
    margin-right: 16px;
  }
  .cms-news-list .cms-news-date .cms-news-date-md {
    font-size: 24px;
  }
  .cms-news-list .cms-news-title {
    font-size: 15px;
  }
  .cms-news-detail-wrap {
    padding: 20px 5px 30px;
  }
  .cms-news-detail-wrap .cms-news-detail {
    padding: 20px 16px;
  }
  .cms-news-detail-wrap .cms-news-detail .cms-news-detail-title {
    font-size: 20px;
  }
  .cms-news-detail-wrap .cms-news-detail .cms-news-detail-meta span {
    display: block;
    margin: 0 0 4px;
  }
  .cms-news-detail-wrap .cms-news-detail .cms-news-detail-prevnext a {
    width: 100%;
    min-width: 0;
    text-align: left !important;
    margin-left: 0;
  }
  .cms-news-detail-wrap .cms-news-related {
    margin-top: 24px;
  }
  .cms-inner-banner .cms-inner-banner-en {
    font-size: 18px;
  }
  .cms-inner-banner .cms-inner-banner-cn {
    font-size: 26px;
  }
  .cms-inner-banner .cms-inner-banner-img--pc {
    display: none;
  }
  .cms-inner-banner .cms-inner-banner-img--m {
    display: block;
  }
  .cms-footer-main {
    padding: 28px 0 10px;
  }
  .cms-footer-qr img {
    width: 110px;
    height: 110px;
  }
  /* 手机端隐藏左侧悬浮栏 (目标站 <768 使用底部浮动导航, 不显示侧栏) */
  .cms-float-service {
    display: none;
  }
}
@media (max-width: 480px) {
  .cms-logos .cms-logo-item {
    flex-basis: 46%;
    max-width: 46%;
  }
  .cms-about-cards .cms-about-card {
    flex-basis: 100%;
    max-width: 100%;
  }
  .cms-hero-m .cms-hero-slide .cms-hero-title {
    font-size: 20px;
  }
}
/* ============ 内页模块体系补充样式 (cms-modules.css 为主) ============ */
.cms-page {
  overflow: hidden;
}
.cms-pagination {
  padding: 30px 15px 50px;
  text-align: center;
  clear: both;
}
.cms-pagination ul.pagination {
  display: inline-block;
  margin: 0;
}
.cms-pagination ul.pagination li a {
  color: #666;
}
/* 手机端图标组/搜索层仅手机可见 */
@media (min-width: 768px) {
  .cms-m-icons,
  .cms-m-search-layer {
    display: none !important;
  }
}
/* ===== 产品中心卡片图比例修正 =====
   目标站 PageCss 中 #module_714534743 的 dummy 为 75%, 但其 JS 运行时按产品图实际比例
   覆盖为 100% (正方形); 此处直接修正, 与目标站实际渲染一致 */
.cms-page #module_714534743 .pro-img .dummy {
  padding-top: 100% !important;
}
/* ============================================================================
   v2 全站换肤 + 首页保留板块 (明亮简约商务风)
   设计令牌: 主色 #1D5DEA | 墨蓝标题 #0F172A | 正文 #475569 | 弱化 #94A3B8
             发丝线 #E7EAF0 | 浅灰分区 #F7F8FA | 主色浅底 #EEF3FF
   范围: 导航/页脚/悬浮客服换肤 (全站) + 首页「关于我们」「客户」两个 v2 板块
   断点沿用 1199 / 991 / 767 / 480
   ============================================================================ */
/* ============ v2: 主导航 (白底吸顶 + 滚动阴影; 发丝线按需求隐藏) ============ */
.cms-navbar {
  position: sticky;
  top: 0;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: saturate(1.5) blur(12px);
  backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: none;
  transition: box-shadow 0.25s ease;
}
.cms-navbar.scrolled {
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
}
.cms-navbar .container {
  min-height: 72px;
}
.cms-navbar .cms-brand {
  height: 72px;
  line-height: 72px;
  padding: 0 15px 0 0;
}
.cms-navbar .cms-brand img {
  max-height: 46px;
  transition: transform 0.25s ease;
}
.cms-navbar .cms-brand:hover img {
  transform: translateY(-1px);
}
.cms-navbar .cms-menu > li > a {
  height: 72px;
  line-height: 72px;
  padding: 0 17px;
  font-size: 15px;
  font-weight: 500;
  color: #334155;
  border-bottom: none;
  position: relative;
  transition: color 0.2s ease;
}
.cms-navbar .cms-menu > li > a::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1d5dea, #38bdf8);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.cms-navbar .cms-menu > li:hover > a,
.cms-navbar .cms-menu > li.cms-hover > a,
.cms-navbar .cms-menu > li.active > a,
.cms-navbar .cms-menu > li > a:hover,
.cms-navbar .cms-menu > li > a:focus,
.cms-navbar .cms-menu > li > a.active {
  color: #1d5dea;
  background: none !important;
  border-bottom: none;
}
.cms-navbar .cms-menu > li:hover > a::after,
.cms-navbar .cms-menu > li.cms-hover > a::after,
.cms-navbar .cms-menu > li.active > a::after,
.cms-navbar .cms-menu > li > a.active::after {
  transform: scaleX(1);
}
/* v2: mega 下拉改居中圆角白卡 (收起时 height:0, 边框需透明否则会在 banner 上留下 2px 细线) */
.cms-navbar .cms-mega-panel {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 32px));
  top: calc(100% + 8px);
  background: #fff;
  background-clip: padding-box;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: height 0.3s ease, border-color 0.3s ease;
}
.cms-navbar .cms-mega-panel.open {
  border-color: #e7eaf0;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
}
.cms-navbar .cms-mega-panel .container {
  display: block;
  width: 100%;
  max-width: none;
  padding: 22px 30px 26px;
}
.cms-navbar .cms-mega-title {
  margin: 6px 0 8px;
  padding-left: 12px;
  border-left: 3px solid #1d5dea;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 1px;
}
.cms-navbar .cms-mega-links li > a {
  height: 34px;
  line-height: 34px;
  color: #475569;
  border-radius: 8px;
  padding-left: 12px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.cms-navbar .cms-mega-links li > a:hover,
.cms-navbar .cms-mega-links li > a:focus {
  color: #1d5dea;
  padding-left: 16px;
}
.cms-navbar .cms-mega-media img {
  border-radius: 12px;
}
.cms-navbar .cms-mega-card {
  padding-top: 14px;
}
.cms-navbar .cms-mega-card-img {
  border-radius: 12px;
  transition: transform 0.25s ease;
}
.cms-navbar .cms-mega-card:hover .cms-mega-card-img {
  transform: translateY(-4px);
}
.cms-navbar .cms-mega-card-name {
  margin-top: 12px;
  color: #475569;
}
.cms-navbar .cms-mega-cards-side {
  padding-left: 26px;
}
/* v2: 顶栏搜索 */
.cms-navbar .cms-nav-search input {
  width: 180px;
  height: 36px;
  line-height: 34px;
  border: 1px solid #e7eaf0;
  border-radius: 999px;
  background: #f7f8fa;
  transition: width 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.cms-navbar .cms-nav-search input:focus {
  width: 220px;
  background: #fff;
  border-color: #1d5dea;
}
.cms-navbar .cms-nav-search button {
  color: #94a3b8;
  transition: color 0.2s ease;
}
.cms-navbar .cms-nav-search button:hover {
  color: #1d5dea;
}
/* ============ v2: 按钮 ============ */
.jh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 46px;
  padding: 0 27px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.jh-btn .fa {
  font-size: 14px;
}
.jh-btn-primary {
  background: linear-gradient(135deg, #1d5dea, #2f7bf2);
  color: #fff;
  box-shadow: 0 10px 26px rgba(29, 93, 234, 0.3);
}
.jh-btn-primary:hover,
.jh-btn-primary:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(29, 93, 234, 0.4);
}
/* ============ v2: 区块通用 (保留板块使用) ============ */
.jh-section {
  padding: 92px 0;
}
.jh-section-gray {
  background: #f7f8fa;
}
.jh-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.jh-sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #1d5dea;
  margin-bottom: 15px;
  font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", Arial, sans-serif;
}
.jh-sec-title {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 1px;
  margin: 0 0 13px;
}
.jh-sec-sub {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}
/* ============ v2: 关于我们 (首页保留板块) ============ */
.jh-about {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 24px;
}
.jh-about-title {
  font-size: 36px;
  line-height: 1.42;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 1px;
  margin: 0 0 20px;
}
.jh-accent {
  color: #1d5dea;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .jh-accent {
    background: linear-gradient(92deg, #1d5dea, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.jh-about-desc {
  font-size: 15px;
  color: #475569;
  line-height: 2;
  margin: 0 0 22px;
}
.jh-about-points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 13px;
}
.jh-about-points li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  color: #334155;
}
.jh-about-points i {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #eef3ff;
  color: #1d5dea;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.jh-about-media {
  position: relative;
}
.jh-about-media img {
  width: 100%;
  aspect-ratio: 4 / 3.05;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  display: block;
}
.jh-about-card {
  position: absolute;
  left: -28px;
  bottom: 36px;
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.jh-about-card strong {
  font-size: 34px;
  font-weight: 700;
  color: #1d5dea;
  line-height: 1;
  font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", Arial, sans-serif;
}
.jh-about-card span {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.7;
}
.jh-about-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.jh-about-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 14px;
  padding: 18px 20px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.jh-about-link .fa {
  color: #a7b4c6;
  font-size: 13px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.jh-about-link:hover {
  border-color: #1d5dea;
  color: #1d5dea;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  text-decoration: none;
}
.jh-about-link:hover .fa {
  color: #1d5dea;
  transform: translateX(3px);
}
/* ============ v2: 客户 Logo 墙 (首页保留板块) ============ */
.jh-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.jh-logo-item {
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 14px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.jh-logo-item img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.jh-logo-item:hover {
  border-color: #d8e4fd;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}
.jh-logo-item:hover img {
  filter: none;
  opacity: 1;
}
/* ============ v3: 页脚 (深色科技风重设计) ============ */
.jh-foot {
  position: relative;
  background: linear-gradient(180deg, #0e1a33 0%, #0a1428 100%);
  color: #93a5c1;
  font-size: 14px;
  overflow: hidden;
}
.jh-foot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1d5dea, #38bdf8 45%, rgba(56, 189, 248, 0) 92%);
}
.jh-foot::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 93, 234, 0.18) 0%, rgba(29, 93, 234, 0) 70%);
  pointer-events: none;
}
.jh-foot-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.55fr 0.85fr 0.85fr 0.8fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.jh-foot-logo {
  display: inline-flex;
  align-items: center;
}
.jh-foot-logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 100%;
}
.jh-foot-slogan {
  margin: 16px 0 24px;
  font-size: 14.5px;
  color: #c7d3e8;
  letter-spacing: 1px;
}
.jh-foot-contact p {
  display: flex;
  gap: 12px;
  margin: 0 0 14px;
  align-items: flex-start;
  line-height: 1.7;
}
.jh-foot-cic {
  flex: none;
  width: 30px;
  height: 30px;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(29, 93, 234, 0.18);
  color: #6ea8ff;
  font-size: 13px;
}
.jh-foot-contact a {
  color: #d5deee;
  transition: color 0.2s ease;
}
.jh-foot-contact a:hover {
  color: #fff;
}
.jh-foot-contact span:not(.jh-foot-cic) {
  color: #93a5c1;
}
.jh-foot-col h4 {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 6px 0 20px;
  letter-spacing: 2px;
  padding-left: 12px;
}
.jh-foot-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, #1d5dea, #38bdf8);
}
.jh-foot-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.jh-foot-links a {
  color: #93a5c1;
  font-size: 13.5px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.jh-foot-links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.jh-foot-qr {
  text-align: center;
}
.jh-foot-qr img {
  width: 124px;
  height: 124px;
  background: #fff;
  padding: 8px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.jh-foot-qr p {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: #8fa2c0;
}
.jh-foot-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #7d8fb0;
  font-size: 12.5px;
  text-align: center;
}
.jh-foot-bottom p {
  margin: 0;
}
.jh-foot-bottom a {
  color: #8fa2c0;
  transition: color 0.2s ease;
}
.jh-foot-bottom a:hover {
  color: #fff;
}
/* ============ v2: 右侧悬浮客服 (极简圆钮) ============ */
.cms-float-service {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.cms-float-btns {
  float: none;
}
.cms-float-service .cms-float-btn {
  width: 46px;
  height: 46px;
  line-height: 44px;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 50%;
  color: #64748b;
  font-size: 19px;
  margin-top: 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.cms-float-service .cms-float-btn:first-child {
  margin-top: 0;
}
.cms-float-service .cms-float-btn:hover,
.cms-float-service .cms-float-btn.active {
  color: #fff;
  background: linear-gradient(135deg, #1d5dea, #2f7bf2);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(29, 93, 234, 0.32);
  transform: translateY(-2px);
}
.cms-float-service .cms-float-btn.cms-float-top {
  border-color: #e7eaf0;
}
.cms-float-service .cms-float-btn.cms-float-top i {
  color: inherit;
}
.cms-float-service .cms-float-panel {
  right: 60px;
  width: 210px;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-top: 1px solid #e7eaf0;
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
  padding: 16px 18px;
}
.cms-float-service .cms-float-panel-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eef1f5;
}
.cms-float-service .cms-float-contact-item em {
  color: #94a3b8;
}
.cms-float-service .cms-float-contact-item span {
  color: #334155;
}
.cms-float-service .cms-float-panel-qrcode img {
  border: 1px solid #eef1f5;
  border-radius: 10px;
}
/* ============ v2: 手机端全屏搜索层微调 ============ */
.cms-m-search-layer .cms-m-search-input input {
  border: none;
  border-bottom: 2px solid #e7eaf0;
  border-radius: 0;
}
.cms-m-search-layer .cms-m-search-input input:focus {
  border-bottom-color: #1d5dea;
  outline: none;
}
/* ============================================================================
   v2 响应式
   ============================================================================ */
@media (max-width: 1199px) {
  .jh-logos {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .jh-section {
    padding: 70px 0;
  }
  .jh-sec-title {
    font-size: 30px;
  }
  .jh-sec-head {
    margin-bottom: 36px;
  }
  .jh-about {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .jh-about-card {
    left: 16px;
    bottom: 16px;
  }
  .jh-about-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .jh-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .jh-foot-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 44px 0 32px;
  }
  .jh-foot-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 767px) {
  /* --- 导航抽屉 --- */
  .cms-navbar {
    min-height: 58px;
    background: #fff;
  }
  .cms-navbar .container {
    display: block;
    min-height: 58px;
  }
  .cms-navbar .cms-brand {
    height: 58px;
    line-height: 58px;
    padding: 0 8px;
  }
  .cms-navbar .cms-brand img {
    max-height: 36px;
  }
  .cms-navbar .navbar-toggle {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .cms-navbar .navbar-toggle .icon-bar {
    background: #0f172a;
  }
  .cms-navbar .cms-m-icon {
    color: #334155;
  }
  .cms-navbar .cms-menu {
    margin: 0 -15px;
    border-top: 1px solid #eef1f5;
  }
  .cms-navbar .cms-menu > li > a {
    height: auto;
    line-height: 1.5;
    padding: 14px 18px;
    font-size: 15px;
    color: #1e293b;
    border-bottom: 1px solid #f1f4f8;
    position: relative;
  }
  .cms-navbar .cms-menu > li > a::after {
    display: none;
  }
  .cms-navbar .cms-menu > li.has-sub > a {
    padding-right: 44px;
  }
  .cms-navbar .cms-menu > li.has-sub > a::before {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
  }
  .cms-navbar .cms-menu > li.has-sub.open > a::before {
    transform: translateY(-50%) rotate(180deg);
    color: #1d5dea;
  }
  .cms-navbar .cms-menu-sub {
    background: #fafbfc;
  }
  .cms-navbar .cms-menu-sub > li > a {
    border-bottom-color: #f1f4f8;
    color: #64748b;
  }
  /* --- 保留板块 --- */
  .jh-section {
    padding: 54px 0 50px;
  }
  .jh-sec-title {
    font-size: 26px;
  }
  .jh-sec-sub {
    font-size: 14px;
  }
  .jh-sec-eyebrow {
    letter-spacing: 2px;
    margin-bottom: 11px;
  }
  .jh-sec-head {
    margin-bottom: 28px;
  }
  .jh-btn {
    height: 42px;
    padding: 0 22px;
    font-size: 14px;
  }
  .jh-about-title {
    font-size: 27px;
  }
  .jh-about-points li {
    font-size: 13.5px;
  }
  .jh-about-media img {
    border-radius: 18px;
  }
  .jh-about-card {
    padding: 12px 16px;
    gap: 10px;
  }
  .jh-about-card strong {
    font-size: 26px;
  }
  .jh-about-card span {
    font-size: 11.5px;
  }
  .jh-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .jh-logo-item {
    height: 74px;
    border-radius: 12px;
  }
  .jh-foot-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
    padding: 36px 0 28px;
  }
  .jh-foot-brand {
    grid-column: 1 / -1;
  }
  .jh-foot-col-qr {
    grid-column: 1 / -1;
  }
  .jh-foot-slogan {
    margin: 12px 0 16px;
  }
  .jh-foot-col h4 {
    margin-bottom: 12px;
  }
  .jh-foot-qr img {
    width: 110px;
    height: 110px;
  }
  .jh-foot-bottom {
    padding: 14px 0 18px;
  }
  .cms-float-service .cms-float-btn {
    width: 42px;
    height: 42px;
    line-height: 40px;
    font-size: 17px;
  }
  .cms-float-service .cms-float-panel {
    right: 54px;
    width: 190px;
  }
}
@media (max-width: 480px) {
  .jh-about-links {
    grid-template-columns: 1fr;
  }
  .jh-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ============ v2: 首页服务范围图文卡片 (通栏深色框内, 5 列) ============ */
.cms-svccard-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.cms-svccard {
  flex: 0 0 calc(20% - 15px);
  max-width: calc(20% - 15px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cms-svccard:hover,
.cms-svccard:focus {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  color: #fff;
  text-decoration: none;
}
.cms-svccard-figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 128px;
  background: radial-gradient(70% 90% at 50% 115%, rgba(56, 150, 255, 0.3) 0%, rgba(56, 150, 255, 0) 70%), linear-gradient(165deg, rgba(23, 58, 110, 0.55) 0%, rgba(11, 32, 64, 0.12) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cms-svccard-figure::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px dashed rgba(120, 170, 235, 0.25);
  border-radius: 50%;
  top: -70px;
  right: -45px;
  z-index: 3;
  pointer-events: none;
}
/* 图与卡片正文的融合渐变 */
.cms-svccard-figure::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  background: linear-gradient(to top, rgba(9, 32, 60, 0.6) 0%, rgba(9, 32, 60, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.cms-svccard-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cms-svccard:hover .cms-svccard-figure img,
.cms-svccard:focus .cms-svccard-figure img {
  transform: scale(1.06);
}
.cms-svccard-no {
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 4;
  font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 12, 30, 0.8);
}
.cms-svccard-body {
  padding: 16px 18px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cms-svccard-name {
  font-size: 16.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.cms-svccard-en {
  margin: 5px 0 10px;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #7f95b5;
  font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", Arial, sans-serif;
}
.cms-svccard-desc {
  font-size: 12.5px;
  color: #a9b9d0;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cms-svccard-more {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 15px;
  font-size: 12.5px;
  color: #6fb1ff;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.cms-svccard-more .fa {
  font-size: 11px;
  transition: transform 0.2s ease;
}
.cms-svccard:hover .cms-svccard-more .fa,
.cms-svccard:focus .cms-svccard-more .fa {
  transform: translateX(4px);
}
@media (max-width: 1199px) {
  .cms-svccard-figure {
    height: 118px;
  }
  .cms-svccard-name {
    font-size: 15.5px;
  }
  .cms-svccard-desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  .cms-svccard-body {
    padding: 14px 15px 6px;
  }
  .cms-svccard-more {
    padding: 10px 15px 13px;
  }
}
@media (max-width: 991px) {
  .cms-svccard {
    flex: 0 0 calc(33.33% - 12px);
    max-width: calc(33.33% - 12px);
  }
  .cms-svccard-figure {
    height: 128px;
  }
  .cms-svccard-desc {
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 767px) {
  .cms-svccard-list {
    gap: 12px;
  }
  .cms-svccard {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
    border-radius: 14px;
  }
  .cms-svccard-figure {
    height: 104px;
  }
  .cms-svccard-figure::before {
    width: 110px;
    height: 110px;
    top: -52px;
    right: -34px;
  }
  .cms-svccard-no {
    left: 10px;
    top: 9px;
    font-size: 12px;
  }
  .cms-svccard-body {
    padding: 12px 10px 10px;
    align-items: center;
    text-align: center;
  }
  .cms-svccard-name {
    font-size: 15px;
  }
  .cms-svccard-en {
    margin: 4px 0 0;
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .cms-svccard-desc,
  .cms-svccard-more {
    display: none;
  }
}
/* ============ v2: 产品与方案手风琴优化 (保持通栏 40%/12% 宽屏比例) ============ */
/* 标题区: 英文眉标 + 精修字号 (全局安全) */
.cms-product {
  padding: 68px 0 0;
}
.cms-product .cms-product-head {
  margin-bottom: 42px;
}
.cms-product .cms-product-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #1d5dea;
  margin-bottom: 12px;
  font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", Arial, sans-serif;
}
/* 激活面板顶部光带 */
.cms-product .cms-product-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 6;
  background: linear-gradient(90deg, #1d5dea, #38bdf8);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}
.cms-product .cms-product-panel.active::before {
  transform: scaleX(1);
}
/* 激活面板: 左强右弱的横向遮罩, 提升展开文字可读性 */
.cms-product .cms-product-panel.active .cms-product-panel-bg::after {
  background: linear-gradient(95deg, rgba(4, 16, 36, 0.86) 0%, rgba(4, 16, 36, 0.55) 48%, rgba(6, 22, 48, 0.12) 100%);
}
/* 收起态: 悬停增亮 + 图标上浮 */
.cms-product .cms-product-panel .cms-product-panel-bg {
  transition: filter 0.3s ease;
}
.cms-product .cms-product-panel:not(.active):hover .cms-product-panel-bg {
  filter: brightness(1.16) saturate(1.05);
}
.cms-product .cms-product-collapsed .cms-product-icon-sm {
  filter: drop-shadow(0 8px 16px rgba(0, 15, 40, 0.55));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.cms-product .cms-product-panel:not(.active):hover .cms-product-collapsed .cms-product-icon-sm {
  transform: translateY(-4px);
}
/* 收起态编号角标 (面板激活时随收起层一起隐去) */
.cms-product .cms-product-no {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 2px 8px rgba(0, 12, 30, 0.8);
}
/* 展开区英文小标 + 查看产品线药丸按钮 */
.cms-product .cms-product-expanded .cms-product-expanded-inner .cms-product-expanded-en {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #7fb4ff;
  margin-bottom: 10px;
  font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", Arial, sans-serif;
}
.cms-product .cms-product-expanded .cms-product-expanded-inner .cms-product-name .cms-product-dash {
  display: none;
}
.cms-product .cms-product-go-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.cms-product .cms-product-go-link .fa {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.cms-product .cms-product-go-link:hover {
  background: #fff;
  border-color: #fff;
  color: #1d5dea;
  transform: translateY(-2px);
}
.cms-product .cms-product-go-link:hover .fa {
  transform: translateX(4px);
}
/* ---- 桌面端 (≥992) 精修: 字号与间距 (平板/手机沿用原响应式) ---- */
@media (min-width: 992px) {
  .cms-product .cms-product-head h2 {
    font-size: 42px;
    color: #0f172a;
    letter-spacing: 3px;
  }
  .cms-product .cms-product-collapsed .cms-product-name {
    font-size: 22px;
    text-shadow: 0 2px 10px rgba(0, 15, 40, 0.55);
  }
  .cms-product .cms-product-collapsed .cms-product-en {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.72;
    text-transform: uppercase;
    font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", Arial, sans-serif;
  }
  .cms-product .cms-product-expanded .cms-product-expanded-inner {
    padding: 0 7% 0 8%;
  }
  .cms-product .cms-product-expanded .cms-product-expanded-inner .cms-product-icon-lg {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    filter: drop-shadow(0 8px 16px rgba(0, 15, 40, 0.55));
  }
  .cms-product .cms-product-expanded .cms-product-expanded-inner .cms-product-name {
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .cms-product .cms-product-expanded .cms-product-expanded-inner .cms-product-desc-line {
    font-size: 15px;
    line-height: 2;
    color: rgba(230, 240, 252, 0.88);
  }
}
/* ---- 平板 (768-991): 眉标与编号缩小, 其余沿用原规则 ---- */
@media (min-width: 768px) and (max-width: 991px) {
  .cms-product .cms-product-head h2 {
    font-size: 36px;
    letter-spacing: 2px;
  }
  .cms-product .cms-product-eyebrow {
    letter-spacing: 3px;
    font-size: 11px;
  }
}
/* ---- 手机 (<768): 编号隐藏避免拥挤, 眉标缩小 ---- */
@media (max-width: 767px) {
  .cms-product .cms-product-eyebrow {
    font-size: 10px;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
  }
  .cms-product-no {
    display: none;
  }
}
/* ============================================================================
   v3 滚动入场动画 (增强版) — 配合 cms.js WOW 引擎: class="wow 动画类"
   较 animate.css 精简版 (60px 位移) 位移更大并带弹性回弹, 入场感更明显;
   .animated 的 duration/fill 由精简版 animate.css 提供, 此处只定义动画本体
   ========================================================================== */
/* 上移入场 (板块主推): 110px 弹性上浮 */
.cmsUp {
  animation-name: cmsUp;
  animation-timing-function: cubic-bezier(0.22, 1.2, 0.36, 1);
}
@keyframes cmsUp {
  from {
    opacity: 0;
    transform: translate3d(0, 110px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* 下移入场 (区块标题): 自上方弹性落入 */
.cmsDown {
  animation-name: cmsDown;
  animation-timing-function: cubic-bezier(0.22, 1.2, 0.36, 1);
}
@keyframes cmsDown {
  from {
    opacity: 0;
    transform: translate3d(0, -110px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* 左入 / 右入 (分栏图文对开) */
.cmsLeft {
  animation-name: cmsLeft;
  animation-timing-function: cubic-bezier(0.22, 1.2, 0.36, 1);
}
@keyframes cmsLeft {
  from {
    opacity: 0;
    transform: translate3d(-110px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cmsRight {
  animation-name: cmsRight;
  animation-timing-function: cubic-bezier(0.22, 1.2, 0.36, 1);
}
@keyframes cmsRight {
  from {
    opacity: 0;
    transform: translate3d(110px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* 弹放 (按钮/Logo 墙): 缩放弹出并轻微过冲 */
.cmsZoom {
  animation-name: cmsZoom;
  animation-timing-function: cubic-bezier(0.2, 1.1, 0.3, 1);
}
@keyframes cmsZoom {
  0% {
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
  }
  75% {
    opacity: 1;
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* 轮播大图缓慢推近 (常驻动效, 非滚动触发): 首屏即有呼吸感 */
.cms-hero .cms-hero-img,
.cms-hero-m .cms-hero-img {
  animation: cmsKenburns 9s ease-out both;
}
@keyframes cmsKenburns {
  from {
    transform: scale3d(1.02, 1.02, 1);
  }
  to {
    transform: scale3d(1.1, 1.1, 1);
  }
}
/* 用户偏好减少动效: 常驻动画关闭 (滚动入场由 animate.css 的兜底规则接管) */
@media (prefers-reduced-motion: reduce) {
  .cms-hero .cms-hero-img,
  .cms-hero-m .cms-hero-img {
    animation: none;
  }
}
/* 图片预览弹窗 (荣誉资质等 SiteGallery 大图查看, 含关闭按钮)
   由 cms-pages.js 动态创建: 全屏遮罩 + 居中大图 + 标题 + 右上角关闭按钮 */
.cms-img-preview {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.cms-img-preview.show {
  opacity: 1;
  visibility: visible;
}
.cms-img-preview-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}
.cms-img-preview-box {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cms-img-preview-box img {
  max-width: 92vw;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.cms-img-preview-title {
  margin: 12px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  max-width: 92vw;
}
.cms-img-preview-close {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 36px;
  height: 36px;
  padding: 0;
  line-height: 32px;
  text-align: center;
  font-size: 24px;
  font-weight: normal;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}
.cms-img-preview-close:hover,
.cms-img-preview-close:focus {
  background: rgba(255, 255, 255, 0.38);
  outline: none;
}
/* 弹窗打开时锁定背景滚动 */
.cms-img-preview-lock {
  overflow: hidden;
}
/* 移动端: 关闭按钮移入图内右上角, 避免超出视口 */
@media (max-width: 767px) {
  .cms-img-preview-close {
    top: 8px;
    right: 8px;
  }
}
/* ============ 关于我们·口号区背景补全 ============
   该区块(module_703651457/723169483)原背景图迁移时未本地化(历史404),
   区块呈白底导致白色标语/公司名不可见、卡片上方出现大片空白;
   以区块顶部横幅同色深藏青补齐背景 */
.cms-page div#module_703651457,
.cms-page div#module_703651457 .BodyCenter.BodyCenter703651457,
.cms-page div#module_723169483,
.cms-page div#module_723169483 .BodyCenter.BodyCenter723169483 {
  background-color: #001220;
}
/* ============ 关于我们·使命愿景区图文垂直居中 ============
   原布局子列内容顶对齐(table-cell遗留), 左侧文字块(~106px)与
   右侧图片(~438px)高度严重不对称; 改为行内垂直居中 */
@media (min-width: 768px) {
  .cms-page #module_703651447 .row.ModuleSubContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
/* ============ 服务支持页 · 原生排版 (sv2-*) ============ */
.cms-page .sv2-hero {
  background-size: cover;
  background-position: center;
}
.cms-page .sv2-hero-mask {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.5) 55%, rgba(15, 23, 42, 0.35) 100%);
  padding: 84px 0 72px;
  color: #fff;
}
.cms-page .sv2-crumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
}
.cms-page .sv2-crumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.cms-page .sv2-crumb a:hover {
  color: #fff;
}
.cms-page .sv2-crumb i {
  margin: 0 8px;
  font-size: 12px;
}
.cms-page .sv2-crumb em {
  font-style: normal;
  color: #fff;
}
.cms-page .sv2-hero h1 {
  margin: 0 0 10px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
}
.cms-page .sv2-hero-en {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.65);
}
.cms-page .sv2-hero-desc {
  margin: 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}
.cms-page .sv2-strips {
  position: relative;
  z-index: 2;
  padding-top: 44px;
  padding-bottom: 8px;
}
.cms-page .sv2-strip {
  margin-top: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  padding: 22px 12px;
  display: flex;
  flex-wrap: wrap;
}
.cms-page .sv2-strip-item {
  flex: 1 1 25%;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px;
}
.cms-page .sv2-strip-item + .sv2-strip-item {
  border-left: 1px solid #eef1f6;
}
.cms-page .sv2-strip-item i {
  flex: 0 0 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  background: rgba(0, 113, 188, 0.1);
  color: #0071BC;
  font-size: 20px;
}
.cms-page .sv2-strip-item b {
  display: block;
  font-size: 16px;
  color: #0f172a;
}
.cms-page .sv2-strip-item span {
  display: block;
  font-size: 13px;
  color: #7a8699;
  margin-top: 2px;
}
.cms-page .sv2-sec {
  padding: 64px 0;
}
.cms-page .sv2-intro {
  background: #fff;
}
.cms-page .sv2-cards-sec {
  background: #f5f6f8;
}
.cms-page .sv2-flow-sec {
  background: #fff;
}
.cms-page .sv2-rel {
  background: #f5f6f8;
  padding-top: 48px;
  padding-bottom: 72px;
}
.cms-page .sv2-sec-head {
  margin-bottom: 34px;
}
.cms-page .sv2-sec-head h2 {
  position: relative;
  margin: 0 0 6px;
  padding-left: 14px;
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
}
.cms-page .sv2-sec-head h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 2px;
  background: #0071BC;
}
.cms-page .sv2-sec-sub {
  margin: 0 0 0 14px;
  font-size: 12px;
  letter-spacing: 3px;
  color: #9aa4b5;
  text-transform: uppercase;
}
.cms-page .sv2-intro-cols {
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.cms-page .sv2-intro-text {
  flex: 1.6;
}
.cms-page .sv2-intro-text p {
  font-size: 16px;
  line-height: 2;
  color: #33475a;
  text-align: justify;
  margin: 0 0 16px;
}
.cms-page .sv2-intro-text strong {
  color: #0071BC;
}
.cms-page .sv2-intro-tags {
  flex: 1;
  background: #f5f6f8;
  border: 1px solid #e7eaf0;
  border-radius: 12px;
  padding: 24px 26px;
}
.cms-page .sv2-intro-tags span {
  display: inline-block;
  margin: 0 8px 10px 0;
  padding: 6px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dfe6ef;
  color: #33475a;
  font-size: 13px;
}
.cms-page .sv2-intro-tags em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: #9aa4b5;
  margin: 18px 0 10px;
}
.cms-page .sv2-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cms-page .sv2-card {
  flex: 1 1 calc(20% - 16px);
  min-width: 0;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 12px;
  padding: 30px 20px 26px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cms-page .sv2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  border-color: rgba(0, 113, 188, 0.4);
}
.cms-page .sv2-card i {
  display: inline-block;
  width: 58px;
  height: 58px;
  line-height: 58px;
  border-radius: 50%;
  background: rgba(0, 113, 188, 0.1);
  color: #0071BC;
  font-size: 24px;
  margin-bottom: 16px;
}
.cms-page .sv2-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
}
.cms-page .sv2-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: #7a8699;
}
.cms-page .sv2-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  counter-reset: sv2step;
}
.cms-page .sv2-flow li {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 0 10px;
}
.cms-page .sv2-flow li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(50% + 30px);
  right: calc(-50% + 30px);
  height: 2px;
  background: #dfe6ef;
}
.cms-page .sv2-flow b {
  display: block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #0071BC;
  color: #fff;
  font-size: 15px;
}
.cms-page .sv2-flow strong {
  display: block;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 6px;
}
.cms-page .sv2-flow span {
  display: block;
  font-size: 13px;
  color: #7a8699;
  line-height: 1.7;
}
.cms-page .sv2-cta {
  background: #0f172a;
  padding: 56px 0;
}
.cms-page .sv2-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cms-page .sv2-cta-text h2 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.cms-page .sv2-cta-text p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.cms-page .sv2-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cms-page .sv2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.cms-page .sv2-btn-main {
  background: #0071BC;
  color: #fff;
}
.cms-page .sv2-btn-main:hover {
  background: #0060a3;
  color: #fff;
}
.cms-page .sv2-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.cms-page .sv2-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.cms-page .sv2-rel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cms-page .sv2-rel-links a {
  flex: 1 1 calc(25% - 12px);
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.25s ease;
}
.cms-page .sv2-rel-links a i {
  color: #9aa4b5;
  transition: all 0.25s ease;
}
.cms-page .sv2-rel-links a:hover {
  border-color: #0071BC;
  color: #0071BC;
  box-shadow: 0 8px 20px rgba(0, 113, 188, 0.12);
}
.cms-page .sv2-rel-links a:hover i {
  color: #0071BC;
  transform: translateX(3px);
}
/* --- sv2 响应式 --- */
@media (max-width: 1199px) {
  .cms-page .sv2-card {
    flex: 1 1 calc(33.33% - 14px);
  }
}
@media (max-width: 991px) {
  .cms-page .sv2-intro-cols {
    flex-direction: column;
  }
  .cms-page .sv2-flow {
    flex-direction: column;
    gap: 26px;
  }
  .cms-page .sv2-flow li {
    text-align: left;
    padding: 0 0 0 66px;
  }
  .cms-page .sv2-flow b {
    position: absolute;
    left: 0;
    top: -2px;
    margin: 0;
  }
  .cms-page .sv2-flow li:not(:last-child)::after {
    top: 46px;
    left: 21px;
    right: auto;
    width: 2px;
    height: calc(100% + 26px - 44px);
  }
  .cms-page .sv2-flow strong {
    margin-bottom: 4px;
  }
}
@media (max-width: 767px) {
  .cms-page .sv2-hero {
    background-image: url(/uploads/cms/202608/page-banners/banner-m-service.jpg) !important;
  }
  .cms-page .sv2-hero-mask {
    padding: 52px 0 48px;
  }
  .cms-page .sv2-hero h1 {
    font-size: 28px;
  }
  .cms-page .sv2-hero-desc {
    font-size: 14px;
  }
  .cms-page .sv2-sec {
    padding: 40px 0;
  }
  .cms-page .sv2-strip {
    margin-top: 0;
    padding: 14px 8px;
  }
  .cms-page .sv2-strip-item {
    flex: 1 1 50%;
    min-width: 140px;
    padding: 10px 14px;
  }
  .cms-page .sv2-strip-item:nth-child(3) {
    border-left: 0;
  }
  .cms-page .sv2-card {
    flex: 1 1 calc(50% - 10px);
  }
  .cms-page .sv2-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cms-page .sv2-rel-links a {
    flex: 1 1 100%;
  }
}
@media (max-width: 479px) {
  .cms-page .sv2-card {
    flex: 1 1 100%;
  }
  .cms-page .sv2-strip-item {
    flex: 1 1 100%;
  }
  .cms-page .sv2-strip-item + .sv2-strip-item {
    border-left: 0;
    border-top: 1px solid #eef1f6;
  }
  .cms-page .sv2-strip-item:nth-child(3) {
    border-top: 0;
  }
}
/* ============ 导航栏 1200-1500px 视口适配 (修复横向溢出) ============
   原设计按 1500px 容器: 菜单8项x120px + Logo201px + 搜索220px ≈1381px,
   在 1200-1499px 视口必然溢出产生横向滚动条; 此处让菜单项与搜索框
   弹性收缩, >=1500px 保持原设计不变 */
@media (min-width: 768px) and (max-width: 1499px) {
  .cms-navbar .cms-menu > li > a {
    width: auto;
    padding: 0 10px;
  }
  .cms-navbar .cms-nav-search {
    flex: 0 1 190px;
    min-width: 150px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .cms-navbar .cms-menu > li > a {
    padding: 0 6px;
    font-size: 15px;
  }
  .cms-navbar .cms-nav-search {
    flex-basis: 170px;
    min-width: 130px;
  }
}
/* sv2 自有容器: 不依赖 Bootstrap .container (站内多处样式影响其自动边距),
   自行保证内容居中与左右留白 */
.cms-page .sv2-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .cms-page .sv2-container {
    padding: 0 20px;
  }
}
/* sv2 banner 纯图化 + 页头文字区块 (v2.1): 标题/面包屑/描述不再叠于banner上 */
.cms-page .sv2-hero {
  height: auto;
  aspect-ratio: 2048 / 512;
  background-size: cover;
  background-position: center;
}
@supports not (aspect-ratio: 1 / 1) {
  .cms-page .sv2-hero {
    height: 300px;
  }
}
.cms-page .sv2-page-head {
  background: #fff;
  padding: 34px 0 6px;
  border-bottom: 1px solid #eef1f6;
}
.cms-page .sv2-page-head .sv2-crumb {
  color: #9aa4b5;
  margin-bottom: 18px;
}
.cms-page .sv2-page-head .sv2-crumb a {
  color: #9aa4b5;
}
.cms-page .sv2-page-head .sv2-crumb a:hover {
  color: #0071BC;
}
.cms-page .sv2-page-head .sv2-crumb em {
  color: #33475a;
}
.cms-page .sv2-head-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 26px;
}
.cms-page .sv2-head-title h1 {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0f172a;
}
.cms-page .sv2-page-head .sv2-hero-en {
  margin: 0;
  font-size: 13px;
  letter-spacing: 4px;
  color: #9aa4b5;
}
.cms-page .sv2-page-head .sv2-hero-desc {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.9;
  color: #556070;
}
@media (max-width: 767px) {
  .cms-page .sv2-hero {
    aspect-ratio: 750 / 324;
    background-image: url(/uploads/cms/202608/page-banners/banner-m-service.jpg) !important;
  }
  @supports not (aspect-ratio: 1 / 1) {
    .cms-page .sv2-hero {
      height: 170px;
    }
  }
  .cms-page .sv2-page-head {
    padding: 24px 0 2px;
  }
  .cms-page .sv2-head-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 20px;
  }
  .cms-page .sv2-head-title h1 {
    font-size: 26px;
  }
  .cms-page .sv2-page-head .sv2-hero-desc {
    font-size: 14px;
  }
}
/* sv2 六卡页(3x2)布局: 卡片数>5 时每行3张 */
.cms-page .sv2-cards--six .sv2-card {
  flex: 1 1 calc(33.33% - 14px);
}
@media (max-width: 767px) {
  .cms-page .sv2-cards--six .sv2-card {
    flex: 1 1 calc(50% - 10px);
  }
}
/* ============ sv2 图文化: 服务定位区配图 + 卡片封面 ============ */
.cms-page .sv2-intro-figure {
  flex: 1;
  margin: 0;
  align-self: center;
}
.cms-page .sv2-intro-figure img {
  display: block;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cms-page .sv2-intro-figure:hover img {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.2);
}
/* 标签组改为文字列内联(原右侧标签卡移入文字下方) */
.cms-page .sv2-intro-tags-inline {
  margin-top: 6px;
  padding: 18px 20px;
  background: #f5f6f8;
  border: 1px solid #e7eaf0;
  border-radius: 12px;
}
.cms-page .sv2-intro-tags-inline span {
  display: inline-block;
  margin: 0 8px 10px 0;
  padding: 6px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dfe6ef;
  color: #33475a;
  font-size: 13px;
}
.cms-page .sv2-intro-tags-inline em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: #9aa4b5;
  margin: 14px 0 10px;
}
/* 卡片封面图 */
.cms-page .sv2-card-img {
  display: block;
  margin: -30px -20px 18px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #0f172a;
}
.cms-page .sv2-card-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.cms-page .sv2-card:hover .sv2-card-img img {
  transform: scale(1.05);
}
/* 封面图以负边距吃掉卡片原有顶部内边距, 贴合卡片上缘(全浏览器兼容) */
/* 响应式 */
@media (max-width: 991px) {
  .cms-page .sv2-intro-cols {
    flex-direction: column;
  }
  .cms-page .sv2-intro-figure {
    width: 100%;
  }
  .cms-page .sv2-intro-figure img {
    max-height: 420px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cms-page .sv2-intro-figure img {
    max-height: 260px;
  }
}
/* ============ 服务支持总览页 (sv2-hub 六大卡片) ============ */
.cms-page .sv2-hub-sec {
  background: #f5f6f8;
  padding: 56px 0 72px;
}
.cms-page .sv2-hub-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.cms-page .sv2-hub-card {
  flex: 1 1 calc(33.33% - 15px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.cms-page .sv2-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.13);
  border-color: rgba(0, 113, 188, 0.4);
}
.cms-page .sv2-hub-img {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
}
.cms-page .sv2-hub-img img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.cms-page .sv2-hub-card:hover .sv2-hub-img img {
  transform: scale(1.05);
}
.cms-page .sv2-hub-no {
  position: absolute;
  left: 14px;
  bottom: 10px;
  font-size: 30px;
  font-weight: 800;
  font-style: normal;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.cms-page .sv2-hub-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
}
.cms-page .sv2-hub-name {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
}
.cms-page .sv2-hub-en {
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #9aa4b5;
}
.cms-page .sv2-hub-desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.85;
  color: #556070;
  flex: 1;
}
.cms-page .sv2-hub-more {
  margin-top: 14px;
  font-size: 14px;
  color: #0071BC;
}
.cms-page .sv2-hub-more i {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.25s ease;
}
.cms-page .sv2-hub-card:hover .sv2-hub-more i {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  .cms-page .sv2-hub-card {
    flex: 1 1 calc(50% - 11px);
  }
}
@media (max-width: 479px) {
  .cms-page .sv2-hub-card {
    flex: 1 1 100%;
  }
  .cms-page .sv2-hub-no {
    font-size: 24px;
  }
}
/* ============ 隐藏导航栏全部二级下拉菜单 ============ */
.cms-navbar .cms-mega-panel,
.cms-navbar .cms-mega-panel--cards,
.cms-navbar .cms-menu-sub {
  display: none !important;
}
.cms-navbar .cms-menu > li.has-sub > a::before,
.cms-navbar .cms-menu > li.has-sub > a::after {
  display: none !important;
}
/* ============ 行业方案页 · 行业卡片补充样式 ============ */
.cms-page .sv2-ind-card h3 small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #9aa4b5;
}
.cms-page .sv2-ind-card .sv2-ind-need {
  text-align: left;
  margin: 4px 0 12px;
}
.cms-page .sv2-ind-points {
  text-align: left;
}
.cms-page .sv2-ind-points span {
  display: inline-block;
  margin: 0 6px 8px 0;
  padding: 5px 12px;
  border-radius: 15px;
  background: rgba(0, 113, 188, 0.07);
  border: 1px solid rgba(0, 113, 188, 0.18);
  color: #0071BC;
  font-size: 12.5px;
}
/* ============ 行业方案页 · 成效数据带 ============ */
.cms-page .sv2-stats {
  background: #0f172a;
  padding: 48px 0;
}
.cms-page .sv2-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cms-page .sv2-stats-item {
  flex: 1 1 22%;
  min-width: 220px;
  text-align: center;
  padding: 10px 12px;
}
.cms-page .sv2-stats-item + .sv2-stats-item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.cms-page .sv2-stats-item b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}
.cms-page .sv2-stats-item span {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 767px) {
  .cms-page .sv2-stats-item {
    flex: 1 1 50%;
    min-width: 140px;
  }
  .cms-page .sv2-stats-item:nth-child(3) {
    border-left: 0;
  }
  .cms-page .sv2-stats-item b {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  .cms-page .sv2-stats-item {
    flex: 1 1 100%;
  }
  .cms-page .sv2-stats-item + .cms-page .sv2-stats-item,
  .cms-page .sv2-stats-item + .sv2-stats-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}
/* ============ 成功案例页 · 案例卡片 (sv2-case-*) ============ */
.cms-page .sv2-case-sec {
  background: #f5f6f8;
  padding: 56px 0 72px;
}
.cms-page .sv2-case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.cms-page .sv2-case-card {
  flex: 1 1 calc(33.33% - 15px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.cms-page .sv2-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 113, 188, 0.35);
}
.cms-page .sv2-case-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
}
.cms-page .sv2-case-tag {
  align-self: flex-start;
  font-style: normal;
  font-size: 12px;
  color: #0071BC;
  background: rgba(0, 113, 188, 0.08);
  border: 1px solid rgba(0, 113, 188, 0.18);
  border-radius: 14px;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.cms-page .sv2-case-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.5;
}
.cms-page .sv2-case-card p {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.85;
  color: #556070;
  text-align: justify;
}
.cms-page .sv2-case-card p b {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #9aa4b5;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.cms-page .sv2-case-result {
  border-top: 1px dashed #e2e8f0;
  padding-top: 10px;
  margin-top: auto;
}
.cms-page .sv2-case-result b {
  color: #0071BC;
}
@media (max-width: 1199px) {
  .cms-page .sv2-case-card {
    flex: 1 1 calc(50% - 11px);
  }
}
@media (max-width: 479px) {
  .cms-page .sv2-case-card {
    flex: 1 1 100%;
  }
}
/* ============ 案例详情页 (sv2-cd-*) ============ */
.cms-page .sv2-cd-info-sec {
  background: #fff;
  padding: 8px 0 40px;
}
.cms-page .sv2-cd-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: #f5f6f8;
  border: 1px solid #e7eaf0;
  border-radius: 12px;
  padding: 18px 24px;
}
.cms-page .sv2-cd-info > div {
  flex: 1 1 200px;
  min-width: 180px;
}
.cms-page .sv2-cd-info em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: #9aa4b5;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.cms-page .sv2-cd-info b {
  font-size: 16px;
  color: #0f172a;
}
.cms-page .sv2-cd-svcs span {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 5px 12px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #dfe6ef;
  color: #33475a;
  font-size: 12.5px;
  font-weight: 400;
}
.cms-page .sv2-cd-body {
  background: #fff;
  padding-top: 0;
}
.cms-page .sv2-cd-cols {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.cms-page .sv2-cd-main {
  flex: 1.7;
}
.cms-page .sv2-cd-block {
  margin-bottom: 30px;
}
.cms-page .sv2-cd-block h2 {
  position: relative;
  margin: 0 0 14px;
  padding-left: 14px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}
.cms-page .sv2-cd-block h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  border-radius: 2px;
  background: #0071BC;
}
.cms-page .sv2-cd-block p {
  margin: 0;
  font-size: 15.5px;
  line-height: 2.05;
  color: #33475a;
  text-align: justify;
}
.cms-page .sv2-cd-result {
  background: rgba(0, 113, 188, 0.05);
  border: 1px solid rgba(0, 113, 188, 0.16);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 0;
}
.cms-page .sv2-cd-result h2::before {
  background: #0f172a;
}
.cms-page .sv2-cd-fig {
  flex: 1;
  margin: 6px 0 0;
  position: sticky;
  top: 90px;
}
.cms-page .sv2-cd-fig img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.13);
}
/* 列表卡片作为链接 */
a.cms-page .sv2-case-card,
.cms-page a.sv2-case-card {
  text-decoration: none;
  color: inherit;
}
.cms-page .sv2-case-card .sv2-case-more {
  margin-top: 4px;
  font-size: 13.5px;
  color: #0071BC;
}
.cms-page .sv2-case-card .sv2-case-more i {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.25s ease;
}
.cms-page .sv2-case-card:hover .sv2-case-more i {
  transform: translateX(4px);
}
@media (max-width: 991px) {
  .cms-page .sv2-cd-cols {
    flex-direction: column;
  }
  .cms-page .sv2-cd-fig {
    position: static;
    width: 100%;
  }
}
/* ============ 核心实力页 · 行业实力图文 (sv2-ab-*) ============ */
.cms-page .sv2-ab-stats {
  background: #0f172a;
  padding: 52px 0;
}
.cms-page .sv2-ab-sec {
  background: #fff;
  padding: 56px 0 64px;
}
.cms-page .sv2-ab-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.cms-page .sv2-ab-row {
  display: flex;
  align-items: center;
  gap: 44px;
}
.cms-page .sv2-ab-row--rev .sv2-ab-fig {
  order: 2;
}
.cms-page .sv2-ab-fig {
  flex: 1;
  min-width: 0;
}
.cms-page .sv2-ab-fig img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cms-page .sv2-ab-row:hover .sv2-ab-fig img {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.18);
}
.cms-page .sv2-ab-txt {
  flex: 1.12;
  min-width: 0;
}
.cms-page .sv2-ab-tag {
  display: inline-block;
  font-style: normal;
  font-size: 12px;
  color: #0071BC;
  background: rgba(0, 113, 188, 0.08);
  border: 1px solid rgba(0, 113, 188, 0.18);
  border-radius: 14px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.cms-page .sv2-ab-txt h3 {
  margin: 0 0 4px;
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.5;
}
.cms-page .sv2-ab-en {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 3px;
  color: #9aa4b5;
  text-transform: uppercase;
}
.cms-page .sv2-ab-txt > p {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 2;
  color: #33475a;
  text-align: justify;
}
.cms-page .sv2-ab-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.cms-page .sv2-ab-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 8px;
  background: #f5f6f8;
  border: 1px solid #e7eaf0;
  font-size: 13px;
  color: #33475a;
  transition: all 0.25s ease;
}
.cms-page .sv2-ab-points span i {
  color: #0071BC;
  font-size: 12px;
}
.cms-page .sv2-ab-points span:hover {
  border-color: rgba(0, 113, 188, 0.4);
  background: rgba(0, 113, 188, 0.04);
}
.cms-page .sv2-ab-honor {
  background: #f5f6f8;
  padding: 56px 0 64px;
}
.cms-page .sv2-ab-group {
  margin-bottom: 26px;
}
.cms-page .sv2-ab-group:last-child {
  margin-bottom: 0;
}
.cms-page .sv2-ab-group h3 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}
.cms-page .sv2-ab-group h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: #0071BC;
}
.cms-page .sv2-ab-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cms-page .sv2-ab-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13.5px;
  color: #33475a;
  transition: all 0.25s ease;
}
.cms-page .sv2-ab-chips span i {
  color: #9aa4b5;
  font-size: 14px;
}
.cms-page .sv2-ab-chips span:hover {
  border-color: rgba(0, 113, 188, 0.4);
  box-shadow: 0 8px 20px rgba(0, 113, 188, 0.1);
}
.cms-page .sv2-ab-chips span:hover i {
  color: #0071BC;
}
@media (max-width: 991px) {
  .cms-page .sv2-ab-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .cms-page .sv2-ab-row--rev .sv2-ab-fig {
    order: 0;
  }
  .cms-page .sv2-ab-sec {
    padding: 40px 0 44px;
  }
  .cms-page .sv2-ab-list {
    gap: 36px;
  }
}
@media (max-width: 479px) {
  .cms-page .sv2-ab-stats {
    padding: 36px 0;
  }
  .cms-page .sv2-ab-txt h3 {
    font-size: 18px;
  }
  .cms-page .sv2-ab-txt > p {
    font-size: 14px;
  }
  .cms-page .sv2-ab-points span {
    padding: 6px 11px;
    font-size: 12.5px;
  }
  .cms-page .sv2-ab-honor {
    padding: 40px 0 44px;
  }
  .cms-page .sv2-ab-chips span {
    padding: 8px 14px;
    font-size: 12.5px;
  }
}
/* ============ 联系我们页 (native:v2 / sv2-ct-*) ============
   注: 本文件为 cms.css 唯一编译源 (npx lessc public/assets/less/cms.less public/assets/css/cms.css),
   所有区块(含 sv2-*)必须写入本文件后再编译, 勿直接手改 cms.css, 否则重编译会被冲掉 */
.cms-page .sv2-ct-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cms-page .sv2-ct-card {
  flex: 1 1 calc(25% - 14px);
  min-width: 220px;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cms-page .sv2-ct-card:hover {
  border-color: #0071BC;
  box-shadow: 0 8px 24px rgba(0, 113, 188, 0.08);
}
.cms-page .sv2-ct-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0f172a;
}
.cms-page .sv2-ct-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #47586b;
}
.cms-page .sv2-ct-card a {
  color: #0071BC;
  text-decoration: none;
}
.cms-page .sv2-ct-card a:hover {
  text-decoration: underline;
}
.cms-page .sv2-ct-ic {
  display: inline-block;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}
.cms-page .sv2-ct-ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cms-page .sv2-ct-map img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid #e8edf3;
}
.cms-page .sv2-ct-form {
  max-width: 760px;
}
.cms-page .sv2-ct-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
}
.cms-page .sv2-ct-row .sv2-ct-field {
  flex: 1 1 calc(50% - 9px);
  min-width: 0;
}
.cms-page .sv2-ct-field {
  margin-bottom: 18px;
}
.cms-page .sv2-ct-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #33475a;
}
.cms-page .sv2-ct-field em {
  color: #e02e2e;
  font-style: normal;
  margin-left: 2px;
}
.cms-page .sv2-ct-field input,
.cms-page .sv2-ct-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  color: #0f172a;
  background: #fff;
  border: 1px solid #d9e1ea;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease;
}
.cms-page .sv2-ct-field input:focus,
.cms-page .sv2-ct-field textarea:focus {
  border-color: #0071BC;
}
.cms-page .sv2-ct-field textarea {
  min-height: 130px;
  resize: vertical;
}
.cms-page .sv2-ct-submit {
  padding: 12px 38px;
  font-size: 15px;
  border: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .cms-page .sv2-hero.sv2-hero-ct {
    background-image: url(/uploads/cms/202608/page-banners/banner-m-contact.jpg) !important;
  }
  .cms-page .sv2-ct-card {
    flex: 1 1 calc(50% - 9px);
    min-width: 0;
    padding: 22px 12px;
  }
  .cms-page .sv2-ct-ic {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }
  .cms-page .sv2-ct-card h3 {
    font-size: 16px;
  }
  .cms-page .sv2-ct-card p {
    font-size: 13px;
  }
  .cms-page .sv2-ct-row .sv2-ct-field {
    flex: 1 1 100%;
  }
  .cms-page .sv2-ct-submit {
    width: 100%;
  }
}
/* 联系卡数值文字放大 (电话/邮箱/邮编) */
.cms-page .sv2-ct-card .sv2-ct-val {
  font-size: 19px;
  font-weight: 600;
  color: #0f172a;
}
.cms-page .sv2-ct-card .sv2-ct-val a {
  font-size: inherit;
  font-weight: inherit;
}
@media (max-width: 767px) {
  .cms-page .sv2-ct-card .sv2-ct-val {
    font-size: 17px;
  }
}
/* 联系地址文字放大 */
.cms-page .sv2-ct-card .sv2-ct-addr-val {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
}
@media (max-width: 767px) {
  .cms-page .sv2-ct-card .sv2-ct-addr-val {
    font-size: 14px;
  }
}
/* 联系页地图: 高德交互地图 + 静态图兜底 + 导航链接 */
.cms-page .sv2-ct-map {
  position: relative;
}
.cms-page .sv2-ct-map-live {
  display: none;
  width: 100%;
  height: 420px;
  border-radius: 10px;
  border: 1px solid #e8edf3;
  overflow: hidden;
}
.cms-page .sv2-ct-map-live.sv2-ct-map-on {
  display: block;
}
.cms-page .sv2-ct-map-live.sv2-ct-map-on + .sv2-ct-map-fallback {
  display: none;
}
.cms-page .sv2-ct-map-nav {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  font-size: 14px;
  color: #fff;
  background: #0071BC;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 113, 188, 0.35);
  transition: background 0.2s ease;
}
.cms-page .sv2-ct-map-nav:hover {
  background: #0060a3;
  color: #fff;
}
@media (max-width: 767px) {
  .cms-page .sv2-ct-map-live {
    height: 260px;
  }
  .cms-page .sv2-ct-map-nav {
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 13px;
  }
}
/* 联系页二级菜单条 (复刻了解我们子页导航条) */
.cms-page .sv2-ct-subnav {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  background: #fff;
}
.cms-page .sv2-ct-subnav a {
  display: inline-block;
  padding: 0 30px;
  line-height: 80px;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cms-page .sv2-ct-subnav a:hover {
  color: #0071BC;
}
@media (max-width: 767px) {
  .cms-page .sv2-ct-subnav {
    display: none;
  }
}
.cms-page .sv2-ct-subnav a.cur {
  color: #0071BC;
}
/* ============================================================================
   v4: 新闻详情页 - 相关新闻宽屏卡片 (每行三个, 正文下方全宽区块)
   替换原 layout-110 侧栏列表; 卡片 = 16:9 大图 + 两行标题 + 日期,
   悬停浮起 + 图片微缩放; 响应式: ≥992 三列 / 768-991 两列 / <768 单列
   ========================================================================== */
/* v6: 选择器统一加 .cms-page 前缀提升特异性 —— cms-modules.css (后加载) 开头有通配重置
   ".cms-page div,ul,li,h3,a...{margin:0;padding:0;border:none}" (特异性 0,1,1),
   会覆盖单 class 的 margin/padding/border: 此前 .jh-relnews-wrap 的 margin:0 auto
   被覆盖为 0 导致整个板块贴左不居中(反复修不好的根因), 卡片边框也被抹掉。
   加前缀后特异性 ≥0,2,0 稳赢通配重置, 请勿再去掉前缀"优化"。 */
.cms-page .jh-relnews {
  display: block;
  float: none;
  clear: both;
  width: 100%;
  padding: 42px 0 26px;
}
.cms-page .jh-relnews-wrap {
  /* 居中对称容器: 与上方正文模块内容宽 (max-width:1400px) 对齐 */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.cms-page .jh-relnews-head {
  /* 标题单独一行居中, 英文角标居中置于其下, 底部居中装饰线 */
  text-align: center;
  margin-bottom: 26px;
}
.cms-page .jh-relnews-head h3 {
  display: block;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 2px;
}
.cms-page .jh-relnews-head .jh-relnews-en {
  display: block;
  margin-top: 9px;
  font-size: 11px;
  letter-spacing: 3px;
  color: #94a3b8;
  font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", Arial, sans-serif;
}
.cms-page .jh-relnews-head::after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #1d5dea, #38bdf8);
}
.cms-page .jh-relnews-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cms-page .jh-relnews-item {
  min-width: 0;
}
.cms-page .jh-relnews-item a {
  display: block;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cms-page .jh-relnews-item a:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
  border-color: #d6e3ff;
}
.cms-page .jh-relnews-item .jh-relnews-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef2f7;
}
.cms-page .jh-relnews-item .jh-relnews-img i {
  color: #cbd5e1;
  font-size: 30px;
}
.cms-page .jh-relnews-item .jh-relnews-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cms-page .jh-relnews-item a:hover .jh-relnews-img img {
  transform: scale(1.06);
}
.cms-page .jh-relnews-item .jh-relnews-body {
  display: block;
  padding: 14px 16px 15px;
}
.cms-page .jh-relnews-item b.jh-relnews-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: #1e293b;
  word-break: break-word;
  /* 定高两行, 保证不同标题长度下日期基线对齐 */
  height: 48px;
  transition: color 0.2s ease;
}
.cms-page .jh-relnews-item a:hover .jh-relnews-title {
  color: #1d5dea;
}
.cms-page .jh-relnews-item time {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: #94a3b8;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cms-page .jh-relnews-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 767px) {
  .cms-page .jh-relnews {
    padding: 26px 0 14px;
  }
  .cms-page .jh-relnews-head {
    margin-bottom: 14px;
  }
  .cms-page .jh-relnews-head h3 {
    font-size: 19px;
  }
  .cms-page .jh-relnews-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cms-page .jh-relnews-item b.jh-relnews-title {
    height: auto;
    min-height: 24px;
  }
}
