/* ======================================================================
     0. 区块通用标题  .sec-ttl        首页五个区块共用
     1. 核心服务      .indexService
     2. 经典案例      .indexCase      （同结构也用于 article-details.html 的「相关案例」）
     3. 合作客户      .indexPartner
     4. 团队实力      .indexteam
     5. 新闻资讯      .idx-news01
   ====================================================================== */

/* ----------------------------------------------------------------------
   0. 区块通用标题 .sec-ttl
   ---------------------------------------------------------------------- */
.sec-ttl { position: relative; margin: 0 0 40px; }
.sec-ttl h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: clamp(10px, 1.1vw, 16px);
  font-size: clamp(26px, 4vw, 45px);
  font-weight: 800;
  letter-spacing: clamp(1px, .25vw, 3px);
  line-height: 1.35;
  color: var(--ink);
}
.sec-ttl .sub {
  max-width: 680px;
  font-size: clamp(15px, 1.2vw + 5px, 20px);
  line-height: 1.95;
  color: var(--muted);
}
.sec-ttl .more { margin: 26px 0 0; }
.sec-ttl .more a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 34px;
  border: 2px solid var(--brand);
  border-radius: 23px;
  background: #fff;
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all .3s ease;
}
.sec-ttl .more a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s ease;
}
.sec-ttl .more a:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-brand);
  transform: translateY(-2px);
}
.sec-ttl .more a:hover::after { transform: translateX(3px) rotate(45deg); }
.sec-ttl.is-center { text-align: center; }
.sec-ttl.is-center h2::after { left: 50%; transform: translateX(-50%); }
.sec-ttl.is-center .sub { margin-left: auto; margin-right: auto; }
.sec-ttl.is-light h2 { color: #fff; }
.sec-ttl.is-light .sub { color: rgba(255, 255, 255, .62); }
.sec-ttl.is-lg .sub { margin-top: clamp(12px, 1.2vw, 18px); max-width: 780px; font-size: clamp(14px, 1.2vw + 4px, 18px); line-height: 1.9; }

@media (max-width: 767px) {
  .sec-ttl.is-lg .sub { margin-top: 12px; }
  .sec-ttl .more a { height: 42px; padding: 0 26px; }
}

/* 24.2 首页主视觉轮播 */
.home-banner {
  --swiper-theme-color: var(--brand);
  --swiper-navigation-color: var(--brand);
  --swiper-pagination-color: var(--brand);
  position: relative;                 /* 让 ::after 蒙版相对 banner 定位 */
  height: min(72vh, 760px);           /* 收紧：原 78vh / 840px 太长，底部露出大片黑色桌面 */
  min-height: 460px;                  /* 收紧：原 540px，缩短后减少暗部呈现 */
  background: #0d1117;                /* 兜底：与图片底部深色一致，避免出现断层黑边 */
}
.home-banner .swiper-slide { position: relative; overflow: hidden; }
.home-banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;        /* 偏上对齐，把原图底部那段黑桌面裁出可视区 */
}

/* 文案容器：左侧贴边 + 垂直居中，文字左对齐 */
.home-banner .banner-lead-in {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 760px;
  text-align: left;
  color: #fff;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .38);
}
/* 第一行（英文）：最大字号，视觉主标题 */
.home-banner .b-lead-en {
  display: block;
  margin: 0 0 15px;
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  font-family: "Bebas Neue", var(--font);
}
/* 第二行（中文标题）：次之 */
.home-banner .b-lead-cn {
  display: block;
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3px;
  color: #fff;
}
/* 第三行（描述）：最小 */
.home-banner .b-lead-txt {
  margin: 0;
  max-width: 640px;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .5px;
  color: #fff;
}

