/* ============================================================
   康彻思坦·质感层 texture.css
   独立文件,加载于 styles.css 之后 —— 不修改 styles.css,避免多会话冲突
   方向:柔光磨砂 + 实验室通透 + 晕染光雾(绿色调)
   2026-06-29
   ============================================================ */

/* 1) 全站柔光磨砂底 —— 浅薄荷渐变 + 极淡固定光团,替代纯白 */
body{
  background:
    radial-gradient(820px 520px at 88% 1%,  rgba(180,235,214,.16), transparent 60%),
    radial-gradient(720px 620px at -5% 28%, rgba(46,197,138,.09), transparent 55%),
    radial-gradient(900px 700px at 60% 118%, rgba(20,79,56,.06), transparent 60%),
    linear-gradient(170deg,#ebfaf6 0%,#ebfaf6 58%,#ebfaf6 100%) !important;
}

/* 2) 玻璃质感主按钮 —— 凸起 + 顶部内反光 + 柔投影 */
.btn-g{
  position:relative;overflow:hidden;
  background:linear-gradient(160deg,#2ec58a,#2ec58a) !important;
  box-shadow:0 12px 30px -12px rgba(29,110,64,.5),
             inset 0 1px 0 rgba(255,255,255,.42),
             inset 0 -2px 6px rgba(11,40,24,.30) !important;
}
.btn-g::after{content:"";position:absolute;top:0;left:0;right:0;height:48%;pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.32),transparent)}
.btn-g:hover{background:linear-gradient(160deg,#2ec58a,#2ec58a) !important;
  box-shadow:0 20px 44px -14px rgba(29,110,64,.55),
             inset 0 1px 0 rgba(255,255,255,.5),
             inset 0 -2px 6px rgba(11,40,24,.30) !important}
.btn-g svg{position:relative;z-index:1}

/* 3) 深绿区科技光晕 —— 把平涂深绿换成"渐变 + 右上柔光" */
.dark-sec{
  background:
    radial-gradient(760px 420px at 84% -12%, rgba(180,235,214,.15), transparent 60%),
    linear-gradient(165deg,#22573f 0%,#1a4a34 55%,#15402d 100%) !important;
}
.login-sec{
  background:
    radial-gradient(1000px 520px at 80% 4%, rgba(180,235,214,.16), transparent 62%),
    linear-gradient(165deg,#1c5440 0%,#163f2d 50%,#103120 100%) !important;
}

/* 4) 卡片柔光磨砂 —— 统一柔投影 + 顶部高光描边,更通透 */
.mx,.tf,.lp,.pshow,.news,.sup-c,.train,.sol-body,.login-wrap,.gcard{
  box-shadow:0 22px 48px -30px rgba(13,40,24,.20) !important;
}
/* 内容卡:向 demo 看齐 —— 更通透磨砂 + 绿调透出 + 高光描边 */
.mx,.tf,.news,.sup-c,.train{
  border:1px solid rgba(255,255,255,.72) !important;
  background:linear-gradient(150deg,rgba(255,255,255,.62),rgba(235,250,246,.40)) !important;
  -webkit-backdrop-filter:blur(24px) saturate(165%);backdrop-filter:blur(24px) saturate(165%) !important;
  box-shadow:0 28px 56px -34px rgba(13,40,24,.26),inset 0 1px 0 rgba(255,255,255,.88) !important;
}
/* 产品陈列卡保持白底,不污染产品渲染图 */
.pshow{background:rgba(255,255,255,.92) !important;border:1px solid rgba(255,255,255,.75) !important;
  -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}

/* 5) 柔光分隔 —— 区块衔接更轻盈(浅区不那么硬) */
.sec-soft{background:linear-gradient(180deg,rgba(235,250,246,.7),rgba(247,251,249,.4)) !important}

/* ============================================================
   质感推广 · 扩展层(2026-06-29) —— 把磨砂晕染绿铺到更多组件
   ============================================================ */

/* A) 导航：滚动后保持参考站点的纯白状态，不再叠加磨砂滤镜。 */
nav.scrolled{
  background:#fff !important;
  -webkit-backdrop-filter:none !important;backdrop-filter:none !important;
  box-shadow:0 8px 30px -16px rgba(13,40,24,.16) !important}

/* B) 导航 CTA「批号查询」玻璃绿钮 */
.nav-cta-btn{position:relative;overflow:hidden;
  background:linear-gradient(160deg,#2ec58a,#2ec58a) !important;color:#fff !important;
  box-shadow:0 10px 24px -12px rgba(29,110,64,.5),inset 0 1px 0 rgba(255,255,255,.4) !important}
.nav-cta-btn::after{content:"";position:absolute;top:0;left:0;right:0;height:48%;pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.3),transparent)}

/* C) 次级按钮:幽灵磨砂 */
.btn-w{background:rgba(255,255,255,.55) !important;color:var(--accent-dark,#1f6e3c) !important;
  border:1px solid rgba(46,197,138,.2) !important;
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px) !important;
  box-shadow:0 8px 24px -16px rgba(13,40,24,.22),inset 0 1px 0 rgba(255,255,255,.7) !important}
.btn-w:hover{background:rgba(255,255,255,.78) !important}

/* D) 输入框:柔磨砂底 + 绿色聚焦光晕(保持高可读) */
input[type=text],input[type=password],input[type=email],textarea,.query-form input{
  background:rgba(255,255,255,.6) !important;
  border:1px solid rgba(46,197,138,.16) !important;
  -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}
input:focus,textarea:focus,.query-form input:focus{
  background:#fff !important;border-color:#2ec58a !important;
  box-shadow:0 0 0 4px rgba(46,197,138,.12) !important}

/* E) 横幅(phero) —— 2026-07-01:去掉过重的灰黑蒙版
   之前这里把 ::before(原图)压到 42% 透明度,再叠加一层
   rgba(8,20,13,.86)→.42 的深色渐变,导致所有二级页面大图
   banner 发灰发暗。这里撤销,让图片保持全亮,只保留一层很浅的
   左侧渐变(styles.css 里已经调好的 0.45→0→透明),仅用于压住
   文字底部的可读性,不再整体压暗大图。 */
.phero .phero-in{position:relative;z-index:3}
.phero{position:relative}

/* F) 更多卡片磨砂化 */
.cat-side,.catalog,.sol,.stat,.honor,.pillar,.cmp-card,.partner,.gcard,.group-card,.cert{
  box-shadow:0 24px 50px -32px rgba(13,40,24,.20) !important}
.stat,.honor,.pillar,.cmp-card,.partner{
  background:linear-gradient(160deg,rgba(255,255,255,.9),rgba(255,255,255,.74)) !important;
  border:1px solid rgba(255,255,255,.7) !important;
  -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}

/* G) 搜索浮层磨砂玻璃 */
.search-ov{background:rgba(15,40,28,.5) !important;
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px)}
.search-ov .sbox{background:linear-gradient(160deg,rgba(255,255,255,.9),rgba(255,255,255,.76)) !important;
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.7)}

/* H) 标签/chip 玻璃感 */
.chip,.mx-tags span{background:rgba(46,197,138,.10) !important;
  border:1px solid rgba(46,197,138,.16);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}

/* I) 区块柔光分隔线 */
.sec + .sec::before{content:"";position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:60%;height:1px;background:linear-gradient(to right,transparent,rgba(46,197,138,.18),transparent)}

/* ============================================================
   向 demo 质感样看齐(2026-06-29) —— 玻璃绿图标 + 更明显绿调光晕
   ============================================================ */
/* 卡片图标:玻璃绿小方块(对标 demo .gcard .ic) */
.mx-ic,.sup-c .ic,.tf .ic,.lp .ic,.sol-ic,.lb-ic,.pillar .ic{
  border-radius:14px !important;
  background:linear-gradient(150deg,rgba(180,235,214,.50),rgba(46,197,138,.24)) !important;
  border:1px solid rgba(255,255,255,.82) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.92),0 6px 16px -10px rgba(29,110,64,.4) !important}
.mx-ic svg,.sup-c .ic svg,.tf .ic svg,.lp .ic svg,.sol-ic svg,.pillar .ic svg{stroke:#1f6e3c !important}
.pillar .ic{width:52px;height:52px;display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.pillar .ic svg{width:26px;height:26px}

/* 全站绿调光晕加强(对标 demo 背景) */
body{
  background:
    radial-gradient(880px 560px at 86% 0%,  rgba(180,235,214,.26), transparent 60%),
    radial-gradient(760px 640px at -6% 24%, rgba(46,197,138,.15), transparent 55%),
    radial-gradient(960px 720px at 60% 116%, rgba(20,79,56,.08), transparent 60%),
    linear-gradient(170deg,#ebfaf6 0%,#ebfaf6 56%,#ebfaf6 100%) !important;
}

/* ============================================================
   统一全站卡片到 demo 标准(2026-06-29) —— 一次性对齐,避免逐个调
   ============================================================ */
.mx,.tf,.news,.sup-c,.train,.pillar,.honor,.cert,.stat,.cmp-card,.partner,.group-card,
.lp,.tf-card,.hcard,.qc-card,.value-card{
  border-radius:20px !important;position:relative;
  border:1px solid rgba(255,255,255,.74) !important;
  background:
    radial-gradient(140% 95% at 100% 0%, rgba(180,235,214,.30), transparent 52%),
    radial-gradient(120% 90% at 0% 100%, rgba(46,197,138,.12), transparent 55%),
    linear-gradient(150deg,rgba(255,255,255,.58),rgba(235,250,246,.40)) !important;
  -webkit-backdrop-filter:blur(24px) saturate(172%);backdrop-filter:blur(24px) saturate(172%) !important;
  box-shadow:0 28px 56px -34px rgba(13,40,24,.24),inset 0 1px 0 rgba(255,255,255,.9) !important;
}
/* 产品陈列卡仍保持白底(产品图不能被绿染) */
.pshow{background:rgba(255,255,255,.93) !important}

/* 所有卡片图标容器:统一玻璃绿小方块 */
.mx-ic,.sol-ic,.lb-ic,
.honor .ic,.cert .ic,.pillar .ic,.stat .ic,.sup-c .ic,.tf .ic,.lp .ic,.cmp-card .ic,
.pillar .pn,.honor-ic,.cert-ic,.value-ic{
  border-radius:13px !important;
  background:linear-gradient(150deg,rgba(180,235,214,.52),rgba(46,197,138,.24)) !important;
  border:1px solid rgba(255,255,255,.82) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.92),0 6px 16px -10px rgba(29,110,64,.4) !important}

/* 卡片悬停:晕染加强 + 上浮(呼吸感,贴近 moodboard) */
.mx:hover,.tf:hover,.news:hover,.sup-c:hover,.train:hover,.pillar:hover,.honor:hover,
.cert:hover,.stat:hover,.cmp-card:hover,.sol:hover{
  background:
    radial-gradient(150% 100% at 100% 0%, rgba(180,235,214,.42), transparent 54%),
    radial-gradient(120% 90% at 0% 100%, rgba(46,197,138,.18), transparent 55%),
    linear-gradient(150deg,rgba(255,255,255,.64),rgba(235,250,246,.44)) !important;
  transform:translateY(-5px) !important;
  box-shadow:0 40px 76px -36px rgba(13,40,24,.34),inset 0 1px 0 rgba(255,255,255,.95) !important}
.mx,.tf,.news,.sup-c,.train,.pillar,.honor,.cert,.stat,.cmp-card{
  transition:transform .45s cubic-bezier(.2,.7,.2,1),box-shadow .45s,background .45s !important}

/* ============================================================
   首页资质实力 · 学习 texture-demo 的右侧方法(2026-06-30)
   关键词:柔光磨砂 / 实验室通透 / 绿雾晕染 / 轻量权威感
   ============================================================ */
.stack-home .sec:has(#cred){
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(920px 520px at 86% 4%, rgba(180,235,214,.22), transparent 62%),
    radial-gradient(720px 480px at 8% 88%, rgba(46,197,138,.10), transparent 58%),
    linear-gradient(180deg,#ebfaf6 0%,#ebfaf6 56%,#ebfaf6 100%) !important;
}
.stack-home .sec:has(#cred)::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(255,255,255,.84),rgba(255,255,255,0) 34%),
    radial-gradient(1px 1px at 16% 22%, rgba(29,110,64,.10), transparent 100%),
    radial-gradient(1px 1px at 72% 38%, rgba(29,110,64,.08), transparent 100%),
    radial-gradient(1px 1px at 48% 70%, rgba(29,110,64,.07), transparent 100%);
  opacity:.9;
}
.stack-home .sec:has(#cred) .w{
  position:relative;
  z-index:1;
}
.stack-home .sec:has(#cred) .sec-head{
  margin-bottom:76px;
}
.stack-home .sec:has(#cred) .sec-idx{
  color:rgba(18,55,36,.55);
  letter-spacing:.04em;
}
.stack-home .sec:has(#cred) .sec-idx b{
  color:#2ec58a;
}
.stack-home .sec:has(#cred) .h2{
  color:#171c19;
  letter-spacing:0;
}
.stack-home .sec:has(#cred) .h2 b{
  color:#202421;
}
.stack-home #cred{
  gap:28px 30px;
}
.stack-home #cred .cert{
  min-height:128px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:28px 32px;
  border-radius:20px !important;
  border:1px solid rgba(255,255,255,.78) !important;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(180,235,214,.26), transparent 54%),
    radial-gradient(110% 90% at 0% 100%, rgba(46,197,138,.10), transparent 58%),
    linear-gradient(150deg,rgba(255,255,255,.70),rgba(235,250,246,.48)) !important;
  -webkit-backdrop-filter:blur(24px) saturate(172%);
  backdrop-filter:blur(24px) saturate(172%);
  box-shadow:
    0 30px 62px -40px rgba(13,40,24,.24),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
  overflow:hidden;
}
.stack-home #cred .cert::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.46),rgba(255,255,255,0) 45%);
  opacity:.72;
}
.stack-home #cred .cert .k,
.stack-home #cred .cert .v{
  position:relative;
  z-index:1;
}
.stack-home #cred .cert .k{
  margin-bottom:12px;
  color:#6c7771;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:none;
}
.stack-home #cred .cert .v{
  color:#1d2420;
  font-size:20px;
  font-weight:700;
  line-height:1.38;
  letter-spacing:0;
}
.stack-home #cred .cert .v em{
  color:#2ec58a;
  font-weight:800;
}
.stack-home #cred .cert:hover{
  transform:translateY(-6px) !important;
  border-color:rgba(255,255,255,.92) !important;
  background:
    radial-gradient(132% 106% at 100% 0%, rgba(180,235,214,.38), transparent 56%),
    radial-gradient(110% 90% at 0% 100%, rgba(46,197,138,.16), transparent 58%),
    linear-gradient(150deg,rgba(255,255,255,.78),rgba(235,250,246,.54)) !important;
  box-shadow:
    0 42px 78px -42px rgba(13,40,24,.34),
    inset 0 1px 0 rgba(255,255,255,.96) !important;
}

@media(max-width:980px){
  .stack-home .sec:has(#cred) .sec-head{margin-bottom:44px}
  .stack-home #cred{gap:18px}
  .stack-home #cred .cert{min-height:118px;padding:24px}
}
@media(max-width:640px){
  .stack-home .sec:has(#cred){
    background:
      radial-gradient(640px 420px at 96% 0%, rgba(180,235,214,.20), transparent 62%),
      linear-gradient(180deg,#ebfaf6 0%,#ebfaf6 64%,#ebfaf6 100%) !important;
  }
  .stack-home #cred .cert .v{font-size:18px}
}


/* ============================================================
   首页新闻卡片 · 白卡修正(2026-06-30)
   深绿区里卡片保持白底,不使用全站玻璃绿蒙层
   ============================================================ */
.stack-home #news .news{
  background:#fff !important;
  border-color:rgba(255,255,255,.70) !important;
  -webkit-backdrop-filter:none !important;
  backdrop-filter:none !important;
  box-shadow:0 28px 64px -36px rgba(0,0,0,.46) !important;
}
.stack-home #news .news-body{
  background:#fff !important;
}
.stack-home #news .news:hover{
  background:#fff !important;
  border-color:rgba(255,255,255,.92) !important;
  box-shadow:0 38px 78px -36px rgba(0,0,0,.56) !important;
}
.stack-home #news .news:hover .news-body{
  background:#fff !important;
}

/* ============================================================
   浏览器批注修正 · 首页局部视觉(2026-06-30)
   1) 差异化优势背景图铺满整段
   2) 资质实力背景恢复淡绿色,避免偏蓝
   ============================================================ */
.stack-home .cmp-band{
  background:#0b3323 !important;
}
.stack-home .cmp-band::before{
  inset:0 !important;
  top:0 !important;
  left:0 !important;
  width:100% !important;
  height:100% !important;
  background-image:url("img/hero1.before-purple-cell-20260707.png") !important;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
  transform:none !important;
  opacity:.66 !important;
}
.stack-home .cmp-band::after{
  inset:0 !important;
  background:
    linear-gradient(90deg,rgba(5,32,22,.72) 0%,rgba(5,32,22,.36) 34%,rgba(5,32,22,.30) 68%,rgba(5,32,22,.70) 100%),
    linear-gradient(180deg,rgba(5,32,22,.22),rgba(5,32,22,.46)) !important;
}

.stack-home .sec:has(#cred){
  background:
    radial-gradient(920px 520px at 86% 4%, rgba(180,235,214,.24), transparent 62%),
    radial-gradient(740px 500px at 8% 88%, rgba(46,197,138,.12), transparent 58%),
    linear-gradient(180deg,#ebfaf6 0%,#ebfaf6 58%,#ebfaf6 100%) !important;
}
.stack-home .sec:has(#cred)::after{
  background:
    linear-gradient(90deg,rgba(255,255,255,.72),rgba(255,255,255,0) 34%),
    radial-gradient(1px 1px at 16% 22%, rgba(29,110,64,.08), transparent 100%),
    radial-gradient(1px 1px at 72% 38%, rgba(29,110,64,.06), transparent 100%),
    radial-gradient(1px 1px at 48% 70%, rgba(29,110,64,.05), transparent 100%) !important;
}
.stack-home #cred .cert{
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(180,235,214,.28), transparent 54%),
    radial-gradient(110% 90% at 0% 100%, rgba(46,197,138,.12), transparent 58%),
    linear-gradient(150deg,rgba(255,255,255,.74),rgba(235,250,246,.56)) !important;
}
.stack-home #cred .cert:hover{
  background:
    radial-gradient(132% 106% at 100% 0%, rgba(180,235,214,.40), transparent 56%),
    radial-gradient(110% 90% at 0% 100%, rgba(46,197,138,.18), transparent 58%),
    linear-gradient(150deg,rgba(255,255,255,.80),rgba(235,250,246,.62)) !important;
}

/* ============================================================
   关于页批注修正(2026-06-30)
   文化区移除第三卡后改为两列;第三方中立卡强调色采用 #2ec58a
   ============================================================ */
#culture .pillars{
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
}
#neutral .group-card{
  color:#2ec58a !important;
}
#neutral .group-card .badge-mem,
#neutral .group-card h3,
#neutral .group-card p{
  color:#2ec58a !important;
}
#neutral .group-card .badge-mem{
  border-color:rgba(0,204,136,.46) !important;
  background:rgba(0,204,136,.10) !important;
}
#neutral .group-card .badge-mem span.dot{
  background:#2ec58a !important;
}
#neutral .group-card .btn-w{
  color:#007f5a !important;
}

@media(max-width:760px){
  #culture .pillars{
    grid-template-columns:1fr !important;
  }
}

/* ============================================================
   产品页批注修正(2026-06-30)
   1) 器械类质控品区改中绿
   2) 非定值质控品卡片保留磨砂,去掉渐变染色
   ============================================================ */
#device{
  background:
    radial-gradient(900px 520px at 88% 4%, rgba(122,214,144,.30), transparent 62%),
    radial-gradient(780px 520px at 10% 92%, rgba(17,80,52,.30), transparent 58%),
    linear-gradient(155deg,#2ec58a 0%,#2ec58a 52%,#2ec58a 100%) !important;
}
#device .sec-idx,
#device .sub{
  color:rgba(255,255,255,.76) !important;
}
#device .sec-idx b,
#device .h2 b{
  color:#b4ebd6 !important;
}
#device .h2{
  color:#fff !important;
}
#device .sup-c{
  background:rgba(255,255,255,.22) !important;
  border-color:rgba(255,255,255,.42) !important;
  -webkit-backdrop-filter:blur(22px) saturate(150%) !important;
  backdrop-filter:blur(22px) saturate(150%) !important;
  box-shadow:0 30px 64px -40px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.55) !important;
}
#device .sup-c h4{
  color:#fff !important;
}
#device .sup-c p{
  color:rgba(255,255,255,.78) !important;
}
#device .sup-c .ic{
  background:rgba(255,255,255,.24) !important;
  border-color:rgba(255,255,255,.54) !important;
}
#device .sup-c .ic svg{
  stroke:#d7ffe2 !important;
}

#qc .matrix .mx{
  background:rgba(255,255,255,.48) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.78) !important;
  -webkit-backdrop-filter:blur(24px) saturate(150%) !important;
  backdrop-filter:blur(24px) saturate(150%) !important;
  box-shadow:0 28px 58px -38px rgba(13,40,24,.24), inset 0 1px 0 rgba(255,255,255,.88) !important;
}
#qc .matrix .mx:hover{
  background:rgba(255,255,255,.62) !important;
  background-image:none !important;
  box-shadow:0 36px 72px -40px rgba(13,40,24,.30), inset 0 1px 0 rgba(255,255,255,.94) !important;
}

/* ============================================================
   关于页企业文化 · 颜色加深(2026-06-30)
   ============================================================ */
#culture{
  background:
    radial-gradient(900px 520px at 84% 0%, rgba(110,210,145,.22), transparent 62%),
    radial-gradient(760px 520px at 8% 92%, rgba(46,197,138,.16), transparent 58%),
    linear-gradient(180deg,#ebfaf6 0%,#ebfaf6 58%,#ebfaf6 100%) !important;
}
#culture .sec-idx{
  color:#496c58 !important;
}
#culture .sec-idx b,
#culture .h2 b{
  color:#2ec58a !important;
}
#culture .h2{
  color:#13251b !important;
}
#culture .sub{
  color:#42584c !important;
}
#culture .pillar{
  background:rgba(232,245,237,.84) !important;
  border-color:rgba(255,255,255,.78) !important;
  box-shadow:0 30px 62px -42px rgba(13,40,24,.26), inset 0 1px 0 rgba(255,255,255,.90) !important;
}
#culture .pillar:hover{
  background:rgba(221,240,229,.92) !important;
  box-shadow:0 38px 76px -42px rgba(13,40,24,.32), inset 0 1px 0 rgba(255,255,255,.94) !important;
}
#culture .pillar .pen{
  color:#6b8175 !important;
}
#culture .pillar h3{
  color:#14261c !important;
}
#culture .pillar p{
  color:#4d6358 !important;
}

/* ============================================================
   关于页第三方中立卡 · 中绿底(2026-06-30)
   ============================================================ */
#neutral .group-card{
  background:
    radial-gradient(560px 360px at 88% 0%, rgba(122,214,144,.24), transparent 62%),
    linear-gradient(150deg,#2ec58a 0%,#2ec58a 58%,#2ec58a 100%) !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.22) !important;
  box-shadow:0 34px 74px -44px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.28) !important;
}
#neutral .group-card .badge-mem{
  color:#d7ffe2 !important;
  border-color:rgba(255,255,255,.34) !important;
  background:rgba(255,255,255,.12) !important;
}
#neutral .group-card .badge-mem span.dot{
  background:#b4ebd6 !important;
}
#neutral .group-card h3{
  color:#fff !important;
}
#neutral .group-card p{
  color:rgba(255,255,255,.82) !important;
}
#neutral .group-card .btn-w{
  color:#1f6e3c !important;
  background:rgba(255,255,255,.78) !important;
  border-color:rgba(255,255,255,.55) !important;
}

/* ============================================================
   关于页发展历程 · 绿色加深(2026-06-30)
   ============================================================ */
