/* ============================================================
 * page.css — 各页面专属样式（首页 / 关于我们 / 客户案例 / 方案详情 / 技术架构）
 * 多端适配请见 media.css；全站公共样式请见 style.css。
 * 所有页面的专属样式集中于此，任意页面均可复用其中类名。
 * ============================================================ */

/* ===================== 首页 index ===================== */
/* Hero */
.hero {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
  background: var(--weaver-bg-dark);
  padding:100px 0 60px;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background: #0a2663;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bannerhome/imgs_bnerhome2.png') center 138px #000003;
  background-repeat: no-repeat;
  background-size: 100% auto;
  opacity: .64;
}
/* .hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bannerhome/imgs_home.jpg') center 80% #020214;
  background-repeat: no-repeat;
  background-size: auto 130%;
  opacity: .60;
} */
.hero-grid {
  position:absolute; inset:0; z-index:0; opacity:.15;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent);
}
.hero-particles { position:absolute; inset:0; z-index:1; pointer-events:none; }
.hero-particle {
  position:absolute; width:4px; height:4px; border-radius:50%;
  background: rgba(59,130,246,.6);
  animation: float 6s ease-in-out infinite;
}
.hero-number { 
  width: 100%;
  position: absolute;
  bottom: 0px;
  z-index: 2;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
}
.hero-content { position:relative; z-index:2; text-align:center; max-width:900px; 
  margin-bottom: 128px;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 18px; border-radius:100px;
  background: rgba(26,86,219,.15); border:1px solid rgba(59,130,246,.3);
  font-size:13px; color:#93C5FD; font-weight:500;
  margin-bottom:28px; animation: fadeInUp .8s ease;
}
.hero-badge-dot { width:8px; height:8px; border-radius:50%; background: var(--weaver-green); animation: blink 2s infinite; }
.hero h1 {
  font-size:52px; font-weight:900; line-height:1.25;
  color:#fff; margin-bottom:24px;
  animation: fadeInUp .8s ease .1s both; letter-spacing:-1px;
}
.hero h1 .highlight { position:relative; display:inline-block; }
.hero-sub {
  font-size:var(--font-min2); color:#94A3B8; line-height:1.5;
  max-width:680px; margin:0 auto 40px;
  animation: fadeInUp .8s ease .2s both;
}
.hero-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; animation: fadeInUp .8s ease .3s both; }
/* 首页每屏底部的「预约演示」按钮容器 */
.screen-cta { display:flex; justify-content:center; margin-top:48px; }
/* 内容区域（产品介绍区）的预约演示按钮缩小，区别于首屏主 CTA */
.product-leftbox .screen-cta .btn { padding:9px 22px; font-size:13px; border-radius:9px; gap:6px; }

