/* ========================
   九天技术 · 全站主题样式 · 政务蓝金
   模仿 gov.cn：白底 + 深蓝标题 + 黑字 + 金色点缀
   主色 #015293 深政务蓝 | 辅色 #C0B283 哑光金
   忌：大红底、大面积深色块、发光效果
   ======================== */

:root {
    /* === 主色 · 政务蓝 === */
    --gov-blue: #015293;        /* 主蓝 · 标题/链接/强调 */
    --gov-navy: #2E5586;        /* 深藏青 · 导航栏 */
    --gov-blue-light: #4B8ABD;  /* 亮蓝 · 辅助链接/图标 */
    --gov-blue-pale: #E8F0F8;   /* 浅蓝底 · 高亮区 */

    /* === 辅色 · 金 === */
    --gold: #C0B283;            /* 哑光金 · 点缀/标签 */
    --gold-deep: #A89B6F;       /* 深金 · 边框/hover */
    --gold-soft: rgba(192,178,131,.12); /* 金色微底 */

    /* === 背景 === */
    --bg-main: #FFFFFF;         /* 主背景 · 纯白 */
    --bg-surface: #F7F7F7;      /* 次背景 · 区块 */
    --bg-card: #FFFFFF;         /* 卡片 */
    --bg-pale: #F3FAFF;         /* 浅蓝底 */

    /* === 文字 === */
    --text-primary: #000000;    /* 主文字 · 纯黑 */
    --text-body: #333333;       /* 正文 · 深灰 */
    --text-muted: #666666;      /* 辅助 · 中灰 */
    --text-light: #999999;      /* 浅灰 */

    /* === 线条/阴影 === */
    --border: #E0E0E0;          /* 分割线 */
    --border-light: #F0F0F0;    /* 浅分割线 */
    --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
    --shadow-md: 0 2px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.10);

    /* === 尺寸 === */
    --radius: 8px;
    --radius-sm: 5px;
    --max-width: 1200px;
    --header-h: 56px;

    /* === 兼容旧变量 === */
    --navy: var(--gov-blue);
    --navy-deep: var(--gov-navy);
    --navy-light: var(--gov-blue-light);
    --titanium: var(--bg-main);
    --titanium-dark: var(--text-body);
    --silver: var(--bg-surface);
    --deep-black: var(--text-primary);
    --red: var(--gov-blue);
    --red-dark: var(--gov-navy);
    --red-light: var(--gov-blue-light);
    --accent-gold: var(--gold);
    --accent-gold-dark: var(--gold-deep);
    --accent-gold-light: var(--gold-soft);
    --gold-old: var(--gold);
    --gold-dark: var(--gold-deep);
    --yellow: var(--gold);
    --blue: var(--gov-blue-light);
    --blue-dark: var(--gov-navy);
    --bg-cream: var(--bg-surface);
    --bg-warm: var(--bg-pale);
    --text-dark: var(--text-primary);
    --border-light: var(--border-light);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: "PingFang SC","Microsoft YaHei","Helvetica Neue",Arial,sans-serif;
    color: var(--text-body);
    background: var(--bg-main);
    line-height: 1.55;
    font-size: 14px;
    overflow-x: hidden;
}
a { text-decoration:none; color:var(--text-body); }
a:hover { color: var(--gov-blue); }
img { max-width:100%; display:block; }
ul { list-style:none; }

.container { max-width:var(--max-width); margin:0 auto; padding:0 24px; }

/* ========================
   HEADER — 深政务蓝底
   ======================== */