#history{
  background:
    radial-gradient(920px 560px at 88% 2%, rgba(71,180,104,.22), transparent 62%),
    radial-gradient(760px 520px at 8% 90%, rgba(31,110,60,.16), transparent 58%),
    linear-gradient(180deg,#ebfaf6 0%,#ebfaf6 58%,#ebfaf6 100%) !important;
}
#history .sec-idx{
  color:#466b57 !important;
}
#history .sec-idx b,
#history .h2 b{
  color:#2ec58a !important;
}
#history .h2{
  color:#13251b !important;
}
#history .tl::before{
  background:linear-gradient(180deg,#2ec58a,rgba(46,197,138,.22)) !important;
}
#history .tl::after{
  background:#2ec58a !important;
}
#history .tl-row::before{
  border-color:#2ec58a !important;
  box-shadow:0 0 0 7px rgba(46,197,138,.14) !important;
}
#history .tl-y,
#history .tl-row.lit .tl-y,
#history .tl-row.active .tl-y{
  color:#2ec58a !important;
}
#history .tl-era,
#history .tl-row.lit .tl-era,
#history .tl-row.active .tl-era{
  color:#2ec58a !important;
}
#history .tl-row h4{
  color:#17281e !important;
}
#history .tl-row p{
  color:#455f51 !important;
}
#history .tl-row.lit::before,
#history .tl-row.active::before,
#history .tl-row:last-child::before{
  background:#2ec58a !important;
  border-color:#2ec58a !important;
}

/* ============================================================
   产品页血清盘 · 绿色加深(2026-06-30)
   ============================================================ */
#serum{
  background:
    radial-gradient(920px 560px at 86% 4%, rgba(46,197,138,.26), transparent 62%),
    radial-gradient(760px 520px at 8% 92%, rgba(31,110,60,.18), transparent 58%),
    linear-gradient(180deg,#ebfaf6 0%,#ebfaf6 58%,#ebfaf6 100%) !important;
}
#serum .sec-idx{
  color:#466b57 !important;
}
#serum .sec-idx b,
#serum .h2 b{
  color:#2ec58a !important;
}
#serum .h2{
  color:#13251b !important;
}
#serum .sub{
  color:#42584c !important;
}
#serum .matrix .mx{
  background:rgba(232,245,237,.76) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.78) !important;
  -webkit-backdrop-filter:blur(24px) saturate(150%) !important;
  backdrop-filter:blur(24px) saturate(150%) !important;
  box-shadow:0 30px 62px -42px rgba(13,40,24,.28), inset 0 1px 0 rgba(255,255,255,.90) !important;
}
#serum .matrix .mx:hover{
  background:rgba(221,240,229,.88) !important;
  background-image:none !important;
  box-shadow:0 38px 76px -42px rgba(13,40,24,.34), inset 0 1px 0 rgba(255,255,255,.94) !important;
}
#serum .mx .mxn{
  color:#2ec58a !important;
}
#serum .mx h3{
  color:#17281e !important;
}
#serum .mx p{
  color:#455f51 !important;
}

/* ============================================================
   关于页企业文化 · 中绿版(2026-06-30)
   ============================================================ */
#culture{
  background:
    radial-gradient(900px 520px at 84% 0%, rgba(122,214,144,.24), transparent 62%),
    radial-gradient(760px 520px at 8% 92%, rgba(17,80,52,.28), transparent 58%),
    linear-gradient(155deg,#2ec58a 0%,#2ec58a 52%,#2ec58a 100%) !important;
}
#culture .sec-idx{
  color:rgba(255,255,255,.76) !important;
}
#culture .sec-idx b,
#culture .h2 b{
  color:#b4ebd6 !important;
}
#culture .h2{
  color:#fff !important;
}
#culture .sub{
  color:rgba(255,255,255,.76) !important;
}
#culture .pillar{
  background:rgba(255,255,255,.20) !important;
  border-color:rgba(255,255,255,.42) !important;
  -webkit-backdrop-filter:blur(22px) saturate(150%) !important;
  backdrop-filter:blur(22px) saturate(150%) !important;
  box-shadow:0 30px 64px -40px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.55) !important;
}
#culture .pillar:hover{
  background:rgba(255,255,255,.28) !important;
  box-shadow:0 38px 76px -42px rgba(0,0,0,.50), inset 0 1px 0 rgba(255,255,255,.62) !important;
}
#culture .pillar .pen{
  color:rgba(255,255,255,.62) !important;
}
#culture .pillar h3{
  color:#fff !important;
}
#culture .pillar p{
  color:rgba(255,255,255,.78) !important;
}

/* ============================================================
   产品页 CRM 目录侧栏 · 颜色加深(2026-06-30)
   ============================================================ */
#crm .cat-side{
  background:
    linear-gradient(180deg,rgba(46,125,78,.28),rgba(35,107,64,.18)) !important;
  border-right-color:rgba(20,80,48,.18) !important;
}
#crm .cat-side-head{
  background:linear-gradient(155deg,#2ec58a 0%,#2ec58a 100%) !important;
  color:#fff !important;
}
#crm .cat-cat{
  border-bottom-color:rgba(20,80,48,.18) !important;
}
#crm .cat-cat>.cat-t{
  color:#2ec58a !important;
}
#crm .cat-cat li{
  color:#45675a !important;
}
#crm .cat-cat li:hover{
  color:#2ec58a !important;
  background:rgba(255,255,255,.42) !important;
}
#crm .cat-cat li.on{
  color:#2ec58a !important;
  background:rgba(255,255,255,.58) !important;
  border-left-color:#2ec58a !important;
  font-weight:700 !important;
}

/* ============================================================
   产品页器械区卡片 · 去掉渐变(2026-06-30)
   ============================================================ */
#device .sup-c{
  background:rgba(255,255,255,.36) !important;
  background-image:none !important;
}
#device .sup-c:hover{
  background:rgba(255,255,255,.46) !important;
  background-image:none !important;
}

/* ============================================================
   多页面浏览器标注修正 · 2026-06-30
   ============================================================ */

/* 新闻中心与学术中心卡片：白色、去渐变 */
.news-list .news,
#train .train{
  background:#fff !important;
  background-image:none !important;
  border-color:rgba(20,46,30,.08) !important;
  -webkit-backdrop-filter:none !important;
  backdrop-filter:none !important;
  box-shadow:0 28px 58px -38px rgba(13,40,24,.24) !important;
}
.news-list .news:hover,
#train .train:hover{
  background:#fff !important;
  background-image:none !important;
  box-shadow:0 34px 68px -40px rgba(13,40,24,.28) !important;
}
.news-list .news-body,
#train .train-body{
  background:#fff !important;
  background-image:none !important;
}
.news-list .news-body h3,
.news-list .news-body h4,
#train .train-body h4{
  color:#16261c !important;
}
.news-list .news-body p,
#train .train-body p{
  color:#56635c !important;
}
.news-list .news-body .tag,
.news-list .news-body .news-tag,
#train .train-body .tt{
  color:#2ec58a !important;
}
.news-list .news-date{
  display:none !important;
}

/* 解决方案页 ISO 15189 说明卡：中绿 */
section.sec.sec-soft:not(#neutral) .about-g > .group-card{
  background:
    radial-gradient(680px 360px at 18% 0%, rgba(148,238,182,.24), transparent 62%),
    linear-gradient(150deg,#2ec58a 0%,#2ec58a 58%,#2ec58a 100%) !important;
  border-color:rgba(255,255,255,.42) !important;
  color:#fff !important;
  box-shadow:0 34px 72px -42px rgba(15,58,35,.54), inset 0 1px 0 rgba(255,255,255,.44) !important;
}
section.sec.sec-soft:not(#neutral) .about-g > .group-card .badge-mem{
  color:#c7f6d7 !important;
  border-color:rgba(255,255,255,.34) !important;
  background:rgba(255,255,255,.12) !important;
}
section.sec.sec-soft:not(#neutral) .about-g > .group-card h3{
  color:#fff !important;
}
section.sec.sec-soft:not(#neutral) .about-g > .group-card p{
  color:rgba(255,255,255,.82) !important;
}
section.sec.sec-soft:not(#neutral) .about-g > .group-card .btn-ghost{
  color:#0e6f40 !important;
  background:rgba(255,255,255,.84) !important;
  border-color:rgba(255,255,255,.68) !important;
}

/* 批号 / COA 查询功能卡：去掉卡片渐变 */
.trace-feat .tf{
  background:rgba(255,255,255,.62) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.78) !important;
  -webkit-backdrop-filter:blur(20px) saturate(145%) !important;
  backdrop-filter:blur(20px) saturate(145%) !important;
  box-shadow:0 24px 54px -40px rgba(13,40,24,.26), inset 0 1px 0 rgba(255,255,255,.86) !important;
}
.trace-feat .tf:hover{
  background:rgba(255,255,255,.72) !important;
  background-image:none !important;
}

/* 关于页资质卡：80% 磨砂白 */
#certs .cert{
  background:rgba(255,255,255,.80) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.76) !important;
  -webkit-backdrop-filter:blur(22px) saturate(150%) !important;
  backdrop-filter:blur(22px) saturate(150%) !important;
  box-shadow:0 28px 58px -38px rgba(13,40,24,.24), inset 0 1px 0 rgba(255,255,255,.86) !important;
}
#certs .cert:hover{
  background:rgba(255,255,255,.88) !important;
  background-image:none !important;
}
#certs .cert .ci{
  background:rgba(46,197,138,.10) !important;
  color:#2ec58a !important;
}

/* 客户中心登录框：淡浅绿 */
.login-sec .login-wrap{
  background:
    linear-gradient(150deg,rgba(244,252,247,.94),rgba(225,244,233,.86)) !important;
  border-color:rgba(255,255,255,.72) !important;
  box-shadow:0 34px 74px -44px rgba(8,44,28,.46), inset 0 1px 0 rgba(255,255,255,.86) !important;
}
.login-sec .login-wrap input{
  background:rgba(255,255,255,.70) !important;
  border-color:rgba(46,197,138,.16) !important;
}
.login-sec .login-wrap input:focus{
  background:#fff !important;
  border-color:rgba(46,197,138,.38) !important;
  box-shadow:0 0 0 4px rgba(46,197,138,.10) !important;
}

/* 方案咨询小标题：淡绿色 */
section.cta .cta-lbl{
  color:#b4ebd6 !important;
}

/* 关于页企业文化：浅绿 */
#culture{
  background:
    radial-gradient(900px 520px at 84% 0%, rgba(180,235,214,.18), transparent 62%),
    radial-gradient(760px 520px at 8% 92%, rgba(46,197,138,.11), transparent 58%),
    linear-gradient(180deg,#ebfaf6 0%,#ebfaf6 58%,#ebfaf6 100%) !important;
}
#culture .sec-idx{
  color:#547260 !important;
}
#culture .sec-idx b,
#culture .h2 b{
  color:#2ec58a !important;
}
#culture .h2{
  color:#14241b !important;
}
#culture .sub{
  color:#465d50 !important;
}
#culture .pillar{
  background:rgba(255,255,255,.68) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.78) !important;
  -webkit-backdrop-filter:blur(18px) saturate(145%) !important;
  backdrop-filter:blur(18px) saturate(145%) !important;
  box-shadow:0 28px 58px -40px rgba(13,40,24,.18), inset 0 1px 0 rgba(255,255,255,.88) !important;
}
#culture .pillar:hover{
  background:rgba(255,255,255,.78) !important;
  background-image:none !important;
  box-shadow:0 34px 68px -42px rgba(13,40,24,.22), inset 0 1px 0 rgba(255,255,255,.94) !important;
}
#culture .pillar .pen{
  color:#7a8f84 !important;
}
#culture .pillar h3{
  color:#18261e !important;
}
#culture .pillar p{
  color:#4e6358 !important;
}

/* 产品页 CRM 目录侧栏：白色，以最新标注覆盖前面的加深版本 */
#crm .cat-side{
  background:#fff !important;
  background-image:none !important;
  border-right-color:rgba(20,46,30,.08) !important;
  box-shadow:0 26px 56px -42px rgba(13,40,24,.24) !important;
}
#crm .cat-side-head{
  background:#fff !important;
  background-image:none !important;
  color:#2ec58a !important;
  border-bottom:1px solid rgba(20,46,30,.08) !important;
}
#crm .cat-cat{
  border-bottom-color:rgba(20,46,30,.08) !important;
}
#crm .cat-cat>.cat-t{
  color:#2ec58a !important;
}
#crm .cat-cat li{
  color:#66766d !important;
}
#crm .cat-cat li:hover{
  color:#2ec58a !important;
  background:rgba(46,197,138,.06) !important;
}
#crm .cat-cat li.on{
  color:#2ec58a !important;
  background:rgba(46,197,138,.10) !important;
  border-left-color:#2ec58a !important;
  font-weight:700 !important;
}

/* ============================================================
   首页标注修正 · 关于区墨绿色 / 资质卡去渐变(2026-06-30)
   ============================================================ */
.stack-home #about{
  background:
    radial-gradient(920px 540px at 86% 4%, rgba(38,126,82,.24), transparent 64%),
    radial-gradient(720px 460px at 6% 96%, rgba(0,204,136,.10), transparent 60%),
    linear-gradient(180deg,#08241b 0%,#062f22 52%,#09281d 100%) !important;
}
.stack-home #about .sec-idx{
  color:rgba(255,255,255,.70) !important;
}
.stack-home #about .sec-idx b,
.stack-home #about .h2 b{
  color:#2ec58a !important;
}
.stack-home #about .h2{
  color:#fff !important;
}
.stack-home #about p,
.stack-home #about .sub{
  color:rgba(255,255,255,.76) !important;
}
.stack-home #about strong,
.stack-home #about b{
  color:#fff !important;
}
.stack-home #about .stat{
  background:#fff !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.78) !important;
}

.stack-home #cred .cert{
  background:rgba(255,255,255,.68) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.78) !important;
  -webkit-backdrop-filter:blur(24px) saturate(160%) !important;
  backdrop-filter:blur(24px) saturate(160%) !important;
  box-shadow:0 30px 62px -42px rgba(13,40,24,.22), inset 0 1px 0 rgba(255,255,255,.90) !important;
}
.stack-home #cred .cert::before{
  display:none !important;
}
.stack-home #cred .cert:hover{
  background:rgba(255,255,255,.78) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.90) !important;
  box-shadow:0 40px 76px -44px rgba(13,40,24,.28), inset 0 1px 0 rgba(255,255,255,.96) !important;
}

/* ============================================================
   浏览器标注修正 · 资质卡更磨砂 / 页脚去图标(2026-06-30)
   ============================================================ */
#certs .cert{
  background:rgba(255,255,255,.56) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.82) !important;
  -webkit-backdrop-filter:blur(34px) saturate(175%) !important;
  backdrop-filter:blur(34px) saturate(175%) !important;
  box-shadow:
    0 34px 72px -46px rgba(13,40,24,.32),
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -1px 0 rgba(255,255,255,.38) !important;
}
#certs .cert:hover{
  background:rgba(255,255,255,.66) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.92) !important;
}
#certs .cert .ci{
  background:rgba(255,255,255,.34) !important;
  border:1px solid rgba(255,255,255,.54) !important;
  -webkit-backdrop-filter:blur(18px) saturate(150%) !important;
  backdrop-filter:blur(18px) saturate(150%) !important;
}

footer .foot-col h5 svg{
  display:none !important;
}
footer .foot-col h5{
  gap:0 !important;
}

/* ============================================================
   浏览器标注修正 · 首页新闻森绿 / 首页页码隐藏 / 资质图标锁色(2026-06-30)
   ============================================================ */
.stack-home #news{
  background:
    radial-gradient(980px 560px at 86% 0%, rgba(50,148,90,.24), transparent 64%),
    radial-gradient(760px 520px at 8% 96%, rgba(0,204,136,.10), transparent 60%),
    linear-gradient(180deg,#1f6f42 0%,#185c37 52%,#12472c 100%) !important;
}
.stack-home #news .sec-idx{
  color:rgba(255,255,255,.70) !important;
}
.stack-home #news .sec-idx b,
.stack-home #news .h2 b{
  color:#b4ebd6 !important;
}
.stack-home #news .h2{
  color:#fff !important;
}
.stack-home #news .sub{
  color:rgba(255,255,255,.76) !important;
}
.stack-home #news .news,
.stack-home #news .news-body{
  background:#fff !important;
  background-image:none !important;
}
.stack-home #news .news:hover,
.stack-home #news .news:hover .news-body{
  background:#fff !important;
  background-image:none !important;
}
.stack-home .car-idx{
  display:none !important;
}

#certs .cert,
#certs .cert *{
  -webkit-tap-highlight-color:transparent !important;
}
#certs .cert .ci,
#certs .cert:hover .ci,
#certs .cert:active .ci,
#certs .cert:focus .ci,
#certs .cert:focus-visible .ci{
  color:#2ec58a !important;
  background:rgba(255,255,255,.34) !important;
  border-color:rgba(255,255,255,.54) !important;
  outline:none !important;
}
#certs .cert .ci svg,
#certs .cert:hover .ci svg,
#certs .cert:active .ci svg,
#certs .cert:focus .ci svg,
#certs .cert:focus-visible .ci svg{
  color:#2ec58a !important;
  stroke:#2ec58a !important;
  fill:none !important;
}

/* ============================================================
   批号 / COA 查询 · 功能卡增加磨砂感(2026-06-30)
   ============================================================ */
.trace-feat .tf{
  background:rgba(255,255,255,.46) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.86) !important;
  -webkit-backdrop-filter:blur(38px) saturate(180%) !important;
  backdrop-filter:blur(38px) saturate(180%) !important;
  box-shadow:
    0 34px 74px -46px rgba(13,40,24,.28),
    inset 0 1px 0 rgba(255,255,255,.94),
    inset 0 -1px 0 rgba(255,255,255,.42) !important;
}
.trace-feat .tf:hover{
  background:rgba(255,255,255,.58) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.96) !important;
  box-shadow:
    0 42px 86px -48px rgba(13,40,24,.34),
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -1px 0 rgba(255,255,255,.48) !important;
}
.trace-feat .tf .ic{
  background:rgba(179,239,199,.46) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.78) !important;
  -webkit-backdrop-filter:blur(20px) saturate(165%) !important;
  backdrop-filter:blur(20px) saturate(165%) !important;
  box-shadow:
    0 16px 28px -20px rgba(13,40,24,.42),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}

/* 批号 / COA 查询 tabs：点击后选中态(2026-07-01 改浅——
   之前选中态用 #dff4e8,比 .trace-soft 区域背景(#ebfaf6→#ebfaf6)还深,
   看起来像"选中反而变暗"。改回比背景浅的白色,和下面的查询面板衔接。) */
.trace-soft .q-tab{
  background:#fff !important;
  color:#506158 !important;
}
.trace-soft .q-tab:hover{
  background:#ebfaf6 !important;
  color:#2ec58a !important;
}
.trace-soft .q-tab.on,
.trace-soft .q-tab:active,
.trace-soft .q-tab:focus-visible{
  background:#fff !important;
  color:#2ec58a !important;
  box-shadow:inset 0 -2px 0 #2ec58a !important;
  outline:none !important;
}

/* ============================================================
   产品页 / 首页标注修正 · 深色小控件 / 草绿色合作区(2026-06-30)
   ============================================================ */
#device .sup-c .ic{
  background:#1f6e3c !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.42) !important;
  color:#fff !important;
  box-shadow:0 16px 28px -18px rgba(4,40,22,.58), inset 0 1px 0 rgba(255,255,255,.28) !important;
}
#device .sup-c .ic svg{
  stroke:#fff !important;
  color:#fff !important;
}
#device .btn.btn-g{
  background:#155a34 !important;
  background-image:none !important;
  color:#fff !important;
  border-color:rgba(255,255,255,.22) !important;
  box-shadow:0 18px 34px -22px rgba(4,40,22,.70) !important;
}
#device .btn.btn-g:hover{
  background:#0f4829 !important;
  color:#fff !important;
}

.stack-home #partners-sec{
  background:
    radial-gradient(900px 540px at 86% 0%, rgba(188,244,149,.24), transparent 64%),
    radial-gradient(720px 520px at 6% 96%, rgba(98,205,103,.22), transparent 60%),
    linear-gradient(180deg,#6fbe4a 0%,#55a93f 52%,#469237 100%) !important;
}
.stack-home #partners-sec .lbl{
  color:rgba(255,255,255,.76) !important;
}
.stack-home #partners-sec .h2,
.stack-home #partners-sec .h2 b{
  color:#fff !important;
}
.stack-home #partners-sec .partner{
  background:rgba(255,255,255,.82) !important;
  background-image:none !important;
  color:#184326 !important;
  border-color:rgba(255,255,255,.78) !important;
  -webkit-backdrop-filter:blur(16px) saturate(150%) !important;
  backdrop-filter:blur(16px) saturate(150%) !important;
}
.stack-home #partners-sec .partner:hover{
  background:#fff !important;
  color:#2ec58a !important;
}

/* ============================================================
   解决方案详情页 · 卡片去渐变(2026-06-30)
   ============================================================ */
body.sd-soft .sup-c,
body.sd-soft .matrix .mx{
  background:rgba(255,255,255,.62) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.82) !important;
  -webkit-backdrop-filter:blur(22px) saturate(150%) !important;
  backdrop-filter:blur(22px) saturate(150%) !important;
  box-shadow:0 28px 58px -40px rgba(13,40,24,.22), inset 0 1px 0 rgba(255,255,255,.88) !important;
}
body.sd-soft .sup-c:hover,
body.sd-soft .matrix .mx:hover{
  background:rgba(255,255,255,.72) !important;
  background-image:none !important;
  border-color:rgba(255,255,255,.92) !important;
  box-shadow:0 34px 68px -42px rgba(13,40,24,.28), inset 0 1px 0 rgba(255,255,255,.94) !important;
}

/* ============================================================
   产品详情页 · 卡片和表格白色(2026-06-30)
   ============================================================ */
.pd-fig,
.pd-spec,
.cat-tbl{
  background:#fff !important;
  background-image:none !important;
  border-color:rgba(20,46,30,.10) !important;
  box-shadow:0 26px 56px -42px rgba(13,40,24,.22) !important;
}
.pd-spec th,
.cat-tbl th{
  background:#ebfaf6 !important;
  background-image:none !important;
  color:#16261c !important;
  border-color:rgba(20,46,30,.09) !important;
}
.pd-spec td,
.cat-tbl td{
  background:#fff !important;
  background-image:none !important;
  color:#596960 !important;
  border-color:rgba(20,46,30,.08) !important;
}
.pd-spec tr:hover th,
.pd-spec tr:hover td,
.cat-tbl tr:hover td{
  background:#ebfaf6 !important;
  background-image:none !important;
}
.pd-dl a{
  background:#fff !important;
  background-image:none !important;
  color:#2ec58a !important;
  border-color:rgba(46,197,138,.42) !important;
}
.pd-dl a:hover{
  background:#ebfaf6 !important;
  color:#2ec58a !important;
}
.pd-actions .btn:not(.btn-g){
  background:#fff !important;
  background-image:none !important;
  color:#16261c !important;
  border:1px solid rgba(20,46,30,.10) !important;
}

/* ============================================================
   首页核心价值 CORE VALUES(#values) · 对齐 texture-demo 质感(2026-07-01 v2)
   v1 问题:卡片本身画了绿色径向渐变,呈现成一块"对角线绿白渐变色块",
   跟 demo 里的 .gcard 效果不符 —— demo 的卡片其实是纯白半透明(仅透明度
   渐变,不叠加颜色),绿色氛围完全来自背后的晕染光团透过 backdrop-filter
   透出来。这版严格按 texture-demo.html 的 .gcard / body 数值重做。
   ============================================================ */