/* 分页器 / 前后按钮 */
/* 分页器：毛玻璃胶囊，居中悬浮 */
.home-banner .swiper-pagination {
  left: 50% !important;
  bottom: 26px !important;
  width: auto !important;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10, 14, 22, .34);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 0;
}
.home-banner .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  background: rgba(255, 255, 255, .6);
  opacity: 1;
  transition: width .3s ease, background .3s ease;
}
.home-banner .swiper-pagination-bullet:hover { background: #fff; }
.home-banner .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(255, 90, 0, .6);
}
.home-banner .swiper-button-prev,
.home-banner .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(4px);
  color: var(--brand);
  transition: all .3s ease;
}
.home-banner .swiper-button-prev { left: 26px; }
.home-banner .swiper-button-next { right: 26px; }
.home-banner .swiper-button-prev:hover,
.home-banner .swiper-button-next:hover { color: #fff; background: var(--grad); border-color: transparent; box-shadow: var(--shadow-brand); }
.home-banner .swiper-button-prev::after,
.home-banner .swiper-button-next::after {
  font-size: 19px;
  font-weight: 900;
  transition: transform .3s ease;
}
.home-banner .swiper-button-prev:hover::after { transform: translateX(-3px); }
.home-banner .swiper-button-next:hover::after { transform: translateX(3px); }

@media (max-width: 991px) {
  .home-banner { height: min(60vh, 520px); min-height: 380px; }
}
@media (max-width: 767px) {
  .home-banner { height: 34vh; min-height: 280px; }
  .home-banner .banner-lead-in { left: 20px; right: 20px; top: 50%; bottom: auto; width: auto; text-align: center; }
  /* 文案在窄屏仍保持 大 > 中 > 小 的层级，上限收紧以贴合窄屏 */
  .home-banner .b-lead-en { font-size: clamp(30px, 8.5vw, 66px); letter-spacing: 2px; margin-bottom: 8px; }
  .home-banner .b-lead-cn { font-size: clamp(18px, 4vw, 30px); letter-spacing: 2px; margin-bottom: 12px; }
  .home-banner .b-lead-txt { font-size: clamp(13px, 1.6vw + 8px, 15px); max-width: none; margin: 0 auto; }
  .home-banner .swiper-pagination { bottom: 14px !important; padding: 6px 12px; }
  .home-banner .swiper-button-prev,
  .home-banner .swiper-button-next { display: none; }
}

/* ======================================================================
   1. 核心服务 .indexService
   ====================================================================== */

/* 1.1 容器与标题区（标题复用 .sec-ttl，见第 0 节） */
.indexService {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 60px 0 0;
  overflow: hidden;
}
.indexService .sec-ttl {
  flex-shrink: 0;
  margin: 0;
  padding: 0 24px 44px;
}

.indexService .List {
  position: relative;
  display: flex;
  margin: 0;
  padding: 0;
  min-height: 540px;
  list-style: none;
  background: #fff;
  border-top: 1px solid #eef1f6;
}
.indexService .List dl {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  height: 100%;
  min-height: 540px;
  display: block;
  float: none;
  margin: 0;
  padding: 0;
  text-align: left;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition: background-color .4s ease,
              transform .5s cubic-bezier(.2, .8, .2, 1),
              box-shadow .5s ease,
              border-radius .5s ease;
}
.indexService .List dl + dl { border-left: 1px solid #eef1f6; }
.indexService .List dl:hover,
.indexService .List dl:focus-within {
  flex: 1;
  z-index: 6;
  background: #0e1622;
  color: #fff;
  border-left-color: transparent;
}
.indexService .List dl:hover + dl { border-left-color: transparent; }
.indexService .List dl:focus-within dd h3,
.indexService .List dl:focus-within dd .subs h6 { color: #fff; }
.indexService .List dl > a {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

/* 1.3 隐藏模板里多余节点（i.icon / desc / go / p），.pic 保留为服务图标 */
.indexService .List dl dd .go,
.indexService .List dl > a > p { display: none !important; }

/* 1.4 服务图标 .pic：默认态在第 1 行右侧，跨「标题 + 英文」两行垂直居中
   扁平化图标托 = 品牌浅色纯底 + 1px 描边，无渐层、无外发光 */
.indexService .List dl dd .pic {
  grid-area: 1 / 2 / 3 / 3;
  position: relative;
  display: block;
  align-self: center;
  justify-self: end;
  margin: 0;
  line-height: 1;
}
.indexService .List dl dd .pic i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 106, 0, .10);
  color: var(--brand);
  font-size: 26px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 106, 0, .16);
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
}
.indexService .List dl:hover dd .pic i,
.indexService .List dl:focus-within dd .pic i {
  background: var(--brand);
  color: #fff;
  transform: translateY(-4px) scale(1.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .32);
}

/* 1.5 dd 容器：默认态五行栅格
   第 1 行：左 h3（.pic 图标在右，跨前两行垂直居中）
   第 2 行：.en 英文副标题
   第 3 行：.subs
   第 4 行：1fr 弹性留白，底部放分割细线（dd::after）
   第 5 行：左 .num-l
   注：内边距放在 dd 上而不是 a 上，dd 铺满整张卡片，栅格才能撑满 */
.indexService .List dl dd {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 44px 32px 24px;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
  column-gap: 14px;
}

/* 1.6 标题 h3：默认态第 1 行左侧 */
.indexService .List dl dd h3 {
  grid-area: 1 / 1 / 2 / 2;
  position: relative;
  z-index: 5;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: left;
}
.indexService .List dl:hover dd h3 { color: #fff; }

/* 1.7 英文副标题 .en：h3 正下方（全大写 + 字距） */
.indexService .List dl dd .en {
  grid-area: 2 / 1 / 3 / 2;
  display: block;
  margin: 6px 0 0;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .75;
  transition: all .3s ease;
}
.indexService .List dl:hover dd .en { color: rgba(255, 255, 255, .75); opacity: 1; }

/* 1.8 子项清单 .subs h6：默认态第 3 行，通栏 */
.indexService .List dl dd .subs {
  grid-area: 3 / 1 / 4 / 3;
  margin: 18px 0 0;
  padding: 0;
}
.indexService .List dl dd .subs h6 {
  position: relative;
  margin: 0;
  padding: 0 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 2.1;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.indexService .List dl dd .subs h6::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .5;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .07);
  transform: translateY(-50%);
  transition: all .3s ease;
}
.indexService .List dl:hover dd .subs h6,
.indexService .List dl:focus-within dd .subs h6 { color: rgba(255, 255, 255, .9); }
.indexService .List dl:hover dd .subs h6::before,
.indexService .List dl:focus-within dd .subs h6::before {
  background: #fff;
  opacity: 1;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .12);
}

