/* ===== 星顺科技官网原型 · 共享样式 ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #123a6b;        /* 深蓝主色 */
  --primary-dark: #0b2a4e;
  --accent: #e8681c;         /* 橙强调色 */
  --accent-light: #fff3e8;
  --ink: #2b3a4a;
  --muted: #6b7a8c;
  --line: #e4eaf1;
  --bg: #f5f7fa;
  --blue-bg: #eef4fb;
  --green: #3f9e4d;
  --green-bg: #eef8ef;
}
body { font-family: "Microsoft YaHei", "PingFang SC", sans-serif; color: var(--ink); line-height: 1.75; background: #fff; }
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- 顶部条 ---- */
.topbar { background: var(--primary-dark); color: #b9c8da; font-size: 13px; }
.topbar .wrap { display: flex; justify-content: space-between; padding-top: 6px; padding-bottom: 6px; }
.topbar b { color: #fff; font-weight: 600; }

/* ---- 导航 ---- */
.navbar { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.navbar .wrap { display: flex; align-items: center; height: 64px; }
.logo { font-size: 20px; font-weight: 700; color: var(--primary); margin-right: 48px; white-space: nowrap; line-height: 1.2; }
.logo span { color: var(--accent); }
.logo small { display: block; font-size: 11px; color: var(--muted); font-weight: 400; letter-spacing: 1px; line-height: 1.2; margin-top: 3px; }
.nav { display: flex; list-style: none; flex: 1; }
.nav > li { position: relative; }
.nav > li > a { display: block; padding: 0 18px; line-height: 64px; color: var(--ink); font-size: 15px; }
.nav > li > a:hover, .nav > li.active > a { color: var(--accent); }
.nav > li.active > a { border-bottom: 2px solid var(--accent); }
.dropdown { display: none; position: absolute; top: 64px; left: 0; background: #fff; min-width: 240px; box-shadow: 0 8px 24px rgba(11,42,78,.12); border-radius: 0 0 8px 8px; padding: 8px 0; }
.nav > li:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 20px; font-size: 14px; color: var(--ink); }
.dropdown a:hover { background: var(--accent-light); color: var(--accent); }
.dropdown a small { display: block; color: var(--muted); font-size: 12px; }
.nav-cta { background: var(--accent); color: #fff !important; border-radius: 4px; padding: 8px 20px !important; line-height: 1.6 !important; align-self: center; margin-left: 12px; }
.nav-cta:hover { background: #d05a12; }

/* ---- Hero ---- */
.hero { background: linear-gradient(120deg, #0b2a4e, #16457c); color: #fff; padding: 88px 0 96px; }
.hero h1 { font-size: 40px; line-height: 1.4; margin-bottom: 18px; font-weight: 700; }
.hero .sub { font-size: 20px; color: #ffd9b8; margin-bottom: 12px; font-weight: 600; }
.hero .desc { color: #b9c8da; max-width: 720px; margin-bottom: 36px; }
/* Hero 右侧产品截图（浏览器框样式） */
.hero-grid { display: flex; align-items: center; gap: 56px; }
.hero-text { flex: 1 1 52%; }
.hero-shot { flex: 1 1 48%; }
.shot-frame { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 24px 60px rgba(3, 16, 34, .45); }
.shot-frame .bar { display: flex; gap: 6px; padding: 10px 12px; background: #edf1f6; }
.shot-frame .bar i { width: 10px; height: 10px; border-radius: 50%; background: #c5cfdb; }
.shot-frame img { display: block; width: 100%; height: auto; }
/* Hero 截图轮播：3 帧淡入淡出 + 圆点，4.5s/帧，悬停暂停（2026-08-19 迭代） */
.hero-carousel { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #f0f3f8; }
.hero-carousel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; transition: opacity .8s ease; }
.hero-carousel img.on { opacity: 1; }
.hero-dots { display: flex; gap: 8px; justify-content: center; align-items: center; padding: 9px 0; background: #edf1f6; }
.hero-dots i { width: 8px; height: 8px; border-radius: 50%; background: #c5cfdb; cursor: pointer; transition: background .3s; }
.hero-dots i.on { background: var(--accent); }
@media (max-width: 900px) {
  .hero-grid { flex-direction: column; gap: 36px; }
  .hero-shot { width: 100%; }
}
.btn { display: inline-block; padding: 12px 32px; border-radius: 4px; font-size: 16px; margin-right: 16px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-ghost { border: 1px solid #7d93ad; color: #dce6f2; }
.btn-ghost:hover { border-color: #fff; color: #fff; }

/* ---- 版块通用 ---- */
.section { padding: 72px 0; }
.section.alt { background: var(--bg); }
.sec-title { text-align: center; font-size: 30px; margin-bottom: 8px; }
.sec-sub { text-align: center; color: var(--muted); margin-bottom: 48px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.card { background: #fff; border: 1px solid #dbe3ec; border-radius: 8px; padding: 28px 24px; box-shadow: 0 2px 12px rgba(11,42,78,.07); }
.card h3 { font-size: 18px; margin-bottom: 12px; color: var(--primary); }
.card .lines { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.card .one { font-size: 14px; border-top: 1px dashed var(--line); padding-top: 12px; }
.card .link { font-size: 13px; color: var(--accent); display: inline-block; margin-top: 10px; }
.card:hover { box-shadow: 0 10px 28px rgba(11,42,78,.13); }

/* ---- 对比表 ---- */
table.vs { width: 100%; border-collapse: collapse; background: #fff; }
table.vs th, table.vs td { border: 1px solid var(--line); padding: 14px 18px; text-align: left; font-size: 15px; }
table.vs th { background: var(--blue-bg); color: var(--primary); width: 50%; }

/* ---- 截图展示 ---- */
.shot { border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 32px rgba(11,42,78,.14); overflow: hidden; }
.shot figcaption { background: var(--bg); font-size: 13px; color: var(--muted); padding: 8px 14px; }

/* ---- 首页③ 产品四域截图卡 ---- */
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pcard { background: #fff; border: 1px solid #dbe3ec; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(11,42,78,.07); }
.pcard:hover { box-shadow: 0 8px 24px rgba(11,42,78,.10); }
.pcard .pshot { aspect-ratio: 16 / 9; overflow: hidden; border-bottom: 1px solid var(--line); background: #f0f3f8; }
.pcard .pshot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.pcard h3 { font-size: 18px; color: var(--primary); margin: 18px 24px 8px; }
.pcard p { font-size: 14px; color: var(--muted); margin: 0 24px 22px; }
@media (max-width: 900px) { .pgrid { grid-template-columns: 1fr; } }

/* ---- 案例 ---- */
.case { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 8px; padding: 28px 32px; margin-bottom: 24px; }
.case h3 { color: var(--primary); margin-bottom: 14px; font-size: 19px; }
.case .crow { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; font-size: 15px; }
.case .ctag { flex: 0 0 74px; text-align: center; background: var(--accent-light); color: var(--accent); font-size: 13px; font-weight: 600; border-radius: 4px; padding: 3px 0; margin-top: 2px; white-space: nowrap; }
.case .cbody { flex: 1; }
.case .cbody b { color: var(--primary); }
.case .cbody ul { margin: 0; padding: 0; list-style: none; }
.case .cbody li { position: relative; padding: 2px 0 2px 20px; }
.case .cbody li::before { content: ""; position: absolute; left: 4px; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.case .quote { color: var(--muted); font-style: italic; margin-top: 12px; border-top: 1px dashed var(--line); padding-top: 12px; }
.logos { display: flex; gap: 32px; justify-content: space-between; align-items: center; flex-wrap: wrap; padding: 32px 0 0; }
.logos img { flex: 1 1 160px; min-width: 0; box-sizing: border-box; height: auto; padding: 6px 10px; background: #fff; border: 1px solid #dbe3ec; border-radius: 8px; }

/* ---- 首页⑤ 案例引流卡 ---- */
.ccard { background: #fff; border: 1px solid #dbe3ec; border-radius: 10px; padding: 26px 24px; box-shadow: 0 2px 12px rgba(11,42,78,.07); display: flex; flex-direction: column; }
.ccard:hover { box-shadow: 0 10px 28px rgba(11,42,78,.13); }
.ccard .cind { align-self: flex-start; background: var(--blue-bg); color: var(--primary); font-size: 13px; border-radius: 4px; padding: 3px 12px; margin-bottom: 14px; }
.ccard h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.ccard .cone { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.ccard .cstats { display: flex; gap: 8px; border-top: 1px dashed var(--line); padding-top: 16px; margin-top: auto; margin-bottom: 14px; }
.ccard .cstats div { flex: 1; text-align: center; }
.ccard .cstats b { display: block; font-size: 22px; color: var(--accent); margin-bottom: 2px; }
.ccard .cstats span { font-size: 12px; color: var(--muted); }
.ccard .link { display: block; text-align: center; font-size: 13px; color: var(--accent); }
/* 案例卡痛点列表（2026-08-19） */
.ccard .cpains { margin: -4px 0 16px; }
.ccard .cptag { display: inline-block; font-size: 12px; font-weight: 600; color: #c0554a; background: #f9ecea; border-radius: 4px; padding: 2px 10px; margin-bottom: 8px; }
.ccard .cpains ul { margin: 0; padding: 0; list-style: none; }
.ccard .cpains li { font-size: 13px; color: var(--muted); line-height: 1.9; padding-left: 13px; position: relative; }
.ccard .cpains li::before { content: ''; position: absolute; left: 0; top: .78em; width: 5px; height: 5px; border-radius: 50%; background: #d8a49e; }

/* ---- 场景速览 ---- */
.scene { display: block; background: linear-gradient(135deg, #16457c, #123a6b); color: #fff; border-radius: 8px; padding: 28px; }
.scene h3 { color: #ffd9b8; margin-bottom: 10px; }
.scene p { font-size: 14px; color: #c6d4e4; }
.scene .go { color: #fff; font-size: 13px; margin-top: 14px; display: inline-block; }
.scene:hover { background: linear-gradient(135deg, #1b528f, #16457c); }

/* ---- CTA ---- */
.cta { background: var(--primary-dark); color: #fff; padding: 64px 0; }
.cta h2 { font-size: 28px; margin-bottom: 8px; }
.cta .sub { color: #b9c8da; margin-bottom: 28px; }
.cta form { display: flex; gap: 12px; flex-wrap: wrap; }
.cta input, .cta select { padding: 12px 16px; border-radius: 4px; border: 1px solid #3a5a80; background: #103257; color: #fff; font-size: 15px; min-width: 180px; }
.cta input::placeholder { color: #8aa2bc; }
.cta button { background: var(--accent); color: #fff; border: 0; padding: 12px 36px; border-radius: 4px; font-size: 16px; cursor: pointer; }
.cta .promise { color: #8aa2bc; font-size: 13px; margin-top: 16px; }
.cta .tel { font-size: 22px; color: #ffd9b8; font-weight: 700; margin-top: 8px; }

/* ---- 页脚 ---- */
.footer { background: #0b2038; color: #8aa2bc; padding: 48px 0 24px; font-size: 14px; }
.footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.7fr; gap: 20px; margin-bottom: 32px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer a { display: block; color: #8aa2bc; padding: 3px 0; font-size: 13px; }
.footer a:hover { color: #ffd9b8; }
.footer .brand { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.footer .copy { border-top: 1px solid #1d3a5c; padding-top: 18px; text-align: center; font-size: 12px; color: #5f7590; }
/* 版权行内的备案号链接保持内联，不被上方 .footer a{display:block} 顶成独立行 */
.footer .copy a { display: inline; padding: 0; font-size: inherit; }
/* 联系我们栏：热线较长禁止换行（栏距已收窄、本栏加宽，2026-08-18 迭代） */
.footer .contact a { white-space: nowrap; }
.footer .wechat-qr { display: block; width: 96px; height: 96px; border-radius: 6px; background: #fff; padding: 4px; margin-top: 12px; box-sizing: border-box; }

/* ---- 子页页头 ---- */
.pagehead { background: linear-gradient(120deg, #0b2a4e, #16457c); color: #fff; padding: 56px 0; position: relative; overflow: hidden; }
.pagehead::before { content: ""; position: absolute; top: -50%; right: -120px; width: 560px; height: 200%; background: repeating-linear-gradient(115deg, rgba(255,255,255,.15) 0 2px, transparent 2px 24px); pointer-events: none; }
.pagehead .wrap { position: relative; }
.pagehead .crumb { font-size: 13px; color: #8aa2bc; margin-bottom: 12px; }
.pagehead h1 { font-size: 32px; margin-bottom: 10px; }
.pagehead .sub { color: #c6d4e4; max-width: 760px; }

/* ---- 专题页 ---- */
/* 痛点列表：卡片化（2026-08-19 数据贯通页迭代，全站共用） */
.pain { margin: 0; padding: 0; }
.pain li { list-style: none; background: #fff; border: 1px solid #dbe3ec; border-left: 4px solid var(--accent); border-radius: 8px; padding: 20px 24px; box-shadow: 0 2px 12px rgba(11,42,78,.07); font-size: 15px; line-height: 1.7; color: var(--ink); }
.diag { background: var(--accent-light); border-left: 4px solid var(--accent); border-radius: 6px; padding: 24px 28px; font-size: 16px; }
.steps { counter-reset: s; }
.steps li { list-style: none; counter-increment: s; padding: 14px 0 14px 52px; position: relative; border-bottom: 1px dashed var(--line); }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 12px; width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; text-align: center; line-height: 34px; font-weight: 700; }
.steps li b { color: var(--primary); }
/* 横排四步流程卡（2026-08-19 数据贯通页：替代 1234 竖排列表，卡片+箭头） */
.flow4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.fl-step { background: #fff; border: 1px solid #dbe3ec; border-radius: 10px; padding: 24px 22px; box-shadow: 0 2px 12px rgba(11,42,78,.07); position: relative; }
.fl-step:not(:last-child)::after { content: "→"; position: absolute; right: -31px; top: 38px; font-size: 22px; color: var(--accent); font-weight: 700; }
.fl-no { display: block; font-size: 30px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.fl-step h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
.fl-step p { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 0; }
@media (max-width: 900px) { .flow4 { grid-template-columns: 1fr; gap: 20px; } .fl-step:not(:last-child)::after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -26px; transform: translateX(-50%); } }
.platform-band { background: var(--blue-bg); border-radius: 8px; padding: 28px 32px; }
.platform-band h3 { color: var(--primary); margin-bottom: 10px; }

/* ---- EA 全景图 ---- */
.eamap { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
.ea-roof { margin-bottom: 14px; }
.ea-goal { clip-path: polygon(50% 0, 100% 100%, 0 100%); background: linear-gradient(180deg, #1a4f8a, var(--primary)); color: #fff; border: none; text-align: center; padding: 58px 16% 18px; font-weight: 600; }
.ea-goal b { font-size: 17px; }
.ea-goal small { display: block; font-size: 13px; font-weight: 400; opacity: .88; margin-top: 5px; }
.ea-card { border: 1.5px solid; border-radius: 8px; padding: 14px 16px 16px; margin-bottom: 14px; }
.ea-card:last-child { margin-bottom: 0; }
.ea-card.inc { border-color: #2f6fc2; background: #f6fafd; }
.ea-card.inc .ea-card-head { color: #2f6fc2; }
.ea-card.sto { border-color: #3f9e4d; background: #f7fbf5; }
.ea-card.sto .ea-card-head { color: #3f9e4d; }
.ea-card.gov { border-color: #b98a2f; background: #fdf6e7; }
.ea-card.gov .ea-card-head { color: #b98a2f; }
.ea-card-head { font-size: 15px; font-weight: 600; margin-bottom: 10px; text-align: center; }
.ea-card-head span { font-size: 12px; font-weight: 400; color: var(--muted); margin-left: 8px; }
.ea-card-text { font-size: 14px; text-align: center; padding: 4px 0; }
.ea-boxes { display: flex; gap: 10px; flex-wrap: wrap; }
.ea-box { border-radius: 6px; padding: 10px 14px; font-size: 14px; flex: 1; min-width: 130px; text-align: center; border: 1.5px solid; position: relative; background: #fff; }
.ea-box small { display: block; font-size: 11px; color: var(--muted); font-weight: 400; line-height: 1.8; margin-top: 3px; }
.wing-inc { border-color: #2f6fc2; }
.wing-sto { border-color: #3f9e4d; }
@media (max-width: 900px) { .ea-goal { padding: 40px 10% 14px; } .ea-goal b { font-size: 15px; } .ea-goal small { font-size: 12px; } }

/* ---- 文章卡 ---- */
.article { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; }
.article h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.article p { font-size: 14px; color: var(--muted); }
.article .tag { display: inline-block; font-size: 12px; background: var(--blue-bg); color: var(--primary); border-radius: 3px; padding: 2px 10px; margin-top: 12px; }

.note { background: #fdf6e7; border: 1px dashed #b98a2f; border-radius: 6px; padding: 14px 18px; font-size: 13px; color: #8a6d2f; margin: 24px 0; }
@media (max-width: 900px) { .grid4, .grid3, .grid2 { grid-template-columns: 1fr; } .nav { display: none; } }

/* ---- WordPress 适配 ---- */
ul.dropdown { list-style: none; }
.dropdown li { display: block; }
.dropdown li a { display: block; padding: 10px 20px; font-size: 14px; color: var(--ink); }
.dropdown li a:hover { background: var(--accent-light); color: var(--accent); }
.dropdown li a small { display: block; color: var(--muted); font-size: 12px; }
.entry-content p { margin-bottom: 16px; }
.entry-content h2, .entry-content h3 { color: var(--primary); margin: 28px 0 14px; }
.entry-content ul, .entry-content ol { padding-left: 22px; margin-bottom: 16px; }
.entry-content img { border-radius: 8px; border: 1px solid var(--line); }
.entry-content blockquote { border-left: 4px solid var(--accent); background: var(--accent-light); padding: 14px 20px; border-radius: 6px; margin: 20px 0; }
.nav-links { display: flex; gap: 12px; justify-content: center; }
.nav-links .page-numbers { padding: 6px 14px; border: 1px solid var(--line); border-radius: 4px; }
.nav-links .current { background: var(--primary); color: #fff; border-color: var(--primary); }
/* CF7 表单在 CTA 深色区的适配 */
/* CF7 真实表单：单行等高排列（2026-08-19 修订：字段无 label 包裹，span 须 flex 1 1 0 + min-width 0，
   否则 CF7 默认 size="40" 的固有宽度会把 span 撑到 ~450px，四个字段挤成两行） */
.cta .wpcf7-form { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 0; }
.cta .wpcf7-form p { display: contents; margin: 0; } /* 拆除 CF7 自动插入的 <p> 包装，让字段直接成为弹性子项 */
.cta .wpcf7-form br { display: none; } /* 去掉 CF7 自动插入的换行 */
.cta .wpcf7-form .wpcf7-form-control-wrap { flex: 1 1 0; min-width: 0; display: block; }
.cta .wpcf7-form-control.wpcf7-text, .cta .wpcf7-form-control.wpcf7-select { width: 100%; height: 46px; line-height: 46px; padding: 0 14px; border-radius: 4px; border: 1px solid #3a5a80; background: #103257; color: #fff; font-size: 15px; min-width: 0; box-sizing: border-box; }
.cta .wpcf7-form-control.wpcf7-submit { flex: 0 0 auto; width: auto; min-width: 0; height: 46px; line-height: 46px; padding: 0 42px; background: var(--accent); color: #fff; border: 0; border-radius: 4px; font-size: 16px; cursor: pointer; box-sizing: border-box; }
.cta .wpcf7-form-control.wpcf7-submit:hover { background: #d05a12; }
.cta .wpcf7-form .wpcf7-spinner { position: absolute; margin: 0 0 0 8px; }
.cta .wpcf7-response-output { color: #ffd9b8; border: 0; width: 100%; margin: 12px 0 0; padding: 0; }
.cta .wpcf7-not-valid-tip { color: #ffb27d; font-size: 13px; margin-top: 4px; }
@media (max-width: 900px) {
  .cta .wpcf7-form { flex-wrap: wrap; }
  .cta .wpcf7-form .wpcf7-form-control-wrap { flex: 1 1 46%; }
  .cta .wpcf7-form .wpcf7-submit { flex: 1 1 100%; }
}
/* 洞察分类筛选条 */
.catbar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.catbar a { padding: 7px 18px; border: 1px solid #d7e0ea; border-radius: 999px; color: var(--primary); font-size: 14px; }
.catbar a small { color: #93a5b8; margin-left: 4px; }
.catbar a:hover, .catbar a.on { background: var(--primary); border-color: var(--primary); color: #fff; }
.catbar a:hover small, .catbar a.on small { color: #cfe0f2; }

/* ---- 数据治理页：数据战略六块（金字塔+两侧引线注文） ---- */
.pyramid { max-width: 1100px; margin: 0 auto; }
.pyr-row { display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.pyr-side { width: 260px; flex: none; }
.pyr-side.l { text-align: right; }
.pyr-side b { display: block; font-size: 16px; color: #1a2b3c; }
.pyr-side small { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.lead { width: 70px; flex: none; height: 2px; background: #b6c3d2; }
.lead.off { visibility: hidden; }
.pyr-slice { height: 62px; flex: none; display: flex; align-items: center; justify-content: center; }
.pyr-slice svg { width: 26px; height: 26px; }
.pyr-slice.s1 svg { width: 22px; height: 22px; margin-top: 14px; }
.pyr-slice.s1 { width: 65px; clip-path: polygon(50% 0, 100% 100%, 0 100%); background: var(--accent); }
.pyr-slice.s2 { width: 134px; clip-path: polygon(24.3% 0, 75.7% 0, 100% 100%, 0 100%); background: #16457c; }
.pyr-slice.s3 { width: 203px; clip-path: polygon(16% 0, 84% 0, 100% 100%, 0 100%); background: #1c4f8c; }
.pyr-slice.s4 { width: 272px; clip-path: polygon(11.9% 0, 88.1% 0, 100% 100%, 0 100%); background: #2563a8; }
.pyr-slice.s5 { width: 341px; clip-path: polygon(9.5% 0, 90.5% 0, 100% 100%, 0 100%); background: #2f6fc2; }
.pyr-slice.s6 { width: 410px; clip-path: polygon(7.9% 0, 92.1% 0, 100% 100%, 0 100%); background: #3d7cc8; }

/* ---- 数据治理页：路径总览 ---- */
.pathmap { max-width: 1000px; margin: 0 auto; }
.pm-band { display: flex; gap: 14px; align-items: center; background: #eef4fb; border-radius: 10px; padding: 16px 18px; }
.pm-label { flex: 0 0 84px; font-size: 16px; font-weight: 700; color: var(--primary); text-align: center; }
.pm-body { flex: 1; min-width: 0; }
.pm-row { display: flex; align-items: center; gap: 8px; }
.pm-row.rev { flex-direction: row-reverse; }
.pm-row i { color: var(--primary); font-style: normal; font-weight: 700; }
.pm-box { flex: 1; background: #fff; border: 1px solid #c9d8e8; border-radius: 6px; padding: 9px 6px; text-align: center; font-size: 13px; }
.pm-box.w2 { flex: 2.2; }
.pm-turn { text-align: right; color: var(--primary); font-weight: 700; padding: 2px 10%; }
.pm-links { position: relative; height: 30px; }
.pm-links .up45 { position: absolute; left: 24%; top: 3px; transform: translateX(-50%); color: var(--primary); font-weight: 700; font-style: normal; }
.pm-links .down { position: absolute; right: 8%; top: 3px; color: var(--primary); font-weight: 700; }
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pm-grid .pm-box { padding: 11px 6px; }
.pm-next { text-align: center; color: var(--primary); font-size: 18px; font-weight: 700; margin: 8px 0; }

/* ---- 企业架构页：案例三栏（子卡片+彩色标签） / 建设顺序 SVG 流程图 ---- */
.case3 { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 16px; margin-top: 16px; }
.case-cell { background: #f7fafd; border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; }
.case-cell p { font-size: 14px; color: #3a4a5c; line-height: 1.8; }
.case-tag { display: inline-block; font-size: 13px; font-weight: 600; color: #fff; border-radius: 4px; padding: 2px 10px; margin-bottom: 8px; }
.case-tag.t-pain { background: #c0554a; }
.case-tag.t-plan { background: var(--primary); }
.case-tag.t-gain { background: var(--green); }
.ea-flow { max-width: 1000px; margin: 0 auto; }
.ea-flow svg { width: 100%; height: auto; display: block; }
.ea-flow rect { fill: #fff; stroke: #c9d8e8; stroke-width: 1; }
.ea-flow text { font-size: 13px; fill: #1a2b3c; text-anchor: middle; }
.ea-flow line { stroke: #2f6fc2; stroke-width: 1.5; fill: none; }
@media (max-width: 900px) { .case3 { grid-template-columns: 1fr; } }

/* ---- 流程与指标页：指标 来源×维度 矩阵 ---- */
.kpi-matrix { display: grid; grid-template-columns: 1.8fr repeat(5, 1fr); gap: 6px; }
.km { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 10px 6px; text-align: center; font-size: 14px; color: #2f6fc2; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.km-head { background: var(--primary); color: #fff; font-size: 13px; }
.km-src { color: #1a2b3c; }
@media (max-width: 900px) { .kpi-matrix { grid-template-columns: 1.4fr repeat(5, 1fr); } .km { font-size: 12px; padding: 8px 4px; } }
@media (max-width: 900px) {
  .pyr-row { flex-direction: column; gap: 6px; margin-bottom: 14px; }
  .pyr-side { width: auto; text-align: center; }
  .pyr-side.l { text-align: center; }
  .pyr-side.empty { display: none; }
  .pyr-side:not(.empty) { order: -1; }
  .lead { display: none; }
  .pyr-slice { width: 100%; clip-path: none; height: 10px; border-radius: 5px; }
  .pm-band { flex-direction: column; gap: 8px; }
  .pm-row { flex-wrap: wrap; }
  .pm-box { min-width: 42%; }
}