.stack-home .sec:has(#values){
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(900px 600px at 86% -10%, rgba(180,235,214,.55), transparent 60%),
    radial-gradient(760px 660px at -6% 22%, rgba(46,197,138,.30), transparent 55%),
    radial-gradient(1000px 760px at 50% 118%, rgba(20,79,56,.16), transparent 60%),
    linear-gradient(160deg,#ebfaf6 0%,#ebfaf6 45%,#ebfaf6 100%) !important;
}
.stack-home .sec:has(#values) .w{position:relative;z-index:1}

#values.pillars{gap:28px 26px}
#values .pillar{
  border-radius:22px !important;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.7) !important;
  background:linear-gradient(150deg,rgba(255,255,255,.66),rgba(255,255,255,.34)) !important;
  -webkit-backdrop-filter:blur(26px) saturate(170%);
  backdrop-filter:blur(26px) saturate(170%) !important;
  box-shadow:0 30px 60px -34px rgba(13,40,24,.30), inset 0 1px 0 rgba(255,255,255,.85) !important;
  transition:transform .45s cubic-bezier(.2,.7,.2,1),box-shadow .45s !important;
}
#values .pillar:hover{
  transform:translateY(-8px) !important;
  box-shadow:0 44px 80px -36px rgba(13,40,24,.40), inset 0 1px 0 rgba(255,255,255,.9) !important;
}
@media(max-width:640px){
  .stack-home .sec:has(#values){
    background:
      radial-gradient(640px 420px at 96% -6%, rgba(180,235,214,.45), transparent 62%),
      radial-gradient(560px 480px at -10% 90%, rgba(46,197,138,.22), transparent 58%),
      linear-gradient(160deg,#ebfaf6 0%,#ebfaf6 50%,#ebfaf6 100%) !important;
  }
}

/* ============================================================
   关于页 · 发展历程"山路时间轴"插画(2026-07-01 v2 · 美化+动效)
   桌面端:SVG 山形+虚线小路作背景,进入视口时整体"擦入"展开
   （clip-path 从左向右展开）,小路上的点依次弹入；8 个节点按
   --h 值向上位移模拟爬坡,节点内容各自带滚动渐显 + 悬浮微交互。
   移动端退化为竖版时间轴,不用 SVG。
   ============================================================ */
.tl-mtn{position:relative;margin-top:72px;padding-top:326px;perspective:1300px}
.tl-mtn-bg{position:absolute;left:0;right:0;top:0;width:100%;height:340px;overflow:visible;display:block;
  transform-origin:bottom center;transform:rotateX(13deg) scaleY(1.05);
  filter:drop-shadow(0 26px 26px rgba(15,50,30,.14));
  clip-path:inset(0 100% 0 0);transition:clip-path 1.3s cubic-bezier(.16,.72,.14,1)}
.tl-mtn.in .tl-mtn-bg{clip-path:inset(0 0% 0 0)}
.tl-mtn-peak{fill:rgba(46,197,138,.05)}
.tl-mtn-peak2{fill:rgba(46,197,138,.17)}
.tl-mtn-trees path{fill:rgba(46,197,138,.32)}
.tl-mtn-road{fill:none;stroke:#2ec58a;stroke-width:2.5;stroke-dasharray:1 9;stroke-linecap:round;opacity:.55;
  filter:drop-shadow(0 3px 3px rgba(20,60,36,.2))}
.tl-mtn-spark{fill:#b4ebd6;filter:drop-shadow(0 0 5px rgba(180,235,214,.95)) drop-shadow(0 0 2px rgba(46,197,138,.6))}
.tl-mtn-dot{fill:#fff;stroke:#2ec58a;stroke-width:3;transform-box:fill-box;transform-origin:center;
  transform:scale(0);transition:transform .5s cubic-bezier(.34,1.56,.64,1);
  transition-delay:calc(.5s + var(--i,0) * .09s);
  filter:drop-shadow(0 4px 5px rgba(20,60,36,.3))}
.tl-mtn.in .tl-mtn-dot{transform:scale(1)}
.tl-mtn-dot-now{fill:#2ec58a;stroke:#b4ebd6;stroke-width:4}
@keyframes tlPulse{0%,100%{opacity:1}50%{opacity:.45}}
.tl-mtn.in .tl-mtn-dot-now{animation:tlPulse 2.2s ease-in-out 1.8s infinite}

.tl-nodes{position:relative;z-index:1;display:flex;align-items:flex-end;gap:22px;perspective:900px}
.tl-node{flex:1;min-width:0;display:flex;flex-direction:column;align-items:center;
  text-align:center;transform:translateY(calc(-1 * var(--h,0px)));padding-bottom:6px}
.tl-node-in{position:relative;transform-style:preserve-3d;transform-origin:center bottom;
  transition:transform .45s cubic-bezier(.2,.7,.2,1),filter .45s}
.tl-node-in::after{content:"";position:absolute;left:16%;right:16%;bottom:-4px;height:12px;
  border-radius:50%;background:radial-gradient(ellipse at center,rgba(15,50,30,.22),transparent 72%);
  opacity:0;transform:scale(.7);transition:opacity .4s,transform .4s;pointer-events:none}
.tl-node-in:hover{transform:translateY(-8px) rotateX(-7deg) scale(1.02);
  filter:drop-shadow(0 16px 18px rgba(15,50,30,.16))}
.tl-node-in:hover::after{opacity:1;transform:scale(1)}
.tl-node .tl-y{font-family:"Cormorant Garamond",serif;font-size:24px;font-weight:600;color:#14261c;
  display:flex;flex-direction:column;align-items:center;gap:6px;margin-bottom:12px;line-height:1;
  transform:scale(.55);opacity:0;
  transition:transform .5s cubic-bezier(.34,1.56,.64,1) .18s,opacity .4s ease .18s}
.tl-node-in.in .tl-y{transform:scale(1);opacity:1}
.tl-node .tl-era{font-family:"Inter",sans-serif;font-size:9.5px;letter-spacing:.16em;color:#2ec58a;
  font-weight:700;text-transform:uppercase;transition:color .3s}
.tl-node h4{font-size:13.5px;font-weight:600;color:#16261c;margin-bottom:8px;line-height:1.4}
.tl-node p{font-size:11.5px;color:#66766d;line-height:1.65}
.tl-node-now .tl-y,.tl-node-now h4{color:#2ec58a}
.tl-node-in:hover .tl-era{color:#2ec58a}

@media(max-width:960px){
  .tl-mtn{padding-top:0;margin-top:36px}
  .tl-mtn-bg{display:none}
  .tl-nodes{flex-direction:column;align-items:stretch;gap:30px}
  .tl-node{transform:none!important;text-align:left;align-items:flex-start;
    padding:2px 0 2px 26px;border-left:2px solid rgba(46,197,138,.25);position:relative}
  .tl-node::before{content:"";position:absolute;left:-6px;top:4px;width:10px;height:10px;
    border-radius:50%;background:#fff;border:3px solid #2ec58a}
  .tl-node-now::before{background:#2ec58a;border-color:#b4ebd6}
  .tl-node .tl-y{flex-direction:row;gap:10px;align-items:baseline}
  .tl-node-in:hover{transform:none}
}
@media(prefers-reduced-motion:reduce){
  .tl-mtn-bg,.tl-mtn-dot,.tl-node-in,.tl-y{transition:none!important}
  .tl-mtn-bg{clip-path:inset(0 0% 0 0)!important}
  .tl-mtn-dot{transform:scale(1)!important}
  .tl-mtn-dot-now{animation:none!important}
  .tl-y{transform:none!important;opacity:1!important}
  .tl-mtn-spark{display:none!important}
  .tl-mtn-ping{display:none!important}
}

/* ============================================================
   解决方案页 · 平台化解决方案 4 服务卡(2026-07-01 新增)
   定制化质控品服务 / 血清盘+性能验证 / 智能质控管理软件 / ISO15189 精益管理
   ============================================================ */
.svc-g{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;margin-top:8px}
.svc{position:relative;background:#fff;border:1px solid rgba(20,46,30,.08);border-radius:20px;
  padding:36px 34px;overflow:hidden;
  transition:transform .4s cubic-bezier(.2,.7,.2,1),box-shadow .4s,border-color .4s}
.svc::after{content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,#2ec58a,#b4ebd6);transform:scaleX(0);transform-origin:left;
  transition:transform .55s cubic-bezier(.2,.7,.2,1)}
.svc:hover{transform:translateY(-8px);box-shadow:0 30px 60px -30px rgba(13,40,24,.24);
  border-color:rgba(46,197,138,.22)}
.svc:hover::after{transform:scaleX(1)}
.svc-n{font-family:"Cormorant Garamond",serif;font-size:34px;font-weight:600;
  color:rgba(46,197,138,.30);margin-bottom:8px;line-height:1;
  transition:color .4s,transform .4s cubic-bezier(.2,.7,.2,1)}
.svc:hover .svc-n{color:rgba(46,197,138,.65);transform:translateX(3px) scale(1.06)}
.svc h3{font-size:21px;font-weight:600;color:#16261c;margin-bottom:6px;letter-spacing:-.01em}
.svc-tag{font-size:12px;letter-spacing:.1em;color:#2ec58a;font-weight:600;margin-bottom:18px}
.svc ul{list-style:none;margin:0 0 18px;padding:0}
.svc li{font-size:13.5px;color:#4c5b53;line-height:1.7;padding:7px 0 7px 18px;position:relative;
  opacity:0;transform:translateX(-10px);
  transition:opacity .5s ease,transform .5s cubic-bezier(.2,.7,.2,1),color .3s;
  transition-delay:calc(.15s + var(--li,0) * .09s)}
.svc.in li{opacity:1;transform:none}
.svc li::before{content:"";position:absolute;left:0;top:15px;width:5px;height:5px;
  border-radius:50%;background:#2ec58a;transition:transform .3s,background .3s}
.svc li:hover{color:#1b2b21}
.svc li:hover::before{transform:scale(1.6);background:#2ec58a}
.svc-adv{font-size:12.5px;color:#56635c;line-height:1.7;background:rgba(46,197,138,.06);
  border-radius:12px;padding:14px 16px;border-left:3px solid #2ec58a;
  opacity:0;transform:translateY(10px);
  transition:opacity .55s ease .5s,transform .55s cubic-bezier(.2,.7,.2,1) .5s,background .35s}
.svc.in .svc-adv{opacity:1;transform:none}
.svc:hover .svc-adv{background:rgba(46,197,138,.10)}
.svc-adv b{display:block;color:#2ec58a;font-size:11px;letter-spacing:.1em;
  margin-bottom:4px;font-weight:700}
.svc-highlight{text-align:center;margin-top:44px;font-size:14px;font-weight:600;
  color:#2ec58a;letter-spacing:.04em}
@media(max-width:760px){
  .svc-g{grid-template-columns:1fr}
  .svc{padding:28px 26px}
}
@media(prefers-reduced-motion:reduce){
  .svc li,.svc-adv{transition:none!important;opacity:1!important;transform:none!important}
  .svc::after{transition:none!important}
}

/* 2026-07-03: 合作伙伴区不能继承中绿大底,恢复模板式浅薄荷底 */
.stack-home #partners-sec{
  background:#ebfaf6 !important;
  color:var(--text) !important;
}
.stack-home #partners-sec .lbl,
.stack-home #partners-sec .h2,
.stack-home #partners-sec h2{
  color:var(--text) !important;
}
.stack-home #partners-sec .lbl::before{
  background:#2ec58a !important;
}
.stack-home #partners-sec .partner{
  background:#fff !important;
  color:#1f3329 !important;
  border-color:rgba(180,235,214,.75) !important;
  box-shadow:0 18px 42px -30px rgba(13,40,24,.22) !important;
}

/* 2026-07-03: 客户中心表单侧按反馈改为纯白背景 */
.login-sec .login-wrap,
.login-split .login-wrap{
  background:#fff !important;
}

/* 2026-07-03: 首页最终顺序的收尾覆盖，放在品质层之后 */
body.stack-home section#honors.sec:has(#cred){
  background:#fff !important;
  background-image:none !important;
}
body.stack-home section#honors.sec:has(#cred)::after{
  display:none !important;
}
body.stack-home section#honors #cred .cert{
  background:#fff !important;
  border:1px solid rgba(20,46,30,.08) !important;
  box-shadow:0 22px 52px -40px rgba(13,40,24,.18) !important;
}
body.stack-home section#honors #cred .cert:hover{
  background:#fff !important;
  box-shadow:0 30px 64px -42px rgba(13,40,24,.22) !important;
}

/* 2026-07-03: 新闻活动底色最终覆盖 */
body.stack-home #news{
  background:
    radial-gradient(900px 540px at 82% 0%, rgba(255,255,255,.20), transparent 62%),
    radial-gradient(760px 520px at 8% 88%, rgba(4,88,54,.14), transparent 64%),
    linear-gradient(180deg,#28bd7f 0%,#28bd7f 100%) !important;
}

body.stack-home #news .sec-idx{
  color:rgba(255,255,255,.78) !important;
}
body.stack-home #news .sec-idx b,
body.stack-home #news .h2,
body.stack-home #news .h2 b{
  color:#fff !important;
}
body.stack-home #news .sub{
  color:rgba(255,255,255,.82) !important;
}
body.stack-home #news .news{
  box-shadow:0 34px 84px -52px rgba(4,88,54,.55) !important;
}
body.stack-home #news .news:hover{
  box-shadow:0 44px 96px -52px rgba(4,88,54,.62) !important;
}

/* 2026-07-03: 解决方案卡默认信息块最终收紧 */
body.stack-home #solutions .sol-body{
  padding:28px 26px !important;
}
body.stack-home #solutions .sol-body::before,
body.stack-home #solutions .sol-body::after{
  clip-path:inset(346px 24px 24px 24px round 18px) !important;
}
body.stack-home #solutions .sol:hover .sol-body::before,
body.stack-home #solutions .sol:hover .sol-body::after,
body.stack-home #solutions .sol.is-active .sol-body::before,
body.stack-home #solutions .sol.is-active .sol-body::after,
body.stack-home #solutions .sol:focus-within .sol-body::before,
body.stack-home #solutions .sol:focus-within .sol-body::after{
  clip-path:inset(0 0 0 0 round 20px) !important;
}
body.stack-home #solutions .sol-body h3{
  font-size:22px !important;
  margin-top:12px !important;
}

/* 2026-07-03: 解决方案内容与人物图的最终平衡，必须位于文件末尾 */
body.stack-home #solutions .sec-head{
  align-items:flex-end !important;
  margin-bottom:58px !important;
}
body.stack-home #solutions .sub{
  max-width:640px !important;
  line-height:1.95 !important;
}
body.stack-home #solutions .sol{
  height:486px !important;
  border-radius:22px !important;
}
body.stack-home #solutions .sol-img::after{
  background:
    linear-gradient(180deg,rgba(8,42,27,.02) 0%,rgba(8,42,27,.08) 42%,rgba(8,42,27,.56) 100%) !important;
}
body.stack-home #solutions .sol-body{
  padding:30px 28px !important;
}
body.stack-home #solutions .sol-body::before,
body.stack-home #solutions .sol-body::after{
  border-radius:18px !important;
  clip-path:inset(358px 24px 24px 24px round 18px) !important;
}
body.stack-home #solutions .sol:hover .sol-body::before,
body.stack-home #solutions .sol:hover .sol-body::after,
body.stack-home #solutions .sol.is-active .sol-body::before,
body.stack-home #solutions .sol.is-active .sol-body::after,
body.stack-home #solutions .sol:focus-within .sol-body::before,
body.stack-home #solutions .sol:focus-within .sol-body::after{
  clip-path:inset(156px 18px 18px 18px round 18px) !important;
}
body.stack-home #solutions .sol-body::before{
  background:
    linear-gradient(145deg,rgba(244,255,251,.78),rgba(219,241,239,.58)) !important;
  box-shadow:
    0 28px 62px -34px rgba(5,28,18,.52),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}
body.stack-home #solutions .sol-body .cap{
  color:#25bd80 !important;
  font-size:13px !important;
  font-weight:800 !important;
  letter-spacing:.04em !important;
  margin-bottom:12px !important;
}
body.stack-home #solutions .sol-body .cap::before{
  width:30px !important;
  background:#25bd80 !important;
}
body.stack-home #solutions .sol-body h3{
  display:grid !important;
  grid-template-columns:auto minmax(0,1fr) !important;
  gap:14px !important;
  align-items:center !important;
  color:#17241f !important;
  font-size:22px !important;
  line-height:1.25 !important;
  letter-spacing:0 !important;
  margin:0 !important;
  word-break:keep-all !important;
}
body.stack-home #solutions .sol-ic{
  width:42px !important;
  height:42px !important;
  border-radius:13px !important;
  background:
    radial-gradient(90% 90% at 30% 18%, rgba(255,255,255,.92), transparent 62%),
    linear-gradient(150deg,rgba(217,247,236,.95),rgba(193,238,226,.76)) !important;
  color:#1f8f61 !important;
  box-shadow:0 12px 28px -20px rgba(5,28,18,.42), inset 0 1px 0 rgba(255,255,255,.94) !important;
}
body.stack-home #solutions .sol-rev{
  margin-top:0 !important;
}
body.stack-home #solutions .sol:hover .sol-rev,
body.stack-home #solutions .sol.is-active .sol-rev,
body.stack-home #solutions .sol:focus-within .sol-rev{
  max-height:214px !important;
  margin-top:16px !important;
}
body.stack-home #solutions .sol-rev p{
  color:#536860 !important;
  font-size:13px !important;
  line-height:1.7 !important;
  margin:0 !important;
}
body.stack-home #solutions .sol-rev ul{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:8px !important;
  margin:14px 0 0 !important;
  padding:0 !important;
  border:0 !important;
}
body.stack-home #solutions .sol-rev li{
  width:auto !important;
  color:#1f8f61 !important;
  font-size:12px !important;
  font-weight:800 !important;
  line-height:1 !important;
  padding:8px 10px !important;
  border:1px solid rgba(37,189,128,.20) !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.42) !important;
}
body.stack-home #solutions .sol-more{
  display:inline-flex !important;
  align-items:center !important;
  margin-top:16px !important;
  color:#1f9a66 !important;
  font-size:13px !important;
  font-weight:800 !important;
}
@media(max-width:1180px){
  body.stack-home #solutions .sol{
    height:460px !important;
  }
  body.stack-home #solutions .sol-body::before,
  body.stack-home #solutions .sol-body::after{
    clip-path:inset(332px 22px 22px 22px round 18px) !important;
  }
  body.stack-home #solutions .sol:hover .sol-body::before,
  body.stack-home #solutions .sol:hover .sol-body::after,
  body.stack-home #solutions .sol.is-active .sol-body::before,
  body.stack-home #solutions .sol.is-active .sol-body::after,
  body.stack-home #solutions .sol:focus-within .sol-body::before,
  body.stack-home #solutions .sol:focus-within .sol-body::after{
    clip-path:inset(138px 16px 16px 16px round 18px) !important;
  }
}
@media(max-width:640px){
  body.stack-home #solutions .sec-head{
    margin-bottom:34px !important;
  }
  body.stack-home #solutions .sol{
    height:420px !important;
  }
  body.stack-home #solutions .sol-body{
    padding:26px 24px !important;
  }
  body.stack-home #solutions .sol-body::before,
  body.stack-home #solutions .sol-body::after{
    clip-path:inset(298px 18px 18px 18px round 16px) !important;
  }
  body.stack-home #solutions .sol:hover .sol-body::before,
  body.stack-home #solutions .sol:hover .sol-body::after,
  body.stack-home #solutions .sol.is-active .sol-body::before,
  body.stack-home #solutions .sol.is-active .sol-body::after,
  body.stack-home #solutions .sol:focus-within .sol-body::before,
  body.stack-home #solutions .sol:focus-within .sol-body::after{
    clip-path:inset(102px 14px 14px 14px round 18px) !important;
  }
  body.stack-home #solutions .sol-body h3{
    font-size:21px !important;
  }
}

/* 2026-07-03: 解决方案内容与人物图的最终平衡 */
body.stack-home #solutions .sec-head{
  align-items:flex-end !important;
  margin-bottom:58px !important;
}
body.stack-home #solutions .sub{
  max-width:640px !important;
  line-height:1.95 !important;
}
body.stack-home #solutions .sol{
  height:486px !important;
  border-radius:22px !important;
}
body.stack-home #solutions .sol-img::after{
  background:
    linear-gradient(180deg,rgba(8,42,27,.02) 0%,rgba(8,42,27,.08) 42%,rgba(8,42,27,.56) 100%) !important;
}
body.stack-home #solutions .sol-body{
  padding:30px 28px !important;
}
body.stack-home #solutions .sol-body::before,
body.stack-home #solutions .sol-body::after{
  border-radius:18px !important;
  clip-path:inset(358px 24px 24px 24px round 18px) !important;
}
body.stack-home #solutions .sol:hover .sol-body::before,
body.stack-home #solutions .sol:hover .sol-body::after,
body.stack-home #solutions .sol.is-active .sol-body::before,
body.stack-home #solutions .sol.is-active .sol-body::after,
body.stack-home #solutions .sol:focus-within .sol-body::before,
body.stack-home #solutions .sol:focus-within .sol-body::after{
  clip-path:inset(156px 18px 18px 18px round 18px) !important;
}
body.stack-home #solutions .sol-body::before{
  background:
    linear-gradient(145deg,rgba(244,255,251,.78),rgba(219,241,239,.58)) !important;
  box-shadow:
    0 28px 62px -34px rgba(5,28,18,.52),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}
body.stack-home #solutions .sol-body .cap{
  color:#25bd80 !important;
  font-size:13px !important;
  font-weight:800 !important;
  letter-spacing:.04em !important;
  margin-bottom:12px !important;
}
body.stack-home #solutions .sol-body .cap::before{
  width:30px !important;
  background:#25bd80 !important;
}
body.stack-home #solutions .sol-body h3{
  display:grid !important;
  grid-template-columns:auto minmax(0,1fr) !important;
  gap:14px !important;
  align-items:center !important;
  color:#17241f !important;
  font-size:22px !important;
  line-height:1.25 !important;
  letter-spacing:0 !important;
  margin:0 !important;
  word-break:keep-all !important;
}
body.stack-home #solutions .sol-ic{
  width:42px !important;
  height:42px !important;
  border-radius:13px !important;
  background:
    radial-gradient(90% 90% at 30% 18%, rgba(255,255,255,.92), transparent 62%),
    linear-gradient(150deg,rgba(217,247,236,.95),rgba(193,238,226,.76)) !important;
  color:#1f8f61 !important;
  box-shadow:0 12px 28px -20px rgba(5,28,18,.42), inset 0 1px 0 rgba(255,255,255,.94) !important;
}
body.stack-home #solutions .sol-rev{
  margin-top:0 !important;
}
body.stack-home #solutions .sol:hover .sol-rev,
body.stack-home #solutions .sol.is-active .sol-rev,
body.stack-home #solutions .sol:focus-within .sol-rev{
  max-height:214px !important;
  margin-top:16px !important;
}
body.stack-home #solutions .sol-rev p{
  color:#536860 !important;
  font-size:13px !important;
  line-height:1.7 !important;
  margin:0 !important;
}
body.stack-home #solutions .sol-rev ul{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:8px !important;
  margin:14px 0 0 !important;
  padding:0 !important;
  border:0 !important;
}
body.stack-home #solutions .sol-rev li{
  width:auto !important;
  color:#1f8f61 !important;
  font-size:12px !important;
  font-weight:800 !important;
  line-height:1 !important;
  padding:8px 10px !important;
  border:1px solid rgba(37,189,128,.20) !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.42) !important;
}
body.stack-home #solutions .sol-more{
  display:inline-flex !important;
  align-items:center !important;
  margin-top:16px !important;
  color:#1f9a66 !important;
  font-size:13px !important;
  font-weight:800 !important;
}
@media(max-width:1180px){
  body.stack-home #solutions .sol{
    height:460px !important;
  }
  body.stack-home #solutions .sol-body::before,
  body.stack-home #solutions .sol-body::after{
    clip-path:inset(332px 22px 22px 22px round 18px) !important;
  }
  body.stack-home #solutions .sol:hover .sol-body::before,
  body.stack-home #solutions .sol:hover .sol-body::after,
  body.stack-home #solutions .sol.is-active .sol-body::before,
  body.stack-home #solutions .sol.is-active .sol-body::after,
  body.stack-home #solutions .sol:focus-within .sol-body::before,
  body.stack-home #solutions .sol:focus-within .sol-body::after{
    clip-path:inset(138px 16px 16px 16px round 18px) !important;
  }
}
@media(max-width:640px){
  body.stack-home #solutions .sec-head{
    margin-bottom:34px !important;
  }
  body.stack-home #solutions .sol{
    height:420px !important;
  }
  body.stack-home #solutions .sol-body{
    padding:26px 24px !important;
  }
  body.stack-home #solutions .sol-body::before,
  body.stack-home #solutions .sol-body::after{
    clip-path:inset(298px 18px 18px 18px round 16px) !important;
  }
  body.stack-home #solutions .sol:hover .sol-body::before,
  body.stack-home #solutions .sol:hover .sol-body::after,
  body.stack-home #solutions .sol.is-active .sol-body::before,
  body.stack-home #solutions .sol.is-active .sol-body::after,
  body.stack-home #solutions .sol:focus-within .sol-body::before,
  body.stack-home #solutions .sol:focus-within .sol-body::after{
    clip-path:inset(102px 14px 14px 14px round 18px) !important;
  }
  body.stack-home #solutions .sol-body h3{
    font-size:21px !important;
  }
}