/* 1.9 大编号 .num-l（默认态：第 5 行左对齐、贴卡片底部）
   Bebas Neue + 品牌单色字，作为底部信息区的水印主视觉；
   hover 用透明度淡出（保留占位），避免栅格与分割线跳动 */
.indexService .List dl dd .num-l {
  grid-area: 5 / 1 / 6 / 3;
  align-self: end;
  justify-self: start;
  margin: 0;
  padding: 0;
  font-family: "Bebas Neue", var(--font);
  font-size: 72px;
  font-weight: 400;
  line-height: .9;
  letter-spacing: 3px;
  color: var(--brand);
  opacity: .30;
  transition: opacity .35s ease;
}
.indexService .List dl:hover dd .num-l,
.indexService .List dl:focus-within dd .num-l { opacity: 0; }

/* 1.10 背景图（hover 态）：6 项各配一张 */
.indexService .List dl .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .5s ease, transform 1.2s ease;
  z-index: 0;
  pointer-events: none;
}
.indexService .List dl:hover .bg,
.indexService .List dl:focus-within .bg { opacity: 1; transform: scale(1); }
.indexService .List dl:nth-child(1) .bg { background-image: url('../images/ser-nimg480_1.jpg'); }
.indexService .List dl:nth-child(2) .bg { background-image: url('../images/ser-nimg480_2.jpg'); }
.indexService .List dl:nth-child(3) .bg { background-image: url('../images/ser-nimg480_3.jpg'); }
.indexService .List dl:nth-child(4) .bg { background-image: url('../images/ser-nimg480_4.jpg'); }
.indexService .List dl:nth-child(5) .bg { background-image: url('../images/ser-nimg480_5.jpg'); }
.indexService .List dl:nth-child(6) .bg { background-image: url('../images/ser-nimg480_6.jpg'); }

/* 1.11 暗色蒙版（hover）：单色实心遮罩，只保证白字可读，不做径向 / 斜向渐层 */
.indexService .List dl:hover::after,
.indexService .List dl:focus-within::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 24, .58);
  pointer-events: none;
  z-index: 1;
}

/* 1.12 品牌色条带（hover 态）：纯色底 + 顶部高光细线，箭头随条带滑入后右移
   无任何投影，配合卡片本身的无阴影设计，整节完全扁平 */
.indexService .List dl .bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 36px;
  transform: translateY(105%);
  transition: transform .42s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}
.indexService .List dl .bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, .35);
}
.indexService .List dl:hover .bar,
.indexService .List dl:focus-within .bar { transform: translateY(0); }
.indexService .List dl .bar .num {
  font-size: 27px;
  font-weight: 400;
  font-family: "Bebas Neue", var(--font);
  letter-spacing: 3px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(120, 22, 0, .35);
}
.indexService .List dl .bar .arrow {
  display: block;
  width: 40px;
  height: 12px;
  position: relative;
  transition: transform .42s cubic-bezier(.2, .8, .2, 1);
}
.indexService .List dl:hover .bar .arrow,
.indexService .List dl:focus-within .bar .arrow { transform: translateX(5px); }
.indexService .List dl .bar .arrow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: #fff;
}
.indexService .List dl .bar .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* 1.13 响应式 */

/* ≤1199：六列改竖排，一屏一项 */
@media (max-width: 1199px) {
  .indexService { padding: 30px 0; }
  .indexService .List { flex-direction: column; min-height: 0; }
  .indexService .List dl { min-height: 360px; flex: 1 1 auto; border-left: 0; }
  .indexService .List dl + dl { border-top: 1px solid #eef1f6; }
  .indexService .List dl:hover + dl { border-top-color: transparent; }
  .indexService .List dl:hover { flex: 1 1 auto; }
  .indexService .List dl:hover,
  .indexService .List dl:focus-within { transform: translateY(-4px); }
  .indexService .List dl dd { padding: 40px 24px 24px; }
  .indexService .List dl dd .num-l { font-size: 56px; }
  .indexService .List dl .bar { padding: 12px 24px; }
}
@media (max-width: 991px) {
  .indexService .List dl dd h3 { font-size: 20px; }
  .indexService .List dl dd .subs h6 { font-size: 12px; }
  .indexService .List dl .bar .num { font-size: 24px; }
}

@media (max-width: 767px) {
  .indexService .sec-ttl { padding: 0 20px 32px; }
  .indexService .sec-ttl .more { margin-top: 20px; }
  .indexService .List dl dd .subs,
  .indexService .List dl dd .num-l { display: none; }
  .indexService .List {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 16px 12px;
    background: transparent;
    border-top: 0;
  }
  .indexService .List dl > a {
    position: static;
    display: block;
  }
  .indexService .List dl,
  .indexService .List dl + dl {
    border: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f4f9 100%);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .05);
    min-height: 0;
    height: auto;
  }
  .indexService .List dl dd {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-items: center;
    align-content: center;
    padding: 22px 14px;
    text-align: center;
  }
  .indexService .List dl dd .pic {
    grid-area: auto;
    justify-self: center;
    align-self: center;
    margin: 0 0 12px;
  }
  .indexService .List dl dd h3 {
    grid-area: auto;
    font-size: 17px;
    letter-spacing: .5px;
    text-align: center;
  }
  .indexService .List dl dd .en {
    grid-area: auto;
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-align: center;
  }
  .indexService .List dl .bar { padding: 10px 20px; }
  .indexService .List dl .bar .num { font-size: 22px; }
  .indexService .List dl dd .pic i { width: 46px; height: 46px; font-size: 22px; border-radius: 14px; }
}

