/* ============================================================
   专业咨询·睿智蓝 —— ind-consulting 模板样式表 (v2.0.77)
   ------------------------------------------------------------
   版式：boxed + overlay
   设计令牌：零售活力 / tech / sharp / regular / flat / slow
   容器 1600px；手机 / 平板 / PC 三端响应式；样式全部外置于本文件。
   著作权归 陕西新势力网络科技有限公司。
   ============================================================ */

:root {
    /* 配色令牌 */
    --gw-p: #c2356b;
    --gw-pd: #96254f;
    --gw-pl: #fbeaf1;
    --gw-acc: #2f8fa8;
    --gw-ink: #301f27;
    --gw-ink2: #6d5660;
    --gw-ink3: #9d8892;
    --gw-line: #eedfe5;
    --gw-bg: #ffffff;
    --gw-soft: #fcf5f8;
    /* 字体令牌 */
    --gw-font: 'Inter','Segoe UI','PingFang SC','Microsoft YaHei',sans-serif;
    --gw-fs: 16px;
    --gw-lh: 1.78;
    --gw-w-nav: 700;
    --gw-w-h1: 900;
    --gw-w-h2: 800;
    --gw-ls: .5px;
    /* 尺度令牌 */
    --gw-w: 1600px;
    --gw-w-read: 1320px;
    --gw-pad: 40px;
    --gw-r: 0px;
    --gw-r-btn: 0px;
    --gw-r-img: 0px;
    --gw-sec: 88px;
    --gw-gap: 28px;
    --gw-cardpad: 36px;
    --gw-sh: 0 1px 0 rgba(0,0,0,.06);
    --gw-sh-h: 0 2px 6px rgba(0,0,0,.09);
    --gw-dur: .72s;
    --gw-ease: cubic-bezier(.16,.84,.44,1);
    --gw-step: .14s;
}

/* ---------- 重置 ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--gw-font);
    font-size: var(--gw-fs);
    line-height: var(--gw-lh);
    color: var(--gw-ink);
    background: var(--gw-bg);
    letter-spacing: var(--gw-ls);
}
a { text-decoration: none; color: inherit; transition: color var(--gw-dur) var(--gw-ease); }
a:hover { color: var(--gw-p); }
ul, ol { list-style: none; }
img { max-width: 100%; border: 0; vertical-align: middle; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
time { font-variant-numeric: tabular-nums; }
h1, h2, h3, h4 { font-weight: var(--gw-w-h2); line-height: 1.3; }

/* ---------- 主容器（铁律：≥1600px） ---------- */
.gw-c { max-width: var(--gw-w); margin: 0 auto; padding: 0 var(--gw-pad); }
.gw-span-all { grid-column: 1 / -1; }
.gw-sr { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
          overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- 区块与标题 ---------- */
.gw-sec { padding: var(--gw-sec) 0; }
.gw-sec-soft { background: var(--gw-soft); }
.gw-sec-head { text-align: center; margin-bottom: calc(var(--gw-sec) * .52); }
.gw-sec-head-l { display: flex; align-items: flex-end; justify-content: space-between;
                    gap: 24px; text-align: left; margin-bottom: calc(var(--gw-sec) * .38); }
.gw-sec-en { display: block; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
                color: var(--gw-ink3); margin-bottom: 10px; }
.gw-sec-t { font-size: calc(var(--gw-fs) * 2.15); font-weight: var(--gw-w-h1);
               color: var(--gw-ink); }
.gw-sec-line { display: block; width: 48px; height: 3px; margin: 18px auto 0;
                  background: var(--gw-p); border-radius: 2px; }
.gw-sec-head-l .gw-sec-line { margin: 18px 0 0; }
.gw-sec-d { font-size: calc(var(--gw-fs) * 1.02); color: var(--gw-ink2);
               max-width: 900px; margin: 16px auto 0; }
.gw-sec-more { font-size: calc(var(--gw-fs) * .94); color: var(--gw-p); white-space: nowrap; }
.gw-sec-more:hover { color: var(--gw-pd); }

/* ---------- 按钮 ---------- */
.gw-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 32px; border-radius: var(--gw-r-btn);
    background: var(--gw-p); color: #ffffff;
    font-size: calc(var(--gw-fs) * .98); font-weight: 600; letter-spacing: .5px;
    border: 1px solid var(--gw-p);
    transition: background-color var(--gw-dur) var(--gw-ease),
                color var(--gw-dur) var(--gw-ease),
                transform var(--gw-dur) var(--gw-ease),
                box-shadow var(--gw-dur) var(--gw-ease);
}
.gw-btn:hover { background: var(--gw-pd); border-color: var(--gw-pd); color: #ffffff;
                   transform: translateY(-2px); box-shadow: var(--gw-sh-h); }