/* 2026-07-03: 解决方案改为人物场景主视觉 + 精简服务文案 */
body.stack-home #solutions .sec-head{
  align-items:flex-end !important;
}
body.stack-home #solutions .sub{
  max-width:660px !important;
}
body.stack-home #solutions .sol{
  height:500px !important;
}
body.stack-home #solutions .sol-body{
  padding:28px 26px !important;
}
body.stack-home #solutions .sol-body::before,
body.stack-home #solutions .sol-body::after{
  clip-path:inset(346px 24px 24px 24px round 18px) !important;
}
body.stack-home #solutions .sol:hover .sol-body::before,
body.stack-home #solutions .sol:hover .sol-body::after,
body.stack-home #solutions .sol.is-active .sol-body::before,
body.stack-home #solutions .sol.is-active .sol-body::after,
body.stack-home #solutions .sol:focus-within .sol-body::before,
body.stack-home #solutions .sol:focus-within .sol-body::after{
  clip-path:inset(0 0 0 0 round 20px) !important;
}
body.stack-home #solutions .sol-body .cap{
  font-size:12px !important;
  letter-spacing:.08em !important;
}
body.stack-home #solutions .sol-body h3{
  gap:12px !important;
  font-size:22px !important;
  line-height:1.28 !important;
  letter-spacing:0 !important;
  margin-top:12px !important;
}
body.stack-home #solutions .sol-ic{
  width:38px !important;
  height:38px !important;
  flex:0 0 38px !important;
}
body.stack-home #solutions .sol-rev p{
  font-size:13px !important;
  line-height:1.68 !important;
  max-width:30em !important;
}
body.stack-home #solutions .sol-rev li{
  font-size:12.5px !important;
  padding:9px 0 !important;
}
@media(max-width:760px){
  body.stack-home #solutions .sol{
    height:440px !important;
  }
  body.stack-home #solutions .sol-body::before,
  body.stack-home #solutions .sol-body::after{
    clip-path:inset(286px 18px 18px 18px round 16px) !important;
  }
}

/* 2026-07-03: 首页解决方案卡恢复正常揭幕动画 */
body.stack-home #solutions .sol{
  transition:
    transform .55s cubic-bezier(.2,.7,.2,1),
    box-shadow .55s cubic-bezier(.2,.7,.2,1) !important;
  background:#0b3322 !important;
}
body.stack-home #solutions .sol:hover,
body.stack-home #solutions .sol.is-active,
body.stack-home #solutions .sol:focus-within{
  transform:translateY(-10px) !important;
  box-shadow:0 42px 86px -42px rgba(5,28,18,.48) !important;
}
body.stack-home #solutions .sol-img img{
  transition:transform .9s cubic-bezier(.2,.7,.2,1) !important;
}
body.stack-home #solutions .sol:hover .sol-img img,
body.stack-home #solutions .sol.is-active .sol-img img,
body.stack-home #solutions .sol:focus-within .sol-img img{
  transform:scale(1.08) !important;
}
body.stack-home #solutions .sol-body{
  inset:0 !important;
  left:0 !important;
  right:0 !important;
  bottom:0 !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:flex-end !important;
  padding:32px 34px !important;
  border:0 !important;
  border-radius:20px !important;
  background:transparent !important;
  box-shadow:none !important;
  -webkit-backdrop-filter:none !important;
  backdrop-filter:none !important;
  overflow:hidden !important;
}
body.stack-home #solutions .sol-body::before,
body.stack-home #solutions .sol-body::after{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  pointer-events:none !important;
  border-radius:20px !important;
  clip-path:inset(310px 20px 20px 20px round 18px) !important;
  transition:clip-path .55s cubic-bezier(.2,.76,.16,1) !important;
  will-change:clip-path;
}
body.stack-home #solutions .sol-body::before{
  border:1px solid rgba(255,255,255,.74) !important;
  background:linear-gradient(145deg,rgba(255,255,255,.72),rgba(242,255,250,.50)) !important;
  box-shadow:
    0 26px 60px -32px rgba(5,28,18,.52),
    inset 0 1px 0 rgba(255,255,255,.88) !important;
  -webkit-backdrop-filter:blur(28px) saturate(168%) !important;
  backdrop-filter:blur(28px) saturate(168%) !important;
}
body.stack-home #solutions .sol-body::after{
  background:linear-gradient(180deg,rgba(255,255,255,.30),rgba(255,255,255,0) 46%) !important;
}
body.stack-home #solutions .sol:hover .sol-body::before,
body.stack-home #solutions .sol:hover .sol-body::after,
body.stack-home #solutions .sol.is-active .sol-body::before,
body.stack-home #solutions .sol.is-active .sol-body::after,
body.stack-home #solutions .sol:focus-within .sol-body::before,
body.stack-home #solutions .sol:focus-within .sol-body::after{
  clip-path:inset(0 0 0 0 round 20px) !important;
}
body.stack-home #solutions .sol-body > *{
  position:relative !important;
  z-index:1 !important;
}
body.stack-home #solutions .sol-rev{
  max-height:0 !important;
  opacity:0 !important;
  overflow:hidden !important;
  margin-top:0 !important;
  transition:
    max-height .55s cubic-bezier(.2,.7,.2,1),
    opacity .35s ease,
    margin-top .55s cubic-bezier(.2,.7,.2,1) !important;
}
body.stack-home #solutions .sol:hover .sol-rev,
body.stack-home #solutions .sol.is-active .sol-rev,
body.stack-home #solutions .sol:focus-within .sol-rev{
  max-height:300px !important;
  opacity:1 !important;
  margin-top:16px !important;
}
body.stack-home #solutions .sol-rev ul{
  display:block !important;
  list-style:none !important;
  margin:14px 0 0 !important;
  padding:0 !important;
  border-top:1px solid rgba(20,46,30,.10) !important;
}
body.stack-home #solutions .sol-rev li{
  color:#2b3f36 !important;
  font-size:13px !important;
  line-height:1.5 !important;
  padding:10px 0 !important;
  border-bottom:1px solid rgba(20,46,30,.08) !important;
}
body.stack-home #solutions .sol-more{
  margin-top:18px !important;
}
@media(max-width:760px){
  body.stack-home #solutions .sol-body::before,
  body.stack-home #solutions .sol-body::after{
    clip-path:inset(300px 18px 18px 18px round 16px) !important;
  }
  body.stack-home #solutions .sol.is-active .sol-body::before,
body.stack-home #solutions .sol.is-active .sol-body::after{
    clip-path:inset(0 0 0 0 round 20px) !important;
  }
}

/* 2026-07-03: 新闻活动底色按色块改为亮绿 #28bd7f */
body.stack-home #news{
  background:
    radial-gradient(900px 540px at 82% 0%, rgba(255,255,255,.20), transparent 62%),
    radial-gradient(760px 520px at 8% 88%, rgba(4,88,54,.14), transparent 64%),
    linear-gradient(180deg,#28bd7f 0%,#28bd7f 100%) !important;
}
body.stack-home #news .sec-idx{
  color:rgba(255,255,255,.78) !important;
}
body.stack-home #news .sec-idx b,
body.stack-home #news .h2,
body.stack-home #news .h2 b{
  color:#fff !important;
}
body.stack-home #news .sub{
  color:rgba(255,255,255,.82) !important;
}
body.stack-home #news .news{
  box-shadow:0 34px 84px -52px rgba(4,88,54,.55) !important;
}
body.stack-home #news .news:hover{
  box-shadow:0 44px 96px -52px rgba(4,88,54,.62) !important;
}

/* 2026-07-03: 首页主线调整 - banner / 产品 / 方案 / 专利荣誉 / 新闻活动 */
.stack-home #products{
  margin-top:0 !important;
}
.stack-home #solutions{
  background:
    radial-gradient(900px 520px at 84% 0%, rgba(255,255,255,.70), transparent 64%),
    radial-gradient(820px 580px at 0% 80%, rgba(46,197,138,.075), transparent 60%),
    linear-gradient(180deg,var(--quality-bg) 0%,var(--quality-bg) 100%) !important;
}
.stack-home #solutions .sec-head{
  margin-bottom:52px !important;
}
.stack-home #solutions .sol-g{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:28px !important;
}
.stack-home #solutions .sol{
  position:relative !important;
  height:460px !important;
  display:block !important;
  overflow:hidden !important;
  border-radius:20px !important;
  border:1px solid rgba(255,255,255,.78) !important;
  background:#fff !important;
  box-shadow:0 28px 68px -44px rgba(13,40,24,.30) !important;
}
.stack-home #solutions .sol-img{
  position:absolute !important;
  inset:0 !important;
  height:100% !important;
  width:100% !important;
}
.stack-home #solutions .sol-img img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}
.stack-home #solutions .sol-img::after{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  display:block !important;
  background:linear-gradient(180deg,rgba(8,42,27,.04) 0%,rgba(8,42,27,.08) 42%,rgba(8,42,27,.58) 100%) !important;
}
.stack-home #solutions .sol-body{
  position:absolute !important;
  left:18px !important;
  right:18px !important;
  bottom:18px !important;
  z-index:2 !important;
  padding:22px 22px 20px !important;
  border-radius:16px !important;
  background:rgba(255,255,255,.90) !important;
  border:1px solid rgba(255,255,255,.78) !important;
  box-shadow:0 22px 46px -34px rgba(0,0,0,.45) !important;
  backdrop-filter:blur(16px) saturate(140%) !important;
  -webkit-backdrop-filter:blur(16px) saturate(140%) !important;
}
.stack-home #solutions .sol-body::before,
.stack-home #solutions .sol-body::after{
  display:none !important;
}
.stack-home #solutions .sol-body .cap{
  color:#269c67 !important;
  font-size:12px !important;
  letter-spacing:.08em !important;
  margin-bottom:10px !important;
}
.stack-home #solutions .sol-body h3{
  color:#17241f !important;
  font-size:20px !important;
  line-height:1.35 !important;
  margin:0 !important;
}
.stack-home #solutions .sol-ic{
  width:36px !important;
  height:36px !important;
  border-radius:12px !important;
  background:#d9f7ec !important;
  color:#20794f !important;
}
.stack-home #solutions .sol-rev{
  max-height:none !important;
  opacity:1 !important;
  overflow:visible !important;
  margin-top:14px !important;
}
.stack-home #solutions .sol-rev p{
  color:#61756c !important;
  font-size:13px !important;
  line-height:1.72 !important;
  margin:0 0 12px !important;
}
.stack-home #solutions .sol-rev ul{
  display:none !important;
}
.stack-home #solutions .sol-more{
  color:#269c67 !important;
  font-size:13px !important;
  font-weight:700 !important;
}
.stack-home #honors{
  background:#fff !important;
}
.stack-home #honors .cert-g{
  gap:18px !important;
}
.stack-home #honors .cert{
  min-height:112px;
  border-radius:18px !important;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(46,197,138,.055), transparent 58%),
    #fff !important;
  border:1px solid rgba(20,46,30,.08) !important;
}
@media(max-width:1180px){
  .stack-home #solutions .sol-g{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}
@media(max-width:640px){
  .stack-home #solutions .sol-g{
    grid-template-columns:1fr !important;
  }
  .stack-home #solutions .sol{
    height:420px !important;
  }
}

/* 2026-07-03: 首页新闻模块从参考页恢复，锁定深绿背景与白卡品质 */
.stack-home #news{
  padding:128px 0 140px !important;
  background:
    radial-gradient(860px 520px at 76% 4%, rgba(46,197,138,.16), transparent 62%),
    radial-gradient(760px 520px at 10% 88%, rgba(46,197,138,.10), transparent 64%),
    linear-gradient(180deg,#123f2b 0%,#0b3322 54%,#062719 100%) !important;
}
.stack-home #news .sec-head{
  align-items:flex-end !important;
  margin-bottom:68px !important;
}
.stack-home #news .sec-idx{
  color:rgba(255,255,255,.58) !important;
}
.stack-home #news .sec-idx b{
  color:var(--quality-accent) !important;
}
.stack-home #news .h2{
  color:#fff !important;
}
.stack-home #news .h2 b{
  color:#fff !important;
}
.stack-home #news .sub{
  color:rgba(255,255,255,.62) !important;
  max-width:560px !important;
}
.stack-home #news .news-g{
  gap:34px !important;
}
.stack-home #news .news{
  overflow:hidden !important;
  min-height:520px;
  border-radius:20px !important;
  border:1px solid rgba(255,255,255,.16) !important;
  background:#fff !important;
  background-image:none !important;
  box-shadow:0 34px 90px -54px rgba(0,0,0,.72) !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.stack-home #news .news:hover{
  transform:translateY(-6px) !important;
  background:#fff !important;
  background-image:none !important;
  box-shadow:0 44px 100px -54px rgba(0,0,0,.78) !important;
}
.stack-home #news .news-img{
  aspect-ratio:16/10 !important;
}
.stack-home #news .news-img::after{
  background:linear-gradient(180deg,rgba(0,0,0,.10),transparent 46%) !important;
}
.stack-home #news .news-date{
  color:#fff !important;
  text-shadow:0 2px 10px rgba(0,0,0,.34) !important;
}
.stack-home #news .news-body{
  background:#fff !important;
  background-image:none !important;
  padding:34px 34px 38px !important;
}
.stack-home #news .news-body h4{
  color:#17241f !important;
  font-size:20px !important;
  line-height:1.5 !important;
}
.stack-home #news .news-body p{
  color:#7a8a83 !important;
  font-size:15px !important;
  line-height:1.8 !important;
}
.stack-home #news .news-tag,
.stack-home #news .news-link{
  color:#269c67 !important;
}
.stack-home #news .news-tag::before{
  background:#2ec58a !important;
}
@media(max-width:900px){
  .stack-home #news{
    padding:92px 0 104px !important;
  }
  .stack-home #news .sec-head{
    align-items:flex-start !important;
    margin-bottom:42px !important;
  }
  .stack-home #news .news{
    min-height:0;
  }
}

/* 2026-07-03: 公司介绍标题按“定位字”排版 */
#intro .about-text{
  margin-top:48px !important;
}
#intro .intro-title{
  margin:0 0 12px;
  color:#24b573;
  font-size:clamp(22px,2vw,31px);
  line-height:1.16;
  font-weight:800;
  letter-spacing:0;
  max-width:none;
  white-space:nowrap;
}
#intro .intro-en{
  margin:0 0 28px;
  color:rgba(23,36,31,.42);
  font-size:11px;
  line-height:1.5;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}
#intro .about-text p{
  max-width:34em;
}
#intro .about-text p:first-of-type{
  margin-top:0;
}
@media(max-width:980px){
  #intro .intro-title{
    font-size:clamp(18px,4.2vw,30px);
    max-width:none;
  }
}

/* 2026-07-03: 产品展示轮播图 */
#showcase .product-carousel{
  position:relative;
  padding:0 14px 42px;
}
#showcase .product-carousel-viewport{
  overflow:hidden;
  border-radius:20px;
}
#showcase .pshow-g-featured{
  display:flex;
  gap:26px;
  margin:0;
  will-change:transform;
  transition:transform .62s cubic-bezier(.2,.76,.16,1);
}
#showcase .pshow-g-featured.no-transition{
  transition:none;
}
#showcase .pshow-g-featured .pshow{
  flex:0 0 calc((100% - 78px) / 4);
}
#showcase .product-carousel-btn{
  position:absolute;
  top:50%;
  z-index:3;
  width:52px;
  height:52px;
  border-radius:50%;
  border:1px solid rgba(46,197,138,.24);
  background:rgba(255,255,255,.82);
  color:#18372a;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transform:translateY(-50%);
  box-shadow:0 16px 34px -24px rgba(13,40,24,.28), inset 0 1px 0 rgba(255,255,255,.88);
  -webkit-backdrop-filter:blur(14px) saturate(150%);
  backdrop-filter:blur(14px) saturate(150%);
  transition:background .25s,color .25s,transform .25s,border-color .25s;
}
#showcase .product-carousel-btn svg{
  width:22px;
  height:22px;
}
#showcase .product-carousel-btn.prev{
  left:-12px;
}
#showcase .product-carousel-btn.next{
  right:-12px;
}
#showcase .product-carousel-btn:hover{
  background:#2ec58a;
  border-color:#2ec58a;
  color:#fff;
  transform:translateY(-50%) scale(1.04);
}
#showcase .product-carousel-dots{
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  align-items:center;
}
#showcase .product-carousel-dots button{
  width:7px;
  height:7px;
  border:0;
  border-radius:50%;
  background:rgba(31,55,42,.22);
  padding:0;
  cursor:pointer;
  transition:width .25s,background .25s,border-radius .25s;
}
#showcase .product-carousel-dots button.on{
  width:26px;
  border-radius:999px;
  background:#2ec58a;
}
@media(max-width:1100px){
  #showcase .pshow-g-featured{
    gap:22px;
  }
  #showcase .pshow-g-featured .pshow{
    flex-basis:calc((100% - 22px) / 2);
  }
}
@media(max-width:640px){
  #showcase .product-carousel{
    padding:0 0 38px;
  }
  #showcase .pshow-g-featured{
    gap:18px;
  }
  #showcase .pshow-g-featured .pshow{
    flex-basis:100%;
  }
  #showcase .product-carousel-btn{
    width:44px;
    height:44px;
  }
  #showcase .product-carousel-btn.prev{
    left:8px;
  }
  #showcase .product-carousel-btn.next{
    right:8px;
  }
}
.login-sec .login-wrap input,
.login-split .login-wrap input{
  background:#fff !important;
  border-color:rgba(46,197,138,.18) !important;
}

/* 2026-07-03: 最终色彩品质层 - 浅薄荷空气感 + 轻玻璃白卡 */
:root{
  --quality-bg:#ebfaf6;
  --quality-bg-soft:#f5fdfa;
  --quality-card:rgba(255,255,255,.78);
  --quality-card-strong:#fff;
  --quality-border:rgba(255,255,255,.86);
  --quality-line:rgba(31,72,52,.08);
  --quality-text:#17241f;
  --quality-muted:#61756c;
  --quality-accent:#2ec58a;
  --quality-accent-soft:#c9f4e4;
}

body{
  background:
    radial-gradient(900px 520px at 80% -8%, rgba(255,255,255,.72), transparent 62%),
    radial-gradient(860px 640px at 5% 35%, rgba(46,197,138,.055), transparent 56%),
    linear-gradient(180deg,var(--quality-bg) 0%,var(--quality-bg) 100%) !important;
}

.sec-soft,
#showcase,
.stack-home #partners-sec,
#culture,
#values,
#qc,
.news-list,
.dl-list,
#lit,
.contact-soft,
.trace-soft,
body.sd-soft{
  background:
    radial-gradient(900px 520px at 80% 0%, rgba(255,255,255,.58), transparent 62%),
    linear-gradient(180deg,var(--quality-bg) 0%,var(--quality-bg) 100%) !important;
}

.pillar,
.mx,
.tf,
.lp,
.news,
.sup-c,
.train,
.honor,
.cert,
.stat,
.cmp-card,
.partner,
.gcard,
.group-card,
.catalog,
.cat-side,
.pshow,
.login-wrap,
form.lead,
.search-ov .sbox{
  border:1px solid var(--quality-border) !important;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(255,255,255,.9), transparent 58%),
    radial-gradient(120% 100% at 100% 100%, rgba(46,197,138,.055), transparent 58%),
    linear-gradient(145deg,rgba(255,255,255,.78),rgba(247,255,252,.58)) !important;
  box-shadow:
    0 26px 58px -42px rgba(13,40,24,.22),
    inset 0 1px 0 rgba(255,255,255,.9) !important;
  backdrop-filter:blur(18px) saturate(145%) !important;
  -webkit-backdrop-filter:blur(18px) saturate(145%) !important;
}

.pillar:hover,
.mx:hover,
.tf:hover,
.lp:hover,
.news:hover,
.sup-c:hover,
.train:hover,
.honor:hover,
.cert:hover,
.stat:hover,
.cmp-card:hover,
.partner:hover,
.pshow:hover{
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(255,255,255,.94), transparent 58%),
    radial-gradient(120% 100% at 100% 100%, rgba(46,197,138,.08), transparent 58%),
    linear-gradient(145deg,rgba(255,255,255,.84),rgba(248,255,253,.66)) !important;
  box-shadow:
    0 32px 68px -44px rgba(13,40,24,.26),
    inset 0 1px 0 rgba(255,255,255,.96) !important;
}

.pillar h3,
.mx h3,
.tf h3,
.lp h3,
.news-body h4,
.sup-c h4,
.cert .v,
.stat .v,
.partner,
.h2{
  color:var(--quality-text) !important;
}

.pillar p,
.mx p,
.tf p,
.lp p,
.news-body p,
.sup-c p,
.sub,
.cert .k{
  color:var(--quality-muted) !important;
}

.mx-ic,
.sup-c .ic,
.tf .ic,
.lp .ic,
.sol-ic,
.lb-ic,
.pillar .ic,
.honor .ic,
.cert .ic,
.stat .ic,
.cmp-card .ic,
.pillar .pn,
.honor-ic,
.cert-ic,
.value-ic{
  background:
    radial-gradient(100% 100% at 30% 20%, rgba(255,255,255,.72), transparent 58%),
    linear-gradient(150deg,rgba(201,244,228,.94),rgba(201,244,228,.62)) !important;
  border:1px solid rgba(255,255,255,.88) !important;
  box-shadow:0 14px 28px -18px rgba(13,40,24,.20), inset 0 1px 0 rgba(255,255,255,.9) !important;
}
.mx-ic svg,
.sup-c .ic svg,
.tf .ic svg,
.lp .ic svg,
.sol-ic svg,
.pillar .ic svg,
.honor .ic svg,
.cert .ic svg,
.stat .ic svg,
.cmp-card .ic svg{
  stroke:#1f7d4e !important;
}

#culture .pillar,
#values .pillar{
  padding:54px 52px !important;
  min-height:280px;
}
#culture .pillar .ic,
#values .pillar .ic{
  width:64px;
  height:64px;
  border-radius:18px !important;
  margin-bottom:34px;
}
#culture .pillar .pen,
#values .pillar .pen{
  color:rgba(23,36,31,.38) !important;
  font-size:14px;
  letter-spacing:.24em;
  margin-bottom:18px;
}
#culture .pillar h3,
#values .pillar h3{
  font-size:30px;
  letter-spacing:0;
}

.stack-home #partners-sec{
  background:
    radial-gradient(1000px 540px at 74% -4%, rgba(255,255,255,.68), transparent 64%),
    linear-gradient(180deg,var(--quality-bg) 0%,var(--quality-bg) 100%) !important;
}
.stack-home #partners-sec .partner{
  background:#fff !important;
  border:1px solid rgba(46,197,138,.22) !important;
  box-shadow:none !important;
  border-radius:18px !important;
  padding:17px 40px !important;
  color:#23362f !important;
}

#showcase .pshow{
  background:#fff !important;
  border-color:rgba(255,255,255,.9) !important;
  box-shadow:0 24px 58px -42px rgba(13,40,24,.22) !important;
}
#showcase .pshow-img,
#showcase .pshow-cap{
  background:#fff !important;
}

.login-sec .login-wrap,
.login-split .login-wrap{
  background:#fff !important;
}

/* 2026-07-03: 首页最终顺序的收尾覆盖，放在品质层之后 */
body.stack-home section#honors.sec:has(#cred){
  background:#fff !important;
  background-image:none !important;
}
body.stack-home section#honors.sec:has(#cred)::after{
  display:none !important;
}
body.stack-home section#honors #cred .cert{
  background:#fff !important;
  border:1px solid rgba(20,46,30,.08) !important;
  box-shadow:0 22px 52px -40px rgba(13,40,24,.18) !important;
}
body.stack-home section#honors #cred .cert:hover{
  background:#fff !important;
  box-shadow:0 30px 64px -42px rgba(13,40,24,.22) !important;
}

/* 2026-07-03: 新闻活动底色最终覆盖 */
body.stack-home #news{
  background:
    radial-gradient(900px 540px at 82% 0%, rgba(255,255,255,.20), transparent 62%),
    radial-gradient(760px 520px at 8% 88%, rgba(4,88,54,.14), transparent 64%),
    linear-gradient(180deg,#28bd7f 0%,#28bd7f 100%) !important;
}
body.stack-home #news .sec-idx{
  color:rgba(255,255,255,.78) !important;
}
body.stack-home #news .sec-idx b,
body.stack-home #news .h2,
body.stack-home #news .h2 b{
  color:#fff !important;
}
body.stack-home #news .sub{
  color:rgba(255,255,255,.82) !important;
}
body.stack-home #news .news{
  box-shadow:0 34px 84px -52px rgba(4,88,54,.55) !important;
}
body.stack-home #news .news:hover{
  box-shadow:0 44px 96px -52px rgba(4,88,54,.62) !important;
}