/* ======================================================================
   2. 经典案例 .indexCase
   ====================================================================== */

/* 2.1 版块容器与轨道外套 */
.indexCase { padding: 74px 0 70px; background: var(--bg-soft); overflow-x: clip; }
.indexCase .row { margin-left: 0; margin-right: 0; }
.indexCase .row > ul,
.indexCase .row > ul > li { min-width: 0; }
.indexCase ul { padding: 0; }
.indexCase .row > ul {
  --case-row: 360px;              /* 拼贴版式：每行统一高度，按断点调小 */
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));   /* 默认单列 */
  gap: 28px;
  margin: 0;
  padding: 0;
}

/* 2.2 卡片外壳：默认无边框，浮起靠阴影 */
.indexCase .row > ul li {
  position: relative;
  margin: 0;
  width: auto;
  background: #fff;
  border: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(17, 24, 39, .07);
  transition: translate .5s cubic-bezier(.22, .61, .36, 1), box-shadow .5s ease;
}
.indexCase .row > ul li:hover {
  translate: 0 -8px;
  box-shadow: 0 20px 44px rgba(17, 24, 39, .14), 0 0 0 1px rgba(255, 106, 0, .12);
}

.indexCase ul li a.pic {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.indexCase ul li a.pic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.22, .61, .36, 1);
}
.indexCase ul li .pic .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  padding: 52px 78px 20px 22px;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0) 0%, rgba(6, 10, 18, .5) 45%, rgba(6, 10, 18, .92) 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .5s cubic-bezier(.22, .61, .36, 1);
}
.indexCase ul li .pic .cap .t {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1.45;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}
.indexCase ul li .pic .cap .d {
  position: relative;
  display: block;
  margin-top: 8px;
  padding-left: 22px;
  font-size: 12px;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, .72);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color .35s ease;
}
.indexCase ul li .pic .cap .d::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 2px;
  margin-top: -1px;
  border-radius: 2px;
  background: var(--grad);
}
.indexCase ul li .pic .cap::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .10);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M9 7h8v8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  transition: all .4s ease;
}

.indexCase ul li:hover a.pic img { transform: scale(1.08); }
.indexCase .row > ul li:hover .pic .cap,
.indexCase .row > ul li:focus-within .pic .cap { opacity: 1; transform: translateY(0); }
.indexCase ul li:hover .pic .cap .t { transform: translateY(-2px); }
.indexCase ul li:hover .pic .cap .d { color: rgba(255, 255, 255, .95); }
.indexCase ul li:hover .pic .cap::after {
  background-color: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 10px 22px rgba(255, 90, 0, .45);
  transform: translateX(3px);
}

@media (hover: none) {
  .indexCase ul li .pic .cap { opacity: 1; transform: none; }
}

@media (min-width: 768px) {
  .indexCase .row > ul {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: var(--case-row);
  }
  .indexCase .row > ul li:nth-child(5n + 1),
  .indexCase .row > ul li:nth-child(5n + 2) { grid-column: span 3; }
  .indexCase .row > ul li:nth-child(5n + 3),
  .indexCase .row > ul li:nth-child(5n + 4),
  .indexCase .row > ul li:nth-child(5n + 5) { grid-column: span 2; }
  .indexCase ul li a.pic {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 991px) {
  .indexCase ul li .pic .cap .t { font-size: 18px; }
}

@media (max-width: 767px) {
  .indexCase .row > ul { gap: 18px; }
  .indexCase .row > ul li { border-radius: 14px; }
  .indexCase .row > ul li::after { height: 2px; }
  .indexCase ul li a.pic { aspect-ratio: 4 / 3; }
  .indexCase ul li .pic .cap { padding: 46px 66px 16px 16px; }
  .indexCase ul li .pic .cap .t { font-size: 16px; }
  .indexCase ul li .pic .cap .d { margin-top: 6px; padding-left: 18px; font-size: 11px; }
  .indexCase ul li .pic .cap .d::before { width: 11px; }
  .indexCase ul li .pic .cap::after { right: 16px; bottom: 15px; width: 34px; height: 34px; background-size: 13px 13px; }
}

/* ----------------------------------------------------------------------
   3. 合作客户 .indexPartner
   ---------------------------------------------------------------------- */
.indexPartner {
  padding: 0 0 64px;
  background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 300px);
  overflow: hidden;
}
.indexPartner .sec-ttl { margin: 0; padding: 72px 24px 44px; }

.indexPartner .container-fluid { padding: 0; }
@media (max-width: 767px) {
  .indexPartner .container-fluid { margin: 0; }
}