.gw-btn-ghost { background: transparent; color: #ffffff; border-color: rgba(255,255,255,.65); }
.gw-btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #ffffff; color: #ffffff; }
.gw-btn-light { background: #ffffff; color: var(--gw-p); border-color: #ffffff; }
.gw-btn-light:hover { background: transparent; color: #ffffff; border-color: #ffffff; }

/* ---------- 空态：无数据时给明确指引，绝不显示假内容 ---------- */
.gw-empty { padding: 52px 24px; text-align: center; color: var(--gw-ink3);
               background: var(--gw-soft); border: 1px dashed var(--gw-line);
               border-radius: var(--gw-r); font-size: calc(var(--gw-fs) * .96); }
.gw-empty p + p { margin-top: 8px; font-size: .92em; }
.gw-empty b { display: block; margin-bottom: 6px; color: var(--gw-ink2); font-size: 1.06em; }
.gw-side-none { padding: 18px 0; color: var(--gw-ink3); font-size: calc(var(--gw-fs) * .92); }

/* ---------- 动效挂钩（配合 tpl-{pack}.js；html.gw-js 未就绪时内容默认可见） ---------- */
html.gw-js .gw-rv {
    opacity: 0; transform: translateY(24px);
    transition: opacity var(--gw-dur) var(--gw-ease), transform var(--gw-dur) var(--gw-ease);
    will-change: opacity, transform;
}
html.gw-js .gw-rv.gw-in { opacity: 1; transform: none; }
.gw-rv { opacity: 1; }
.gw-stag > .gw-rv:nth-child(1) { transition-delay: calc(var(--gw-step) * 0); }
.gw-stag > .gw-rv:nth-child(2) { transition-delay: calc(var(--gw-step) * 1); }
.gw-stag > .gw-rv:nth-child(3) { transition-delay: calc(var(--gw-step) * 2); }
.gw-stag > .gw-rv:nth-child(4) { transition-delay: calc(var(--gw-step) * 3); }
.gw-stag > .gw-rv:nth-child(5) { transition-delay: calc(var(--gw-step) * 4); }
.gw-stag > .gw-rv:nth-child(6) { transition-delay: calc(var(--gw-step) * 5); }
.gw-stag > .gw-rv:nth-child(n+7) { transition-delay: calc(var(--gw-step) * 6); }

/* 阅读进度条 */
.gw-prog { position: fixed; left: 0; top: 0; height: 3px; width: 0; z-index: 1200;
              background: linear-gradient(90deg, var(--gw-pd), var(--gw-p), var(--gw-acc));
              pointer-events: none; }
html:not(.gw-js) .gw-prog { display: none; }

/* 返回顶部 */
.gw-top {
    position: fixed; right: 30px; bottom: 36px; width: 48px; height: 48px; z-index: 900;
    border-radius: 50%; background: var(--gw-p); color: #ffffff; font-size: 20px; line-height: 48px;
    text-align: center; box-shadow: var(--gw-sh-h);
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background-color .25s ease;
}
.gw-top.gw-top-on { opacity: 1; visibility: visible; transform: none; }
.gw-top:hover { background: var(--gw-pd); color: #ffffff; }
html:not(.gw-js) .gw-top { display: none; }

/* 导航滚动收缩 */
.gw-hd { transition: box-shadow .3s ease, background-color .3s ease; }
.gw-hd.gw-hd-fix { box-shadow: 0 6px 24px rgba(0,0,0,.13); }

/* 厂商署名（合规软性署名，全系统统一，非模板视觉差异的一部分） */
.xp-powered { margin-top: 10px; font-size: 12px; line-height: 1.7; text-align: center; opacity: .85; }
.xp-powered a { color: inherit; text-decoration: underline; }
.xp-powered a:hover { opacity: 1; }


/* ---- 导航 N7 盒装容器 + CTA ---- */
.gw-box { max-width: var(--gw-w); margin: 0 auto; padding: 0 var(--gw-pad); }
.gw-hd { position: sticky; top: 18px; z-index: 1000; }
.gw-hd-in { display: flex; align-items: center; justify-content: space-between; gap: 28px;
               min-height: 84px; padding: 0 34px; margin-top: 18px;
               background: var(--gw-bg); border: 1px solid var(--gw-line);
               border-radius: var(--gw-r); box-shadow: var(--gw-sh); }
.gw-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.gw-logo-mark { width: 44px; height: 44px; border-radius: var(--gw-r-btn);
                   background: var(--gw-pl); color: var(--gw-p); font-size: 20px;
                   font-weight: 700; display: flex; align-items: center; justify-content: center; }
.gw-logo-txt b { font-size: calc(var(--gw-fs) * 1.26); font-weight: var(--gw-w-h1);
                    color: var(--gw-ink); }
.gw-nav-l1 { display: flex; align-items: center; gap: 2px; }
.gw-lk { display: block; padding: 12px 16px; font-size: calc(var(--gw-fs) * .98);
            font-weight: var(--gw-w-nav); color: var(--gw-ink2);
            border-radius: var(--gw-r-btn); }
.gw-lk:hover, .gw-li.gw-on .gw-lk { background: var(--gw-pl); color: var(--gw-p); }
.gw-hd-cta { flex-shrink: 0; padding: 12px 26px; border-radius: var(--gw-r-btn);
                background: var(--gw-p); color: #fff; font-size: calc(var(--gw-fs) * .94);
                font-weight: 600; }
.gw-hd-cta:hover { background: var(--gw-pd); color: #fff; }
.gw-burger { display: none; }


/* ---- 首屏 H1 全宽图文叠加 ---- */
.gw-hero-overlay { position: relative; overflow: hidden;
    background: linear-gradient(118deg, var(--gw-pd) 0%, var(--gw-p) 52%, var(--gw-acc) 130%);
    color: #fff; }
.gw-hero-overlay::after { content: ''; position: absolute; right: -140px; top: -100px;
    width: 620px; height: 620px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.16), transparent 68%); }
.gw-hero-overlay .gw-hero-in { position: relative; z-index: 1; max-width: var(--gw-w);
    margin: 0 auto; padding: 148px var(--gw-pad) 156px; }
.gw-hero-k { font-size: 12px; letter-spacing: 5px; text-transform: uppercase;
                opacity: .78; margin-bottom: 24px; }
.gw-hero-t { font-size: calc(var(--gw-fs) * 3.7); font-weight: var(--gw-w-h1);
                line-height: 1.16; margin-bottom: 26px; letter-spacing: 1.5px; }
.gw-hero-d { font-size: calc(var(--gw-fs) * 1.18); line-height: 1.92; opacity: .93;
                max-width: 940px; margin-bottom: 44px; }
.gw-hero-btns { display: flex; gap: 18px; flex-wrap: wrap; }
.gw-hero-overlay .gw-btn { background: #fff; color: var(--gw-p); border-color: #fff; }
.gw-hero-overlay .gw-btn:hover { background: transparent; color: #fff; }


/* ---- 主体 B12 手风琴问答 ---- */
.gw-acc { max-width: 1180px; margin: 0 auto; }
.gw-acc-item { background: var(--gw-bg); border: 1px solid var(--gw-line);
    border-radius: var(--gw-r); margin-bottom: 14px; overflow: hidden; }
.gw-acc-q { display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 24px 28px; font-size: calc(var(--gw-fs) * 1.08); font-weight: var(--gw-w-h2);
    color: var(--gw-ink); cursor: pointer; list-style: none; }
.gw-acc-q::-webkit-details-marker { display: none; }
.gw-acc-item:hover .gw-acc-q { color: var(--gw-p); }
.gw-acc-ic { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
    background: var(--gw-pl); position: relative; transition: all var(--gw-dur) var(--gw-ease); }
.gw-acc-ic::before, .gw-acc-ic::after { content: ''; position: absolute; left: 50%; top: 50%;
    background: var(--gw-p); transform: translate(-50%, -50%); }
.gw-acc-ic::before { width: 11px; height: 2px; }
.gw-acc-ic::after { width: 2px; height: 11px; transition: transform var(--gw-dur) var(--gw-ease); }
.gw-acc-open .gw-acc-ic { background: var(--gw-p); }
.gw-acc-open .gw-acc-ic::before, .gw-acc-open .gw-acc-ic::after { background: #fff; }
.gw-acc-open .gw-acc-ic::after { transform: translate(-50%, -50%) rotate(90deg); }
.gw-acc-a { padding: 0 28px 26px; font-size: calc(var(--gw-fs) * .98); line-height: 1.94;
    color: var(--gw-ink2); border-top: 1px dashed var(--gw-line); padding-top: 20px; }
.gw-acc-more { display: inline-block; margin-top: 12px; color: var(--gw-p);
    font-size: calc(var(--gw-fs) * .92); font-weight: 600; }


/* ---- 主体 B11 行动号召横带 ---- */
.gw-cta { background: linear-gradient(120deg, var(--gw-pd), var(--gw-p) 58%, var(--gw-acc));
    color: #fff; }
.gw-cta-in { max-width: var(--gw-w); margin: 0 auto; padding: 84px var(--gw-pad);
    display: flex; align-items: center; justify-content: space-between; gap: 46px; flex-wrap: wrap; }
.gw-cta-txt h2 { font-size: calc(var(--gw-fs) * 2.1); font-weight: var(--gw-w-h1);
    color: #fff; margin-bottom: 14px; }
.gw-cta-txt p { font-size: calc(var(--gw-fs) * 1.04); opacity: .9; }


/* ---- 主体 B10 标签页切换 ---- */
.gw-tabs { background: var(--gw-bg); border: 1px solid var(--gw-line); border-radius: var(--gw-r);
    overflow: hidden; box-shadow: var(--gw-sh); }
.gw-tabs-bar { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--gw-line);
    background: var(--gw-soft); }
.gw-tab { flex: 1; min-width: 170px; padding: 21px 18px; font-family: inherit;
    font-size: calc(var(--gw-fs) * 1.04); font-weight: var(--gw-w-nav);
    color: var(--gw-ink2); background: transparent; position: relative;
    transition: all var(--gw-dur) var(--gw-ease); }
.gw-tab::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px;
    background: var(--gw-p); transform: scaleX(0); transition: transform var(--gw-dur) var(--gw-ease); }
.gw-tab:hover { color: var(--gw-p); }
.gw-tab-on { color: var(--gw-p); font-weight: 700; background: var(--gw-bg); }
.gw-tab-on::after { transform: scaleX(1); }
.gw-tabs-body { padding: 12px var(--gw-cardpad) var(--gw-cardpad); }
.gw-tab-panel { display: none; }
.gw-panel-on { display: block; }
.gw-tab-l li { border-bottom: 1px dashed var(--gw-line); }
.gw-tab-l li:last-child { border-bottom: 0; }
.gw-tab-l a { display: inline-block; max-width: calc(100% - 110px); padding: 16px 0;
    font-size: calc(var(--gw-fs) * 1.0); color: var(--gw-ink2);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: middle; }
.gw-tab-l time { float: right; padding: 16px 0; font-size: calc(var(--gw-fs) * .88);
    color: var(--gw-ink3); }
.gw-tab-l a:hover { color: var(--gw-p); }
.gw-tab-more { display: inline-block; margin-top: 20px; font-size: calc(var(--gw-fs) * .92);
    color: var(--gw-p); font-weight: 600; }


/* ---- 主体 B8 快捷入口矩阵 ---- */
.gw-quick { display: grid; grid-template-columns: repeat(8, 1fr); gap: 22px; }
.gw-quick-i a { display: flex; flex-direction: column; align-items: center; gap: 14px;
    padding: 34px 12px; background: var(--gw-bg); border: 1px solid var(--gw-line);
    border-radius: var(--gw-r); transition: all var(--gw-dur) var(--gw-ease); }
.gw-quick-i a:hover { border-color: var(--gw-p); background: var(--gw-p);
    transform: translateY(-6px); box-shadow: var(--gw-sh-h); }
.gw-quick-ic { width: 62px; height: 62px; border-radius: var(--gw-r-btn);
    background: var(--gw-pl); color: var(--gw-p); font-size: 25px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--gw-dur) var(--gw-ease); }
.gw-quick-i a:hover .gw-quick-ic { background: rgba(255,255,255,.22); color: #fff; }
.gw-quick-t { font-size: calc(var(--gw-fs) * .96); color: var(--gw-ink2); text-align: center; }
.gw-quick-i a:hover .gw-quick-t { color: #fff; }


/* ---- 列表 L3 四列紧凑网格 ---- */
.gw-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.gw-ccard { display: flex; flex-direction: column; background: var(--gw-bg);
    border: 1px solid var(--gw-line); border-radius: var(--gw-r); overflow: hidden;
    transition: all var(--gw-dur) var(--gw-ease); }
.gw-ccard:hover { border-color: var(--gw-p); box-shadow: var(--gw-sh-h); transform: translateY(-5px); }
.gw-ccard-img { display: block; height: 176px; background: var(--gw-soft); overflow: hidden; }
.gw-ccard-img img { width: 100%; height: 100%; object-fit: cover; }
.gw-ccard-body { display: flex; flex-direction: column; gap: 9px; padding: 20px 18px 22px; }
.gw-ccard-t { font-size: calc(var(--gw-fs) * 1.0); font-weight: var(--gw-w-h2);
    color: var(--gw-ink); line-height: 1.56; }
.gw-ccard:hover .gw-ccard-t { color: var(--gw-p); }
.gw-ccard-d { font-size: calc(var(--gw-fs) * .83); color: var(--gw-ink3); }


/* ---- 正文 A4 左侧元信息竖排 ---- */
.gw-art-ml { max-width: var(--gw-w); margin: 0 auto; padding: 0 var(--gw-pad);
    display: grid; grid-template-columns: 210px 1fr; gap: 64px; align-items: start; }
.gw-art-mlmeta { position: sticky; top: 140px; display: flex; flex-direction: column; gap: 16px;
    padding-right: 28px; border-right: 2px solid var(--gw-line); }
.gw-art-mld { font-size: calc(var(--gw-fs) * 1.06); font-weight: 700; color: var(--gw-p); }
.gw-art-mla, .gw-art-mlv { font-size: calc(var(--gw-fs) * .9); color: var(--gw-ink3); }
.gw-art-ml .gw-art { max-width: var(--gw-w-read); }
.gw-art-t { font-size: calc(var(--gw-fs) * 2.05); font-weight: var(--gw-w-h1);
    line-height: 1.44; color: var(--gw-ink); margin-bottom: 24px; }
.gw-art-lead { font-size: calc(var(--gw-fs) * 1.06); line-height: 1.94; color: var(--gw-ink2);
    padding-left: 22px; margin-bottom: 34px; border-left: 3px solid var(--gw-acc); }
.gw-art-body { font-size: calc(var(--gw-fs) * 1.03); line-height: 2.05; color: var(--gw-ink2); }
.gw-art-body p { margin-bottom: 1.38em; }
.gw-art-body h2 { font-size: calc(var(--gw-fs) * 1.48); color: var(--gw-ink); margin: 1.85em 0 .8em; }
.gw-art-body img { margin: 1.5em auto; border-radius: var(--gw-r-img); }
.gw-art-body ul { list-style: disc; padding-left: 1.7em; margin-bottom: 1.4em; }
.gw-art-body a { color: var(--gw-p); text-decoration: underline; }


/* ---- 单页 SG1 全宽正文 ---- */
.gw-single { max-width: var(--gw-w-read); margin: 0 auto; }
.gw-single-body { font-size: calc(var(--gw-fs) * 1.04); line-height: 2.02; color: var(--gw-ink2); }
.gw-single-body p { margin-bottom: 1.35em; }
.gw-single-body h2 { font-size: calc(var(--gw-fs) * 1.52); color: var(--gw-ink);
    margin: 1.9em 0 .8em; padding-left: 15px; border-left: 4px solid var(--gw-p); }
.gw-single-body h3 { font-size: calc(var(--gw-fs) * 1.24); color: var(--gw-ink);
    margin: 1.6em 0 .7em; }
.gw-single-body img { margin: 1.5em auto; border-radius: var(--gw-r-img); }
.gw-single-body ul, .gw-single-body ol { padding-left: 1.6em; margin-bottom: 1.3em; }
.gw-single-body ul { list-style: disc; }
.gw-single-body ol { list-style: decimal; }
.gw-single-body li { margin-bottom: .55em; }
.gw-single-body a { color: var(--gw-p); text-decoration: underline; }
.gw-single-body table { width: 100%; border-collapse: collapse; margin: 1.5em 0;
    font-size: calc(var(--gw-fs) * .96); }
.gw-single-body th, .gw-single-body td { border: 1px solid var(--gw-line); padding: 11px 14px;
    text-align: left; }
.gw-single-body th { background: var(--gw-soft); color: var(--gw-ink); font-weight: 600; }


/* ---- 分页 P2 仅上下页 + 计数信息 ---- */
.gw-pager-pn { display: flex; justify-content: center; align-items: center; gap: 26px;
    margin-top: 56px; flex-wrap: wrap; }
.gw-pager-pn .gw-pg-a { display: inline-flex; align-items: center; padding: 13px 30px;
    background: var(--gw-p); color: #fff; border-radius: var(--gw-r-btn);
    font-size: calc(var(--gw-fs) * .96); font-weight: 600; }
.gw-pager-pn .gw-pg-a:hover { background: var(--gw-pd); color: #fff; }
.gw-pager-pn .gw-pg-dis { display: inline-flex; align-items: center; padding: 13px 30px;
    background: var(--gw-soft); color: var(--gw-ink3); border-radius: var(--gw-r-btn);
    font-size: calc(var(--gw-fs) * .96); cursor: not-allowed; }
.gw-pager-pn .gw-pg-info { font-size: calc(var(--gw-fs) * .93); color: var(--gw-ink3);
    font-variant-numeric: tabular-nums; }


/* ---- 页脚 F7 政务式 ---- */
.gw-ft-gov { background: var(--gw-pd); color: rgba(255,255,255,.78);
    border-top: 5px solid var(--gw-acc); }
.gw-ft-govin { max-width: var(--gw-w-read); margin: 0 auto; padding: 62px var(--gw-pad) 40px;
    text-align: center; }
.gw-ft-govname { font-size: calc(var(--gw-fs) * 1.52); font-weight: var(--gw-w-h1);
    color: #fff; letter-spacing: 3px; margin-bottom: 22px; }
.gw-ft-govline { font-size: calc(var(--gw-fs) * .94); line-height: 2; color: rgba(255,255,255,.72); }
.gw-ft-gov .gw-ft-icp { margin-top: 12px; }
.gw-ft-gov .gw-ft-icp a { color: rgba(255,255,255,.72); font-size: calc(var(--gw-fs) * .94);
    text-decoration: underline; }
.gw-ft-gov .gw-ft-icp a:hover { color: #fff; }
.gw-ft-gov .gw-ft-copytxt { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.6); }
.gw-ft-govnav { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
    margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.gw-ft-govnav a { font-size: calc(var(--gw-fs) * .93); color: rgba(255,255,255,.74); }
.gw-ft-govnav a:hover { color: #fff; }
.gw-ft-gov .xp-powered { color: rgba(255,255,255,.5); }


/* ============================================================
   响应式：大屏增强 -> PC -> pad 横屏 -> pad 竖屏 -> 手机
   折叠导航阈值 768px（与 tpl-gw.js 的 TOUCH_BREAKPOINT 一致）
   ============================================================ */

/* ---------- ≥1600px 大屏增强：提升信息密度 ---------- */
@media (min-width: 1600px) {
    .gw-c { padding: 0 calc(var(--gw-pad) * 1.12); }
    .gw-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .gw-cards { grid-template-columns: repeat(4, 1fr); }
    .gw-biz { grid-template-columns: repeat(6, 1fr); }
    .gw-rel-grid { grid-template-columns: repeat(4, 1fr); }
    .gw-item-thumb { width: 262px; height: 176px; }
}

/* ---------- ≤1439px 小笔记本 / 大屏 pad 横屏 ---------- */
@media (max-width: 1439px) {
    .gw-c { padding: 0 32px; }
    .gw-sec { padding: calc(var(--gw-sec) * .88) 0; }
    .gw-hero-overlay .gw-hero-in { padding: 122px 32px 128px; }
    .gw-hero-t { font-size: calc(var(--gw-fs) * 3.2); }
    .gw-hero-dark .gw-hero-t { font-size: calc(var(--gw-fs) * 3.4); }
    .gw-hero-big { font-size: calc(var(--gw-fs) * 5.2); }
    .gw-sec-t { font-size: calc(var(--gw-fs) * 1.95); }
    .gw-quick { grid-template-columns: repeat(6, 1fr); }
    .gw-biz { grid-template-columns: repeat(4, 1fr); }
    .gw-hero-entries { grid-template-columns: repeat(4, 1fr); }
    .gw-intro { gap: 60px; }
    .gw-hero-split-in { gap: 56px; }
    .gw-single-split { gap: 60px; }
    .gw-single-sc { padding-left: 60px; }
    .gw-art-lay { gap: 48px; }
    .gw-art-lay { grid-template-columns: 1fr 300px; }
    .gw-feat { gap: 34px; }
    .gw-item-thumb { width: 208px; height: 142px; }
}

/* ---------- ≤1100px pad 横屏 / 窄桌面 ---------- */
@media (max-width: 1100px) {
    .gw-c { padding: 0 26px; }
    .gw-sec { padding: calc(var(--gw-sec) * .78) 0; }
    .gw-sec-head { margin-bottom: calc(var(--gw-sec) * .4); }
    .gw-hero-t { font-size: calc(var(--gw-fs) * 2.8); }
    .gw-hero-big { font-size: calc(var(--gw-fs) * 4.2); }
    .gw-hero-d { font-size: calc(var(--gw-fs) * 1.06); }
    .gw-sec-t { font-size: calc(var(--gw-fs) * 1.8); }
    .gw-news { grid-template-columns: 1fr; gap: 34px; }
    .gw-biz { grid-template-columns: repeat(3, 1fr); }
    .gw-cards { grid-template-columns: repeat(3, 1fr); }
    .gw-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .gw-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .gw-rel-grid { grid-template-columns: repeat(3, 1fr); }
    .gw-quick { grid-template-columns: repeat(4, 1fr); }
    .gw-hero-entries { grid-template-columns: repeat(3, 1fr); }
    .gw-ft-dark .gw-ft-main { grid-template-columns: 1fr 1fr; gap: 38px; }
    .gw-ft-light .gw-ft-main-3 { grid-template-columns: 1fr 1fr; gap: 40px; }
    .gw-ft-contact .gw-ft-main { grid-template-columns: 1fr; gap: 44px; }
    .gw-intro { gap: 44px; }
    .gw-feat { grid-template-columns: 1fr; }
    .gw-duo { gap: 36px; }
    .gw-item-thumb { width: 186px; height: 128px; }
    .gw-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 208px; }
    .gw-mos-i0, .gw-mos-i1, .gw-mos-i4 { grid-column: span 2; }
    .gw-mos-i2, .gw-mos-i3 { grid-column: span 1; }
    .gw-lk { padding: 30px 14px; font-size: calc(var(--gw-fs) * .96); }
    .gw-hero-split-in { grid-template-columns: 1fr; gap: 46px; min-height: 0; padding: 76px 26px 84px; }
    .gw-hero-in-spec { grid-template-columns: 1fr; gap: 44px; min-height: 0; padding: 76px 26px 84px; }
    .gw-single-split { grid-template-columns: 1fr; gap: 34px; }
    .gw-single-sh { position: static; }
    .gw-single-sc { border-left: 0; padding-left: 0; border-top: 1px solid var(--gw-line); padding-top: 30px; }
    .gw-art-lay { grid-template-columns: 1fr; gap: 40px; }
    .gw-art-side { position: static; }
    .gw-art-ml { grid-template-columns: 1fr; gap: 30px; }
    .gw-art-mlmeta { position: static; flex-direction: row; flex-wrap: wrap; gap: 20px;
                      padding-right: 0; padding-bottom: 20px;
                      border-right: 0; border-bottom: 2px solid var(--gw-line); }
    .gw-lay { grid-template-columns: 1fr; gap: 34px; }
    .gw-side { position: static; }
    .gw-single-lay { grid-template-columns: 1fr; gap: 34px; }
    .gw-single-side { position: static; }
    .gw-dev::before { left: 9px; transform: none; }
    .gw-dev-item, .gw-dev-item:nth-child(even) { width: 100%; margin-left: 0;
        padding: 0 0 34px 44px; text-align: left; }
    .gw-dev-node, .gw-dev-item:nth-child(even) .gw-dev-node { left: 0; right: auto; }
    .gw-tl-head { position: static; }
    .gw-hero-timeline .gw-hero-in { grid-template-columns: 1fr; gap: 46px; }
    .gw-hd-in-split { grid-template-columns: 1fr; min-height: 0; padding: 24px 26px; gap: 20px; }
    .gw-logo-c { justify-self: center; }
    .gw-rail { position: fixed; left: 0; transform: translateX(-100%);
                 transition: transform .3s ease; width: 280px; }
    .gw-rail.gw-rail-open { transform: none; }
    .gw-main { margin-left: 0; }
    .gw-burger-float { display: flex; }
    .gw-search-ip { width: 190px; }
}

/* ---------- ≤1024px pad 横屏边界 ---------- */
@media (max-width: 1024px) {
    .gw-c { padding: 0 22px; }
    .gw-hero-t { font-size: calc(var(--gw-fs) * 2.5); }
    .gw-hero-big { font-size: calc(var(--gw-fs) * 3.6); }
    .gw-sec-t { font-size: calc(var(--gw-fs) * 1.68); }
    .gw-hd-in { min-height: 82px; gap: 20px; padding: 0 22px; }
    .gw-nav-gov .gw-lk { padding: 17px 6px; font-size: calc(var(--gw-fs) * .96); }
    .gw-hero-cols { grid-template-columns: 1fr; }
    .gw-hero-col { border-right: 0; border-bottom: 1px solid var(--gw-line); padding: 26px 18px; }
    .gw-hero-col:last-child { border-bottom: 0; }
    .gw-multi { grid-template-columns: repeat(2, 1fr); }
    .gw-hero-entries { grid-template-columns: repeat(2, 1fr); }
    .gw-intro { grid-template-columns: 1fr; gap: 38px; }
    .gw-intro-nav { grid-template-columns: repeat(2, 1fr); }
    .gw-ft-dark .gw-ft-main { padding: 58px 22px 40px; }
    .gw-strip-card { flex: 0 0 276px; }
    .gw-strip-img { height: 176px; }
    .gw-art-fb-img { height: 340px; }
    .gw-mas { columns: 2; }
    .gw-hd-cta { display: none; }
}

/* ---------- ≤900px pad 竖屏 ---------- */
@media (max-width: 900px) {
    .gw-sec { padding: calc(var(--gw-sec) * .68) 0; }
    .gw-hero-overlay .gw-hero-in { padding: 96px 22px 100px; }
    .gw-hero-dark .gw-hero-in { padding: 124px 22px 130px; }
    .gw-hero-editorial .gw-hero-in { padding: 88px 22px 76px; }
    .gw-hero-t { font-size: calc(var(--gw-fs) * 2.24); }
    .gw-hero-big { font-size: calc(var(--gw-fs) * 3.0); }
    .gw-hero-timeline .gw-hero-in { padding: 76px 22px 82px; }
    .gw-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gw-grid-3, .gw-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gw-rel-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gw-biz { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .gw-svc { grid-template-columns: 1fr; }
    .gw-quick { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .gw-duo { grid-template-columns: 1fr; gap: 28px; }
    .gw-multi { grid-template-columns: 1fr; }
    .gw-ft-dark .gw-ft-main { grid-template-columns: 1fr 1fr; gap: 30px; padding: 52px 22px 34px; }
    .gw-ft-light .gw-ft-main-3 { grid-template-columns: 1fr; gap: 34px; }
    .gw-ft-blin { flex-direction: column; gap: 38px; padding: 52px 22px 36px; }
    .gw-cta-in { flex-direction: column; align-items: flex-start; padding: 62px 22px; gap: 28px; }
    .gw-art-t { font-size: calc(var(--gw-fs) * 1.72); }
    .gw-art-fb-img { height: 280px; }
    .gw-item { gap: 20px; padding: 20px; }
    .gw-item-thumb { width: 158px; height: 112px; }
    .gw-search { display: none; }
}

/* ---------- ≤768px 大手机：启用折叠导航 ---------- */
@media (max-width: 768px) {
    .gw-burger {
        display: flex; flex-direction: column; justify-content: center; align-items: center;
        gap: 5px; width: 46px; height: 46px; flex-shrink: 0;
        border: 1px solid var(--gw-line); border-radius: var(--gw-r-btn);
        background: var(--gw-bg); }
    .gw-burger span { display: block; width: 20px; height: 2px; background: var(--gw-ink);
                        transition: transform .28s ease, opacity .28s ease; }
    .gw-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .gw-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .gw-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* 横向导航 -> 抽屉 */
    .gw-hd { position: relative; }
    .gw-nav { position: absolute; top: 100%; left: 0; right: 0; display: none;
                background: var(--gw-bg); box-shadow: 0 16px 34px rgba(0,0,0,.15);
                max-height: 72vh; overflow-y: auto; border-top: 1px solid var(--gw-line); }
    .gw-nav.gw-nav-open { display: block; }
    .gw-nav-l1 { display: block; }
    .gw-lk { padding: 16px 22px; border-bottom: 1px solid var(--gw-line); }
    .gw-lk::after { display: none; }
    .gw-nav-l2 { position: static; opacity: 1; visibility: visible; transform: none;
                   box-shadow: none; border: 0; border-radius: 0; display: none;
                   background: var(--gw-soft); min-width: 0; }
    .gw-has-sub.gw-sub-open .gw-nav-l2 { display: block; }
    .gw-nav-l2 a { padding: 13px 22px 13px 40px; }
    .gw-has-sub > .gw-lk::before { display: none; }

    /* 悬浮导航在移动端需实底 */
    .gw-hd { background: var(--gw-bg); }
    .gw-logo-light .gw-logo-txt b { color: var(--gw-ink); }
    .gw-logo-mark { background: var(--gw-p); border-color: var(--gw-p); }
    .gw-nav-light .gw-lk { color: var(--gw-ink2); }

    /* 政务导航条折叠 */
    .gw-nav-gov-wrap { position: relative; }
    .gw-nav-gov-in { padding: 0; }
    .gw-nav-gov .gw-nav-l1 { display: none; }
    .gw-nav-gov.gw-nav-open .gw-nav-l1 { display: block; }
    .gw-nav-gov .gw-li { flex: none; }
    .gw-nav-gov .gw-lk { text-align: left; padding: 15px 22px; border-bottom: 1px solid rgba(255,255,255,.14); }

    /* 左固定导航在移动端为抽屉 */
    .gw-rail { width: 274px; }

    /* 布局普遍单列 */
    .gw-hd-in, .gw-hd-in-split, .gw-hd-in-float, .gw-hd-in-pill { min-height: 70px; gap: 14px; padding: 0 18px; }
    .gw-logo-mark { width: 40px; height: 40px; font-size: 18px; }
    .gw-logo-txt b { font-size: calc(var(--gw-fs) * 1.12); }
    .gw-logo-txt i { display: none; }
    .gw-c { padding: 0 18px; }
    .gw-hero-split-in, .gw-hero-in-spec { padding: 62px 18px 68px; }
    .gw-hero-overlay .gw-hero-in { padding: 78px 18px 82px; }
    .gw-hero-dark .gw-hero-in { padding: 104px 18px 110px; }
    .gw-hero-t { font-size: calc(var(--gw-fs) * 1.92); }
    .gw-hero-big { font-size: calc(var(--gw-fs) * 2.5); letter-spacing: -.5px; }
    .gw-hero-d { font-size: calc(var(--gw-fs) * 1.0); margin-bottom: 28px; }
    .gw-hero-btns { gap: 12px; }
    .gw-btn { padding: 12px 24px; font-size: calc(var(--gw-fs) * .94); }
    .gw-sec-head { margin-bottom: 34px; }
    .gw-sec-head-l { flex-direction: column; align-items: flex-start; gap: 12px; }
    .gw-sec-t { font-size: calc(var(--gw-fs) * 1.56); }
    .gw-sec-en { letter-spacing: 3px; margin-bottom: 8px; }
    .gw-hero-search { flex-direction: column; gap: 12px; }
    .gw-hero-ip { border-radius: var(--gw-r-btn); }
    .gw-hero-go { border-radius: var(--gw-r-btn); padding: 15px; }
    .gw-hero-entries { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .gw-hero-entries a { padding: 20px 8px; }
    .gw-entry-ic { width: 46px; height: 46px; font-size: 19px; }
    .gw-tabs-bar { flex-direction: column; }
    .gw-tab { min-width: 0; padding: 16px 14px; text-align: left; border-bottom: 1px solid var(--gw-line); }
    .gw-tab::after { left: 0; right: auto; bottom: -1px; width: 3px; height: auto; top: 0;
                       transform: scaleY(0); }
    .gw-tab-on::after { transform: scaleY(1); }
    .gw-tabs-body { padding: 8px 20px 20px; }
    .gw-mosaic { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; padding: 24px 18px 0; }
    .gw-mos-i0, .gw-mos-i1, .gw-mos-i4 { grid-column: span 1; grid-row: span 1; }
    .gw-mos-i0 .gw-mos-t { font-size: calc(var(--gw-fs) * 1.4); }
    .gw-news-main { min-height: 0; padding: 30px 26px; }
    .gw-news-date b { font-size: calc(var(--gw-fs) * 2.4); }
    .gw-news-mt h3 { font-size: calc(var(--gw-fs) * 1.22); }
    .gw-intro-t { font-size: calc(var(--gw-fs) * 1.8); }
    .gw-intro-nav { grid-template-columns: 1fr; }
    .gw-card-img, .gw-gcard-img { height: 196px; }
    .gw-ccard-img { height: 158px; }
    .gw-item { flex-direction: column; gap: 16px; }
    .gw-item-thumb { width: 100%; height: 200px; }
    .gw-mas { columns: 1; }
    .gw-tbl-row { flex-wrap: wrap; gap: 10px; padding: 16px 18px; }
    .gw-tbl-t { flex: 1 1 100%; }
    .gw-row { flex-wrap: wrap; gap: 8px; padding: 16px 6px; }
    .gw-row-d { width: auto; }
    .gw-row-t { flex: 1 1 100%; white-space: normal; }
    .gw-grp-l a { flex-wrap: wrap; gap: 10px; padding: 15px 20px; }
    .gw-art { margin-bottom: 40px; }
    .gw-art-t { font-size: calc(var(--gw-fs) * 1.5); }
    .gw-art-meta { gap: 14px; font-size: calc(var(--gw-fs) * .84); }
    .gw-art-body { font-size: calc(var(--gw-fs) * 1.0); line-height: 1.94; }
    .gw-art-fb-img { height: 216px; }
    .gw-rel { padding-top: 40px; }
    .gw-rel-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .gw-rel-img { height: 116px; }
    .gw-pn { flex-direction: column; align-items: stretch; gap: 24px; }
    .gw-pn-back { text-align: center; }
    .gw-pager-num, .gw-pager-pill { gap: 7px; margin-top: 40px; }
    .gw-pager-num .gw-pg-a, .gw-pager-num .gw-pg-cur { min-width: 38px; height: 38px; padding: 0 11px; }
    .gw-pager-pill .gw-pg-pill { min-width: 40px; height: 40px; padding: 0 16px; }
    .gw-pager-ul { gap: 18px; }
    .gw-ft-dark .gw-ft-main, .gw-ft-light .gw-ft-main-3,
    .gw-ft-contact .gw-ft-main, .gw-ft-mapin { padding: 48px 18px 30px; }
    .gw-ft-dark .gw-ft-main, .gw-ft-light .gw-ft-main-3 { grid-template-columns: 1fr; gap: 28px; }
    .gw-ft-mapgrid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
    .gw-ft-l-2col, .gw-ft-contact .gw-ft-l { columns: 1; }
    .gw-ft-copy-in { padding: 18px; }
    .gw-top { right: 16px; bottom: 20px; width: 44px; height: 44px; line-height: 44px; font-size: 18px; }
    .gw-single-body, .gw-single-main .gw-single-body { font-size: calc(var(--gw-fs) * 1.0); line-height: 1.94; }
    .gw-single-st { font-size: calc(var(--gw-fs) * 1.86); }
    .gw-acc-q { padding: 19px 20px; font-size: calc(var(--gw-fs) * 1.0); }
    .gw-acc-a { padding: 18px 20px 22px; }
    .gw-feat-main { padding: 34px 28px; }
    .gw-feat-main h3 { font-size: calc(var(--gw-fs) * 1.46); }
    .gw-strip-in { padding: 4px 18px; gap: 16px; }
    .gw-strip-card { flex: 0 0 236px; }
    .gw-strip-img { height: 152px; }
    .gw-duo-col { padding: 24px 20px; }
    .gw-gov-bar-in { height: auto; padding: 8px 18px; flex-wrap: wrap; gap: 8px; }
    .gw-util-in { height: auto; padding: 9px 18px; flex-wrap: wrap; gap: 8px; }
    .gw-hd-in { padding: 16px 18px; }
}

/* ---------- ≤560px 小屏手机 ---------- */
@media (max-width: 560px) {
    .gw-c { padding: 0 15px; }
    .gw-sec { padding: calc(var(--gw-sec) * .56) 0; }
    .gw-hero-overlay .gw-hero-in { padding: 62px 15px 66px; }
    .gw-hero-dark .gw-hero-in { padding: 86px 15px 90px; }
    .gw-hero-split-in, .gw-hero-in-spec { padding: 52px 15px 58px; }
    .gw-hero-t { font-size: calc(var(--gw-fs) * 1.66); }
    .gw-hero-big { font-size: calc(var(--gw-fs) * 2.0); }
    .gw-hero-k { letter-spacing: 3px; font-size: 10px; }
    .gw-hero-d { font-size: calc(var(--gw-fs) * .96); }
    .gw-hero-btns { flex-direction: column; align-items: stretch; }
    .gw-btn { width: 100%; }
    .gw-sec-t { font-size: calc(var(--gw-fs) * 1.42); }
    .gw-sec-d { font-size: calc(var(--gw-fs) * .94); }
    .gw-cards, .gw-grid-3, .gw-grid-4, .gw-biz { grid-template-columns: 1fr; }
    .gw-rel-grid { grid-template-columns: 1fr; }
    .gw-quick { grid-template-columns: repeat(2, 1fr); }
    .gw-hero-entries { grid-template-columns: 1fr; }
    .gw-hero-feats { grid-template-columns: 1fr; }
    .gw-ft-mapgrid { grid-template-columns: 1fr; }
    .gw-art-t { font-size: calc(var(--gw-fs) * 1.34); }
    .gw-art-meta { flex-direction: column; gap: 7px; align-items: center; }
    .gw-single-pad { padding: 24px 18px; }
    .gw-card-img, .gw-gcard-img, .gw-ccard-img { height: 176px; }
    .gw-item-thumb { height: 176px; }
    .gw-news-main { padding: 26px 22px; }
    .gw-news-date b { font-size: calc(var(--gw-fs) * 2.0); }
    .gw-intro-t { font-size: calc(var(--gw-fs) * 1.56); }
    .gw-dev-date { font-size: calc(var(--gw-fs) * 1.34); }
    .gw-tl-head .gw-hero-t { font-size: calc(var(--gw-fs) * 1.8); }
    .gw-cta-txt h2 { font-size: calc(var(--gw-fs) * 1.56); }
    .gw-cta-in { padding: 48px 15px; }
    .gw-ft-logo { font-size: calc(var(--gw-fs) * 1.2); }
    .gw-ft-govname { font-size: calc(var(--gw-fs) * 1.28); letter-spacing: 1.5px; }
    .gw-logo-txt b { font-size: calc(var(--gw-fs) * 1.04); }
    .gw-hd-in, .gw-hd-in-split, .gw-hd-in-float, .gw-hd-in-pill { min-height: 62px; padding: 12px 15px; }
    .gw-burger { width: 42px; height: 42px; }
    .gw-rv { transform: translateY(16px); }
}

/* ---------- 无障碍：尊重系统「减少动态效果」偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
    html.gw-js .gw-rv { opacity: 1; transform: none; transition: none; }
    .gw-btn, .gw-card, .gw-gcard, .gw-ccard, .gw-item, .gw-biz-card,
    .gw-svc-card, .gw-quick-i a, .gw-strip-card, .gw-rel-card, .gw-mas-cell,
    .gw-top, .gw-hd { transition: none; }
    .gw-card:hover, .gw-gcard:hover, .gw-biz-card:hover, .gw-svc-card:hover,
    .gw-quick-i a:hover, .gw-strip-card:hover, .gw-rel-card:hover,
    .gw-mas-cell:hover, .gw-item:hover { transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------- 打印：只输出正文，隐藏导航与装饰 ---------- */
@media print {
    .gw-hd, .gw-rail, .gw-hero, .gw-ft, .gw-top, .gw-prog, .gw-pager,
    .gw-burger, .gw-rel, .gw-pn, .xp-powered { display: none !important; }
    body { color: #000; background: #fff; font-size: 12pt; }
    .gw-art, .gw-single, .gw-c { max-width: none; padding: 0; }
    a { color: #000; text-decoration: underline; }
}

/* ---- 内页题图与面包屑（每套模板按自身令牌呈现不同视觉） ---- */
.gw-pagehero { background: linear-gradient(135deg, var(--gw-pd), var(--gw-p)); color: #fff; }
.gw-pagehero .gw-c { padding-top: 66px; padding-bottom: 66px; }
.gw-ph-t { font-size: calc(var(--gw-fs) * 2.3); font-weight: var(--gw-w-h1);
              color: #fff; line-height: 1.3; }
.gw-ph-d { font-size: calc(var(--gw-fs) * 1.0); line-height: 1.88; opacity: .88;
              margin-top: 14px; max-width: 1000px; }
.gw-pagehero-art { background: var(--gw-soft); color: var(--gw-ink);
                      border-bottom: 1px solid var(--gw-line); }
.gw-pagehero-art .gw-ph-t { color: var(--gw-ink); max-width: var(--gw-w-read); }
.gw-ph-meta { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 18px;
                 font-size: calc(var(--gw-fs) * .89); color: var(--gw-ink3); }
.gw-ph-meta time { color: var(--gw-p); font-weight: 600; }
.gw-crumb { background: var(--gw-bg); border-bottom: 1px solid var(--gw-line); }
.gw-crumb-in { max-width: var(--gw-w); margin: 0 auto; padding: 15px var(--gw-pad);
                  font-size: calc(var(--gw-fs) * .88); color: var(--gw-ink3);
                  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.gw-crumb-in a { color: var(--gw-ink3); }
.gw-crumb-in a:hover { color: var(--gw-p); }
.gw-crumb-sep { opacity: .55; }
.gw-crumb-cur { color: var(--gw-ink2); }
.gw-main { min-height: 46vh; }

/* ---------- 站点 Logo（后台「站点管理」上传，存 cms_site.logo；留空则显示站点名称文字） ---------- */
.gw-logo-img { height: 44px; width: auto; max-width: 220px; object-fit: contain; display: block; }
@media (max-width: 768px) {
    .gw-logo-img { height: 34px; max-width: 160px; }
}