/* 2026-07-03: 解决方案卡默认信息块最终收紧 */
body.stack-home #solutions .sol-body{
  padding:28px 26px !important;
}
body.stack-home #solutions .sol-body::before,
body.stack-home #solutions .sol-body::after{
  clip-path:inset(346px 24px 24px 24px round 18px) !important;
}
body.stack-home #solutions .sol:hover .sol-body::before,
body.stack-home #solutions .sol:hover .sol-body::after,
body.stack-home #solutions .sol.is-active .sol-body::before,
body.stack-home #solutions .sol.is-active .sol-body::after,
body.stack-home #solutions .sol:focus-within .sol-body::before,
body.stack-home #solutions .sol:focus-within .sol-body::after{
  clip-path:inset(0 0 0 0 round 20px) !important;
}
body.stack-home #solutions .sol-body h3{
  font-size:22px !important;
  margin-top:12px !important;
}

/* 2026-07-03: 解决方案最终呈现 - EOF */
body.stack-home #solutions .sec-head{
  align-items:flex-end !important;
  margin-bottom:58px !important;
}
body.stack-home #solutions .sub{
  max-width:640px !important;
  line-height:1.95 !important;
}
body.stack-home #solutions .sol{
  height:486px !important;
  border-radius:22px !important;
}
body.stack-home #solutions .sol-img::after{
  background:
    linear-gradient(180deg,rgba(8,42,27,.02) 0%,rgba(8,42,27,.08) 42%,rgba(8,42,27,.56) 100%) !important;
}
body.stack-home #solutions .sol-body{
  padding:30px 28px !important;
}
body.stack-home #solutions .sol-body::before,
body.stack-home #solutions .sol-body::after{
  border-radius:18px !important;
  clip-path:inset(358px 24px 24px 24px round 18px) !important;
}
body.stack-home #solutions .sol:hover .sol-body::before,
body.stack-home #solutions .sol:hover .sol-body::after,
body.stack-home #solutions .sol.is-active .sol-body::before,
body.stack-home #solutions .sol.is-active .sol-body::after,
body.stack-home #solutions .sol:focus-within .sol-body::before,
body.stack-home #solutions .sol:focus-within .sol-body::after{
  clip-path:inset(156px 18px 18px 18px round 18px) !important;
}
body.stack-home #solutions .sol-body::before{
  background:
    linear-gradient(145deg,rgba(244,255,251,.78),rgba(219,241,239,.58)) !important;
  box-shadow:
    0 28px 62px -34px rgba(5,28,18,.52),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}
body.stack-home #solutions .sol-body .cap{
  color:#25bd80 !important;
  font-size:13px !important;
  font-weight:800 !important;
  letter-spacing:.04em !important;
  margin-bottom:12px !important;
}
body.stack-home #solutions .sol-body .cap::before{
  width:30px !important;
  background:#25bd80 !important;
}
body.stack-home #solutions .sol-body h3{
  display:grid !important;
  grid-template-columns:auto minmax(0,1fr) !important;
  gap:14px !important;
  align-items:center !important;
  color:#17241f !important;
  font-size:22px !important;
  line-height:1.25 !important;
  letter-spacing:0 !important;
  margin:0 !important;
  word-break:keep-all !important;
}
body.stack-home #solutions .sol-ic{
  width:42px !important;
  height:42px !important;
  border-radius:13px !important;
  background:
    radial-gradient(90% 90% at 30% 18%, rgba(255,255,255,.92), transparent 62%),
    linear-gradient(150deg,rgba(217,247,236,.95),rgba(193,238,226,.76)) !important;
  color:#1f8f61 !important;
  box-shadow:0 12px 28px -20px rgba(5,28,18,.42), inset 0 1px 0 rgba(255,255,255,.94) !important;
}
body.stack-home #solutions .sol-rev{
  margin-top:0 !important;
}
body.stack-home #solutions .sol:hover .sol-rev,
body.stack-home #solutions .sol.is-active .sol-rev,
body.stack-home #solutions .sol:focus-within .sol-rev{
  max-height:214px !important;
  margin-top:16px !important;
}
body.stack-home #solutions .sol-rev p{
  color:#536860 !important;
  font-size:13px !important;
  line-height:1.7 !important;
  margin:0 !important;
}
body.stack-home #solutions .sol-rev ul{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:8px !important;
  margin:14px 0 0 !important;
  padding:0 !important;
  border:0 !important;
}
body.stack-home #solutions .sol-rev li{
  width:auto !important;
  color:#1f8f61 !important;
  font-size:12px !important;
  font-weight:800 !important;
  line-height:1 !important;
  padding:8px 10px !important;
  border:1px solid rgba(37,189,128,.20) !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.42) !important;
}
body.stack-home #solutions .sol-more{
  display:inline-flex !important;
  align-items:center !important;
  margin-top:16px !important;
  color:#1f9a66 !important;
  font-size:13px !important;
  font-weight:800 !important;
}
@media(max-width:1180px){
  body.stack-home #solutions .sol{
    height:460px !important;
  }
  body.stack-home #solutions .sol-body::before,
  body.stack-home #solutions .sol-body::after{
    clip-path:inset(332px 22px 22px 22px round 18px) !important;
  }
  body.stack-home #solutions .sol:hover .sol-body::before,
  body.stack-home #solutions .sol:hover .sol-body::after,
  body.stack-home #solutions .sol.is-active .sol-body::before,
  body.stack-home #solutions .sol.is-active .sol-body::after,
  body.stack-home #solutions .sol:focus-within .sol-body::before,
  body.stack-home #solutions .sol:focus-within .sol-body::after{
    clip-path:inset(138px 16px 16px 16px round 18px) !important;
  }
}
@media(max-width:640px){
  body.stack-home #solutions .sec-head{
    margin-bottom:34px !important;
  }
  body.stack-home #solutions .sol{
    height:420px !important;
  }
  body.stack-home #solutions .sol-body{
    padding:26px 24px !important;
  }
  body.stack-home #solutions .sol-body::before,
  body.stack-home #solutions .sol-body::after{
    clip-path:inset(298px 18px 18px 18px round 16px) !important;
  }
  body.stack-home #solutions .sol:hover .sol-body::before,
  body.stack-home #solutions .sol:hover .sol-body::after,
  body.stack-home #solutions .sol.is-active .sol-body::before,
  body.stack-home #solutions .sol.is-active .sol-body::after,
  body.stack-home #solutions .sol:focus-within .sol-body::before,
  body.stack-home #solutions .sol:focus-within .sol-body::after{
    clip-path:inset(102px 14px 14px 14px round 18px) !important;
  }
  body.stack-home #solutions .sol-body h3{
    font-size:21px !important;
  }
}

/* 2026-07-03: 最新微调 - 新闻高度降低 20%，方案图标去外框 */
body.stack-home #news{
  padding:102px 0 112px !important;
}
body.stack-home #news .sec-head{
  margin-bottom:54px !important;
}
body.stack-home #news .news-g{
  gap:28px !important;
}
body.stack-home #news .news{
  min-height:416px !important;
  border-radius:18px !important;
}
body.stack-home #news .news-img{
  aspect-ratio:1.82 / 1 !important;
}
body.stack-home #news .news-body{
  padding:26px 30px 30px !important;
}
body.stack-home #news .news-body h4{
  font-size:19px !important;
  line-height:1.42 !important;
  margin-bottom:12px !important;
}
body.stack-home #news .news-body p{
  font-size:14px !important;
  line-height:1.7 !important;
  margin-bottom:18px !important;
}
body.stack-home #news .news-link{
  margin-top:auto !important;
}

body.stack-home #solutions .sol-ic,
.sol-auto .sol-body h3 .sol-ic{
  width:34px !important;
  height:34px !important;
  min-width:34px !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:#1f8f61 !important;
}
body.stack-home #solutions .sol-ic svg,
.sol-auto .sol-body h3 .sol-ic svg{
  width:100% !important;
  height:100% !important;
  stroke:currentColor !important;
}
body.stack-home #solutions .sol-body h3,
.sol-auto .sol-body h3{
  gap:12px !important;
}

/* 2026-07-03: 解决方案页图文比例，图片为主、文字为辅 */
body:not(.stack-home) .sol-auto .sol-g{
  gap:30px !important;
}
body:not(.stack-home) .sol-auto .sol-g .sol{
  height:432px !important;
  border-radius:20px !important;
}
body:not(.stack-home) .sol-auto .sol-g .sol .sol-body{
  padding:28px 30px !important;
}
body:not(.stack-home) .sol-auto .sol-g .sol .sol-body::before,
body:not(.stack-home) .sol-auto .sol-g .sol .sol-body::after{
  clip-path:inset(320px 20px 20px 20px round 16px) !important;
}
body:not(.stack-home) .sol-auto .sol-g .sol:hover .sol-body::before,
body:not(.stack-home) .sol-auto .sol-g .sol:hover .sol-body::after,
body:not(.stack-home) .sol-auto .sol-g .sol.is-active .sol-body::before,
body:not(.stack-home) .sol-auto .sol-g .sol.is-active .sol-body::after,
body:not(.stack-home) .sol-auto .sol-g .sol:focus-within .sol-body::before,
body:not(.stack-home) .sol-auto .sol-g .sol:focus-within .sol-body::after{
  clip-path:inset(142px 18px 18px 18px round 18px) !important;
}
body:not(.stack-home) .sol-auto .sol-body .cap{
  font-size:12px !important;
  letter-spacing:.06em !important;
  margin-bottom:10px !important;
}
body:not(.stack-home) .sol-auto .sol-body h3{
  font-size:22px !important;
  line-height:1.22 !important;
  margin:0 !important;
}
body:not(.stack-home) .sol-auto .sol-body p{
  font-size:13px !important;
  line-height:1.65 !important;
}
body:not(.stack-home) .sol-auto .sol-body li{
  font-size:12px !important;
  padding:8px 0 !important;
}
@media(max-width:760px){
  body.stack-home #news{
    padding:78px 0 84px !important;
  }
  body.stack-home #news .news{
    min-height:0 !important;
  }
  body:not(.stack-home) .sol-auto .sol-g .sol{
    height:400px !important;
  }
  body:not(.stack-home) .sol-auto .sol-g .sol .sol-body::before,
  body:not(.stack-home) .sol-auto .sol-g .sol .sol-body::after{
    clip-path:inset(290px 18px 18px 18px round 16px) !important;
  }
  body:not(.stack-home) .sol-auto .sol-g .sol.is-active .sol-body::before,
  body:not(.stack-home) .sol-auto .sol-g .sol.is-active .sol-body::after{
    clip-path:inset(94px 14px 14px 14px round 18px) !important;
  }
}

/* 2026-07-03: 新闻卡高度再锁定，实际视觉高度约降 20% */
body.stack-home #news .news{
  height:420px !important;
  min-height:0 !important;
}
body.stack-home #news .news-img{
  height:188px !important;
  flex:0 0 188px !important;
  aspect-ratio:auto !important;
}
body.stack-home #news .news-body{
  min-height:0 !important;
  padding:22px 28px 24px !important;
}
body.stack-home #news .news-body h4{
  display:-webkit-box !important;
  -webkit-box-orient:vertical !important;
  -webkit-line-clamp:2 !important;
  overflow:hidden !important;
  font-size:18px !important;
  line-height:1.38 !important;
}
body.stack-home #news .news-body p{
  display:-webkit-box !important;
  -webkit-box-orient:vertical !important;
  -webkit-line-clamp:2 !important;
  overflow:hidden !important;
  font-size:13.5px !important;
  line-height:1.58 !important;
}

/* 2026-07-03: 产品页轮播按参考页大绿容器与三卡动态 */
body:not(.stack-home) #showcase{
  background:#ebfaf6 !important;
  padding:72px 28px 96px !important;
}
body:not(.stack-home) #showcase .w{
  max-width:1780px !important;
}
body:not(.stack-home) #showcase .product-carousel{
  position:relative !important;
  overflow:hidden !important;
  border-radius:34px !important;
  padding:72px 78px 86px !important;
  background:#28bd7f !important;
  box-shadow:none !important;
}
body:not(.stack-home) #showcase .product-carousel-head{
  max-width:720px !important;
  margin:0 0 36px !important;
}
body:not(.stack-home) #showcase .product-carousel-kicker{
  display:inline-flex !important;
  align-items:center !important;
  height:36px !important;
  padding:0 22px !important;
  border-radius:999px !important;
  background:#fff !important;
  color:#25bd80 !important;
  font-size:13px !important;
  font-weight:800 !important;
  letter-spacing:.04em !important;
}

body:not(.stack-home) #showcase .product-carousel-head h2{
  margin:28px 0 0 !important;
  color:#fff !important;
  font-size:54px !important;
  line-height:1.08 !important;
  font-weight:800 !important;
  letter-spacing:0 !important;
}
body:not(.stack-home) #showcase .product-carousel-viewport{
  overflow:hidden !important;
  border-radius:18px !important;
}
body:not(.stack-home) #showcase .pshow-g-featured{
  display:flex !important;
  gap:34px !important;
  margin:0 !important;
  transition:transform .72s cubic-bezier(.2,.76,.16,1) !important;
}
body:not(.stack-home) #showcase .pshow-g-featured .pshow{
  flex:0 0 calc((100% - 68px) / 3) !important;
  height:438px !important;
  border:0 !important;
  border-radius:18px !important;
  background:#fff !important;
  overflow:hidden !important;
  box-shadow:0 28px 70px -46px rgba(3,83,51,.55) !important;
  transform:translateY(0) scale(.985) !important;
  transition:transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s cubic-bezier(.2,.7,.2,1) !important;
}
body:not(.stack-home) #showcase .pshow-g-featured .pshow.is-current{
  transform:translateY(-4px) scale(1) !important;
  box-shadow:0 38px 86px -48px rgba(3,83,51,.62) !important;
}
body:not(.stack-home) #showcase .pshow-img{
  height:332px !important;
  aspect-ratio:auto !important;
  padding:38px 34px 28px !important;
  background:#fff !important;
}
body:not(.stack-home) #showcase .pshow-img img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  padding:0 !important;
}
body:not(.stack-home) #showcase .pshow-cap{
  height:106px !important;
  min-height:0 !important;
  padding:0 28px !important;
  font-size:21px !important;
  line-height:1.35 !important;
  font-weight:800 !important;
  color:#22352d !important;
  border-top:1px solid rgba(20,46,30,.06) !important;
}
body:not(.stack-home) #showcase .product-carousel-btn{
  top:190px !important;
  width:58px !important;
  height:58px !important;
  border:1px solid rgba(255,255,255,.72) !important;
  background:rgba(255,255,255,.12) !important;
  color:#fff !important;
  box-shadow:none !important;
  -webkit-backdrop-filter:blur(8px) saturate(140%) !important;
  backdrop-filter:blur(8px) saturate(140%) !important;
}
body:not(.stack-home) #showcase .product-carousel-btn.prev{
  left:auto !important;
  right:144px !important;
}
body:not(.stack-home) #showcase .product-carousel-btn.next{
  right:78px !important;
}
body:not(.stack-home) #showcase .product-carousel-btn:hover{
  background:#fff !important;
  color:#25bd80 !important;
  transform:translateY(-50%) scale(1.04) !important;
}
body:not(.stack-home) #showcase .product-carousel-dots{
  bottom:44px !important;
}
body:not(.stack-home) #showcase .product-carousel-dots button{
  width:9px !important;
  height:9px !important;
  background:rgba(255,255,255,.42) !important;
}
body:not(.stack-home) #showcase .product-carousel-dots button.on{
  width:30px !important;
  background:#fff !important;
}
@media(max-width:1100px){
  body:not(.stack-home) #showcase .product-carousel{
    padding:58px 46px 78px !important;
  }
  body:not(.stack-home) #showcase .pshow-g-featured .pshow{
    flex-basis:calc((100% - 24px) / 2) !important;
  }
  body:not(.stack-home) #showcase .product-carousel-btn.prev{
    right:112px !important;
  }
  body:not(.stack-home) #showcase .product-carousel-btn.next{
    right:46px !important;
  }
}
@media(max-width:640px){
  body:not(.stack-home) #showcase{
    padding:46px 16px 68px !important;
  }
  body:not(.stack-home) #showcase .product-carousel{
    border-radius:24px !important;
    padding:42px 22px 68px !important;
  }
  body:not(.stack-home) #showcase .product-carousel-head h2{
    font-size:34px !important;
  }
  body:not(.stack-home) #showcase .pshow-g-featured{
    gap:18px !important;
  }
  body:not(.stack-home) #showcase .pshow-g-featured .pshow{
    flex-basis:100% !important;
    height:390px !important;
  }
  body:not(.stack-home) #showcase .pshow-img{
    height:286px !important;
  }
  body:not(.stack-home) #showcase .product-carousel-btn{
    top:auto !important;
    bottom:28px !important;
    width:44px !important;
    height:44px !important;
  }
  body:not(.stack-home) #showcase .product-carousel-btn.prev{
    right:auto !important;
    left:22px !important;
  }
  body:not(.stack-home) #showcase .product-carousel-btn.next{
    right:22px !important;
  }
}

/* ════════════════════════════════════════════════════════════
   响应式加固 · 2026-07-04
   发展历程"山路时间轴"：笔记本中屏（961–1180）8 节点横排过挤，
   收紧间距与字号，保住山形布局不塌。
   ════════════════════════════════════════════════════════════ */
@media(min-width:961px) and (max-width:1180px){
  .tl-nodes{gap:12px}
  .tl-node .tl-y{font-size:21px}
  .tl-node h4{font-size:12.5px}
  .tl-node p{font-size:11px;line-height:1.6}
}

/* ════════════════════════════════════════════════════════════
   产品陈列轮播 · 设计+动态增强 · 2026-07-04
   聚焦中心卡：非当前卡降透明+去阴影，当前卡浮起并在标题下现绿条；
   图片微缩放、箭头按压反馈、进入渐显。尊重 reduced-motion。
   ════════════════════════════════════════════════════════════ */
body:not(.stack-home) #showcase .pshow-g-featured .pshow{
  opacity:.72 !important;
  filter:saturate(.92) !important;
  transition:transform .55s cubic-bezier(.2,.7,.2,1),
             box-shadow .55s cubic-bezier(.2,.7,.2,1),
             opacity .55s ease, filter .55s ease !important;
}
body:not(.stack-home) #showcase .pshow-g-featured .pshow.is-current{
  opacity:1 !important;
  filter:none !important;
}
/* 当前卡标题下方绿色强调条 */
body:not(.stack-home) #showcase .pshow{position:relative !important}
body:not(.stack-home) #showcase .pshow .pshow-cap{position:relative}
body:not(.stack-home) #showcase .pshow .pshow-cap::after{
  content:"";position:absolute;left:50%;bottom:20px;transform:translateX(-50%) scaleX(0);
  transform-origin:center;width:44px;height:3px;border-radius:3px;
  background:linear-gradient(90deg,#1f6e3c,#5cc06b);
  transition:transform .5s cubic-bezier(.2,.7,.2,1) .05s}
body:not(.stack-home) #showcase .pshow.is-current .pshow-cap::after{transform:translateX(-50%) scaleX(1)}
/* 当前卡图片轻微放大呼吸感 */
body:not(.stack-home) #showcase .pshow.is-current .pshow-img img{transform:scale(1.04) !important;transition:transform .7s cubic-bezier(.2,.7,.2,1) !important}
/* 悬停：任意卡浮起点亮 */
body:not(.stack-home) #showcase .pshow:hover{opacity:1 !important;filter:none !important;transform:translateY(-8px) scale(1.01) !important;box-shadow:0 44px 92px -46px rgba(3,83,51,.6) !important}
/* 箭头按压反馈 */
body:not(.stack-home) #showcase .product-carousel-btn:active{transform:translateY(-50%) scale(.92) !important;transition:transform .12s ease !important}
/* 轮播整体进入渐显 */
#showcase .product-carousel{opacity:0;transform:translateY(22px);transition:opacity .7s cubic-bezier(.2,.7,.2,1),transform .7s cubic-bezier(.2,.7,.2,1)}
#showcase .product-carousel.r.in,#showcase .product-carousel.in,#showcase .product-carousel.r{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  body:not(.stack-home) #showcase .pshow,
  body:not(.stack-home) #showcase .pshow .pshow-cap::after,
  body:not(.stack-home) #showcase .pshow.is-current .pshow-img img{transition:none !important}
  #showcase .product-carousel{opacity:1 !important;transform:none !important;transition:none !important}
}

/* 第三方中立横幅：保留照片原色，仅以中性深色保证白字可读。 */
.imgband.b-sci::before{
  filter:none !important;
}
.imgband.b-sci::after{
  background:linear-gradient(110deg,rgba(10,12,13,.62) 0%,rgba(10,12,13,.30) 46%,rgba(10,12,13,.08) 100%) !important;
}
.imgband.b-sci .lbl{
  color:rgba(255,255,255,.78) !important;
}
.imgband.b-sci h2{
  color:#fff !important;
}
.imgband.b-sci p{
  color:rgba(255,255,255,.84) !important;
}

/* 2026-07-04 首页去掉各版块 eyebrow 小标题（01产品中心/02解决方案/03专利荣誉/04新闻活动） */
.stack-home .sec-idx{display:none !important}

/* ════════════════════════════════════════════════════════════
   2026-07-04 首页「解决方案」区 · 通栏满宽 full-bleed
   容器从居中 1240px 放开到满屏宽，两侧仅留响应式小边距，
   四张服务卡随之加宽更大气。标题同宽左对齐。
   ════════════════════════════════════════════════════════════ */
.stack-home #solutions.sec{
  padding-left:clamp(20px,4vw,60px) !important;
  padding-right:clamp(20px,4vw,60px) !important;
}
.stack-home #solutions .w{
  max-width:none !important;
  width:100% !important;
}

/* ════════════════════════════════════════════════════════════
   2026-07-04 首页「核心服务」四卡 · 品质精修
   四张实拍图色温不一（灰蓝/过曝/防护服偏蓝），统一加品牌绿色罩；
   玻璃字幕条提通透度；眉标改小字重+宽字距的编辑式排版；
   标题行右侧加「+」展开暗示（hover 旋转 45°）；整卡 hover 轻抬升。
   只动视觉，不改结构与既有 hover/is-active 展开交互。
   ════════════════════════════════════════════════════════════ */

/* 1) 图片统一调色：轻提饱和 + 品牌绿渐变罩，压亮部稳底部 */
body.stack-home #solutions .sol-img img{
  filter:saturate(1.06) contrast(1.03) brightness(.985) !important;
}
body.stack-home #solutions .sol-img::after{
  background:
    linear-gradient(160deg,rgba(46,197,138,.10) 0%,rgba(46,197,138,0) 46%),
    linear-gradient(180deg,rgba(6,34,22,.05) 0%,rgba(6,34,22,.10) 40%,rgba(6,34,22,.60) 100%) !important;
}
body.stack-home #solutions .sol:hover .sol-img::after,
body.stack-home #solutions .sol.is-active .sol-img::after,
body.stack-home #solutions .sol:focus-within .sol-img::after{
  background:
    linear-gradient(160deg,rgba(46,197,138,.08) 0%,rgba(46,197,138,0) 46%),
    linear-gradient(180deg,rgba(255,255,255,.04) 0%,rgba(6,34,22,.24) 100%) !important;
}

/* 2) 整卡 hover 轻抬升（此前被锁 transform:none，这里放开为 -8px） */
body.stack-home #solutions .sol{
  transition:transform .5s cubic-bezier(.2,.7,.2,1),box-shadow .5s cubic-bezier(.2,.7,.2,1) !important;
}
body.stack-home #solutions .sol:hover,
body.stack-home #solutions .sol.is-active,
body.stack-home #solutions .sol:focus-within{
  transform:translateY(-8px) !important;
  box-shadow:0 42px 88px -42px rgba(5,28,18,.52) !important;
}

/* 3) 玻璃面板：更通透的冷白绿 + 更细腻的内高光 */
body.stack-home #solutions .sol-body::before{
  border:1px solid rgba(255,255,255,.85) !important;
  background:linear-gradient(150deg,rgba(250,255,253,.82),rgba(224,244,238,.60)) !important;
  -webkit-backdrop-filter:blur(26px) saturate(170%) !important;
  backdrop-filter:blur(26px) saturate(170%) !important;
  box-shadow:
    0 30px 64px -36px rgba(5,28,18,.50),
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(255,255,255,.30) !important;
}