.pTabs {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 44px;
  padding: 8px;
  background: #f1f4f9;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.pTabs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin: 0; padding: 0;
  list-style: none;
}
.pTabs li a {
  display: inline-block;
  padding: 9px 20px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--text);
  background: none;
  border: none;
  border-radius: 999px;
  transition: color .25s ease;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.pTabs li a:hover {
  color: var(--brand);
}
.pTabs li.on a {
  color: var(--brand);
  font-weight: 600;
  background: #fff;
  box-shadow: 0 8px 18px -10px rgba(255, 90, 0, .50),
              0 1px 3px -1px rgba(15, 24, 40, .10);
}
.pIntro {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 60px;
  padding: 48px 60px;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 58%, #f1f6fd 100%);
  border: 1px solid #eef1f6;
  border-radius: 26px;
  box-shadow: 0 30px 66px -42px rgba(15, 24, 40, .34),
              0 2px 8px -4px rgba(15, 24, 40, .05);
  overflow: hidden;
}

.pIntro::before,
.pIntro::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.pIntro::before {
  top: -130px; right: -90px;
  width: 360px; height: 360px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 122, 0, .15) 0%, rgba(255, 122, 0, 0) 70%);
}
.pIntro::after {
  bottom: -150px; left: -70px;
  width: 320px; height: 320px;
  background: radial-gradient(circle at 50% 50%, rgba(64, 128, 255, .10) 0%, rgba(64, 128, 255, 0) 70%);
}

.pIntro-l {
  position: relative;
  z-index: 1;
  padding-right: 56px;
  border-right: 1px dashed #e7edf6;
}
.pIntro-r {
  position: relative;
  z-index: 1;
  padding-left: 56px;
}

.pStat {
  display: block;
  width: max-content;
  font-size: 104px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 12px 20px rgba(255, 90, 0, .20));
}
.pStat-pct {
  font-size: .58em;
  margin-left: 4px;
  vertical-align: top;
}

.pStat-sub {
  position: relative;
  margin: 18px 0 0;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  letter-spacing: .3px;
}
.pStat-sub::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, .10);
}
.pIntro-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
  font-size: 23px;
  font-weight: 700;
  color: var(--ink);
}

.pIntro-title::before {
  content: "";
  width: 4px;
  height: 22px;
  border-radius: 999px;
  background: var(--grad);
}
.pIntro-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
  padding: 5px 13px;
  background: linear-gradient(150deg, rgba(255, 138, 0, .14) 0%, rgba(255, 61, 0, .05) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 0, .16);
  border-radius: 999px;
}
.pIntro-desc {
  margin: 0 0 26px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text);
  max-width: 480px;
}
.pIntro-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all .3s ease;
  text-decoration: none;
}
.pIntro-btn:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-brand);
  transform: translateY(-2px);
}
.pIntro-btn-arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M9 7h8v8'/%3E%3C/svg%3E"), linear-gradient(135deg, #ff8a00 0%, #ff3d00 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 12px 12px, 100% 100%;
  transition: all .3s ease;
}
.pIntro-btn:hover .pIntro-btn-arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6a00' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M9 7h8v8'/%3E%3C/svg%3E"), linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}


.pMarquee {
  --pm-w: 196px;
  --pm-h: 92px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
}
.pMarquee-text {
  position: relative;
  z-index: 1;
  padding: 8px 0;
}
.pMarquee-text::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -24px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, .16) 0%, rgba(255, 106, 0, 0) 68%);
  z-index: -1;
  pointer-events: none;
}
.pMarquee-text .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 13px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 3px;
  background: linear-gradient(135deg, rgba(255, 138, 0, .12), rgba(255, 61, 0, .06));
  border: 1px solid rgba(255, 106, 0, .22);
  border-radius: 999px;
  margin-bottom: 20px;
}
.pMarquee-text .kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, .15);
}
.pMarquee-text .big-num {
  font-family: "Arial Black", "Helvetica Neue", var(--font);
  font-size: clamp(60px, 9.5vw, 120px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #ff8a00 0%, #ff3d00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 6px 0 16px;
  filter: drop-shadow(0 12px 22px rgba(255, 90, 0, .22));
}
.pMarquee-text .big-num .plus {
  font-size: .5em;
  vertical-align: super;
  margin-left: 2px;
  font-weight: 900;
  background: none;
  -webkit-text-fill-color: var(--brand);
  color: var(--brand);
  letter-spacing: 0;
}
.pMarquee-text .title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 2px;
  line-height: 1.3;
}
.pMarquee-text .sub {
  margin: 0 0 30px;
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 2px;
}
.pMarquee-text .more-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 30px 0 34px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-decoration: none;
  box-shadow: 0 10px 24px -10px rgba(255, 90, 0, .45);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.pMarquee-text .more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .45), rgba(255, 255, 255, 0));
  transition: left .55s ease;
}
.pMarquee-text .more-btn::after {
  content: "→";
  font-size: 15px;
  letter-spacing: 0;
  transition: transform .3s ease;
}
.pMarquee-text .more-btn:hover {
  transform: translateY(-2px);
  background: var(--grad);
  box-shadow: 0 16px 30px -10px rgba(255, 90, 0, .55);
}
.pMarquee-text .more-btn:hover::before { left: 120%; }
.pMarquee-text .more-btn:hover::after { transform: translateX(4px); }