.header {
    position: fixed; top:0; left:0; right:0; z-index:1000;
    height: var(--header-h);
    background: var(--gov-navy);
    border-bottom: 1px solid rgba(192,178,131,.15);
    transition: all .3s ease;
}
.header.scrolled {
    box-shadow: 0 1px 16px rgba(0,0,0,.15);
    background: var(--gov-navy);
}
.header-inner {
    max-width: var(--max-width); margin:0 auto; padding:0 24px;
    height:100%; display:flex; align-items:center; justify-content:space-between;
}
.logo { display:flex; align-items:center; gap:8px; }
.logo-icon {
    width:32px; height:32px;
    background: var(--gov-blue);
    border:1px solid var(--gold);
    border-radius:5px; display:flex; align-items:center; justify-content:center;
    color:var(--gold); font-size:16px; font-weight:700;
}
.logo-text { font-size:16px; font-weight:700; color:#fff; letter-spacing:1px; }
.logo-text span { color: var(--gold); }
.nav { display:flex; gap:24px; }
.nav-item { position:relative; }
.nav-item > a {
    font-size:13px; font-weight:500; color:rgba(255,255,255,.85);
    padding:6px 4px; cursor:pointer; transition:color .2s;
}
.nav-item > a:hover { color:var(--gold); }
.nav-dropdown {
    position:absolute; top:100%; left:-16px;
    background:#fff; border:1px solid var(--border);
    border-radius:var(--radius-sm); box-shadow:var(--shadow-lg);
    min-width:200px; padding:6px 0;
    opacity:0; visibility:hidden; transform:translateY(6px);
    transition:all .25s ease;
}
.nav-item:hover .nav-dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.nav-dropdown a {
    display:block; padding:7px 18px; font-size:14px; color:var(--text-body);
    transition:all .2s;
}
.nav-dropdown a:hover { background:var(--gov-blue-pale); color:var(--gov-blue); }
.btn-demo {
    background: transparent; color:var(--gold); padding:6px 16px; border-radius:var(--radius-sm);
    font-size:13px; font-weight:600; border:1px solid var(--gold);
    cursor:pointer; transition:all .25s; white-space:nowrap;
}
.btn-demo:hover { background:var(--gold); color:var(--gov-navy); }

.mobile-toggle { display:none; font-size:22px; background:none; border:none; cursor:pointer; color:#fff; }

/* ========================
   BUTTONS
   ======================== */
.btn { display:inline-flex; align-items:center; gap:6px; padding:9px 22px; border-radius:var(--radius-sm); font-size:14px; font-weight:600; cursor:pointer; transition:all .25s; border:none; }
.btn-primary {
    background: var(--gov-blue); color:#fff; border:1px solid var(--gov-blue);
}
.btn-primary:hover { background:var(--gov-navy); border-color:var(--gov-navy); }
.btn-gold {
    background: var(--gold); color:var(--text-primary); border:1px solid var(--gold-deep);
}
.btn-gold:hover { background:var(--gold-deep); color:#fff; }
.btn-outline {
    background:transparent; color:#fff; border:1px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background:rgba(255,255,255,.1); border-color:var(--gold); color:var(--gold); }
.btn-outline-dark {
    background:transparent; color:var(--gov-blue); border:1px solid var(--gov-blue);
}
.btn-outline-dark:hover { background:var(--gov-blue); color:#fff; }

/* ========================
   SECTION TITLES
   ======================== */
.section { padding:48px 0; }
.section-eyebrow {
    display:inline-block; font-size:11px; font-weight:600; letter-spacing:2px;
    text-transform:uppercase; color:#fff; margin-bottom:8px;
    padding:3px 12px; background:var(--gov-blue); border-radius:3px;
}
.section-title {
    font-size:28px; font-weight:700; color:var(--text-primary); margin-bottom:10px; line-height:1.3;
}
.section-title .accent { color:var(--gov-blue); }
.section-desc { font-size:14px; color:var(--text-muted); max-width:600px; margin:0 auto 28px; }
.section-header { text-align:center; margin-bottom:32px; }

/* ========================
   HERO — 深政务蓝底
   ======================== */
.hero {
    position:relative; min-height:440px; display:flex; align-items:center;
    background: linear-gradient(135deg, var(--gov-navy) 0%, var(--gov-blue) 60%, var(--gov-navy) 100%);
    color:#fff; overflow:hidden; padding-top:var(--header-h);
}
.hero::before {
    content:''; position:absolute; inset:0;
    background:
        radial-gradient(circle at 20% 50%, rgba(192,178,131,.06), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,.03), transparent 50%);
}
.hero-particles { position:absolute; inset:0; pointer-events:none; }
.hero-inner { position:relative; z-index:2; max-width:var(--max-width); margin:0 auto; padding:40px 24px; }
.hero-tag {
    display:inline-block; padding:4px 14px; border-radius:3px;
    background:rgba(192,178,131,.15); border:1px solid rgba(192,178,131,.3);
    color:var(--gold); font-size:12px; font-weight:600; margin-bottom:14px;
    letter-spacing:1px;
}
.hero h1 { font-size:38px; font-weight:700; line-height:1.25; margin-bottom:12px; color:#fff; }
.hero h1 .highlight { color:var(--gold); }
.hero-sub { font-size:15px; color:rgba(255,255,255,.7); max-width:520px; margin-bottom:22px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }

/* Sub-page heroes — 浅蓝底 */
.hero.hero-page {
    background: linear-gradient(135deg, var(--bg-pale) 0%, var(--bg-surface) 100%);
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    min-height: 340px;
}
.hero.hero-page::before {
    background:
        radial-gradient(circle at 20% 50%, rgba(1,82,147,.06), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(192,178,131,.05), transparent 50%);
}
.hero.hero-page h1 { color: var(--gov-blue); }
.hero.hero-page h1 .highlight { color: var(--gold-deep); }
.hero.hero-page .hero-sub { color: var(--text-muted); }
.hero.hero-page .hero-tag {
    background: var(--gold-soft);
    border: 1px solid rgba(192,178,131,.3);
    color: var(--gold-deep);
}
.hero.hero-page .btn-outline {
    color: var(--gov-blue);
    border: 1px solid var(--gov-blue);
}
.hero.hero-page .btn-outline:hover {
    background: var(--gov-blue);
    color: #fff;
}


/* ========================
   CARDS — 白底 + 蓝色顶线
   ======================== */
.card {
    background:var(--bg-card); border:1px solid var(--border);
    border-top:3px solid var(--gov-blue);
    border-radius:var(--radius); padding:20px;
    transition:all .3s ease; position:relative; overflow:hidden;
}
.card:hover {
    box-shadow:var(--shadow-md); transform:translateY(-2px);
    border-top-color:var(--gold);
}
.card-icon {
    width:44px; height:44px; border-radius:var(--radius-sm);
    display:flex; align-items:center; justify-content:center;
    font-size:22px; margin-bottom:12px;
    background:var(--gov-blue-pale); border:1px solid var(--border);
}
.card h3 { font-size:16px; font-weight:600; color:var(--text-primary); margin-bottom:6px; }
.card p { font-size:13px; color:var(--text-muted); }

/* product card — 白底 + 金色顶线 */
.product-card-large {
    background:var(--bg-card); border:1px solid var(--border); border-top:3px solid var(--gold);
    color:var(--text-primary); border-radius:var(--radius);
    padding:24px; transition:all .3s; position:relative; overflow:hidden;
}
.product-card-large:hover { border-color:var(--gold); transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.product-card-large::after {
    content:''; position:absolute; top:-50%; right:-50%; width:200%; height:200%;
    background:radial-gradient(circle, rgba(1,82,147,.04), transparent 40%);
}
.product-card-large .card-tag {
    display:inline-block; padding:3px 10px; border-radius:3px;
    background:var(--gov-blue); color:#fff; font-size:11px; font-weight:600; margin-bottom:10px;
}
.product-card-large h3 { font-size:20px; color:var(--text-primary); margin-bottom:8px; position:relative; }
.product-card-large p { color:var(--text-muted); font-size:13px; position:relative; }
.product-card-large .link-more { color:var(--gov-blue); font-size:13px; font-weight:600; margin-top:12px; display:inline-block; position:relative; }

/* ========================
   GRIDS
   ======================== */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.grid-asym { display:grid; grid-template-columns:1.2fr 1fr; gap:16px; }
.grid-asym-right { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* ========================
   INDUSTRY CARDS
   ======================== */
.industry-card {
    background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius);
    padding:18px 14px; text-align:center; cursor:pointer; transition:all .3s; position:relative;
}
.industry-card:hover {
    box-shadow:var(--shadow-md); border-color:var(--gov-blue);
    transform:translateY(-3px);
}
.industry-card .icon-circle {
    width:48px; height:48px; margin:0 auto 10px;
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:22px; background:var(--gov-blue-pale);
    border:1px solid var(--border); transition:all .3s;
}
.industry-card:hover .icon-circle {
    background:var(--gov-blue); color:#fff; border-color:var(--gov-blue);
}
.industry-card h4 { font-size:15px; color:var(--text-primary); margin-bottom:5px; }
.industry-card .keywords { font-size:12px; color:var(--text-muted); margin-bottom:8px; }
.industry-card .hover-detail {
    max-height:0; overflow:hidden; transition:max-height .4s ease;
    font-size:12px; color:var(--text-body);
}
.industry-card:hover .hover-detail { max-height:100px; }

/* ========================
   CTA BANNER — 浅蓝底 + 蓝字
   ======================== */
.cta-banner {
    background: linear-gradient(135deg, var(--bg-pale) 0%, var(--gov-blue-pale) 100%);
    position:relative; overflow:hidden;
    border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.cta-banner::before {
    content:''; position:absolute; inset:0;
    background:radial-gradient(circle at 30% 50%, rgba(192,178,131,.08), transparent 50%);
}
.cta-banner .section { position:relative; z-index:1; }
.cta-banner h2 { color:var(--gov-blue); }
.cta-banner p { color:var(--text-muted); }
.cta-banner .btn-gold { background:var(--gov-blue); color:#fff; border:1px solid var(--gov-blue); }
.cta-banner .btn-gold:hover { background:var(--gov-navy); }
.cta-banner .btn-outline { color:var(--gov-blue); border:1px solid var(--gov-blue); background:#fff; }
.cta-banner .btn-outline:hover { background:var(--gov-blue); color:#fff; }

/* ========================
   DATA METRICS — 蓝色数字
   ======================== */
.metric-box { text-align:center; padding:14px; }
.metric-number {
    font-size:34px; font-weight:700;
    color:var(--gov-blue);
}
.metric-label { font-size:13px; color:var(--text-muted); margin-top:2px; }

/* ========================
   FOOTER — 白底蓝标题
   ======================== */
.footer { background:#fff; color:var(--text-body); padding:40px 0 0; border-top:2px solid var(--gov-blue); }
.footer-grid {
    max-width:var(--max-width); margin:0 auto; padding:0 24px;
    display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:24px; padding-bottom:28px;
}
.footer-brand .logo-text { color:var(--text-primary); }
.footer h5 { color:var(--gov-blue); font-size:14px; margin-bottom:10px; }
.footer ul li { margin-bottom:6px; }
.footer ul li a { font-size:12px; color:var(--text-muted); transition:color .2s; }
.footer ul li a:hover { color:var(--gov-blue); }
.footer-contact p { font-size:12px; margin-bottom:5px; color:var(--text-muted); }
.footer-contact .icon { color:var(--gold-deep); margin-right:6px; }
.footer-bottom {
    border-top:1px solid var(--border); padding:14px 24px; text-align:center;
    font-size:11px; color:var(--text-light);
}

/* ========================
   PAGE HERO (sub pages)
   ======================== */
.page-hero {
    background: linear-gradient(135deg, var(--bg-pale) 0%, var(--gov-blue-pale) 100%);
    color:var(--text-primary); padding:calc(var(--header-h) + 36px) 0 36px;
    position:relative; overflow:hidden; border-bottom:1px solid var(--border);
}
.page-hero::before {
    content:''; position:absolute; inset:0;
    background:
        radial-gradient(circle at 20% 50%, rgba(1,82,147,.06), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(192,178,131,.04), transparent 50%);
}
.page-hero .container { position:relative; z-index:1; }
.page-hero h1 { font-size:30px; font-weight:700; margin-bottom:8px; color:var(--gov-blue); }
.page-hero .sub { font-size:14px; color:var(--text-muted); max-width:560px; }

/* ========================
   FEATURES
   ======================== */
.feature-row { display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:center; margin-bottom:36px; }
.feature-row:last-child { margin-bottom:0; }
.feature-row.reverse { direction:rtl; }
.feature-row.reverse > * { direction:ltr; }
.feature-content h3 { font-size:20px; color:var(--text-primary); margin-bottom:10px; }
.feature-content .feature-list { margin-top:10px; }
.feature-content .feature-list li {
    padding:4px 0 4px 24px; position:relative; font-size:14px; color:var(--text-body);
}
.feature-content .feature-list li::before {
    content:'\2022'; position:absolute; left:6px; color:var(--gov-blue); font-size:18px;
}
.feature-visual {
    background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius);
    height:200px; display:flex; align-items:center; justify-content:center;
    font-size:13px; color:var(--text-muted); position:relative; overflow:hidden;
}
.feature-visual svg { width:80%; height:80%; }

/* ========================
   ARCHITECTURE DIAGRAM
   ======================== */
.arch-diagram { display:flex; flex-direction:column; gap:8px; max-width:520px; margin:0 auto; }
.arch-layer {
    padding:12px 20px; border-radius:var(--radius-sm); text-align:center;
    transition:all .3s; cursor:default;
}
.arch-layer:hover { transform:scale(1.02); }
.arch-layer-1 { background:var(--gov-blue); color:#fff; }
.arch-layer-2 { background:var(--gold); color:var(--text-primary); }
.arch-layer-3 { background:var(--gov-blue-light); color:#fff; }
.arch-layer h4 { font-size:15px; margin-bottom:2px; }
.arch-layer p { font-size:12px; opacity:.85; }
.arch-arrow { text-align:center; color:var(--text-muted); font-size:16px; }

/* ========================
   FORM
   ======================== */
.form-group { margin-bottom:14px; }
.form-group label { display:block; font-size:13px; font-weight:500; color:var(--text-primary); margin-bottom:4px; }
.form-group label .req { color:var(--gov-blue); }
.form-control {
    width:100%; padding:10px 14px; border:1px solid var(--border);
    border-radius:var(--radius-sm); font-size:13px; font-family:inherit;
    transition:border-color .2s; background:#fff; color:var(--text-primary);
}
.form-control:focus { outline:none; border-color:var(--gov-blue); box-shadow:0 0 0 2px rgba(1,82,147,.08); }
textarea.form-control { resize:vertical; min-height:80px; }
select.form-control { cursor:pointer; }

/* ========================
   TIMELINE
   ======================== */
.timeline { position:relative; padding-left:28px; }
.timeline::before {
    content:''; position:absolute; left:8px; top:0; bottom:0;
    width:1px; background:var(--border);
}
.timeline-item { position:relative; padding-bottom:20px; }
.timeline-item::before {
    content:''; position:absolute; left:-24px; top:4px;
    width:10px; height:10px; border-radius:50%;
    background:var(--gov-blue); border:2px solid #fff; box-shadow:0 0 0 2px rgba(1,82,147,.2);
}
.timeline-item .year { font-size:15px; font-weight:700; color:var(--gov-blue); }
.timeline-item .desc { font-size:13px; color:var(--text-muted); margin-top:2px; }

/* ========================
   TABS
   ======================== */
.tabs { display:flex; gap:6px; margin-bottom:20px; flex-wrap:wrap; }
.tab {
    padding:7px 18px; border-radius:var(--radius-sm); cursor:pointer;
    font-size:13px; font-weight:500; color:var(--text-body);
    border:1px solid var(--border); background:#fff; transition:all .2s;
}
.tab.active, .tab:hover { background:var(--gov-blue); color:#fff; border-color:var(--gov-blue); }

/* ========================
   PAIN POINTS
   ======================== */
.pain-card {
    background:var(--bg-surface); border:1px solid var(--border);
    border-radius:var(--radius); padding:16px; text-align:center;
}
.pain-card .icon { font-size:26px; margin-bottom:8px; opacity:.5; }
.pain-card h4 { font-size:15px; color:var(--text-primary); margin-bottom:5px; }
.pain-card p { font-size:12px; color:var(--text-muted); }

/* ========================
   PARTNERS LOGO WALL
   ======================== */
.logo-wall { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; }
.logo-placeholder {
    aspect-ratio:3/1; background:var(--bg-card); border:1px solid var(--border);
    border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center;
    font-size:12px; color:var(--text-muted); transition:all .3s;
}
.logo-placeholder:hover { border-color:var(--gov-blue); color:var(--gov-blue); }

/* ========================
   FLOATING CONTACT
   ======================== */
.float-contact {
    position:fixed; right:20px; bottom:20px; z-index:999;
    width:48px; height:48px; border-radius:50%;
    background:var(--gov-blue); border:1px solid var(--gold);
    display:flex; align-items:center; justify-content:center;
    font-size:20px; color:var(--gold); cursor:pointer;
    box-shadow: var(--shadow-md);
    transition:all .3s;
}
.float-contact:hover { transform:scale(1.08); background:var(--gov-navy); }

/* ========================
   MODAL
   ======================== */
.modal-overlay {
    position:fixed; inset:0; background:rgba(46,85,134,.5); z-index:2000;
    display:flex; align-items:center; justify-content:center;
    opacity:0; visibility:hidden; transition:all .3s;
}
.modal-overlay.active { opacity:1; visibility:visible; }
.modal-box {
    background:#fff; border-radius:var(--radius); padding:28px;
    max-width:440px; width:90%; max-height:90vh; overflow-y:auto;
    transform:translateY(20px); transition:transform .3s;
    box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal-box { transform:translateY(0); }
.modal-close {
    position:absolute; top:12px; right:12px; font-size:20px;
    background:none; border:none; cursor:pointer; color:var(--text-muted);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 968px) {
    .nav { display:none; }
    .mobile-toggle { display:block; }
    .hero h1 { font-size:28px; }
    .section { padding:36px 0; }
    .section-title { font-size:22px; }
    .grid-2, .grid-3, .grid-4, .grid-asym, .grid-asym-right { grid-template-columns:1fr; }
    .feature-row { grid-template-columns:1fr; gap:16px; }
    .footer-grid { grid-template-columns:1fr 1fr; gap:20px; }
    .logo-wall { grid-template-columns:repeat(3,1fr); }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns:1fr; }
    .logo-wall { grid-template-columns:repeat(2,1fr); }
    .hero h1 { font-size:24px; }
    .page-hero h1 { font-size:24px; }
}

/* ========================
   UTILITIES & ANIMATIONS
   ======================== */
.fade-in { opacity:0; transform:translateY(24px); transition:all .6s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }
.bg-cream { background:var(--bg-surface); }
.bg-dark { background:var(--gov-navy); color:#fff; }
.text-center { text-align:center; }
.mt-40 { margin-top:28px; }
.mb-0 { margin-bottom:0; }

/* ===== 面包屑 ===== */
.breadcrumb { font-size:12px; color:var(--text-muted); padding:8px 20px 0; max-width:1200px; margin:0 auto; }
.breadcrumb a { color:var(--text-muted); text-decoration:none; transition:color .2s; }
.breadcrumb a:hover { color:var(--gov-blue); }
.breadcrumb span { margin:0 4px; color:var(--border); }
.breadcrumb .current { color:var(--text-body); font-weight:500; }

/* ===== 滚动条 ===== */
::-webkit-scrollbar { width:6px; height:6px; }
::-webkit-scrollbar-track { background:var(--bg-surface); }
::-webkit-scrollbar-thumb { background:var(--gov-blue-light); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:var(--gov-blue); }

/* ===== 选区 ===== */
::selection { background:var(--gov-blue); color:#fff; }