/* 4) 眉标：小字重收敛 + 宽字距，更编辑式 */
body.stack-home #solutions .sol-body .cap{
  font-size:11.5px !important;
  font-weight:700 !important;
  letter-spacing:.18em !important;
  color:#1f9a66 !important;
  margin-bottom:11px !important;
}
body.stack-home #solutions .sol-body .cap::before{
  width:24px !important;
  height:1.5px !important;
  background:#25bd80 !important;
}

/* 5) 标题行右端「+」展开暗示，hover/展开时旋转 45° 变「×」 */
body.stack-home #solutions .sol-body h3{
  grid-template-columns:auto minmax(0,1fr) auto !important;
}
body.stack-home #solutions .sol-body h3::after{
  content:"";
  width:30px;height:30px;flex:none;
  border-radius:50%;
  border:1.5px solid rgba(31,143,97,.34);
  background:
    linear-gradient(#1f8f61,#1f8f61) center/11px 1.5px no-repeat,
    linear-gradient(#1f8f61,#1f8f61) center/1.5px 11px no-repeat,
    rgba(255,255,255,.5);
  transition:transform .5s cubic-bezier(.2,.76,.16,1),border-color .35s,background-color .35s;
}
body.stack-home #solutions .sol:hover .sol-body h3::after,
body.stack-home #solutions .sol.is-active .sol-body h3::after,
body.stack-home #solutions .sol:focus-within .sol-body h3::after{
  transform:rotate(45deg);
  border-color:rgba(31,143,97,.55);
}

/* 6) 展开态正文与胶囊标签精修 */
body.stack-home #solutions .sol-rev p{
  color:#42544b !important;
  font-size:13.5px !important;
  line-height:1.75 !important;
}
body.stack-home #solutions .sol-rev li{
  gap:8px !important;
  padding:8px 13px !important;
  color:#187a52 !important;
  font-weight:700 !important;
  letter-spacing:.02em !important;
  background:rgba(255,255,255,.66) !important;
  border:1px solid rgba(31,143,97,.22) !important;
  box-shadow:0 6px 14px -10px rgba(5,28,18,.25);
}
body.stack-home #solutions .sol-rev li::before{
  width:10px !important;
  background:#25bd80 !important;
}
body.stack-home #solutions .sol-more{
  letter-spacing:.03em !important;
}

@media(max-width:640px){
  body.stack-home #solutions .sol-body h3::after{width:26px;height:26px}
}
@media(prefers-reduced-motion:reduce){
  body.stack-home #solutions .sol,
  body.stack-home #solutions .sol-body h3::after{transition:none !important}
  body.stack-home #solutions .sol:hover,
  body.stack-home #solutions .sol.is-active,
  body.stack-home #solutions .sol:focus-within{transform:none !important}
}

/* ===== 2026-07-09 首页解决方案区 · 覆盖旧「+」展开暗示 ===== */
body.stack-home #solutions.sol-auto .sol-body::before{
  top:auto !important;
  left:var(--sol-panel-inset) !important;
  right:var(--sol-panel-inset) !important;
  bottom:var(--sol-panel-bottom) !important;
  height:var(--sol-panel-height) !important;
  border:1px solid rgba(255,255,255,.74) !important;
  border-radius:20px !important;
  background:linear-gradient(142deg,rgba(240,252,249,.84),rgba(214,236,234,.74)) !important;
  clip-path:none !important;
}
body.stack-home #solutions.sol-auto #center .sol-body::before{
  top:var(--sol-panel-top) !important;
  height:auto !important;
  background:linear-gradient(142deg,rgba(241,252,249,.84),rgba(218,241,239,.74)) !important;
}
body.stack-home #solutions.sol-auto .sol-body::after,
body.stack-home #solutions.sol-auto .sol::before,
body.stack-home #solutions.sol-auto .sol::after,
body.stack-home #solutions.sol-auto .sol-body h3::before,
body.stack-home #solutions.sol-auto .sol-body h3::after{
  content:none !important;
  display:none !important;
}
body.stack-home #solutions.sol-auto .sol-body .cap{
  left:var(--sol-panel-inset) !important;
  right:var(--sol-panel-inset) !important;
  bottom:calc(var(--sol-panel-bottom) + var(--sol-panel-height) + var(--sol-cap-lift)) !important;
  display:flex !important;
  justify-content:center !important;
  gap:16px !important;
  margin:0 !important;
  color:#23b983 !important;
  font-size:13px !important;
  line-height:1 !important;
  letter-spacing:.22em !important;
  font-weight:800 !important;
}
body.stack-home #solutions.sol-auto .sol-body .cap::before{
  width:52px !important;
  height:2px !important;
  background:#23b983 !important;
}
body.stack-home #solutions.sol-auto .sol-body h3{
  display:flex !important;
  align-items:center !important;
  grid-template-columns:none !important;
  justify-content:center !important;
  gap:22px !important;
  padding:0 28px !important;
  color:#14241e !important;
  font-size:22px !important;
  font-weight:800 !important;
  line-height:1.18 !important;
  text-align:left !important;
  word-break:keep-all !important;
  overflow-wrap:normal !important;
  line-break:strict !important;
}
body.stack-home #solutions.sol-auto .sol-body h3 .sol-title{
  display:block !important;
  min-width:max-content !important;
  max-width:none !important;
  white-space:nowrap !important;
  word-break:keep-all !important;
  overflow-wrap:normal !important;
}
body.stack-home #solutions.sol-auto #center .sol-body .cap{
  bottom:calc(var(--sol-panel-bottom) + clamp(182px,10.2vw,304px)) !important;
}
body.stack-home #solutions.sol-auto #center .sol-body h3{
  height:auto !important;
  bottom:calc(var(--sol-panel-bottom) + clamp(78px,5.1vw,154px)) !important;
  align-items:flex-start !important;
}
@media(min-width:1800px){
  body.stack-home #solutions.sol-auto .sol-body::before{border-radius:24px !important}
  body.stack-home #solutions.sol-auto .sol-body h3{
    display:flex !important;
    align-items:center !important;
    font-size:35px !important;
    gap:26px !important;
    padding:0 42px !important;
  }
}
@media(max-width:640px){
  body.stack-home #solutions.sol-auto .sol-body::before{
    border-radius:16px !important;
  }
  body.stack-home #solutions.sol-auto .sol-body .cap{
    justify-content:flex-start !important;
    gap:12px !important;
    font-size:11px !important;
    letter-spacing:.16em !important;
  }
  body.stack-home #solutions.sol-auto .sol-body .cap::before{
    width:34px !important;
  }
  body.stack-home #solutions.sol-auto .sol-body h3{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:14px !important;
    padding:0 20px !important;
    font-size:18px !important;
  }
  body.stack-home #solutions.sol-auto .sol-body h3 .sol-title{
    min-width:0 !important;
    max-width:100% !important;
    white-space:normal !important;
    word-break:keep-all !important;
    overflow-wrap:normal !important;
  }
  body.stack-home #solutions.sol-auto #center .sol-body::before{
    top:auto !important;
    height:var(--sol-panel-height) !important;
  }
  body.stack-home #solutions.sol-auto #center .sol-body .cap{
    bottom:calc(var(--sol-panel-bottom) + var(--sol-panel-height) + var(--sol-cap-lift)) !important;
  }
body.stack-home #solutions.sol-auto #center .sol-body h3{
  height:var(--sol-panel-height) !important;
  bottom:var(--sol-panel-bottom) !important;
    align-items:center !important;
  }
}

/* ===== 2026-07-09 首页解决方案区 · 四卡标题框统一 ===== */
body.stack-home #solutions.sol-auto #center .sol-body::before{
  top:auto !important;
  height:var(--sol-panel-height) !important;
}
body.stack-home #solutions.sol-auto #center .sol-body .cap{
  bottom:calc(var(--sol-panel-bottom) + var(--sol-panel-height) + var(--sol-cap-lift)) !important;
}
body.stack-home #solutions.sol-auto #center .sol-body h3{
  height:var(--sol-panel-height) !important;
  bottom:var(--sol-panel-bottom) !important;
  align-items:center !important;
}

/* ===== 2026-07-09 首页解决方案区 · 详情内容承接 ===== */
body.stack-home #solutions.sol-auto .sol.is-selected{
  box-shadow:0 44px 96px -54px rgba(17,88,62,.64) !important;
}
body.stack-home #solutions.sol-auto .sol.is-selected .sol-body::before{
  border-color:rgba(35,185,131,.46) !important;
  background:linear-gradient(142deg,rgba(247,255,252,.90),rgba(218,243,239,.78)) !important;
}
body.stack-home #solutions.sol-auto .sol-detail-panel{
  margin-top:42px;
  border:1px solid rgba(35,185,131,.18);
  border-radius:24px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.74),rgba(232,250,246,.70)),
    linear-gradient(90deg,rgba(255,255,255,.38) 0 1px,transparent 1px) 0 0/72px 72px;
  box-shadow:0 34px 80px -56px rgba(8,55,38,.38);
  -webkit-backdrop-filter:blur(18px) saturate(135%);
  backdrop-filter:blur(18px) saturate(135%);
  overflow:hidden;
}
body.stack-home #solutions.sol-auto .sol-detail{
  display:none;
  padding:34px 38px 36px;
}
body.stack-home #solutions.sol-auto .sol-detail.active{
  display:block;
  animation:solDetailIn .32s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes solDetailIn{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:none}
}
body.stack-home #solutions.sol-auto .sol-detail-kicker{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
  color:#20a875;
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
}
body.stack-home #solutions.sol-auto .sol-detail-kicker::before{
  content:"";
  width:34px;
  height:2px;
  background:#23b983;
}
body.stack-home #solutions.sol-auto .sol-detail-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 310px;
  gap:42px;
  align-items:start;
}
body.stack-home #solutions.sol-auto .sol-detail-main h3{
  margin:0 0 12px;
  color:#13251e;
  font-size:28px;
  line-height:1.24;
  font-weight:850;
  letter-spacing:0;
}
body.stack-home #solutions.sol-auto .sol-detail-lead{
  margin:0 0 22px;
  color:#516b60;
  font-size:15px;
  line-height:1.75;
  font-weight:600;
}
body.stack-home #solutions.sol-auto .sol-detail-main ul{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 18px;
  margin:0;
  padding:0;
}
body.stack-home #solutions.sol-auto .sol-detail-main li{
  position:relative;
  padding:0 0 0 18px;
  color:#273d34;
  font-size:13.5px;
  line-height:1.66;
}
body.stack-home #solutions.sol-auto .sol-detail-main li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#23b983;
  box-shadow:0 0 0 4px rgba(35,185,131,.12);
}
body.stack-home #solutions.sol-auto .sol-detail-side{
  border-left:1px solid rgba(35,185,131,.18);
  padding-left:34px;
}
body.stack-home #solutions.sol-auto .sol-detail-scene{
  min-height:118px;
  display:flex;
  align-items:flex-end;
  padding:22px;
  border-radius:18px;
  background:
    linear-gradient(160deg,rgba(35,185,131,.14),rgba(35,185,131,.02)),
    linear-gradient(135deg,rgba(255,255,255,.64),rgba(218,243,239,.52));
  color:#254338;
  font-size:15px;
  line-height:1.55;
  font-weight:800;
}
body.stack-home #solutions.sol-auto .sol-tags{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:18px;
}
body.stack-home #solutions.sol-auto .sol-tags span{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 10px;
  border:1px solid rgba(35,185,131,.22);
  border-radius:999px;
  background:rgba(255,255,255,.62);
  color:#1b7f59;
  font-size:12px;
  line-height:1.2;
  font-weight:800;
  white-space:nowrap;
}
@media(max-width:1100px){
  body.stack-home #solutions.sol-auto .sol-detail-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  body.stack-home #solutions.sol-auto .sol-detail-side{
    border-left:0;
    border-top:1px solid rgba(35,185,131,.18);
    padding-left:0;
    padding-top:24px;
  }
}
@media(max-width:760px){
  body.stack-home #solutions.sol-auto .sol-detail-panel{margin-top:28px;border-radius:20px}
  body.stack-home #solutions.sol-auto .sol-detail{padding:26px 22px 28px}
  body.stack-home #solutions.sol-auto .sol-detail-main h3{font-size:23px}
  body.stack-home #solutions.sol-auto .sol-detail-main ul{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
  body.stack-home #solutions.sol-auto .sol-detail.active{animation:none}
}

/* ===== 2026-07-09 解决方案页:展开详情层铺满整张图 ===== */
body:not(.stack-home) .sol-auto .sol-g .sol{
  overflow:hidden !important;
}
body:not(.stack-home) .sol-auto .sol-g .sol .sol-body{
  border-radius:inherit !important;
  padding:42px 48px 36px !important;
}
body:not(.stack-home) .sol-auto .sol-g .sol:hover .sol-body::before,
body:not(.stack-home) .sol-auto .sol-g .sol.is-active .sol-body::before,
body:not(.stack-home) .sol-auto .sol-g .sol:focus-within .sol-body::before,
body:not(.stack-home) .sol-auto .sol-g .sol:hover .sol-body::after,
body:not(.stack-home) .sol-auto .sol-g .sol.is-active .sol-body::after,
body:not(.stack-home) .sol-auto .sol-g .sol:focus-within .sol-body::after{
  clip-path:inset(0 0 0 0 round 0) !important;
  border-radius:inherit !important;
}
body:not(.stack-home) .sol-auto .sol-g .sol:hover .sol-body::before,
body:not(.stack-home) .sol-auto .sol-g .sol.is-active .sol-body::before,
body:not(.stack-home) .sol-auto .sol-g .sol:focus-within .sol-body::before{
  border-color:rgba(255,255,255,.68) !important;
  background:linear-gradient(145deg,rgba(255,255,255,.46),rgba(220,242,252,.34)) !important;
}
body:not(.stack-home) .sol-auto .sol-g .sol:hover .sol-rev,
body:not(.stack-home) .sol-auto .sol-g .sol.is-active .sol-rev,
body:not(.stack-home) .sol-auto .sol-g .sol:focus-within .sol-rev{
  max-height:420px !important;
}
@media(max-width:760px){
  body:not(.stack-home) .sol-auto .sol-g .sol .sol-body{
    padding:28px 26px !important;
  }
}

/* 关于页发展历程 · 轨道式里程碑 — 2026-07-11 */
#history{
  padding-top:108px;
  padding-bottom:112px;
  background:#f8faf9!important;
}
#history .sec-head{
  max-width:760px;
  margin-bottom:54px;
}
#history .h2{
  font-size:clamp(38px,4.1vw,58px);
  line-height:1.12;
  letter-spacing:0;
}
#history .tl-mtn{
  margin-top:0;
  padding-top:208px;
  perspective:none;
}
#history .tl-mtn-bg{
  top:0;
  height:190px;
  transform:none;
  filter:none;
}
#history .tl-mtn-peak1{fill:rgba(31,138,92,.025)}
#history .tl-mtn-peak2{fill:rgba(31,138,92,.075)}
#history .tl-mtn-trees{display:none}
#history .tl-mtn-road{
  stroke:#279c6b;
  stroke-width:3;
  stroke-dasharray:2 12;
  opacity:.72;
  filter:none;
}
#history .tl-mtn-dot{
  fill:#f8faf9;
  stroke:#279c6b;
  stroke-width:4;
  filter:none;
}
#history .tl-mtn-dot-now{fill:#153f2d;stroke:#7bd4ad}
#history .tl-nodes{
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  align-items:stretch;
  gap:0;
  border-top:1px solid rgba(16,53,37,.18);
  border-bottom:1px solid rgba(16,53,37,.18);
  perspective:none;
}
#history .tl-node{
  display:block;
  min-width:0;
  padding:30px 20px 28px;
  text-align:left;
  transform:none!important;
  border-left:1px solid rgba(16,53,37,.13);
}
#history .tl-node:last-child{border-right:1px solid rgba(16,53,37,.13)}
#history .tl-node-in{
  height:100%;
  transform:none!important;
  filter:none!important;
  transition:background .3s ease,color .3s ease;
}
#history .tl-node-in::after{display:none}
#history .tl-node .tl-y{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  margin:0 0 24px;
  color:#164b35;
  font-size:35px;
  font-weight:500;
  line-height:.9;
  opacity:1;
  transform:none;
}
#history .tl-node .tl-era{
  color:#2b9b6c;
  font-size:9px;
  letter-spacing:.16em;
}
#history .tl-node h4{
  min-height:3.2em;
  margin:0 0 12px;
  color:#182b22;
  font-size:14px;
  font-weight:650;
  line-height:1.55;
}
#history .tl-node p{
  color:#68776f;
  font-size:11.5px;
  line-height:1.75;
}
#history .tl-node-now{
  padding:0;
  background:#153f2d;
  border-color:#153f2d;
}
#history .tl-node-now .tl-node-in{padding:30px 20px 28px}
#history .tl-node-now .tl-y,
#history .tl-node-now h4{color:#fff}
#history .tl-node-now .tl-era{color:#7bd4ad}
#history .tl-node-now p{color:rgba(255,255,255,.68)}
#history .tl-node:not(.tl-node-now):hover{background:#edf5f1}
@media(max-width:1180px) and (min-width:961px){
  #history .tl-node{padding:26px 13px 24px}
  #history .tl-node-now .tl-node-in{padding:26px 13px 24px}
  #history .tl-node .tl-y{font-size:29px}
  #history .tl-node h4{font-size:12.5px}
  #history .tl-node p{font-size:10.5px}
}
@media(max-width:960px){
  #history{padding-top:82px;padding-bottom:86px}
  #history .tl-mtn{padding-top:0;margin-top:34px}
  #history .tl-nodes{display:flex;border:0;gap:0}
  #history .tl-node,
  #history .tl-node:last-child,
  #history .tl-node-now{
    padding:0 0 34px 34px;
    background:transparent;
    border:0!important;
    border-left:1px solid rgba(39,156,107,.3)!important;
  }
  #history .tl-node-now .tl-node-in{padding:0}
  #history .tl-node .tl-y{margin-bottom:12px;font-size:30px}
  #history .tl-node h4{min-height:0;font-size:15px}
  #history .tl-node p{max-width:48em;font-size:12.5px}
  #history .tl-node-now .tl-y,
  #history .tl-node-now h4{color:#164b35}
  #history .tl-node-now p{color:#68776f}
  #history .tl-node-now .tl-era{color:#2b9b6c}
}

/* 产品实拍轮播：图片铺满卡片图片区 — 2026-07-11 */
body:not(.stack-home) #showcase .pshow-img{
  padding:0!important;
  background:#fff!important;
}
body:not(.stack-home) #showcase .pshow-img img{
  display:block;
  width:100%!important;
  height:100%!important;
  padding:0!important;
  object-fit:cover!important;
  object-position:center center;
  opacity:1!important;
  filter:none!important;
  mix-blend-mode:normal!important;
}
body:not(.stack-home) #showcase .pshow-g-featured .pshow,
body:not(.stack-home) #showcase .pshow-g-featured .pshow.is-current,
body:not(.stack-home) #showcase .pshow-g-featured .pshow:hover{
  opacity:1!important;
  filter:none!important;
}

/* 关于页 · 企业年报式发展历程 — 2026-07-11 */
#history{
  padding:128px 32px 140px;
  overflow:hidden;
  background:#f3f7f5!important;
}
#history::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,transparent calc(50% - .5px),rgba(17,64,45,.045) 50%,transparent calc(50% + .5px)),
    linear-gradient(rgba(17,64,45,.035) 1px,transparent 1px);
  background-size:100% 100%,100% 160px;
}
#history>.w{position:relative;z-index:1;max-width:1480px}
#history .history-intro{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(420px,.88fr);
  gap:clamp(72px,8vw,132px);
  align-items:end;
  padding-bottom:68px;
  border-bottom:1px solid rgba(15,55,39,.16);
}
#history .history-heading{max-width:780px}
#history .history-heading .sec-idx{
  margin:0 0 30px;
  color:#527064!important;
  font-size:12px;
  font-weight:700;
  letter-spacing:0;
}
#history .history-heading .sec-idx b{
  margin-right:14px;
  color:#1eb77c!important;
  font-size:15px;
}
#history .history-heading .h2{
  margin:0;
  color:#10271e!important;
  font-size:62px;
  font-weight:620;
  line-height:1.12;
  letter-spacing:0;
}
#history .history-heading .h2 b{color:#22bd82!important;font-weight:620}
#history .history-context>p{
  max-width:620px;
  margin:0 0 36px;
  color:#53675e;
  font-size:15px;
  line-height:1.9;
}
#history .history-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  border-top:1px solid rgba(15,55,39,.16);
}
#history .history-stats>div{
  min-width:0;
  padding:22px 18px 0 0;
  border-right:1px solid rgba(15,55,39,.13);
}
#history .history-stats>div+div{padding-left:18px}
#history .history-stats>div:last-child{padding-right:0;border-right:0}
#history .history-stats strong{
  display:block;
  color:#143a2b;
  font-family:"Cormorant Garamond","Songti SC",serif;
  font-size:40px;
  font-weight:600;
  font-variant-numeric:lining-nums tabular-nums;
  line-height:1;
  letter-spacing:0;
}
#history .history-stats strong em{
  margin-left:3px;
  color:#22bd82;
  font-family:var(--sans);
  font-size:13px;
  font-style:normal;
  font-weight:700;
}
#history .history-stats span{
  display:block;
  margin-top:10px;
  color:#74837c;
  font-size:11px;
  line-height:1.55;
}

#history .history-experience{
  --history-accent:#2ec58a;
  margin-top:72px;
}
#history .history-stage{
  position:relative;
  min-height:620px;
  overflow:hidden;
  background:#09271d;
  color:#fff;
  touch-action:pan-y;
  isolation:isolate;
}
#history .history-stage:focus-visible{outline:2px solid #62d4a7;outline-offset:4px}
#history .history-stage::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:.24;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size:100% 132px,132px 100%;
  mask-image:linear-gradient(90deg,#000,transparent 66%);
}
#history .history-media{
  position:absolute;
  inset:0 34% 0 0;
  z-index:-3;
  overflow:hidden;
  background:#215f3b;
}
#history .history-media::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    linear-gradient(rgba(31,110,60,.30),rgba(31,110,60,.30)),
    linear-gradient(90deg,rgba(6,32,22,.80) 0%,rgba(8,40,28,.46) 38%,rgba(12,52,36,.18) 68%,rgba(9,39,29,.96) 100%),
    linear-gradient(0deg,rgba(7,36,25,.72) 0%,transparent 46%,rgba(6,32,22,.22) 100%);
}
#history .history-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  opacity:0;
  transform:scale(1.045);
  filter:saturate(.55) contrast(1.03) brightness(.95);
  transition:opacity .72s ease,transform 1.15s cubic-bezier(.2,.7,.2,1);
  will-change:opacity,transform;
}
#history .history-media img:first-child{object-position:center 58%}
#history .history-media img.is-active{opacity:1;transform:scale(1);animation:historyKen 11s ease-out both}
@keyframes historyKen{0%{transform:scale(1.035)}100%{transform:scale(1.12)}}
#history .history-stage-grid{
  position:relative;
  z-index:1;
  min-height:620px;
  display:grid;
  grid-template-columns:minmax(0,1.32fr) minmax(410px,.68fr);
}
#history .history-visual-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:58px 64px 54px;
}
#history .history-eyebrow{
  position:absolute;
  top:58px;
  left:64px;
  color:rgba(255,255,255,.64);
  font-size:10px;
  font-weight:700;
  letter-spacing:0;
}
#history .history-watermark{
  color:#fff;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:196px;
  font-weight:500;
  font-variant-numeric:lining-nums tabular-nums;
  line-height:.68;
  letter-spacing:0;
  text-shadow:0 12px 42px rgba(0,0,0,.2);
  transition:opacity .34s ease,transform .52s cubic-bezier(.2,.7,.2,1);
}
/* 大字年份 odometer：旧数字上滑淡出 → 新数字从下方滑入 */
#history .history-stage.is-changing .history-watermark{opacity:0;transform:translateY(-26px)}
#history .history-watermark.is-entering{opacity:0;transform:translateY(26px)}
#history .history-chapter{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:52px;
  color:rgba(255,255,255,.76);
  font-size:11px;
  font-variant-numeric:tabular-nums;
}
#history .history-chapter i{width:58px;height:1px;background:rgba(255,255,255,.4)}
#history .history-chapter b{margin-left:8px;color:#fff;font-size:12px;font-weight:600}
#history .history-detail{
  min-width:0;
  display:flex;
  flex-direction:column;
  padding:58px 48px 46px;
  border-left:1px solid rgba(255,255,255,.14);
  background:rgba(7,38,27,.84);
  backdrop-filter:blur(14px) saturate(110%);
  -webkit-backdrop-filter:blur(14px) saturate(110%);
}
#history .history-detail-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.16);
  color:#66d7ac;
  font-size:10px;
  font-weight:750;
  letter-spacing:0;
}
#history .history-detail-progress{
  display:inline-flex;
  align-items:baseline;
  gap:5px;
  color:rgba(255,255,255,.5);
  font-family:"Cormorant Garamond",Georgia,serif;
}
#history .history-detail-progress b{color:#66d7ac;font-size:22px;font-weight:600;font-variant-numeric:tabular-nums}
#history .history-detail-progress i{font-style:normal;font-size:15px}
#history .history-detail h3{
  max-width:14em;
  margin:46px 0 20px;
  color:#fff;
  font-size:32px;
  font-weight:620;
  line-height:1.3;
  letter-spacing:0;
  transition:opacity .4s ease;
}
#history .history-detail>p{
  max-width:31em;
  margin:0;
  color:rgba(255,255,255,.66);
  font-size:14px;
  line-height:1.9;
  transition:opacity .4s ease;
}
#history .history-facts{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  margin-top:auto;
  padding-top:44px;
}
#history .history-facts>div{
  min-width:0;
  padding:20px 18px 0 0;
  border-top:1px solid rgba(255,255,255,.16);
}
#history .history-facts>div+div{padding-left:18px;border-left:1px solid rgba(255,255,255,.13)}
#history .history-facts span{display:block;color:rgba(255,255,255,.42);font-size:9px}
#history .history-facts strong{
  display:block;
  margin-top:9px;
  color:#fff;
  font-size:13px;
  font-weight:600;
  line-height:1.45;
  transition:opacity .4s ease;
}
#history .history-controls{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:38px;
}
#history .history-controls button{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  padding:0;
  border:1px solid rgba(255,255,255,.28);
  border-radius:0;
  background:transparent;
  color:#fff;
  cursor:pointer;
  transition:background .22s ease,border-color .22s ease,color .22s ease;
}
#history .history-controls button:hover{border-color:#62d4a7;background:#62d4a7;color:#09271d}
#history .history-controls button:focus-visible{outline:2px solid #62d4a7;outline-offset:3px}
#history .history-controls svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
#history .history-count{
  margin-left:auto;
  color:rgba(255,255,255,.42);
  font-size:11px;
  font-variant-numeric:tabular-nums;
}
#history .history-count b{color:#66d7ac;font-size:15px;font-weight:650}
#history .history-stage.is-changing .history-detail h3,
#history .history-stage.is-changing .history-detail>p,
#history .history-stage.is-changing .history-facts strong{
  opacity:0;
}