.pMarquee-logos {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px; 
  min-width: 0;
}

.pMarquee-logos::before,
.pMarquee-logos::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: min(16%, 180px);
  z-index: 3;
  pointer-events: none;
}
.pMarquee-logos::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.75) 34%, rgba(255,255,255,0) 100%);
}
.pMarquee-logos::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,.75) 34%, rgba(255,255,255,0) 100%);
}

.pMarquee-row {
  width: 100%;
}
.pMarquee-row.swiper {
  overflow: hidden;
  padding: 12px 0;
}
.pMarquee .swiper-wrapper {
  transition-timing-function: linear;
  align-items: center;
}
.pMarquee .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--pm-w);
  height: var(--pm-h);
  padding: 16px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, .04), 0 8px 18px -12px rgba(17, 24, 39, .16);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.partner-item:hover {
  border-color: rgba(255, 106, 0, .40);
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 16px 30px -14px rgba(255, 90, 0, .5);
}
.partner-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 991px) {
  .indexPartner { padding: 0 0 48px; }
  .indexPartner .sec-ttl { padding: 56px 20px 32px; }
  .pMarquee {
    --pm-w: 168px; --pm-h: 82px;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }
  .pMarquee-text { text-align: center; padding: 0; }
  .pMarquee-text::before { left: 50%; top: -30px; transform: translateX(-50%); }
  .pMarquee-text .title { letter-spacing: 1px; }
  .pMarquee-text .sub { letter-spacing: 1px; }
  .pIntro { grid-template-columns: 1fr; gap: 30px; max-width: 640px; padding: 36px 28px; }
  .pIntro-l { padding-right: 0; padding-bottom: 26px; border-right: 0; border-bottom: 1px dashed #e7edf6; }
  .pIntro-r { padding-left: 0; }
  .pTabs { margin-bottom: 32px; }
  .pStat { font-size: 120px; }
}
@media (max-width: 575px) {
  .pIntro { padding: 28px 20px; }
  .pStat { font-size: 92px; letter-spacing: -1px; }
  .pMarquee { --pm-w: 136px; --pm-h: 70px; }
  .pMarquee-logos::before,
  .pMarquee-logos::after { width: 56px; }
  .pMarquee-text .more-btn { height: 42px; padding: 0 26px; font-size: 13px; letter-spacing: 2px; }
}

/* ----------------------------------------------------------------------
   4. 团队实力 .indexteam
   ---------------------------------------------------------------------- */
.indexteam {
  background: linear-gradient(180deg, #f6f7fa 0%, #edf0f5 100%);
  padding: 60px 3.125%;
}
.com-biaoti { padding: 26px 0 34px; }
.com-biaoti .dn1 {
  position: relative;
  display: inline-block;
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 2px;
  margin: 0 0 14px;
}
.com-biaoti .dn1::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad);
  margin-top: 14px;
}
.com-biaoti .dn2 { color: var(--muted); font-size: 15px; }

.team-bot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.team-bot .blo-box {
  position: relative;
  width: auto;
  height: 380px;
  margin: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(17, 24, 39, .10);
  cursor: pointer;
}
.team-bot .blo-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 12, 20, .12) 0%, rgba(9, 12, 20, .34) 45%, rgba(9, 12, 20, .76) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity .45s ease;
}
.team-bot .blo-box:hover::before { opacity: 0; }

.team-bot .blo-box .img-box {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}
.team-bot .blo-box:hover .img-box { transform: scale(1.06); }

.team-bot .blo-box .dn-wen {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 2;
  padding: 0 22px;
  text-align: center;
  transform: translateY(-50%);
  transition: opacity .35s ease, transform .35s ease;
}
.team-bot .blo-box .dn-wen .dn-xian {
  width: 34px;
  height: 3px;
  border-radius: 3px;
  margin: 0 auto 16px;
  background: var(--brand);
}
.team-bot .blo-box .dn-wen .dn1 {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}
.team-bot .blo-box .dn-wen .dn2 {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.team-bot .blo-box .dn-jie {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  background: rgba(20, 24, 34, .88);
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
.team-bot .blo-box .dn-jie .jie-wen { width: 100%; max-width: 300px; text-align: center; }
.team-bot .blo-box .dn-jie .dn-xian1 {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  margin: 0 auto 18px;
  background: var(--brand);
}
.team-bot .blo-box .dn-jie .dp2 {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, .86);
}
.team-bot .blo-box:hover .dn-jie { 
  opacity: 1; 
  visibility: visible; 
  transform: scale(1); 
}
.team-bot .blo-box:hover .dn-wen { 
  opacity: 0; 
  transform: translateY(-50%) scale(.96); 
}
.com-navigation {
  background: var(--grad);
  color: #fff;
  width: 330px;
  height: 86px;
  line-height: 86px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 0 0 0 40px;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-brand);
}
.com-navigation .sp2 { 
  background: rgba(255, 255, 255, .7); 
}