/* ===================== 新闻资讯（News） ===================== */
.vn-grid { display:grid; grid-template-columns:1.5fr 1fr; gap:40px; align-items:start; }
/* 左侧封面图占位（已去除视频播放器） */
.vn-video { position:relative; }
.vn-video-img { width:100%; object-fit:cover; display:block; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.vn-video-caption {
  position:absolute; left:0; right:0; bottom:0;
  padding:22px 40px;
  color:#fff; font-size:15px; font-weight:600; line-height:1.7; letter-spacing:.2px;
  background:linear-gradient(to top, rgba(8,15,35,.82) 0%, rgba(8,15,35,.42) 55%, rgba(8,15,35,0) 100%);
  border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg);
  text-shadow:0 1px 4px rgba(0,0,0,.45);
}
/* 右侧资讯 */
.vn-news-tag { font-size:14px; font-weight:700; color: var(--weaver-blue); margin-bottom:8px; }
.vn-news-list { list-style:none; padding:0; margin:0; }
.vn-news-list li { border-top:1px solid #E2E8F0; padding:15px 0; transition: border-color .3s ease; }
.vn-news-list li:first-child { border-top:none; }
.vn-news-list li:last-child { border-bottom:1px solid #E2E8F0; }
.vn-news-list li:hover .vn-news-title { color: var(--weaver-blue); }
.vn-date { display:block; font-size:12px; color: var(--weaver-slate-3); margin-bottom:6px; }
.vn-news-title {
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  font-size:14px; line-height:20px;height: 40px; color: var(--weaver-slate); transition: color .3s ease;
}
.vn-more { display:inline-block; margin-top:18px; font-size:14px; font-weight:600; color: var(--weaver-blue); }
.vn-more:hover { text-decoration:underline; }
  /* 视频放大弹框样式已随功能移除 */
.hero-stats { display:flex; gap:80px; justify-content:center; animation: fadeInUp .8s ease .4s both; 
  padding: 48px 0px;
}
.hero-stat { text-align:center; }
.hero-stat-num {
  font-size:32px; font-weight:900; color:#fff;
  background: linear-gradient(180deg, #fff, #93C5FD);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.hero-stat-label { font-size:13px; color:#64748B; margin-top:4px; }
.hero-shield {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  z-index:1; opacity:.08; pointer-events:none;
  animation: rotate-slow 60s linear infinite;
}

/* Pain Points */
.pain-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pain-card {
  background:#fff; border:1px solid #E2E8F0; border-radius: var(--radius-lg);
  padding:36px 28px; transition: var(--transition); position:relative; overflow:hidden;
}
.pain-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background: var(--weaver-blue); transform: scaleX(0); transform-origin:left; transition: var(--transition);
}
.pain-card:hover { transform:translateY(-6px); box-shadow: var(--shadow-lg); border-color:var(--weaver-blue); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-icon {
  width:56px; height:56px; border-radius:14px;
  background:#FEF2F2; display:flex; align-items:center; justify-content:center;
  font-size:26px; margin-bottom:20px;
}
.pain-card h3 { font-size:19px; font-weight:700; color: var(--weaver-slate); margin-bottom:10px; }
.pain-card h3 i{ 
  font-style: normal;
 }
.pain-card p { 
  font-size: var(--font-min);
  color: var(--weaver-slate-3);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
 }
.pain-card .pain-tag {
  display:inline-block; margin-top:14px; padding:4px 12px;
  border-radius:6px; background:#FEF2F2; color: var(--weaver-blue); font-size:12px; font-weight:600;
}

/* Solution Overview */
.solution-wrap { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.solution-visual { position:relative; padding:40px; }
.solution-ring { position:relative; width:420px; height:420px; margin:0 auto; }
.solution-ring-center {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:160px; height:160px; border-radius:50%;
  background: var(--weaver-gradient);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow:0 0 60px rgba(26,86,219,.4); z-index:2;
}
.solution-ring-center .icon { 
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 0px;
 }
.solution-ring-center .text { font-size:14px; font-weight:700; color:#fff; text-align:center; line-height: 22px;}
.solution-ring-svg { position:absolute; inset:0; z-index:1; animation: rotate-slow 40s linear infinite; width:100%; height:100%; }
.solution-orbit-item {
  position:absolute; width:80px; height:80px; border-radius:20px;
  background:rgba(255,255,255,.08); border:1px solid rgba(59,130,246,.2);
  backdrop-filter:blur(10px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-size:11px; color:#93C5FD; text-align:center; font-weight:500; z-index:3; transition: var(--transition);
}
.solution-orbit-item .oi-icon { font-size:22px; margin-bottom:2px; }
.solution-orbit-item:hover { background:rgba(26,86,219,.2); border-color:rgba(59,130,246,.4); transform:scale(1.1); }
.solution-orbit-item:nth-child(1) { top:0; left:30%; }
.solution-orbit-item:nth-child(2) { top:25%; right:50%; }
.solution-orbit-item:nth-child(3) { 
  top: 0;
  left: 40%;
 }
.solution-orbit-item:nth-child(4) { 
  bottom: 2%;
  left: 40%;
 }
.solution-orbit-item:nth-child(5) { 
  top: 22%;
  right: 8%;
 }
.solution-orbit-item:nth-child(6) { 
  top: 55%;
  left: 8%;
 }
/* 下两项因 .solution-ring 内 svg/center 占据 child(1)(2)，实际偏移 +2 */
.solution-orbit-item:nth-child(7) { 
  top: 55%;
  right: 8%;
 }      /* 水印防护 ← child(1) 位 */
.solution-orbit-item:nth-child(8) { 
  top: 22%;
  left: 8%;
 }   /* 三员分立 ← child(2) 位 */
.solution-text h2 { font-size:34px; font-weight:800; color:#fff; margin-bottom:20px; line-height:1.3; }
.solution-text .lead { font-size:17px; color:#94A3B8; line-height:1.9; margin-bottom:28px; }
.solution-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 20px;
}
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.solution-list li:last-child { border-bottom:none; }
.solution-list .check {
  flex-shrink:0; width:28px; height:28px; border-radius:8px;
  background:rgba(16,185,129,.15); color: var(--weaver-green);
  display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700;
}
.solution-list .sl-title { font-size:16px; font-weight:600; color:#E2E8F0; margin-bottom:2px; }
.solution-list .sl-desc { font-size:var(--font-min); color:#64748B; 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* Core Capabilities */
.cap-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.cap-card {
  background:#fff; border-radius: var(--radius-lg); overflow:hidden;
  border:1px solid #E2E8F0; transition: var(--transition); position:relative;
}
.cap-card:hover { transform:translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--weaver-blue-light); }
.cap-card-top { height:8px; background: var(--weaver-gradient); }
.cap-card-body { padding:32px 28px; }
.cap-icon-box {
  width:60px; height:60px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  font-size:28px; margin-bottom:20px;
}
.cap-card h3 { font-size:20px; font-weight:700; color: var(--weaver-slate); margin-bottom:10px; }
.cap-card p { font-size:15px; color: var(--weaver-slate-3); line-height:1.7; margin-bottom:16px; }
.cap-features li { display:flex; align-items:center; gap:8px; font-size:14px; color: var(--weaver-slate-2); padding:4px 0; }
.cap-features li::before { content:''; width:6px; height:6px; border-radius:50%; background: var(--weaver-blue); flex-shrink:0; }

/* Architecture */
.arch-wrap {
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl); padding:48px; backdrop-filter:blur(10px);
}
.arch-layer { margin-bottom:20px; }
.arch-layer:last-child { margin-bottom:0; }
.arch-layer-header { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.arch-layer-badge {
  width:36px; height:36px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:16px; font-weight:700; color:#fff;
}
.arch-layer-title { font-size:17px; font-weight:700; color:#E2E8F0; }
.arch-layer-desc { font-size:13px; color:#64748B; margin-left:auto; }
.arch-modules { display:flex; gap:12px; flex-wrap:wrap; padding-left:48px; }
.arch-module {
  padding:10px 18px; border-radius:10px;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  font-size:14px; color:#CBD5E1; font-weight:500; transition: var(--transition);
}
.arch-module:hover { background:rgba(26,86,219,.15); border-color:rgba(59,130,246,.3); color:#93C5FD; }

/* Process Flow */
.flow-steps { display:flex; align-items:stretch; gap:0; justify-content:center; flex-wrap:wrap; }
.flow-step { flex:1; min-width:160px; max-width:208px; text-align:center; position:relative; padding:0 12px; }
.flow-steptext { overflow: hidden; }
.flow-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #92b4ff;
  background: #133988;
  box-shadow: 0 8px 24px rgba(26, 86, 219, .12);
  position: relative;
  z-index: 2;
  border: 1px solid var(--weaver-blue);
}
.flow-step h4 { font-size:var(--font-h4); font-weight:700; color: #ffffff; margin-bottom:6px; }
.flow-step p { font-size:var(--font-min); color: var(--weaver-slate-3); line-height:1.6; }
.flow-step:not(:last-child)::after {
  content:''; position:absolute; top:32px; right:-50%; width:100%; height:3px;
  background:linear-gradient(90deg, var(--weaver-blue), var(--weaver-blue-100)); z-index:1;
}

/* Compliance */
.compliance-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.compliance-card {
  background:#fff; border:1px solid #E2E8F0; border-radius: var(--radius-lg);
  padding:32px 20px; text-align:center; transition: var(--transition);
}
.compliance-card:hover { transform:translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--weaver-blue-light); }
.compliance-badge {
  width:72px; height:72px; border-radius:50%; margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center; font-size:32px; background: var(--weaver-blue-50);
}
.compliance-card h3 { font-size:16px; font-weight:700; color: var(--weaver-slate); margin-bottom:6px; }
.compliance-card p { font-size:var(--font-min); color: var(--weaver-slate-3); line-height:1.6; }

/* Scenarios */
.scenario-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.scenario-card {
  position:relative; border-radius: var(--radius-lg); overflow:hidden;
  background:#fff; border:1px solid #E2E8F0; display:flex; min-height:180px; transition: var(--transition);
}
.scenario-card:hover { transform:translateY(-4px); box-shadow: var(--shadow-lg); }
.scenario-card-left {
  width:100px; flex-shrink:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; color:#fff;
}
/* .scenario-card-left .sc-icon { font-size:36px; } */
.scenario-card-left .sc-label { font-size:14px; font-weight:700; }
.scenario-card-body { padding:24px; flex:1; }
.scenario-card-body h3 { font-size:18px; font-weight:700; color: var(--weaver-slate); margin-bottom:8px; }
.scenario-card-body p { font-size:var(--font-min); color: var(--weaver-slate-3); line-height:1.7; margin-bottom:12px; }
.scenario-tags { display:flex; gap:8px; flex-wrap:wrap; }
.scenario-tag { padding:3px 10px; border-radius:6px; font-size:12px; font-weight:500; background: var(--weaver-blue-50); color: var(--weaver-blue); }

/* Cases (首页案例预览) */
.case-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.case-card { background:#fff; border:1px solid #E2E8F0; border-radius: var(--radius-lg); overflow:hidden; transition: var(--transition); }
.case-card:hover { transform:translateY(-6px); box-shadow: var(--shadow-lg); }
.case-card-top { height:140px; position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.case-card-top.caseb1 {
  background: url('../images/caseb_gz.jpg') 50% 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.case-card-top.caseb2 {
  background: url('../images/caseb_ky.jpg') 50% 75%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.case-card-top.caseb3 {
  background: url('../images/caseb_yq.jpg') 50% 85%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.case-card-top.caseb5 {
  background: url('../images/caseb_zf.jpg') 50% 83%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.case-card-top.caseb6 {
  background: url('../images/caseb_yc.jpg') 50% 80%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.case-card-top .case-bg-icon { font-size:64px; opacity:.15; }
.case-card-body { padding:24px; }
.case-card-body .case-type { font-size: var(--font-min); font-weight:600; color: var(--weaver-blue); text-transform:uppercase; letter-spacing:1px; }
.case-card-body h3 { font-size:17px; font-weight:700; color: var(--weaver-slate); margin-bottom:8px; }
.case-card-body p { font-size:var(--font-min); color: var(--weaver-slate-3); line-height:1.7; }
.case-metrics { display:flex; gap:16px; margin-top:14px; padding-top:14px; border-top:1px solid #F1F5F9; }
.case-metric { text-align:center; flex:1; }
.case-metric .num { font-size:20px; font-weight:800; color: var(--weaver-blue); }
.case-metric .label { font-size:11px; color: var(--weaver-slate-4); }

.capability-grid{
  width: 100%;
}

/* ===================== 关于我们 about ===================== */
.about-intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:stretch; }
.about-intro-text { display:flex; flex-direction:column; }
.about-intro-text h2 { font-size:32px; font-weight:800; color:#fff; margin-bottom:20px; line-height:1.4; }
.about-intro-text p { font-size:17px; color:#94A3B8; line-height:1.9; margin-bottom:24px; }
.about-intro-textbox {
  flex:1; display:flex; flex-direction:column; justify-content:center;
  border:1px solid var(--border-Normal);
  border-radius:var(--radius-xl); padding:40px;
  backdrop-filter:blur(10px);
  /* border-radius:var(--radius-xl); padding:40px; backdrop-filter:blur(10px);
  background: url('../images/about_img5.jpg') center -100px;
  background-size: 100% auto;
  background-repeat: no-repeat; */
  position: relative;
 }
 .about-intro-textbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 310px;
  background: url('../images/about_img5.jpg') center -68px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  border-radius:28px 28px 0px 0px;
}
.about-introdesc { 
  position: absolute;
  bottom: 125px;
  font-size: var(--font-min);
  line-height: 20px;
  padding-right: 40px;
}
.about-intro-stats { 
  position: absolute;
  bottom: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 90%;
  margin: 0 auto;
 }
.about-intro-stat {
  padding:0px; border-radius:var(--radius-lg);
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
}
.about-intro-stat .num { 
  font-size: 20px;
  line-height: 24px;
  font-weight: 900;
  color: var(--weaver-slate);
}
.about-intro-stat .label { font-size:14px; color:#64748B; margin-top:4px; }
.about-intro-visual { position:relative; display:flex; flex-direction:column; }
.about-visual-card {
  flex:1;
  border:1px solid var(--border-Normal);
  border-radius:var(--radius-xl); padding:24px 40px; backdrop-filter:blur(10px);
}
.about-visual-card .avc-item { display:flex; align-items:center; gap:16px; padding:16px 0; 
  border-bottom:1px solid var(--border-Normal); 
}
.about-visual-card .avc-item:last-child { border-bottom:none; }
.about-visual-card .avc-icon { width:48px; height:48px; border-radius:12px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:22px; background:var(--weaver-blue-50); }
.about-visual-card .avc-title { font-size:15px; font-weight:600; color:var(--weaver-slate); }
.about-visual-card .avc-desc { font-size:13px; color:#64748B; }

/* 横向时间轴（适配浅色背景 section-light） */
.timeline {
  position: relative;
  display: flex;
  gap: 0;
  padding: 24px 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.timeline::-webkit-scrollbar { height: 4px; }
.timeline::-webkit-scrollbar-track { background: transparent; }
.timeline::-webkit-scrollbar-thumb { background: rgba(26,86,219,.2); border-radius: 2px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; right: 8px;
  top: 31px;
  height: 2px;
  background: var(--weaver-blue);
}
.timeline-arrow {
  position: absolute;
  right: 0;
  top: 22px;
  color: var(--weaver-blue);
  z-index: 2;
  display: flex;
  align-items: center;
}
.timeline-point {
  position: absolute;
  left: 0;
  top: 27px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  z-index: 2;
  background: var(--weaver-blue);
}
.timeline-item {
  position: relative;
  flex: 1 0 0;
  min-width: 140px;
  padding: 0 10px;
  text-align: center;
}
.timeline-item .ti-dot {
  position: relative;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--weaver-white);
  border: 3px solid var(--weaver-blue);
  box-shadow: 0 2px 8px rgba(26,86,219,.3);
  margin: 0 auto 20px;
  z-index: 2;
}
.timeline-item .ti-content { text-align: center; }
.timeline-item .ti-year { font-size: 22px; font-weight: 900; color: var(--weaver-blue); margin-bottom: 6px; }
.timeline-item .ti-title { font-size: 14px; font-weight: 700; color: var(--weaver-slate); margin-bottom: 6px; }
.timeline-item .ti-desc { font-size: 13px; color: var(--weaver-slate-3); line-height: 1.6; }

.honor-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.honor-card {
  background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:32px 28px; transition:var(--transition); text-align:center;
}
.honor-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--weaver-blue-light); }
.honor-card .hc-icon { 
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--weaver-blue-50);
  font-weight: bold;
  color: #2563EB;
 }
.honor-card h3 { font-size:16px; font-weight:700; color:var(--weaver-slate); margin-bottom:6px; }
.honor-card p { font-size:13px; color:var(--weaver-slate-3); line-height:1.6; }

.leading-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.leading-card {
  background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:32px 28px; transition:var(--transition); text-align:center;
}
.leading-card .item-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.leading-card .item-box .title {
  line-height: 18px;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--weaver-slate);
}
.leading-card .item-box .subtitle {
  color: #000;
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  font-weight: 700;
}
.leading-card .item-box .desc {
  color: #666;
  font-size: var(--font-min);
  font-weight: 400;
  line-height: 20px;
  margin-top: 28px;
  margin-bottom: 24px;
  margin-right: 0px;
}

.value-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.value-card {
  background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:32px 20px; text-align:center; transition:var(--transition);
}
.value-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--weaver-blue-light); }
.value-card .vc-icon { font-size:36px; margin-bottom:12px; }
.value-card h3 { font-size:16px; font-weight:700; color:var(--weaver-slate); margin-bottom:8px; }
.value-card p { font-size:13px; color:var(--weaver-slate-3); line-height:1.7; }

.service-region {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg); padding:32px 28px; transition:var(--transition);
}
.service-region:hover { background:rgba(255,255,255,.06); border-color:rgba(59,130,246,.2); }
.service-region .sr-icon { font-size:28px; margin-bottom:12px; }
.service-region h3 { font-size:18px; font-weight:700; color:#E2E8F0; margin-bottom:12px; }
.service-region .sr-cities { display:flex; flex-wrap:wrap; gap:8px; }
.service-region .sr-city { font-size:13px; color:#94A3B8; padding:4px 12px; border-radius:6px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.05); }

.contact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.contact-card {
  background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:36px 28px; text-align:center; transition:var(--transition);
}
.contact-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--weaver-blue-light); }
.contact-card .cc-icon { width:64px; height:64px; border-radius:50%; margin:0 auto 16px; display:flex; align-items:center; justify-content:center; font-size:28px; background:var(--weaver-blue-50); }
.contact-card h3 { font-size:18px; font-weight:700; color:var(--weaver-slate); margin-bottom:8px; }
.contact-card .cc-value { font-size:20px; font-weight:800; color:var(--weaver-blue); margin-bottom:6px; }
.contact-card .cc-desc { font-size:14px; color:var(--weaver-slate-3); }

/* ===================== 客户案例 cases ===================== */
.case-filter {
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:48px;
}
.filter-btn {
  padding:10px 24px; border-radius:100px; border:1px solid var(--border-Normal);
  background:#fff; font-size:14px; font-weight:500; color:var(--weaver-slate-3);
  cursor:pointer; transition:var(--transition);
}
.filter-btn:hover { border-color:var(--weaver-blue); color:var(--weaver-blue); }
.filter-btn.active { background:var(--weaver-blue); color:#fff; border-color:var(--weaver-blue); }

.case-detail-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
.case-detail-card {
  background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-xl);
  overflow:hidden; transition:var(--transition);
}
.case-detail-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.case-detail-top {
  height:180px; position:relative; overflow:hidden;
}
.case-detail-top.caseb1 {
  background: url('../images/caseb_gz.jpg') 50% 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.case-detail-top.caseb2 {
  background: url('../images/caseb_ky.jpg') 50% 75%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.case-detail-top.caseb3 {
  background: url('../images/caseb_yq.jpg') 50% 85%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.case-detail-top.caseb4 {
  background: url('../images/caseb_zz.jpg') 50% 86%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.case-detail-top.caseb5 {
  background: url('../images/caseb_zf.jpg') 50% 83%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.case-detail-top.caseb6 {
  background: url('../images/caseb_yc.jpg') 50% 80%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.case-detail-top .cdt-icon { font-size:56px; margin-bottom:8px; }
.case-detail-top .cdt-type { 
  width: auto;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  color: #ffffffde;
  padding: 4px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  margin-left: 28px;
  margin-top: 24px;
}
.case-detail-body { padding:32px 28px; }
.case-detail-body .cdb-industry { font-size:12px; font-weight:700; color:var(--weaver-blue); text-transform:uppercase; letter-spacing:1px; margin-bottom:2px;
}
.case-detail-body h3 { font-size:22px; line-height: 26px; font-weight:800; color:var(--weaver-slate); margin-bottom:12px; }
.case-detail-body .cdb-desc { font-size:15px; color:var(--weaver-slate-3); line-height:1.8; margin-bottom:20px; }
.case-detail-body .cdb-challenge { margin-bottom:16px; }
.case-detail-body .cdb-challenge-title { font-size:13px; font-weight:700; color:var(--weaver-slate-2); margin-bottom:8px; display:flex; align-items:center; gap:6px; }
.case-detail-body .cdb-challenge ul { list-style:none; padding-left:20px; }
.case-detail-body .cdb-challenge li { font-size:14px; color:var(--weaver-slate-3); padding:3px 0; position:relative; }
.case-detail-body .cdb-challenge li::before { content:'•'; position:absolute; left:-16px; color:var(--weaver-red); }
.case-detail-body .cdb-solution { margin-bottom:16px; }
.case-detail-body .cdb-solution-title { font-size:13px; font-weight:700; color:var(--weaver-slate-2); margin-bottom:8px; display:flex; align-items:center; gap:6px; }
.case-detail-body .cdb-solution ul { list-style:none; padding-left:20px; }
.case-detail-body .cdb-solution li { font-size:14px; color:var(--weaver-slate-3); padding:3px 0; position:relative; }
.case-detail-body .cdb-solution li::before { content:'•'; position:absolute; left:-16px; color:var(--weaver-green); }
.case-detail-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:20px; padding-top:20px; border-top:1px solid #F1F5F9; }
.cdm-item { text-align:center; }
.cdm-item .num { font-size:24px; font-weight:900; color:var(--weaver-blue); }
.cdm-item .label { font-size:12px; color:var(--weaver-slate-4); margin-top:2px; }

.testimonial-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testimonial-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg); padding:32px 28px; transition:var(--transition);
  position:relative;
}
.testimonial-card:hover { background:rgba(255,255,255,.06); border-color:rgba(59,130,246,.2); transform:translateY(-4px); }
.testimonial-card .tc-quote {
  font-size:48px; color:rgba(59,130,246,.2); line-height:1; margin-bottom:16px; font-family:Georgia,serif;
}
.testimonial-card .tc-text { font-size:15px; color:#CBD5E1; line-height:1.8; margin-bottom:20px; font-style:italic; }
.testimonial-card .tc-author { display:flex; align-items:center; gap:12px; }
.testimonial-card .tc-avatar {
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:700;
}
.testimonial-card .tc-name { font-size:15px; font-weight:600; color:#E2E8F0; }
.testimonial-card .tc-role { font-size:13px; color:#64748B; }

.numbercases{
  padding:48px 0; border-bottom: 1px solid var(--border-Normal);
}

.stats-banner { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stats-banner-item { text-align:center; }
.stats-banner-item .sbi-num {
  font-size: 32px;
  line-height: 36px;
  font-weight: 800;
  color: var(--weaver-slate);
}
.stats-banner-item .sbi-label { font-size:var(--font-min); color:var(--weaver-slate); margin-top:4px; }

.industry-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.industry-card {
  background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:32px 20px; text-align:center; transition:var(--transition);
}
.industry-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--weaver-blue-light); }
.industry-card .ic-icon { font-size:40px; margin-bottom:12px; }
.industry-card h3 { font-size:16px; font-weight:700; color:var(--weaver-slate); margin-bottom:6px; }
.industry-card p { font-size:13px; color:var(--weaver-slate-3); line-height:1.6; }
.industry-card .ic-count { font-size:12px; color:var(--weaver-blue); font-weight:600; margin-top:10px; }

/* ===================== 方案详情 solution ===================== */
.sol-intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.sol-intro-visual { position:relative; }
.sol-intro-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-xl); padding:40px; backdrop-filter:blur(10px);
}
.sol-intro-stat { text-align:center; margin-bottom:30px; }
.sol-intro-stat .num { font-size:48px; font-weight:900; color:#fff; background:linear-gradient(180deg,#fff,#93C5FD); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.sol-intro-stat .label { font-size:14px; color:#64748B; margin-top:4px; }
.sol-intro-principles { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.sol-principle {
  padding:20px; border-radius:var(--radius-md);
  background:rgba(26,86,219,.08); border:1px solid rgba(59,130,246,.15);
}
.sol-principle .pp-icon { font-size:24px; margin-bottom:8px; }
.sol-principle .pp-title { font-size:15px; font-weight:700; color:#E2E8F0; margin-bottom:4px; }
.sol-principle .pp-desc { font-size:13px; color:#64748B; }

.sol-jg { 
  width: 100%;
  overflow: hidden;
}
.sol-jg img{ 
  border-radius: 12px;
  border: 2px solid #f2f6fd;
}
.solhome-jg { 
  width: 100%;
  overflow: hidden;
}
.sol-featureList { 
  width: 100%;
  /* overflow: hidden; */
}
.sol-featureList-link { 
  width: 64%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
  background: #ffffff;
  border-radius: 100px;
  padding: 0px 12px;
}
.sol-featureList-link a{ 
  width: auto;
  border-radius: 100px;
  padding: 0px 16px;
  display: block;
  font-size: 12px;
  line-height: 36px;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  margin: 8px 0px;
}
.sol-featureList-link a:hover{ 
  color: #ffffff;
  background: var(--weaver-blue);
}
.sol-featureList-ul { 
  width: 100%;
  /* overflow: hidden; */
}
.sol-featureList-li { 
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: 4fr 6fr;
  gap: 96px;
  padding: 64px 0 52px;
  align-items: stretch;
  /* 固定行高下限：只要各交互状态下内容天然高度都 < min-height(540)，整行就恒为 540，子 tab 展开/收起与图片切换都不会改变它 → 不再抖动 */
  min-height: 540px;
  border-bottom: 1px solid var(--border-Normal);
}
.product-leftbox {
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}
.product-rightbox {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-leftbox .subtitle {
  display: none;
  color: #000;
  font-size: 14px;
  line-height: 24px;
}
.product-leftbox .title {
  color: #000;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  margin-top: 8px;
  margin-bottom: 2px;
}
.product-leftbox .desc {
  color: #888;
  font-size: 14px;
  line-height: 24px;
}
.product-leftbox .moreBtn {
  width: auto;
  min-height: 1px;
  margin-top: 30px;
}
.product-leftbox .moreBtn a {
  padding: 10px 32px;
}
.home-tab-panels .product-leftbox {
  justify-content: center;
}
/* .product-leftbox .moreBtn a {
  min-height: 1px;
  display: inline-block;
  position: relative;
  font-size: 12px;
  line-height: 40px;
  text-align: center;
  color: #969799;
  padding: 0 40px;
  background-color: #eceff1;
  border-radius: 6px;
}
.product-leftbox .moreBtn a:hover {
  color: #fff;
  background-color: #bd1a1a;
} */

/* ===================== 功能模块子 tab 切换 ===================== */
.sol-subtab-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.sol-subtab-item {
  /* border: 1px solid #E5E7EB; */
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: all .25s ease;
}
.sol-subtab-item.active {
  border-color: var(--weaver-blue, #1A56DB);
  box-shadow: 0 8px 24px rgba(26,86,219,.08);
}
.sol-subtab-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  color: #374151;
  font-family: inherit;
}
.sol-subtab-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  color: #6B7280;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  transition: all .2s;
}
.sol-subtab-item.active .sol-subtab-icon {
  background: var(--weaver-blue, #1A56DB);
  color: #fff;
}
.sol-subtab-label {
  font-weight: 500;
}
.sol-subtab-item.active .sol-subtab-label {
  color: var(--weaver-blue, #1A56DB);
  font-weight: 600;
}
.sol-subtab-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .3s ease, opacity .25s ease, padding .25s ease;
  padding: 0 20px;
}
.sol-subtab-item.active .sol-subtab-content {
  max-height: 150px;
  opacity: 1;
  padding: 0 20px 16px;
}
.sol-subtab-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.sol-subtab-desc {
  font-size: var(--font-m-desc);
  line-height: 1.4;
  color: #6B7280;
  padding-left: 32px;
}
.sol-tab-panels {
  position: relative;
  width: 100%;
  height: 100%;
}
.sol-tab-panel {
  display: none;
  width: 100%;
  height: 100%;
  /* align-items: center; */
}
.sol-tab-panel.active {
  display: flex;
  /* align-items: center;
  justify-content: center; */
}
.sol-img-frame {
  position: relative;
  display: grid;
  width: 100%;
  touch-action: pan-y;
  user-select: none;
}
.sol-img {
  grid-area: 1 / 1;
  width: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .35s ease;
  box-shadow: 0 16px 40px rgba(15,23,42,.10);
  border-radius: 14px;
  pointer-events: none;
}
.sol-img.active {
  opacity: 1;
}
.sol-img-tabs {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-left: 32px;
}
/* 单 item 模块：标签切换放回卡片（sol-subtab-item）内，并拉高卡片填充右侧图片留白 */
.sol-subtab-list > .sol-subtab-item:only-child .sol-img-tabs {
  display: flex;
  margin-top: 32px;
}
.sol-subtab-list > .sol-subtab-item:only-child.active {
  min-height: 210px;
}
.sol-subtab-list > .sol-subtab-item:only-child.active .sol-subtab-content {
  max-height: 320px;
}
.sol-img-tab {
  padding: 6px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  background: #fff;
  color: #6B7280;
  font-size: 12px;
  line-height: 1.4;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s ease;
}
.sol-img-tab:hover {
  border-color: var(--weaver-blue, #1A56DB);
  color: var(--weaver-blue, #1A56DB);
}
.sol-img-tab.active {
  background: var(--weaver-blue, #1A56DB);
  border-color: var(--weaver-blue, #1A56DB);
  color: #fff;
}

/* 轮播分页点（自动生成在 .sol-img-frame 内） */
.sol-dots {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.sol-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.sol-dot:hover { background: #94A3B8; }
.sol-dot.active {
  width: 26px;
  border-radius: 100px;
  background: var(--weaver-blue, #1A56DB);
}

.module-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.module-card {
  background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  overflow:hidden; transition:var(--transition);
}
.module-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--weaver-blue-light); }
.module-header { padding:24px 28px; display:flex; align-items:center; gap:16px; }
.module-header .mh-icon {
  width:52px; height:52px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:24px;
}
.module-header .mh-title { font-size:20px; font-weight:700; color:var(--weaver-slate); }
.module-header .mh-sub { font-size:13px; color:var(--weaver-slate-3); }
.module-body { padding:0 28px 28px; }
.module-body p { font-size:15px; color:var(--weaver-slate-3); line-height:1.8; margin-bottom:16px; }
.module-features { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.module-feature { display:flex; align-items:center; gap:8px; font-size:14px; color:var(--weaver-slate-2); padding:8px 12px; background:var(--weaver-bg-light); border-radius:8px; }
.module-feature::before { content:'✓'; color:var(--weaver-green); font-weight:700; }

.advantage-table { width:100%; border-collapse:collapse; }
.advantage-table th { padding:16px 20px; text-align:left; font-size:14px; font-weight:700; color:#94A3B8; border-bottom:2px solid rgba(255,255,255,.08); 
  color:#748295
}
.advantage-table td { padding:16px 20px; font-size:15px; color:#CBD5E1; border-bottom:1px solid rgba(0,0,0,.06); }
.advantage-table .col-feature { color:#E2E8F0; font-weight:600; 
  color:var(--weaver-slate);
}
.advantage-table .col-before { color:#94A3B8;  
  color:var(--weaver-slate);
}
.advantage-table .col-after { color:#93C5FD;
  color:var(--weaver-blue);
}
.advantage-table tr:hover td { background:rgba(255,255,255,.02); }

.deploy-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.deploy-card {
  background:#fff; border:2px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:36px 28px; text-align:center; transition:var(--transition); cursor:pointer;
}
.deploy-card:hover { border-color:var(--weaver-blue); transform:translateY(-4px); box-shadow:var(--shadow-md); }
.deploy-card .dc-icon { font-size:48px; margin-bottom:16px; }
.deploy-card h3 { font-size:18px; font-weight:700; color:var(--weaver-slate); margin-bottom:8px; }
.deploy-card p { font-size: var(--font-min); color:var(--weaver-slate-3); line-height:1.5; margin-bottom:16px; }
.deploy-card .dc-price { font-size:13px; color:var(--weaver-blue); font-weight:600; padding:6px 16px; background:var(--weaver-blue-50); border-radius:100px; display:inline-block; }

/* 方案价值卡片（样式对齐部署模式） */
.solvalue-card {
  background:#fff; border:2px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:36px 28px; text-align:center; transition:var(--transition); cursor:pointer;
}
.solvalue-card:hover { border-color:var(--weaver-blue); transform:translateY(-4px); box-shadow:var(--shadow-md); }
.solvalue-card .sv-icon { color:var(--weaver-blue); font-size:46px; margin-bottom:16px; line-height:1; }
.solvalue-card .sv-icon svg { width:1em; height:1em; display:inline-block; }
.solvalue-card h3 { font-size:18px; font-weight:700; color:var(--weaver-slate); margin-bottom:8px; }
.solvalue-card p { font-size:var(--font-min); color:var(--weaver-slate-3); line-height:1.6; margin-bottom:0; }

.scene-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.scene-item {
  background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:32px 20px; text-align:center; transition:var(--transition);
}
.scene-item:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--weaver-blue-light); }
.scene-item .si-icon { font-size:40px; margin-bottom:12px; }
.scene-item h3 { font-size:16px; font-weight:700; color:var(--weaver-slate); margin-bottom:6px; }
.scene-item p { font-size:13px; color:var(--weaver-slate-3); line-height:1.6; }

.solvalue-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

.solutionAdvantages{
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:var(--radius-xl);padding:20px;overflow-x:auto;
  background: var(--weaver-bg-light);
  border: 1px solid var(--border-Normal);
}

/* 三种可落地的改造路径（静态 partial 组件 · 对应 demo 的 SolutionPaths） */
.solpath-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.solpath-card {
  position:relative; background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  overflow:hidden; transition:var(--transition); display:flex; flex-direction:column;
  background: rgba(255, 255, 255, .03);
  border: 2px solid rgba(255, 255, 255, .02);
}
/* .solpath-card.recommended {
  border:2px solid #2468F2;
  box-shadow:0 14px 34px rgba(36,104,242,.13);
} */
.solpath-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); 
  border:2px solid #2468F2;
  box-shadow:0 14px 34px rgba(36,104,242,.13);
}
.solpath-bar { height:6px; 
  background: #2468F2;
}
.solpath-inner { padding:28px 26px 30px; display:flex; flex-direction:column; flex:1; }
.solpath-top { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:18px; }
.solpath-num { font-size:46px; font-weight:900; line-height:1; opacity:.12; 
  color: rgba(255,255,255,.48);
}
.solpath-tag {
  display:inline-flex; align-items:center; gap:4px;
  padding:4px 10px; border-radius:999px; font-size:11px; font-weight:600; color:#fff; white-space:nowrap;
}
.solpath-tag .sp-star { font-size:12px; line-height:1; margin-bottom: 2px;}
.solpath-tag .i3d { vertical-align:-1px; }
.solpath-title { font-size:19px; font-weight:700; color:var(--weaver-slate); margin-bottom:6px; 
  color: #ffffff;
}
.solpath-sub { font-size:13px; font-weight:600; margin-bottom: 2px; 
  color: var(--weaver-blue-light);
}
.solpath-desc { font-size:13.5px; color:var(--weaver-slate-3); line-height:1.7; min-height:72px; margin-bottom:18px; 
  color: rgba(255,255,255,.64);
}
.solpath-block { margin-top:auto; }
.solpath-block + .solpath-block { margin-top:14px; }
.solpath-block-h { font-size:12px; color:var(--weaver-slate-4); margin-bottom:8px; 
  color: rgba(255,255,255,.36);
}
.solpath-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.solpath-list li { display:flex; align-items:flex-start; gap:8px; font-size:13px; line-height:1.5; }
.solpath-list li > span:last-child { color:var(--weaver-slate); 
  color: rgba(255,255,255,.64);
}
.solpath-list.solpath-cons li > span:last-child { color:var(--weaver-slate-3); 
  color: rgba(255,255,255,.64);
}
.sp-ico { flex-shrink:0; width:14px; height:14px; margin-top:2px; }
.sp-check { color:var(--weaver-green); font-weight:700; font-size:13px; line-height:1.4; }
.solpath-list .sp-ico.i3d { color:var(--weaver-slate-4); }

/* ===================== 技术架构 tech ===================== */
.tech-arch-wrap {
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius-xl); padding:48px; backdrop-filter:blur(10px);
}
.tech-arch-layer { margin-bottom:16px; position:relative; }
.tech-arch-layer:last-child { margin-bottom:0; }
.tech-arch-layer-header { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.tech-arch-layer-badge {
  width:40px; height:40px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:700; color:#fff;
}
.tech-arch-layer-title { font-size:18px; font-weight:700; color:#E2E8F0; }
.tech-arch-layer-desc { font-size:13px; color:#64748B; margin-left:auto; }
.tech-arch-modules { display:flex; gap:12px; flex-wrap:wrap; padding-left:52px; }
.tech-arch-module {
  padding:12px 20px; border-radius:10px;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  font-size:14px; color:#CBD5E1; font-weight:500; transition:var(--transition);
  display:flex; align-items:center; gap:8px;
}
.tech-arch-module:hover { background:rgba(26,86,219,.15); border-color:rgba(59,130,246,.3); color:#93C5FD; }
.tech-arch-module .tm-dot { width:8px; height:8px; border-radius:50%; }

.crypto-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.crypto-card {
  background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:36px 28px; transition:var(--transition);
}
.crypto-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--weaver-blue-light); }
.crypto-card .cc-header { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.crypto-card .cc-badge {
  width:56px; height:56px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:18px; font-weight:900; color:#fff;
}
.crypto-card h3 { font-size:20px; font-weight:700; color:var(--weaver-slate); }
.crypto-card .cc-type { font-size:13px; color:var(--weaver-slate-3); }
.crypto-card .cc-desc { font-size:15px; color:var(--weaver-slate-3); line-height:1.7; margin-bottom:16px; }
.crypto-card .cc-usage { font-size:13px; color:var(--weaver-blue); font-weight:600; padding-top:14px; border-top:1px solid #F1F5F9; }
.crypto-card .cc-spec { font-size:14px; color:var(--weaver-slate-2); margin-bottom:4px; }

.security-stack { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.stack-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg); padding:32px 28px; transition:var(--transition);
}
.stack-card:hover { background:rgba(255,255,255,.06); border-color:rgba(59,130,246,.2); }
.stack-card .sc-icon { font-size:32px; margin-bottom:16px; }
.stack-card h3 { font-size:18px; font-weight:700; color:#E2E8F0; margin-bottom:12px; }
.stack-card .sc-items { display:flex; flex-direction:column; gap:8px; }
.stack-card .sc-item {
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 16px; border-radius:8px;
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.05);
}
.stack-item-name { font-size:14px; color:#CBD5E1; }
.stack-item-tag { font-size:12px; padding:2px 10px; border-radius:4px; font-weight:600; }
.tag-green { background:rgba(16,185,129,.15); color:var(--weaver-green); }
.tag-blue { background:rgba(26,86,219,.15); color:#93C5FD; }
.tag-amber { background:rgba(245,158,11,.15); color:var(--weaver-amber); }

.xinchuang-table { width:100%; border-collapse:collapse; }
.xinchuang-table th { padding:14px 20px 14px 0px; text-align:left; font-size:14px; font-weight:700; color:#94A3B8; border-bottom:2px solid rgba(255,255,255,.08); }
.xinchuang-table td { padding:14px 20px 14px 0px; font-size:15px; color: var(--weaver-slate); border-bottom:1px solid var(--border-Normal); }
.xinchuang-table tr:last-child td {
  border-bottom:none; 
}
.xinchuang-table .xc-cat { color: var(--weaver-slate); font-weight:600; }
.xinchuang-table .xc-status { display:inline-block; padding:2px 10px; border-radius:4px; font-size:12px; font-weight:600; background:rgba(16,185,129,.15); color:var(--weaver-green); }

.perf-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.perf-card {
  background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:32px 20px; text-align:center; transition:var(--transition);
}
.perf-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--weaver-blue-light); }
.perf-card .pc-num { font-size:40px; font-weight:900; color:var(--weaver-blue); margin-bottom:8px; }
.perf-card .pc-unit { font-size:18px; font-weight:700; color:var(--weaver-slate-3); }
.perf-card .pc-label { font-size:14px; color:var(--weaver-slate-3); margin-top:4px; }
.perf-card .pc-desc { font-size:12px; color:var(--weaver-slate-4); margin-top:8px; }

.cert-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.cert-card {
  background:#fff; border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:36px 28px; transition:var(--transition); display:flex; gap:20px; align-items:flex-start;
}
.cert-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--weaver-blue-light); }
.cert-card .cert-icon {
  width:56px; height:56px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:var(--weaver-blue-50);
  color: var(--weaver-blue);
  font-size:15px;
  font-weight: bold;
}
.cert-card h3 { font-size:17px; font-weight:700; color:var(--weaver-slate); margin-bottom:6px; }
.cert-card p { font-size:14px; color:var(--weaver-slate-3); line-height:1.7; }
.cert-card .cert-no { font-size:12px; color:var(--weaver-blue); font-weight:600; margin-top:8px; }

/* 技术矩阵卡片 */
.tech-matrix-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.tm-card {
  position:relative; 
  background:#fff; 
  border:1px solid #E2E8F0; border-radius:var(--radius-lg);
  padding:30px 26px 28px; transition:all .3s cubic-bezier(.4,0,.2,1); overflow:hidden;
  display:flex; flex-direction:column;
}
.tm-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--weaver-blue-light), var(--weaver-blue));
  z-index:2;
}
.tm-card:hover { transform:translateY(-6px); box-shadow:0 18px 40px -16px rgba(26,86,219,.28); border-color:rgba(26,86,219,.4); }
.tm-card:hover .tm-icon { transform:translateY(-2px); }
.tm-num {
  position:absolute; top:14px; right:18px; font-size:38px; font-weight:900;
  color:#F1F5F9; line-height:1; z-index:0; letter-spacing:-1px;
}
.tm-tag {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  font-size: 12px;
  font-weight:600;
  line-height: 18px;
  letter-spacing: .5px;
  color: var(--weaver-blue);
  border-radius: 999px;
}
.tm-icon {
  width:56px; height:56px; border-radius:14px; margin-bottom:18px; position:relative; z-index:1;
  display:flex; align-items:center; justify-content:center;
  background:var(--weaver-blue-50); color:var(--weaver-blue);
  transition:transform .3s ease;
}
.tm-card h3 { font-size:17px; font-weight:700; color:var(--weaver-slate); margin-bottom:10px; position:relative; z-index:1; }
.tm-card p { font-size:13.5px; color:var(--weaver-slate-3); line-height:1.75; position:relative; z-index:1; }

/* ===================== 首页核心能力 Tab ===================== */
.home-tabs { margin-top: 52px; }
.home-tab-nav {
  width: 64%;
  max-width: 900px;
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  background: #ffffff;
  border-radius: 100px;
  padding: 0 14px;
  /* box-shadow: 0 12px 30px -14px rgba(30,64,175,.20); */
  border: 1px solid var(--border-Normal);
}
.home-tab-link {
  border: none;
  cursor: pointer;
  border-radius: 100px;
  padding: 0 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 44px;
  white-space: nowrap;
  color: var(--weaver-slate-2);
  background: transparent;
  margin: 8px 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.home-tab-link i{
  font-style: normal;
}
.home-tab-link:hover { color: #ffffff; background: var(--weaver-blue); }
.home-tab-link.active {
  color: #ffffff;
  background: var(--weaver-blue);
  box-shadow: 0 10px 20px -8px rgba(37,99,235,.55);
}
.home-tab-link:focus-visible { outline: 2px solid var(--weaver-blue); outline-offset: 2px; }
.home-tab-panels { position: relative; }
.home-tab-panel { display: none; }
.home-tab-panel.active {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 96px;
  align-items: center;
  animation: homeTabIn .4s ease both;
}
@keyframes homeTabIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.home-tab-panel .product-rightbox {
  background: #ffffff;
  /* border: 1px solid #E8EDF5; */
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 24px 54px -26px rgba(30,64,175,.16);
}
.home-tab-panel .product-rightbox img {
  width: 100%; height: auto; display: block; border-radius: 12px;
}

/* ===================== 新闻详情（News Detail，参考 e-nation 详情页风格） ===================== */
/* 新闻详情 Banner：高度小于其它子页面，仅承载标题 */
.page-banner.nd-banner {
  height: 400px; min-height: 400px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--weaver-blue-dark);
}
.page-banner.nd-banner .page-banner-content { margin: 0; }
.page-banner.nd-banner h1 {
  font-size: 32px; font-weight: 900; color: #fff; margin-top: 28px; margin-bottom: 24px; line-height: 1.4;
}
/* banner 内元信息：发布时间 · 浏览次数（白色半透明小字，置于标题下方） */
.nd-metaban { display: flex; align-items: center; justify-content: center; gap: 30px; font-size: 13px; line-height: 20px; color: rgba(255,255,255,0.82); margin-top: 4px; }
/* 正文容器：窄栏居中，元信息/摘要/正文同宽对齐 */
.nd-body { padding: 48px 0 90px; }
.nd-article { max-width: 860px; margin: 0 auto; }
.nd-title {
  font-size: 30px; font-weight: 800; color: #1a2233;
  line-height: 1.4; margin: 0 0 14px; max-width: 920px;
}
/* 标题下 2px 黑色分隔线（对应参考页 detailstext_line: border-bottom:2px solid #000） */
.nd-rule { width: 100%; border-bottom: 2px solid #1a2233; padding-bottom: 4px; margin-bottom: 4px; }
.nd-summary {
  background: #F8FAFC; border-left: 4px solid var(--weaver-blue);
  padding: 16px 20px; border-radius: var(--radius-sm);
  color: var(--weaver-slate-2); font-size: 15px; line-height: 1.85;
  max-width: 100%;
}
/* 正文色块：浅蓝背景 + 内边距 + 外边距，承载正文 */
.nd-content-box {
  background: #F4F7FB; border: 1px solid #E6ECF3;
  border-radius: var(--radius-sm);
  padding: 32px 36px; margin: 26px 0 0;
}
/* 正文：16px / 行高30px / 色 #333（对应参考页 detailstext_main） */
.nd-content {
  max-width: none; margin: 0;
  font-size: 16px; line-height: 30px; color: #333;
}
.nd-content img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 22px 0; display: inline-block; }
.nd-content h2, .nd-content h3, .nd-content h4 { color: #1a2233; line-height: 1.45; margin: 34px 0 16px; }
.nd-content h2 { font-size: 23px; }
.nd-content h3 { font-size: 19px; }
.nd-content strong { color: #1a2233; font-weight: 700; }
.nd-content a { color: var(--weaver-blue); }
.nd-loading { color: var(--weaver-slate-3); }