#history .history-rail-wrap{position:relative;background:#fff}
#history .history-rail-progress{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:3;
  height:3px;
  background:rgba(14,61,43,.12);
  pointer-events:none;
}
#history .history-rail-progress span{
  display:block;
  width:100%;
  height:100%;
  background:#27c68a;
  transform-origin:left;
  transition:width .5s cubic-bezier(.2,.7,.2,1);
}
#history .history-rail{
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  border-bottom:1px solid rgba(14,61,43,.16);
}
#history .history-tab{
  position:relative;
  min-width:0;
  height:128px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:8px;
  padding:22px 22px;
  border:0;
  border-right:1px solid rgba(14,61,43,.13);
  border-radius:0;
  background:#fff;
  color:#173a2c;
  text-align:left;
  cursor:pointer;
  transition:background .28s ease,color .28s ease,padding .28s ease;
}
#history .history-tab:last-child{border-right:0}
#history .history-tab::before{
  content:"";
  position:absolute;
  top:-4px;
  left:20px;
  z-index:4;
  width:9px;
  height:9px;
  border:2px solid #2bbf84;
  border-radius:50%;
  background:#fff;
  transition:transform .3s ease,background .3s ease,box-shadow .3s ease;
}
#history .history-tab span{
  color:var(--accent,#2ec58a);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:30px;
  font-weight:600;
  font-variant-numeric:lining-nums tabular-nums;
  line-height:1;
  letter-spacing:0;
}
#history .history-tab small{color:#708078;font-size:10px;font-weight:650;letter-spacing:0}
#history .history-tab:hover{padding-left:27px;background:#eef5f1}
#history .history-tab:hover::before{transform:scale(1.25);background:#2bbf84}
#history .history-tab.is-active{background:#c8f1db;color:#123e2d}
#history .history-tab.is-active small{color:#197957}
#history .history-tab.is-active::before{
  background:#67d8ae;
  border-color:#67d8ae;
  box-shadow:0 0 0 6px rgba(103,216,174,.18);
}
#history .history-tab:focus-visible{z-index:5;outline:2px solid #27b77e;outline-offset:-4px}

@media(max-width:1180px){
  #history .history-intro{grid-template-columns:1fr;gap:36px}
  #history .history-context{display:grid;grid-template-columns:minmax(0,1fr) minmax(440px,.9fr);gap:54px;align-items:end}
  #history .history-context>p{margin-bottom:0}
  #history .history-stage-grid{grid-template-columns:minmax(0,1fr) 390px}
  #history .history-visual-copy{padding-left:46px;padding-right:46px}
  #history .history-eyebrow{left:46px}
  #history .history-watermark{font-size:158px}
  #history .history-detail{padding-left:38px;padding-right:38px}
  #history .history-detail h3{font-size:28px}
  #history .history-tab{height:116px;padding-left:16px;padding-right:14px}
  #history .history-tab::before{left:15px}
  #history .history-tab span{font-size:26px}
}

@media(max-width:960px){
  #history{padding:96px 28px 108px}
  #history .history-heading .h2{font-size:50px}
  #history .history-context{grid-template-columns:1fr;gap:34px}
  #history .history-stats{max-width:620px}
  #history .history-experience{margin-top:54px}
  #history .history-stage{min-height:0}
  #history .history-media{inset:0 0 auto 0;height:430px}
  #history .history-media::after{
    background:
      linear-gradient(90deg,rgba(2,20,14,.68),rgba(3,23,16,.12) 74%),
      linear-gradient(0deg,rgba(3,28,20,.88),transparent 52%,rgba(3,23,16,.2));
  }
  #history .history-stage-grid{min-height:0;grid-template-columns:1fr;grid-template-rows:430px auto}
  #history .history-visual-copy{grid-row:1;padding:46px 44px 42px}
  #history .history-eyebrow{top:46px;left:44px}
  #history .history-watermark{font-size:132px}
  #history .history-detail{
    grid-row:2;
    min-height:480px;
    padding:42px 44px 38px;
    border-top:1px solid rgba(255,255,255,.14);
    border-left:0;
    background:#0a3023;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  #history .history-detail h3{max-width:20em;margin-top:34px;font-size:29px}
  #history .history-detail>p{max-width:44em}
  #history .history-facts{margin-top:44px}
  #history .history-controls{margin-top:32px}
  #history .history-rail-wrap{margin:0 -28px;padding:0 28px;overflow:hidden;background:#fff}
  #history .history-rail-progress{display:none}
  #history .history-rail{
    display:flex;
    overflow-x:auto;
    margin:0 -28px;
    padding:0 28px;
    border-bottom:1px solid rgba(14,61,43,.16);
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
  }
  #history .history-rail::-webkit-scrollbar{display:none}
  #history .history-tab{flex:0 0 132px;height:112px;scroll-snap-align:start}
}

@media(max-width:640px){
  #history{padding:76px 20px 84px}
  #history::before{background-size:100% 100%,100% 120px}
  #history .history-intro{gap:28px;padding-bottom:44px}
  #history .history-heading .sec-idx{margin-bottom:22px}
  #history .history-heading .h2{font-size:38px;line-height:1.18}
  #history .history-context>p{font-size:14px;line-height:1.8}
  #history .history-stats{grid-template-columns:1fr 1fr}
  #history .history-stats>div{padding-top:18px}
  #history .history-stats>div:nth-child(2){border-right:0}
  #history .history-stats>div:nth-child(3){grid-column:1/-1;margin-top:18px;padding-left:0;border-top:1px solid rgba(15,55,39,.13)}
  #history .history-stats strong{font-size:34px}
  #history .history-experience{margin-top:40px}
  #history .history-media{height:350px}
  #history .history-stage-grid{grid-template-rows:350px auto}
  #history .history-visual-copy{padding:34px 24px 30px}
  #history .history-eyebrow{top:34px;left:24px;right:24px;font-size:9px}
  #history .history-watermark{font-size:92px}
  #history .history-chapter{gap:10px;margin-top:34px;font-size:10px}
  #history .history-chapter i{width:32px}
  #history .history-chapter b{margin-left:0;font-size:10px}
  #history .history-detail{min-height:460px;padding:34px 24px 30px}
  #history .history-detail-top{padding-bottom:18px}
  #history .history-detail h3{margin:28px 0 16px;font-size:25px;line-height:1.35}
  #history .history-detail>p{font-size:13px;line-height:1.8}
  #history .history-facts{margin-top:34px;padding-top:0}
  #history .history-facts>div{padding-top:16px}
  #history .history-facts>div+div{padding-left:14px}
  #history .history-facts strong{font-size:12px}
  #history .history-controls{margin-top:28px}
  #history .history-controls button{width:44px;height:44px}
  #history .history-rail-wrap{margin:0 -20px;padding:0 20px}
  #history .history-rail{margin:0 -20px;padding:0 20px}
  #history .history-tab{flex-basis:112px;height:104px;padding:18px 14px}
  #history .history-tab::before{left:13px}
  #history .history-tab span{font-size:25px}
}

@media(prefers-reduced-motion:reduce){
  #history .history-media img,
  #history .history-watermark,
  #history .history-detail h3,
  #history .history-detail>p,
  #history .history-facts strong,
  #history .history-rail-progress span,
  #history .history-tab,
  #history .history-tab::before{transition:none!important}
}

/* 关于页 · 企业理念编辑式版面 — 2026-07-11 */
#mission.sec-soft,
#mission{
  position:relative;
  padding:116px 32px 88px;
  overflow:hidden;
  color:#fff;
  background:#26b576!important;
  border:0;
}
#mission::before{
  content:"";
  position:absolute;
  inset:0;
  width:auto;
  height:auto;
  transform:none;
  pointer-events:none;
  background:
    linear-gradient(rgba(5,63,42,.10) 1px,transparent 1px),
    linear-gradient(90deg,rgba(5,63,42,.08) 1px,transparent 1px);
  background-size:100% 156px,25% 100%;
  opacity:.7;
}
#mission::after{
  display:none;
}
#mission>.w{position:relative;z-index:1;max-width:1480px}
#mission .mission-head{
  display:grid;
  grid-template-columns:minmax(0,1.22fr) minmax(360px,.78fr);
  gap:clamp(64px,7vw,118px);
  align-items:end;
}
#mission .mission-heading{
  min-width:0;
}
#mission .mission-heading h2{
  max-width:850px;
  margin:0;
  color:#fff;
  font-size:60px;
  font-weight:600;
  line-height:1.17;
  letter-spacing:0;
}
#mission .mission-heading h2>span{display:block}
#mission .mission-heading h2 b{color:#083e2c;font-weight:600}
#mission .mission-mobile-break{display:none}
#mission .mission-intro{
  min-width:0;
  padding:4px 0 8px clamp(40px,4.5vw,72px);
  border-left:1px solid rgba(5,63,42,.25);
}
#mission .mission-intro>p{
  max-width:35em;
  margin:0;
  color:rgba(4,54,37,.78);
  font-size:15px;
  line-height:1.95;
}
#mission .mission-code{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:42px;
  color:rgba(4,54,37,.62);
  font-size:9px;
  font-weight:700;
  letter-spacing:0;
}
#mission .mission-code i{width:18px;height:1px;background:rgba(5,63,42,.34)}
/* 三栏原则 · 罗氏/丹纳赫式：去竖线框，用留白+顶部细分隔线分隔，编号极小做辅助 */
#mission .mission-principles{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(40px,5vw,88px);
  margin-top:96px;
  padding-top:4px;
}
#mission .mission-principle{
  position:relative;
  min-width:0;
  padding:38px 0 4px;
  border-top:1px solid rgba(5,63,42,.24);
  transition:border-color .4s ease;
}
#mission .mission-principle h3{
  margin:0 0 16px;
  color:#fff!important;
  font-size:24px;
  font-weight:600;
  line-height:1.32;
  letter-spacing:0;
}
#mission .mission-principle>p{
  max-width:26em;
  margin:0;
  color:rgba(4,54,37,.76)!important;
  font-size:14.5px;
  line-height:1.9;
}
#mission .mission-image{
  position:relative;
  margin:104px 0 0;
  overflow:hidden;
  aspect-ratio:1240 / 468;
  background:#dce7e9;
}
#mission .mission-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 44%;
  transition:transform 1.2s cubic-bezier(.2,.7,.2,1);
}
#mission .mission-image:hover img{transform:scale(1.045)}

@media(max-width:1080px){
  #mission .mission-head{grid-template-columns:1fr;gap:52px}
  #mission .mission-heading h2{max-width:850px}
  #mission .mission-intro{
    max-width:760px;
    padding:30px 0 0;
    border-top:1px solid rgba(5,63,42,.24);
    border-left:0;
  }
  #mission .mission-intro>p{max-width:46em}
  #mission .mission-code{margin-top:30px}
}
@media(max-width:820px){
  #mission .mission-principles{grid-template-columns:1fr;gap:0;margin-top:64px}
  #mission .mission-principle{
    padding:30px 0 30px;
  }
  #mission .mission-principle h3{margin:0 0 12px}
  #mission .mission-principle>p{max-width:42em}
}
@media(max-width:600px){
  #mission{padding:84px 20px 60px}
  #mission::before{background-size:100% 124px,50% 100%}
  #mission .mission-head{gap:40px}
  #mission .mission-heading h2{font-size:36px;line-height:1.22}
  #mission .mission-mobile-break{display:block}
  #mission .mission-intro{padding-top:24px}
  #mission .mission-intro>p{font-size:14px;line-height:1.85}
  #mission .mission-code{flex-wrap:wrap;gap:10px;margin-top:28px;font-size:8px}
  #mission .mission-principles{margin-top:52px}
  #mission .mission-principle h3{font-size:23px}
  #mission .mission-principle>p{font-size:13px;line-height:1.78}
  #mission .mission-image{margin-top:42px;aspect-ratio:1.45}
  #mission .mission-image img{object-position:61% center}
}
@media(prefers-reduced-motion:reduce){
  #mission .mission-principle{transition:none!important}
}

/* 关于页 · 发展历程参考绿色底 */
#history{background:#3bc68e!important}
#history::before{display:none}
#history .history-intro{border-color:rgba(6,42,29,.2)}
#history .history-heading .sec-idx{color:rgba(5,39,27,.68)!important}
#history .history-heading .sec-idx b{color:#fff!important}
#history .history-heading .h2{color:#092b1f!important}
#history .history-heading .h2 b{color:#fff!important}
#history .history-context>p{color:rgba(5,39,27,.78)}
#history .history-stats{border-color:rgba(6,42,29,.2)}
#history .history-stats>div{border-color:rgba(6,42,29,.18)}
#history .history-stats strong{color:#092b1f}
#history .history-stats strong em{color:#fff}
#history .history-stats span{color:rgba(5,39,27,.72)}

/* Final product-page alignment: match the catalog content line below. */
body:not(.stack-home) section#showcase > .w{
  width:100% !important;
  max-width:1240px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
@media(max-width:640px){
  body:not(.stack-home) section#showcase{overflow-x:hidden}
  body:not(.stack-home) section#showcase .product-focus{
    width:100% !important;
    min-width:0 !important;
    grid-template-columns:minmax(0,1fr) !important;
  }
  body:not(.stack-home) section#showcase .product-focus-copy,
  body:not(.stack-home) section#showcase .product-focus-stage,
  body:not(.stack-home) section#showcase .product-focus-meta,
  body:not(.stack-home) section#showcase .product-focus-actions{
    width:100% !important;
    min-width:0 !important;
  }
  body:not(.stack-home) section#showcase .product-focus-list{
    width:100% !important;
    max-width:100% !important;
    margin:26px 0 0 !important;
    padding:0 !important;
  }
}

/* 首页产品四卡：移除卡片组外层玻璃底板。 */
.stack-home > section#products .pm-cards{
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  -webkit-backdrop-filter:none!important;
  backdrop-filter:none!important;
  box-shadow:none!important;
}

/* 首页解决方案：白色背景承托四张实景服务卡。 */
.stack-home #solutions.solh-sec{
  background:#fff!important;
  box-shadow:inset 0 1px 0 rgba(13,67,49,.06),inset 0 -1px 0 rgba(13,67,49,.08);
}
.stack-home #solutions.solh-sec .h2,
.stack-home #solutions.solh-sec .h2 b{
  color:#12372b!important;
  text-shadow:none;
}
.stack-home #solutions.solh-sec .sub{
  color:#65786f!important;
}
.stack-home #solutions.solh-sec .solh{
  border-color:rgba(255,255,255,.24)!important;
  box-shadow:0 30px 64px -38px rgba(0,35,27,.64),0 1px 0 rgba(255,255,255,.12)!important;
}
.stack-home #solutions.solh-sec .solh:hover,
.stack-home #solutions.solh-sec .solh.is-active{
  box-shadow:0 42px 82px -40px rgba(0,31,24,.74),0 1px 0 rgba(255,255,255,.16)!important;
}

/* ===== #history 深色背景配色 ===== */
#history{
  background:
    radial-gradient(860px 460px at 94% 6%, rgba(46,197,138,.08), transparent 56%),
    radial-gradient(600px 360px at 4% 90%, rgba(18,78,46,.2), transparent 54%),
    #0a3820 !important;
}
#history::before{
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) !important;
  background-size:100% 160px, 160px 100% !important;
}
#history .history-heading .h2{color:#fff!important}
#history .history-heading .h2 b{color:#2ec58a!important}
#history .history-context>p{color:rgba(255,255,255,.65)!important}
#history .history-intro{border-bottom-color:rgba(255,255,255,.1)!important}
#history .history-stats{border-top-color:rgba(255,255,255,.1)!important}
#history .history-stats>div{border-right-color:rgba(255,255,255,.1)!important}
#history .history-stats strong{color:#fff!important}
#history .history-stats strong em{color:#2ec58a!important}
#history .history-stats span{color:rgba(255,255,255,.44)!important}

/* 详情面板改为中绿色 */
#history .history-detail{
  background:#2a7a50!important;
  backdrop-filter:none!important;
  -webkit-backdrop-filter:none!important;
  border-left-color:rgba(255,255,255,.16)!important;
}

/* 发展历程图片保持原色：清除绿色蒙版、暗角、网格与色彩滤镜。 */
#history .history-stage::before{
  display:none!important;
  content:none!important;
  background:none!important;
}
#history .history-media{
  background:transparent!important;
}
#history .history-media::after{
  display:none!important;
  content:none!important;
  background:none!important;
  opacity:0!important;
}
#history .history-media img,
#history .history-media img.is-active{
  filter:none!important;
  mix-blend-mode:normal!important;
}
#history .history-visual-copy{
  text-shadow:0 2px 12px rgba(0,0,0,.42);
}
#history .history-eyebrow{
  display:none!important;
}
@media(max-width:960px){
  #history .history-media::after{
    display:none!important;
    content:none!important;
    background:none!important;
  }
}

/* 发展历程外层使用中绿色背景，与内容图片和详情面板保持层次。 */
#history{
  background:#1f6e3c!important;
  background-image:none!important;
}

/* 首页产品卡·Precision Glass 2026-07-15
   克制材质、工业栅格与高对比信息层级。 */
.stack-home > section#products .pm-cards{
  gap:16px!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  -webkit-backdrop-filter:none!important;
  backdrop-filter:none!important;
}
.stack-home > section#products .pm-card{
  height:clamp(326px,24.5vw,392px)!important;
  min-height:326px!important;
  padding:30px 30px 28px!important;
  border:1px solid rgba(255,255,255,.44)!important;
  border-radius:18px!important;
  color:#fff!important;
  background:
    linear-gradient(180deg,rgba(8,34,25,.12) 0%,rgba(8,41,29,.055) 48%,rgba(228,245,239,.14) 100%)!important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 18px 52px -46px rgba(2,24,17,.48)!important;
  -webkit-backdrop-filter:blur(1px) saturate(.94)!important;
  backdrop-filter:blur(1px) saturate(.94)!important;
  transition:border-color .38s ease,background .38s ease,box-shadow .38s ease,-webkit-backdrop-filter .5s ease,backdrop-filter .5s ease!important;
}
.stack-home > section#products .pm-card:hover,
.stack-home > section#products .pm-card:focus-visible{
  transform:none!important;
  border-color:rgba(255,255,255,.68)!important;
  background:
    linear-gradient(180deg,rgba(10,39,29,.2) 0%,rgba(13,52,37,.1) 48%,rgba(238,251,246,.2) 100%)!important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.46),
    0 24px 62px -46px rgba(2,24,17,.58)!important;
  -webkit-backdrop-filter:blur(8px) saturate(.94)!important;
  backdrop-filter:blur(8px) saturate(.94)!important;
}
.stack-home > section#products .pm-card::before{
  inset:0!important;
  width:auto!important;
  height:auto!important;
  border-radius:inherit!important;
  background:
    radial-gradient(110% 72% at 12% 0%,rgba(255,255,255,.17),transparent 52%),
    linear-gradient(115deg,rgba(46,197,138,.12),transparent 38%)!important;
  opacity:.48!important;
}
.stack-home > section#products .pm-card:hover::before,
.stack-home > section#products .pm-card:focus-visible::before{
  opacity:1!important;
}
.stack-home > section#products .pm-c-head{
  margin-bottom:clamp(38px,3.8vw,56px)!important;
}
.stack-home > section#products .pm-ic{
  width:46px!important;
  height:46px!important;
  border-radius:12px!important;
  background:rgba(242,250,247,.64)!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.62),0 10px 28px -24px rgba(0,26,17,.44)!important;
  -webkit-backdrop-filter:blur(8px)!important;
  backdrop-filter:blur(8px)!important;
}
.stack-home > section#products .pm-ic svg{
  width:20px!important;
  height:20px!important;
  stroke:#1ab77a!important;
}
.stack-home > section#products .pm-card:hover .pm-ic,
.stack-home > section#products .pm-card:focus-visible .pm-ic{
  background:#24c487!important;
  box-shadow:0 18px 42px -20px rgba(15,191,126,.68)!important;
}
.stack-home > section#products .pm-card h3{
  gap:11px!important;
  margin:0!important;
  color:#fff!important;
  font-size:clamp(21px,1.45vw,25px)!important;
  font-weight:500!important;
  line-height:1.2!important;
  letter-spacing:.01em!important;
  text-shadow:0 2px 18px rgba(0,31,21,.26)!important;
}
.stack-home > section#products .pm-no{
  color:#25d591!important;
  font-size:12px!important;
  font-weight:700!important;
  letter-spacing:.12em!important;
}
.stack-home > section#products .pm-arrow{
  width:18px!important;
  height:18px!important;
  stroke:#46daa5!important;
  opacity:.22!important;
}
.stack-home > section#products .pm-card:hover .pm-arrow,
.stack-home > section#products .pm-card:focus-visible .pm-arrow{
  opacity:1!important;
  transform:translateX(4px)!important;
}
.stack-home > section#products .pm-stat{
  margin-top:auto!important;
  color:rgba(8,59,39,.88)!important;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","PingFang SC","Noto Sans CJK SC","Microsoft YaHei",sans-serif!important;
  font-size:clamp(32px,2.15vw,40px)!important;
  font-weight:350!important;
  line-height:1.08!important;
  letter-spacing:-.045em!important;
  font-variant-numeric:tabular-nums lining-nums!important;
  text-shadow:0 1px 12px rgba(255,255,255,.22)!important;
}
.stack-home > section#products .pm-stat em{
  color:#1ca66f!important;
  font-family:inherit!important;
  font-size:14px!important;
  font-weight:500!important;
  letter-spacing:0!important;
}
.stack-home > section#products .pm-card::after{
  left:30px!important;
  right:auto!important;
  bottom:23px!important;
  width:34px!important;
  height:1px!important;
  border-radius:2px!important;
  background:linear-gradient(90deg,#2ed096,rgba(46,208,150,.08))!important;
  opacity:.72!important;
  transform:none!important;
  transform-origin:left!important;
  transition:width .42s cubic-bezier(.2,.7,.2,1),opacity .3s ease!important;
}
.stack-home > section#products .pm-card:hover::after,
.stack-home > section#products .pm-card:focus-visible::after{
  width:72px!important;
  opacity:1!important;
  transform:none!important;
}
.stack-home > section#products .pm-reveal{
  left:30px!important;
  right:30px!important;
  bottom:38px!important;
}
.stack-home > section#products .pm-reveal p{
  color:rgba(244,252,248,.86)!important;
  text-shadow:0 1px 14px rgba(0,25,17,.32)!important;
}
.stack-home > section#products .pm-tags span{
  border-color:rgba(255,255,255,.3)!important;
  background:rgba(242,252,248,.15)!important;
  color:#f4fff9!important;
  -webkit-backdrop-filter:blur(8px)!important;
  backdrop-filter:blur(8px)!important;
}
@media(max-width:900px){
  .stack-home > section#products .pm-card{height:340px!important}
}
@media(max-width:560px){
  .stack-home > section#products .pm-cards{gap:14px!important}
  .stack-home > section#products .pm-card{height:auto!important;min-height:320px!important;padding:28px 26px!important}
  .stack-home > section#products .pm-c-head{margin-bottom:40px!important}
  .stack-home > section#products .pm-card::after{left:26px!important;bottom:22px!important}
}
@media(prefers-reduced-motion:reduce){
  .stack-home > section#products .pm-card,
  .stack-home > section#products .pm-card::after{transition:none!important}
}