.indexteam .team-bot2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 100%);
  border: 1px solid var(--line);
  border-radius: 0 20px 20px 20px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, .09);
  overflow: hidden;
}
.indexteam .team-bot2 .blo-box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  min-height: 200px;
  margin: 0;
  padding: 30px 22px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition: background .35s ease;
}
.indexteam .team-bot2 .blo-box::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, .16) 0%, rgba(255, 106, 0, 0) 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.indexteam .team-bot2 .blo-box:hover::after { opacity: 1; }
.indexteam .team-bot2 .blo-box > * { position: relative; z-index: 1; }
.indexteam .team-bot2 .blo-box:hover { background: linear-gradient(180deg, #fff, #fff5ec); }
.indexteam .team-bot2 .dn-sha { margin: 0 0 auto; }
.indexteam .team-bot2 .dn-sha .dp1 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--brand) !important;
  background: linear-gradient(180deg, #ffab45, #ff4d00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform .35s ease;
}
.indexteam .team-bot2 .blo-box:hover .dn-sha .dp1 { 
  background: linear-gradient(180deg, #ff6a00, #ff3d00); 
  -webkit-background-clip: text; 
  background-clip: text; 
  -webkit-text-fill-color: transparent; 
  transform: translateX(3px); 
}

.indexteam .team-bot2 .blo-box .dn-sha .dp1 .sp1 {
  position: static;
  margin: 0;
  padding: 0 0 2px 11px;
  border-left: 2px solid rgba(255, 106, 0, .30);
  font-size: 17px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  color: var(--ink) !important;
  background: transparent;
  -webkit-text-fill-color: var(--ink);
  transition: border-color .35s ease;
}
.indexteam .team-bot2 .blo-box:hover .dn-sha .dp1 .sp1 { color: var(--brand) !important; -webkit-text-fill-color: var(--brand); border-left-color: var(--brand); }
.indexteam .team-bot2 .dn-xia { margin-top: 22px; }
.indexteam .team-bot2 .blo-box .dn-xia .dp1 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .35s ease;
}

.indexteam .team-bot2 .dn-xia .dp1::before {
  content: "";
  flex: none;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transition: width .35s ease;
}
.indexteam .team-bot2 .blo-box:hover .dn-xia .dp1 { color: var(--ink); }
.indexteam .team-bot2 .blo-box:hover .dn-xia .dp1::before { width: 24px; }
.indexteam .team-bot2 .dn-xia .dp2 { margin: 20px 0 0; font-size: 13px; line-height: 1.9; }

@media (min-width: 768px) and (max-width: 991px) {
  .team-bot { gap: 20px; }
  .indexteam .team-bot2 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .indexteam .team-bot2 .blo-box:nth-child(3n) { border-right: 0; }
}
@media (min-width: 992px) {
  .indexteam .team-bot2 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .indexteam .team-bot2 .blo-box:last-child { border-right: 0; }
  .indexteam .team-bot2 .blo-box:not(:last-child) .dn-sha { position: relative; }
  .indexteam .team-bot2 .blo-box:not(:last-child) .dn-sha::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 12px;
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(255, 106, 0, .32);
    border-right: 2px solid rgba(255, 106, 0, .32);
    transform: rotate(45deg);
    transition: border-color .35s ease, right .35s ease;
  }
  .indexteam .team-bot2 .blo-box:not(:last-child):hover .dn-sha::after { border-color: var(--brand); right: 0; }
}
@media (min-width: 768px) {
  .team-bot { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
}

@media (max-width: 991px) {
  .indexteam .team-bot2 .dn-sha .dp1 { font-size: 44px; }
  .indexteam .team-bot2 .blo-box .dn-sha .dp1 .sp1 { font-size: 15px; }
}
@media (max-width: 767px) {
  .com-biaoti .dn1 { font-size: 28px; }
  .team-bot { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .team-bot .blo-box { height: 240px; }
  .team-bot .blo-box .dn-wen .dn1 { font-size: 20px; letter-spacing: 2px; }
  .team-bot .blo-box .dn-wen .dn2 { font-size: 11px; letter-spacing: 2px; }
  .team-bot .blo-box .dn-jie { padding: 22px 16px; }
  .team-bot .blo-box .dn-jie .dn-xian1 { margin-bottom: 12px; }
  .team-bot .blo-box .dn-jie .dp2 { font-size: 12px; line-height: 1.8; }
  .com-navigation { width: 100%; border-radius: 12px; padding-left: 24px; }
  .team-bot2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-bot2 .blo-box:nth-child(odd) { border-right: 0; }
  .team-bot2 .blo-box:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .indexteam .team-bot2 .blo-box { padding: 20px 14px 18px; }
  .indexteam .team-bot2 .dn-sha .dp1 { font-size: 38px; }
  .indexteam .team-bot2 .blo-box .dn-sha .dp1 .sp1 { font-size: 14px; padding-left: 8px; }
  .indexteam .team-bot2 .blo-box .dn-xia .dp1 { font-size: 11px; }
  .indexteam .team-bot2 .dn-xia .dp2 { font-size: 12px; }
  .indexteam .team-bot2 .dn-xia { margin-top: 14px; }
}

/* ----------------------------------------------------------------------
   5. 新闻资讯 .idx-news01
   ---------------------------------------------------------------------- */
.idx-news01 {
  position: relative;
  padding: 86px 0 90px;
  background:
    radial-gradient(900px 420px at 50% -8%, rgba(255, 106, 0, .07) 0%, transparent 68%),
    #fff;
  color: var(--text);
}
.idx-news01 .sec-ttl { margin-bottom: 4px; }
.idx-news01 .sec-ttl .sub { color: var(--muted); }

.abinewcate { padding: 28px 0 40px; }
.abinewcate ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.abinewcate ul li { background: none; padding: 0; }
.abinewcate ul li a {
  display: inline-block;
  padding: 0 22px;
  line-height: 38px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text);
  background: #f1f4f9;
  border: 1px solid transparent;
  transition: color .3s ease, background .3s ease, box-shadow .3s ease;
}
.abinewcate ul li a::after { display: none; }
.abinewcate ul li a:hover { color: var(--brand); background: rgba(255, 106, 0, .08); }
.abinewcate ul li.on a {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 20px -10px rgba(255, 90, 0, .6);
}

.abinewcaaa .abinewc { display: none; }
.abinewcaaa .abinewc.on { display: block; }

.news-feat {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: center;
  margin-bottom: 40px;
}
.news-feat-l { padding: 8px 0; }
.news-feat-l .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.news-feat-l .meta .cat {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255, 106, 0, .10);
  font-weight: 700;
  letter-spacing: 2px;
}
.news-feat-l .meta .sep { color: #e3e7ee; }
.news-feat-l .title {
  position: relative;
  margin: 0 0 30px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 1.5px;
  color: var(--ink);
}
.news-feat-l .more-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 7px 10px 7px 26px;
  border: 1px solid rgba(255, 106, 0, .38);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--brand);
  text-decoration: none;
  background: rgba(255, 106, 0, .06);
  transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.news-feat-l .more-btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.news-feat-l .more-btn:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.news-feat-l .more-btn:hover .arrow {
  background: #fff;
  color: var(--brand);
  transform: translateX(3px);
}