/* 首页资质背书区最终覆盖：淡绿色品牌氛围，白色卡片保持正式与清晰。 */
body.stack-home section#honors.sec:has(#cred){
  background:
    radial-gradient(900px 520px at 12% 8%,rgba(255,255,255,.72),transparent 62%),
    radial-gradient(760px 460px at 88% 92%,rgba(183,231,211,.34),transparent 66%),
    linear-gradient(145deg,#f0faf6 0%,#ebf7f2 48%,#e7f4ef 100%) !important;
  background-image:
    radial-gradient(900px 520px at 12% 8%,rgba(255,255,255,.72),transparent 62%),
    radial-gradient(760px 460px at 88% 92%,rgba(183,231,211,.34),transparent 66%),
    linear-gradient(145deg,#f0faf6 0%,#ebf7f2 48%,#e7f4ef 100%) !important;
}
body.stack-home section#honors #cred .cert{
  background:rgba(255,255,255,.82) !important;
  border-color:rgba(39,104,76,.1) !important;
  box-shadow:0 24px 54px -42px rgba(15,67,45,.24),inset 0 1px 0 rgba(255,255,255,.88) !important;
  -webkit-backdrop-filter:blur(12px) saturate(140%);
  backdrop-filter:blur(12px) saturate(140%);
}
body.stack-home section#honors #cred .cert:hover{
  background:rgba(255,255,255,.94) !important;
  border-color:rgba(46,197,138,.28) !important;
  box-shadow:0 30px 66px -42px rgba(15,67,45,.3),inset 0 1px 0 rgba(255,255,255,.96) !important;
}

/* 客户中心功能图标：深绿色按钮。 */
.login-brand .lb-ic{
  background:linear-gradient(145deg,#174f37 0%,#0f3d2a 100%) !important;
  border-color:rgba(255,255,255,.7) !important;
  box-shadow:0 12px 26px -16px rgba(4,48,29,.72),inset 0 1px 0 rgba(255,255,255,.16) !important;
}
.login-brand .lb-ic svg{stroke:#fff !important}

/* 二级页面横幅文字统一使用纯色，不添加文字阴影。 */
.phero .phero-in .crumb,
.phero .phero-in .kick,
.phero .phero-in h1,
.phero .phero-in h1 b,
.phero .phero-in p,
.dhead .dhead-in .crumb,
.dhead .dhead-in .tag,
.dhead .dhead-in h1{
  text-shadow:none!important;
}

/* 学术资源列表：统一列线并增大文字，提高浏览效率。 */
#lit .res-list .res{
  grid-template-columns:116px minmax(0,1fr) 104px!important;
  gap:24px!important;
  align-items:center;
  padding:30px 0!important;
}
#lit .res-list .rtag{
  width:max-content;
  min-width:88px;
  padding:7px 13px;
  text-align:center;
  font-size:13px!important;
  line-height:1.4;
}
#lit .res-list .rmain h4{
  margin-bottom:8px;
  font-size:19px!important;
  line-height:1.45;
}
#lit .res-list .rmain p{
  font-size:15px!important;
  line-height:1.7;
}
#lit .res-list .rmeta{
  min-width:104px;
  font-size:13px!important;
  line-height:1.6;
  text-align:right;
}
#lit .res-list .rmeta .dl{font-size:14px!important;margin-top:7px}
@media(max-width:700px){
  #lit .res-list .res{
    grid-template-columns:1fr!important;
    gap:10px!important;
    padding:24px 4px!important;
  }
  #lit .res-list .rmeta{grid-column:1;text-align:left}
  #lit .res-list .rmain h4{font-size:17px!important}
  #lit .res-list .rmain p{font-size:14px!important}
}

/* 桌面导航下拉：与首屏标题栏连续的双状态磨砂层。 */
@media(min-width:961px){
  .nav-item.has-drop .nav-drop{
    top:calc(100% - 1px)!important;
    left:0!important;
    min-width:204px!important;
    padding:8px 0 10px!important;
    border-radius:0 0 16px 16px!important;
    border:1px solid rgba(255,255,255,.2)!important;
    border-top:2px solid rgba(46,197,138,.92)!important;
    transform:translateY(-5px)!important;
    overflow:hidden;
    box-shadow:0 22px 46px -28px rgba(4,24,16,.66)!important;
  }
  .nav-item.has-drop:hover .nav-drop{
    transform:translateY(0)!important;
  }
  nav:not(.scrolled) .nav-drop{
    background:#fff!important;
    -webkit-backdrop-filter:none!important;
    backdrop-filter:none!important;
  }
  nav:not(.scrolled) .nav-drop a{
    padding:13px 22px!important;
    color:#40534b!important;
    font-size:14px!important;
    line-height:1.45;
  }
  nav:not(.scrolled) .nav-drop a:hover{
    padding-left:27px!important;
    color:var(--accent)!important;
    background:var(--soft)!important;
  }
  nav.scrolled .nav-drop{
    background:#fff!important;
    border-color:rgba(25,87,58,.12)!important;
    border-top-color:var(--accent)!important;
    -webkit-backdrop-filter:none!important;
    backdrop-filter:none!important;
    box-shadow:0 22px 46px -30px rgba(13,54,36,.34)!important;
  }
  nav.scrolled .nav-drop a{
    padding:13px 22px!important;
    color:#33483e!important;
    font-size:14px!important;
  }
  nav.scrolled .nav-drop a:hover{
    padding-left:27px!important;
    color:#13784d!important;
    background:rgba(46,197,138,.08)!important;
  }
}

/* 二级页面首图：独立镜头层缓慢推近，标题与导航保持静止。 */
.phero[class*="bn-"]::before{
  content:""!important;
  display:block!important;
  position:absolute!important;
  inset:-5%!important;
  opacity:1!important;
  background-position:center!important;
  background-size:cover!important;
  background-repeat:no-repeat!important;
  filter:none!important;
  animation:secondaryHeroCamera 24s cubic-bezier(.45,.05,.55,.95) infinite alternate!important;
  transform-origin:center center;
  will-change:transform;
  pointer-events:none;
}
.phero.bn-about::before{background-image:url("img/about-fig.png?v=20260712")!important}
.phero.bn-products::before{background-image:url("img/bn-products.png")!important}
.phero.bn-solutions::before{background-image:url("img/bn-solutions.png")!important}
.phero.bn-academic::before{background-image:url("img/bn-academic.png")!important}
.phero.bn-news::before{background-image:url("img/bn-news.png")!important}
.phero.bn-contact::before{background-image:url("img/bn-contact-user-220756.png")!important}
.phero.bn-trace::before{background-image:url("img/bn-solutions.png")!important}
.phero.bn-account::before{background-image:url("img/bn-account.png")!important}
.phero.bn-downloads::before{background-image:url("img/bn-downloads.png")!important}
@media(max-width:760px){
  .phero[class*="bn-"]::before{animation-duration:20s!important}
}
@media(prefers-reduced-motion:reduce){
  .phero[class*="bn-"]::before{
    animation:none!important;
    transform:none!important;
    inset:0!important;
    will-change:auto;
  }
}

/* 关于页发展历程：说明文字在绿色背景上统一使用纯白。 */
#history .history-context>p{
  color:#fff!important;
}

/* 首页产品区标题保持纯净，不使用投影。 */
.stack-home > section#products .pm-intro .h2,
.stack-home > section#products .pm-intro .h2 b{
  text-shadow:none!important;
}

/* 新闻卡片不显示图片日期角标，日期仅保留在正文信息中。 */
.news-date{
  display:none!important;
}

/* 发展历程年份导航：移除进度线上的圆形节点。 */
#history .history-tab::before{
  content:none!important;
  display:none!important;
}

/* ═══════════════════════════════════════════════════════════════
   首页 · 权威背书数据总览（2026-07-16）
   ═══════════════════════════════════════════════════════════════ */
body.stack-home #honors.home-cred-overview {
  position: relative;
  overflow: hidden;
  padding: clamp(104px, 10vw, 156px) 0 clamp(112px, 10vw, 164px);
  background:
    radial-gradient(circle at 92% 5%, rgba(45, 199, 145, .12), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(45, 199, 145, .07), transparent 25%),
    linear-gradient(135deg, #f9fcfa 0%, #edf8f3 58%, #e8f6f0 100%);
}

body.stack-home #honors.home-cred-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(18, 55, 43, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 55, 43, .035) 1px, transparent 1px);
  background-size: 152px 152px;
}

body.stack-home #honors.home-cred-overview > .w {
  position: relative;
  z-index: 1;
}

.home-cred-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: clamp(56px, 8vw, 132px);
  margin-bottom: clamp(70px, 7vw, 108px);
}

.home-cred-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--green, #18b87a);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.home-cred-title h2 {
  margin: 0;
  color: #102d24;
  font-size: clamp(46px, 4.6vw, 76px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.12;
}

.home-cred-head > p {
  position: relative;
  margin: 0 0 5px;
  padding-left: 34px;
  color: #748b83;
  font-size: 16px;
  line-height: 2;
}

.home-cred-head > p::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: rgba(25, 92, 70, .17);
}

.home-cred-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.home-cred-card {
  position: relative;
  display: flex;
  grid-column: span 2;
  min-width: 0;
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 38px 42px;
  overflow: hidden;
  color: #102d24;
  text-decoration: none;
  border: 1px solid rgba(23, 79, 61, .07);
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 38px rgba(30, 79, 62, .045);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease, background .32s ease;
}

.home-cred-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--green, #18b87a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s ease;
}

.home-cred-card > span {
  color: #768b84;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
}

.home-cred-card > strong {
  max-width: 100%;
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.28;
}

.home-cred-card > strong em {
  color: var(--green, #18b87a);
  font-style: normal;
  font-weight: inherit;
}

.home-cred-card > i {
  position: absolute;
  top: 31px;
  right: 34px;
  color: #a1b5ad;
  font-size: 19px;
  font-style: normal;
  transition: color .28s ease, transform .28s ease;
}

.home-cred-card.home-cred-wide { grid-column: span 3; }

.home-cred-card.is-emphasis {
  border-color: rgba(24, 184, 122, .26);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(240,252,247,.96));
}

@media (hover: hover) {
  .home-cred-card:hover {
    z-index: 1;
    transform: translateY(-7px);
    border-color: rgba(24, 184, 122, .3);
    background: #fff;
    box-shadow: 0 24px 52px rgba(22, 90, 67, .12);
  }
  .home-cred-card:hover::after { transform: scaleX(1); }
  .home-cred-card:hover > i {
    color: var(--green, #18b87a);
    transform: translate(3px, -3px);
  }
}

@media (max-width: 1020px) {
  .home-cred-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 36px;
  }
  .home-cred-head > p { max-width: 620px; }
  .home-cred-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-cred-card,
  .home-cred-card.home-cred-wide { grid-column: span 1; }
  .home-cred-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body.stack-home #honors.home-cred-overview { padding: 86px 0 96px; }
  .home-cred-head {
    gap: 28px;
    margin-bottom: 52px;
  }
  .home-cred-kicker {
    margin-bottom: 16px;
    font-size: 10px;
  }
  .home-cred-title h2 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.15;
  }
  .home-cred-head > p {
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.85;
  }
  .home-cred-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-cred-card,
  .home-cred-card.home-cred-wide,
  .home-cred-card:last-child {
    grid-column: auto;
    min-height: 142px;
    gap: 14px;
    padding: 30px 28px;
    border-radius: 16px;
  }
  .home-cred-card > i {
    top: 25px;
    right: 26px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   首页 · 资质荣誉四项核心数据（2026-07-16）
   ═══════════════════════════════════════════════════════════════ */
body.stack-home #honors.home-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 6vw, 104px) 0 clamp(96px, 7vw, 112px);
  background: #f2f3f4 !important;
}

body.stack-home #honors.home-proof::before {
  content: none;
  display: none;
}

body.stack-home #honors.home-proof > .w {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 64px));
  max-width: 1240px;
  margin: 0 auto;
}

.home-proof-head {
  position: relative;
  padding-bottom: clamp(38px, 3.5vw, 48px);
  border-bottom: 0;
  text-align: left;
}

.home-proof-head::after {
  content: none;
  display: none;
}

.home-proof-head h2 {
  max-width: none;
  margin: 0;
  color: var(--accent, #2ec58a);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", sans-serif;
  font-size: clamp(32px, 2.9vw, 44px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.home-proof-head h2 b {
  display: inline;
  color: inherit;
  font-weight: inherit;
}

.home-proof-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border-bottom: 0;
}

.home-proof-stat {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  overflow: hidden;
  isolation: isolate;
  color: #1d1d1f;
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .025), 0 14px 36px -30px rgba(0, 0, 0, .22);
  backface-visibility: hidden;
  transition:
    transform .52s cubic-bezier(.16,1,.3,1),
    box-shadow .52s cubic-bezier(.16,1,.3,1),
    background-color .35s ease;
}

.home-proof-stat:first-child { padding-left: 34px; }
.home-proof-stat:last-child {
  padding-right: 34px;
  border-right: 0;
}

.home-proof-stat::before {
  content: none;
  display: none;
}

.home-proof-stat strong {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  font-size: clamp(50px, 4vw, 64px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
}

.home-proof-stat strong em {
  color: var(--accent, #2ec58a);
  font-style: normal;
  font-weight: inherit;
  transition: color .35s ease;
}

.home-proof-stat > span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 30px;
  color: #545457;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", sans-serif;
  font-size: clamp(14px, .95vw, 15px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.55;
  transition: color .35s ease, transform .35s ease;
}

.home-proof-stat > span::before {
  content: none;
  display: none;
}

@media (hover: hover) {
  .home-proof-stat:hover {
    color: #1d1d1f;
    background-color: #fff;
    transform: translateY(-3px) scale(1.008);
    box-shadow: 0 2px 3px rgba(0, 0, 0, .025), 0 24px 52px -28px rgba(0, 0, 0, .24);
  }
  .home-proof-stat:hover strong em { color: var(--accent-dark, #147a51); }
  .home-proof-stat:hover > span { color: #3f3f42; transform: none; }
  .home-proof-stat:active {
    transform: translateY(-1px) scale(.995);
    transition-duration: .16s;
  }
}

.home-proof-stat:focus-visible {
  z-index: 2;
  outline: 3px solid var(--accent, #2ec58a);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  body.stack-home #honors.home-proof > .w { width: min(100% - 48px, 860px); }
  .home-proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .home-proof-stat {
    min-height: 238px;
    padding: 36px;
    border: 0;
  }
  .home-proof-stat:first-child { padding-left: 36px; }
  .home-proof-stat:nth-child(2) { border-right: 0; }
  .home-proof-stat:nth-last-child(-n+2) { border-bottom: 0; }
  .home-proof-stat:last-child { padding-right: 36px; }
}

@media (max-width: 560px) {
  body.stack-home #honors.home-proof { padding: 72px 0 80px; }
  body.stack-home #honors.home-proof > .w { width: calc(100% - 32px); }
  .home-proof-head { padding-bottom: 32px; }
  .home-proof-head h2 {
    max-width: 390px;
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.18;
  }
  .home-proof-head h2 b { display: block; }
  .home-proof-stats { grid-template-columns: 1fr; }
  .home-proof-stat,
  .home-proof-stat:first-child,
  .home-proof-stat:last-child {
    min-height: 132px;
    display: grid;
    grid-template-columns: minmax(104px, .42fr) 1fr;
    align-items: center;
    padding: 26px;
    gap: 22px;
    border: 0;
    border-radius: 22px;
  }
  .home-proof-stat:last-child { border-bottom: 0; }
  .home-proof-stat strong { font-size: clamp(48px, 14vw, 58px); }
  .home-proof-stat > span { font-size: 15px; }
}

/* ===== 2026-07-19 资质荣誉卡片入场 · 克制的聚焦浮现 ===== */
/*
  不使用 clip-path 完全裁掉卡片：部分浏览器会把完全裁切的元素视作
  无交叠区域，导致 IntersectionObserver 永远无法为它添加 .in。
  四张卡片保持同一运动方向，以短距离上浮、极轻缩放与模糊聚焦依次出现。
  动画使用快速进入、柔和减速的曲线，让注意力停留在数据本身。
*/
@media (prefers-reduced-motion: no-preference) {
  #honors .home-proof-stat.r {
    --proof-delay: .12s;
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(.985);
    transform-origin: 50% 70%;
    clip-path: none;
    filter: blur(4px);
  }
  #honors .home-proof-stat.r:nth-child(1) { --proof-delay: .12s; }
  #honors .home-proof-stat.r:nth-child(2) { --proof-delay: .19s; }
  #honors .home-proof-stat.r:nth-child(3) { --proof-delay: .26s; }
  #honors .home-proof-stat.r:nth-child(4) { --proof-delay: .33s; }
  #honors .home-proof-stat.r.in {
    opacity: 1;
    transform: none;
    filter: blur(0);
    animation: proofCardFocusIn .84s cubic-bezier(.16,1,.3,1) var(--proof-delay) backwards;
  }
  @keyframes proofCardFocusIn {
    0% {
      opacity: 0;
      transform: translate3d(0, 22px, 0) scale(.985);
      filter: blur(4px);
    }
    55% { opacity: 1; }
    100% { opacity: 1; transform: none; filter: blur(0); }
  }
}

/* 二级页面头图：主标题与页面定位短语统一排版。 */
.phero[class*="bn-"] .phero-in h1{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:clamp(18px,3vw,48px);
}
.phero[class*="bn-"] .phero-in h1 b{
  font-size:.62em;
  font-weight:600;
  letter-spacing:.08em;
  white-space:nowrap;
}
@media(max-width:760px){
  .phero[class*="bn-"] .phero-in h1{
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
  }
  .phero[class*="bn-"] .phero-in h1 b{
    font-size:.56em;
    white-space:normal;
  }
}

/* ════ 全站搜索弹层（重新设计 2026-08-03）
   深色磨砂背景 + 居中纯白卡片，输入框与按钮同一 flex 行 ════ */
.search-ov{
  align-items:center!important;
  justify-content:flex-start!important;
  padding:clamp(96px,16vh,180px) 24px 64px!important;
  overflow-y:auto;
  background:rgba(10,26,20,.58)!important;
  -webkit-backdrop-filter:blur(20px) saturate(90%)!important;
  backdrop-filter:blur(20px) saturate(90%)!important;
}
.search-ov .close{
  top:24px!important;
  right:28px!important;
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  border-radius:999px!important;
  color:rgba(255,255,255,.82)!important;
  font-size:30px!important;
  font-weight:300;
  transition:background .2s,color .2s;
  z-index:2;
}
.search-ov .close:hover{
  background:rgba(255,255,255,.14)!important;
  color:#fff!important;
}
.search-ov .sbox{
  width:min(720px,100%)!important;
  margin:0 auto!important;
  padding:34px 36px 30px!important;
  transform:none;
  border:1px solid rgba(255,255,255,.9)!important;
  border-radius:22px!important;
  background:#fff!important;
  box-shadow:
    0 34px 80px -40px rgba(0,18,11,.55),
    0 2px 6px -2px rgba(0,18,11,.14)!important;
  -webkit-backdrop-filter:none!important;
  backdrop-filter:none!important;
}
.search-ov label{
  display:block;
  color:#1f6e3c!important;
  font-size:11px!important;
  font-weight:600;
  line-height:1.2;
  letter-spacing:.22em!important;
  text-transform:none!important;
}
/* 输入框 + 按钮同行 */
.search-ov .sfield{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  padding:6px 6px 6px 18px;
  border:1.5px solid rgba(26,75,56,.16);
  border-radius:14px;
  background:#fff;
  transition:border-color .2s,box-shadow .2s;
}
.search-ov .sfield:focus-within{
  border-color:#2ec58a;
  box-shadow:0 0 0 4px rgba(46,197,138,.14);
}
.search-ov input{
  flex:1 1 auto;
  min-width:0;
  height:52px;
  margin:0;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  color:#20302a!important;
  font-size:19px!important;
  line-height:1.3;
}
.search-ov input::placeholder{
  color:#9aa5a0!important;
  font-size:18px;
  opacity:1;
}
.search-ov .search-submit{
  position:static!important;
  flex:0 0 auto;
  height:52px;
  min-width:92px;
  padding:0 26px!important;
  border:0!important;
  border-radius:11px!important;
  background:#1f6e3c!important;
  color:#fff!important;
  box-shadow:0 8px 20px -12px rgba(9,60,36,.6);
  font-size:15px!important;
  font-weight:600!important;
  cursor:pointer;
}
.search-ov .search-submit:hover{
  background:#175430!important;
  transform:none;
}
.search-ov .hint{
  align-items:center;
  gap:10px;
  margin:20px 0 0!important;
  padding:0;
  color:#5b6560!important;
  font-size:13px!important;
  line-height:1.2;
}
.search-ov .hint b{
  color:#3a443f!important;
  font-size:13px;
  font-weight:600;
}
.search-ov .chip{
  padding:7px 16px!important;
  border:1px solid rgba(26,75,56,.14)!important;
  border-radius:999px!important;
  background:#f6faf8!important;
  box-shadow:none;
  color:#42504a!important;
  font-size:13px;
  line-height:1.2;
  cursor:pointer;
  transition:border-color .2s,background .2s,color .2s;
}
.search-ov .chip:hover,
.search-ov .chip:focus-visible{
  border-color:#2ec58a!important;
  background:#eafaf2!important;
  color:#1f6e3c!important;
}
.search-ov .note{
  margin:22px 0 0!important;
  padding-top:18px;
  border-top:1px solid rgba(26,75,56,.1);
  color:#8b958f!important;
  font-size:12px!important;
  line-height:1.5;
}
.search-ov .search-results{
  margin:18px 0 0;
  padding-top:0;
  border-top:0;
}

@media(max-width:960px){
  .search-ov{
    padding:84px 16px 36px!important;
  }
  .search-ov .sbox{
    width:100%!important;
    transform:none;
    padding:24px 20px 22px!important;
    border-radius:18px!important;
  }
  .search-ov .close{top:14px!important;right:14px!important;font-size:28px!important}
  .search-ov label{font-size:10px!important;letter-spacing:.2em!important}
  /* 窄屏改为上下两行，避免输入框被按钮挤扁 */
  .search-ov .sfield{
    flex-wrap:wrap;
    gap:8px;
    padding:12px;
  }
  .search-ov input{
    flex:1 1 100%;
    height:44px;
    font-size:17px!important;
  }
  .search-ov input::placeholder{font-size:16px}
  .search-ov .search-submit{
    flex:1 1 100%;
    height:46px;
    font-size:15px!important;
  }
  .search-ov .hint{
    gap:8px;
    margin-top:18px!important;
    font-size:12px!important;
  }
  .search-ov .hint b{font-size:12px}
  .search-ov .chip{padding:6px 14px!important;font-size:12px}
  .search-ov .note{margin-top:18px!important;font-size:11px!important}
}