.news-feat-r {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f3f4f7;
  box-shadow: 0 24px 48px -22px rgba(255, 106, 0, .42);
}
.news-feat-r::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 106, 0, .14);
  background: linear-gradient(200deg, rgba(255, 106, 0, .16) 0%, rgba(255, 106, 0, 0) 44%);
  pointer-events: none;
  transition: opacity .35s ease;
}
.news-feat-r:hover::after { opacity: .35; }
.news-feat-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.news-feat-r:hover img { transform: scale(1.04); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.news-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto 1fr; 
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid #e8ebf1; 
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  min-height: 220px;
  transition: border-color .25s ease, background-color .25s ease;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease;
}
.news-card:hover {
  border-color: rgba(255, 106, 0, .42);
  background: #fffaf6;
}
.news-card:hover::before { transform: scaleX(1); }
.news-card .tag {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: start;
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1.5px;
  color: var(--brand);
  background: #fff4ec;
  border-radius: 6px;
  margin-bottom: 20px;
}
.news-card .t {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.55;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .25s ease;
}
.news-card:hover .t { 
  color: var(--brand); 
}
.news-card .desc {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  letter-spacing: .3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .25s ease;
}
.news-card:hover .desc { 
  color: var(--text); 
}
.news-card .d,
.news-card .arrow {
  grid-row: 4;
  align-self: end;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  line-height: 20px;
}
.news-card .d {
  grid-column: 1;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .5px;
  transition: color .25s ease;
}
.news-card .arrow {
  grid-column: 2;
  justify-self: end;
  font-size: 18px;
  color: var(--muted);
  transition: transform .25s ease, color .25s ease;
}
.news-card:hover .d { color: var(--text); }
.news-card:hover .arrow { color: var(--brand); transform: translateX(4px); }

/* 5.x 新闻响应式 */
@media (min-width: 992px) {
  .abinewcaaa .abinewc.on { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-feat { gap: 32px; }
  .news-grid { gap: 16px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-feat { gap: 40px; }
}
@media (max-width: 991px) {
  .news-feat { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-feat-l .meta { font-size: 13px; }
  .news-card .t { font-size: 16px; }
}
@media (max-width: 767px) {
  .idx-news01 { padding: 56px 0 48px; }
  .news-feat-l .title { font-size: 22px; letter-spacing: 1px; margin-bottom: 24px; }
  .news-feat-l .more-btn { padding: 6px 8px 6px 22px; font-size: 13px; letter-spacing: 1px; }
  .news-feat-l .more-btn .arrow { width: 26px; height: 26px; font-size: 13px; }
  .abinewcate ul li a { font-size: 13px; padding: 0 16px; line-height: 36px; }
  .news-card { padding: 22px 20px 18px; border-radius: 10px; min-height: 186px; }
  .news-card .tag { margin-bottom: 14px; }
  .news-card .t { font-size: 16px; margin-bottom: 18px; }
  .news-card .desc { font-size: 12px; margin-bottom: 18px; }
  .news-card .d,
  .news-card .arrow { padding-top: 13px; }
}
@media (max-width: 575px) {
  .news-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
}

/* @@APPEND@@ */
