/* ===== 变量 ===== */
:root {
    --c-primary: #0B1929;
    --c-accent: #00A896;
    --c-accent-hover: #008F7F;
    --c-highlight: #E76F51;
    --c-bg: #F7F9FC;
    --c-surface: #FFFFFF;
    --c-tint: #EEF3F8;
    --c-text: #1A2332;
    --c-muted: #5C6B7A;
    --c-border: #DDE4EC;
    --radius: 10px;
    --shadow: 0 4px 20px rgba(11,25,41,0.07);
    --header-h: 62px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); transition: color 0.2s; }
ul { list-style: none; }

.zd28accontainer {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 头部 ===== */
.zd28acheader {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 1px 8px rgba(11,25,41,0.04);
}

.zd28acheader-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.zd28aclogo {
    font-size: 17px;
    font-weight: 700;
    flex-shrink: 0;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zd28aclogo a { color: var(--c-primary); text-decoration: none; }

.zd28acmain-nav ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

.zd28acmain-nav a {
    display: block;
    padding: 6px 9px;
    color: var(--c-muted);
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.zd28acmain-nav a:hover,
.zd28acmain-nav .zd28acthis a,
.zd28acmain-nav li.zd28acthis a {
    color: var(--c-accent);
    background: rgba(0,168,150,0.08);
}

.zd28acmenu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    cursor: pointer;
    padding: 6px;
}

.zd28acmenu-toggle span {
    display: block;
    height: 2px;
    background: var(--c-primary);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.zd28acmenu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.zd28acmenu-toggle.active span:nth-child(2) { opacity: 0; }
.zd28acmenu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 按钮 ===== */
.zd28acbtn {
    display: inline-block;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-align: center;
}

.zd28acbtn-fill {
    background: var(--c-accent);
    color: #fff;
    border: 2px solid var(--c-accent);
}

.zd28acbtn-fill:hover { background: var(--c-accent-hover); border-color: var(--c-accent-hover); color: #fff; }

.zd28acbtn-ghost {
    background: transparent;
    color: var(--c-primary);
    border: 2px solid var(--c-border);
}

.zd28acbtn-ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ===== 首屏 ===== */
.zd28achero {
    position: relative;
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 56px;
    overflow: hidden;
}

.zd28achero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(0,168,150,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(231,111,81,0.08) 0%, transparent 55%),
        linear-gradient(160deg, #EEF3F8 0%, #F7F9FC 50%, #E8F5F3 100%);
    z-index: 0;
}

.zd28achero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.zd28achero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-accent);
    background: rgba(0,168,150,0.1);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.zd28achero h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1.25;
    margin-bottom: 14px;
}

.zd28achero-lead {
    font-size: 15px;
    color: var(--c-muted);
    margin-bottom: 10px;
    line-height: 1.7;
}

.zd28achero-text {
    font-size: 14px;
    color: var(--c-text);
    margin-bottom: 24px;
    line-height: 1.75;
}

.zd28achero-btns { display: flex; flex-wrap: wrap; gap: 10px; }

.zd28achero-visual { display: flex; flex-direction: column; gap: 16px; align-items: center; }

.zd28achero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.zd28acmetric {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 14px 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.zd28acmetric b {
    display: block;
    font-size: 20px;
    color: var(--c-accent);
    margin-bottom: 2px;
}

.zd28acmetric span { font-size: 11px; color: var(--c-muted); }

.zd28achero-img {
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(11,25,41,0.12));
}

/* ===== 通用板块 ===== */
.zd28acsec { padding: 64px 0; }

.zd28acsec-white { background: var(--c-surface); }
.zd28acsec-tint { background: var(--c-tint); }
.zd28acsec-dark { background: var(--c-primary); color: #fff; }

.zd28acsec-top { margin-bottom: 36px; }
.zd28acsec-top-light .zd28acsec-title,
.zd28acsec-top-light .zd28acsec-desc { color: #fff; }

.zd28acsec-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.zd28acsec-desc {
    font-size: 14px;
    color: var(--c-muted);
    max-width: 520px;
    line-height: 1.6;
}

/* ===== Bento 服务 ===== */
.zd28acbento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.zd28acbento-item {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
    transition: box-shadow 0.2s;
}

.zd28acbento-item:hover { box-shadow: var(--shadow); }

.zd28acbento-wide { grid-column: span 1; }

.zd28acbento-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.zd28acbento-item h3 {
    font-size: 17px;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.zd28acbento-item p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.7;
}

/* ===== 专业保障 ===== */
.zd28acpillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.zd28acpillar {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
}

.zd28acpillar-icon {
    width: 40px; height: 40px;
    background: rgba(0,168,150,0.12);
    border-radius: 50%;
    margin: 0 auto 12px;
    position: relative;
}

.zd28acpillar-icon::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 12px; height: 12px;
    background: var(--c-accent);
    border-radius: 50%;
}

.zd28acpillar h3 {
    font-size: 15px;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.zd28acpillar p {
    font-size: 12px;
    color: var(--c-muted);
    line-height: 1.65;
}

/* ===== 时间线 ===== */
.zd28actimeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
}

.zd28actimeline::before {
    content: "";
    position: absolute;
    top: 22px; left: 8%; right: 8%;
    height: 2px;
    background: var(--c-border);
    z-index: 0;
}

.zd28actl-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 4px;
}

.zd28actl-item i {
    display: inline-flex;
    width: 36px; height: 36px;
    align-items: center;
    justify-content: center;
    background: var(--c-accent);
    color: #fff;
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 0 0 4px var(--c-surface);
}

.zd28actl-item h3 {
    font-size: 13px;
    color: var(--c-primary);
    margin-bottom: 4px;
}

.zd28actl-item p {
    font-size: 11px;
    color: var(--c-muted);
    line-height: 1.5;
}

/* ===== FAQ ===== */
.zd28acfaq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.zd28acfaq {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.zd28acfaq summary {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 36px;
}

.zd28acfaq summary::-webkit-details-marker { display: none; }

.zd28acfaq summary::after {
    content: "+";
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--c-accent);
}

.zd28acfaq[open] summary::after { content: "−"; }

.zd28acfaq p {
    padding: 0 18px 14px;
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.65;
}

/* ===== 文章资讯 ===== */
.zd28achome-article-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.zd28achome-article-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.zd28achome-article-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.zd28achome-article-thumb {
    display: block;
    height: 110px;
    overflow: hidden;
}

.zd28achome-article-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.zd28achome-article-info { padding: 10px 12px 12px; }

.zd28achome-article-info h3 {
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 35px;
}

.zd28achome-article-info h3 a {
    color: var(--c-text);
    text-decoration: none;
}

.zd28achome-article-info h3 a:hover { color: var(--c-accent); }

/* ===== 案例 ===== */
.zd28accases-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.zd28accase {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 20px 16px;
    border-top: 3px solid var(--c-accent);
}

.zd28accase span {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--c-accent);
    margin-bottom: 8px;
}

.zd28accase h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.zd28accase p {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* ===== 行业资讯 ===== */
.zd28acnews-list { display: flex; flex-direction: column; gap: 12px; }

.zd28acnews-row {
    display: flex;
    gap: 20px;
    padding: 18px 20px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    align-items: flex-start;
    transition: box-shadow 0.2s;
}

.zd28acnews-row:hover { box-shadow: var(--shadow); }

.zd28acnews-row time {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-accent);
    min-width: 80px;
    padding-top: 2px;
}

.zd28acnews-row h3 {
    font-size: 15px;
    color: var(--c-primary);
    margin-bottom: 6px;
}

.zd28acnews-row p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.6;
}

/* ===== 注意事项 ===== */
.zd28actips-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.zd28actip {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
}

.zd28actip h3 {
    font-size: 15px;
    color: var(--c-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--c-accent);
}

.zd28actip li {
    font-size: 13px;
    color: var(--c-muted);
    padding-left: 14px;
    position: relative;
    margin-bottom: 7px;
    line-height: 1.55;
}

.zd28actip li::before {
    content: "·";
    position: absolute;
    left: 2px;
    color: var(--c-accent);
    font-weight: 700;
}

/* ===== 知识补充 ===== */
.zd28acknowledge {
    padding: 48px 0;
    background: linear-gradient(135deg, rgba(0,168,150,0.06) 0%, rgba(11,25,41,0.04) 100%);
    border-top: 1px solid var(--c-border);
}

.zd28acknowledge-box {
    max-width: 780px;
    margin: 0 auto;
}

.zd28acknowledge-box h2 {
    font-size: 20px;
    color: var(--c-primary);
    margin-bottom: 14px;
    text-align: center;
}

.zd28acknowledge-box p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.zd28acknowledge-box p:last-child { margin-bottom: 0; }

/* ===== 页脚 ===== */
.zd28acfooter {
    background: var(--c-primary);
    color: rgba(255,255,255,0.65);
    padding: 36px 0 22px;
}

.zd28acfooter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.zd28acfooter-links h3 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
}

.zd28acfooter-links li { margin-bottom: 5px; }

.zd28acfooter-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
}

.zd28acfooter-links a:hover { color: var(--c-accent); }

.zd28acfooter-info { text-align: right; }
.zd28acfooter-info p { font-size: 13px; margin-bottom: 5px; }
.zd28acfooter-info a { color: var(--c-accent); text-decoration: none; }

/* ===== 内页 ===== */
.zd28acpage-wrap {
    padding-top: calc(var(--header-h) + 16px);
    padding-bottom: 48px;
    min-height: 60vh;
}

.zd28acbreadcrumb {
    padding: 10px 0;
    font-size: 13px;
    color: var(--c-muted);
}

.zd28acbreadcrumb a { color: var(--c-accent); text-decoration: none; }
.zd28acbreadcrumb-sep { margin: 0 6px; color: var(--c-border); }
.zd28acbreadcrumb-current { color: var(--c-text); }

.zd28acpage-layout {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.zd28acpage-main { flex: 1; min-width: 0; }

/* ===== 侧栏 ===== */
.zd28acsidebar { width: 270px; flex-shrink: 0; }

.zd28acsidebar-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 14px;
}

.zd28acsidebar-block:last-child { margin-bottom: 0; }

.zd28acsidebar-title {
    background: var(--c-primary);
    color: #fff;
    font-size: 13px;
    padding: 11px 14px;
    margin: 0;
}

.zd28acsidebar-title a { color: #fff; text-decoration: none; }
.zd28acsidebar-title a:hover { color: var(--c-accent); }

.zd28acsidebar-thumb-list { max-height: 340px; overflow-y: auto; }

.zd28acsidebar-thumb-item {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--c-border);
    align-items: flex-start;
}

.zd28acsidebar-thumb-item:last-child { border-bottom: none; }

.zd28acsidebar-thumb {
    flex-shrink: 0;
    width: 60px; height: 45px;
    overflow: hidden;
    border-radius: 6px;
    display: block;
}

.zd28acsidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }

.zd28acsidebar-thumb-info { flex: 1; min-width: 0; }

.zd28acsidebar-thumb-info > a {
    display: block;
    font-size: 12px;
    color: var(--c-text);
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 2px;
}

.zd28acsidebar-thumb-info > a:hover { color: var(--c-accent); }

.zd28acsidebar-date { font-size: 11px; color: var(--c-muted); }

/* ===== 内容页 ===== */
.zd28acarticle-detail {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 26px;
}

.zd28acarticle-header {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--c-border);
}

.zd28acarticle-title {
    font-size: 22px;
    color: var(--c-primary);
    line-height: 1.4;
    margin-bottom: 10px;
}

.zd28acarticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--c-muted);
}

.zd28acarticle-meta a { color: var(--c-accent); text-decoration: none; }

.zd28acarticle-thumb {
    margin-bottom: 18px;
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
}

.zd28acarticle-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--c-text);
    margin-bottom: 18px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.zd28acarticle-body .context,
.zd28acarticle-body .dede_pagelist { display: none !important; }

.zd28acarticle-body img { max-width: 100%; height: auto; }

.zd28acdiyfield {
    margin-bottom: 14px;
    padding: 14px;
    background: var(--c-bg);
    border-radius: var(--radius);
    font-size: 14px;
}

.zd28acimage-item { margin-bottom: 10px; text-align: center; }
.zd28acimage-item figcaption { font-size: 13px; color: var(--c-muted); margin-top: 5px; }

.zd28acmeta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 12px 0;
    margin-bottom: 14px;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.zd28actagitem a {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0,168,150,0.08);
    color: var(--c-accent);
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
}

.zd28actagitem a:hover { background: var(--c-accent); color: #fff; }

.zd28acarticle-prenext {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--c-border);
    font-size: 13px;
}

.zd28acprenext-left, .zd28acprenext-right { flex: 1; min-width: 0; }
.zd28acprenext-right { text-align: right; }
.zd28acprenext-left ul li:nth-child(2), .zd28acprenext-left .next { display: none; }
.zd28acprenext-right ul li:nth-child(1), .zd28acprenext-right .pre { display: none; }
.zd28acarticle-prenext a { color: var(--c-accent); text-decoration: none; }
.zd28acarticle-prenext ul { list-style: none; padding: 0; margin: 0; }

.zd28acrelated-title {
    font-size: 16px;
    color: var(--c-primary);
    margin-bottom: 14px;
    padding-bottom: 7px;
    border-bottom: 2px solid var(--c-accent);
}

.zd28acrelated-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--c-border);
}

.zd28acrelated-item:last-child { border-bottom: none; }

.zd28acrelated-thumb {
    flex-shrink: 0;
    width: 100px; height: 68px;
    overflow: hidden;
    border-radius: 6px;
    display: block;
}

.zd28acrelated-thumb img { width: 100%; height: 100%; object-fit: cover; }

.zd28acrelated-link {
    font-size: 14px;
    color: var(--c-primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.zd28acrelated-link:hover { color: var(--c-accent); }
.zd28acrelated-info p { font-size: 12px; color: var(--c-muted); line-height: 1.5; }

/* ===== 列表页 ===== */
.zd28aclist-header {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-bottom: 14px;
}

.zd28aclist-title { font-size: 21px; color: var(--c-primary); margin-bottom: 5px; }
.zd28aclist-desc { font-size: 13px; color: var(--c-muted); line-height: 1.6; }

.zd28aclistbox {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.zd28aclist-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--c-border);
    transition: background 0.15s;
}

.zd28aclist-item:last-child { border-bottom: none; }
.zd28aclist-item:hover { background: var(--c-bg); }

.zd28aclist-thumb {
    flex-shrink: 0;
    width: 170px; height: 114px;
    overflow: hidden;
    border-radius: var(--radius);
    display: block;
}

.zd28aclist-thumb img { width: 100%; height: 100%; object-fit: cover; }

.zd28aclist-content { flex: 1; min-width: 0; }

.zd28aclist-meta {
    font-size: 12px;
    color: var(--c-muted);
    margin-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.zd28aclist-meta a { color: var(--c-accent); text-decoration: none; }

.zd28aclist-link {
    font-size: 15px;
    color: var(--c-primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    line-height: 1.4;
}

.zd28aclist-link:hover { color: var(--c-accent); }
.zd28aclist-intro { font-size: 13px; color: var(--c-muted); line-height: 1.6; }

/* ===== 分页 ===== */
.zd28acpagebar {
    margin-top: 14px;
    padding: 14px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
}

.zd28acpages-lr { width: 100%; }

.zd28acpages ul,
.zd28acpagelist {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0; margin: 0;
    width: 100%;
}

.zd28acpagelist li { display: inline-block; }

.zd28acpages a, .zd28acpages span,
.zd28acpagelist a, .zd28acpagelist span {
    display: inline-block;
    padding: 6px 13px;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    color: var(--c-text);
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.zd28acpages a:hover, .zd28acpagelist a:hover {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}

.zd28acpages .thisclass span, .zd28acpages .thisclass a,
.zd28acpagelist .thisclass span, .zd28acpagelist .thisclass a {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .zd28achero-inner { grid-template-columns: 1fr; gap: 28px; }
    .zd28achero-visual { order: -1; }
    .zd28acpillars { grid-template-columns: repeat(2, 1fr); }
    .zd28actimeline { grid-template-columns: repeat(3, 1fr); }
    .zd28actimeline::before { display: none; }
    .zd28accases-row { grid-template-columns: repeat(2, 1fr); }
    .zd28achome-article-grid { grid-template-columns: repeat(3, 1fr); }
    .zd28acpage-layout { flex-direction: column; }
    .zd28acsidebar { width: 100%; }
}

@media (max-width: 768px) {
    :root { --header-h: 56px; }

    .zd28acmenu-toggle { display: flex; }

    .zd28acmain-nav {
        position: fixed;
        top: var(--header-h);
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - var(--header-h));
        background: var(--c-surface);
        padding: 14px;
        overflow-y: auto;
        transition: right 0.3s;
        box-shadow: -4px 0 20px rgba(11,25,41,0.12);
        z-index: 999;
        border-left: 1px solid var(--c-border);
    }

    .zd28acmain-nav.active { right: 0; }

    .zd28acmain-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .zd28acmain-nav a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .zd28aclogo { font-size: 15px; max-width: 160px; }
    .zd28acsec { padding: 44px 0; }
    .zd28acsec-title { font-size: 22px; }

    .zd28achero { padding-top: calc(var(--header-h) + 28px); padding-bottom: 36px; }
    .zd28achero h2 { font-size: 26px; }
    .zd28achero-metrics { grid-template-columns: 1fr; }
    .zd28achero-btns { flex-direction: column; }
    .zd28achero-btns .zd28acbtn { width: 100%; }

    .zd28acbento { grid-template-columns: 1fr; }
    .zd28acpillars { grid-template-columns: 1fr; }
    .zd28actimeline { grid-template-columns: 1fr 1fr; gap: 16px; }
    .zd28acfaq-grid { grid-template-columns: 1fr; }
    .zd28achome-article-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .zd28accases-row { grid-template-columns: 1fr; }
    .zd28actips-row { grid-template-columns: 1fr; }

    .zd28acnews-row { flex-direction: column; gap: 6px; padding: 14px 16px; }
    .zd28acnews-row time { min-width: auto; }

    .zd28acfooter-content { grid-template-columns: 1fr; text-align: center; }
    .zd28acfooter-info { text-align: center; }

    .zd28aclist-item { flex-direction: column; gap: 10px; padding: 14px; }
    .zd28aclist-thumb { width: 100%; height: 150px; }
    .zd28acarticle-detail { padding: 16px 14px; }
    .zd28acarticle-title { font-size: 19px; }
    .zd28acrelated-item { flex-direction: column; }
    .zd28acrelated-thumb { width: 100%; height: 130px; }
    .zd28acarticle-prenext { flex-direction: column; gap: 8px; }
    .zd28acprenext-right { text-align: left; }

    .zd28acpages ul, .zd28acpagelist { justify-content: center; }
    .zd28acsidebar-thumb-list { max-height: 260px; }
    .zd28accontainer { padding: 0 16px; }
}

@media (max-width: 480px) {
    .zd28achome-article-grid { grid-template-columns: 1fr; }
    .zd28achome-article-thumb { height: 130px; }
    .zd28achero h2 { font-size: 22px; }
    .zd28actimeline { grid-template-columns: 1fr; }

    .zd28acpages a, .zd28acpages span,
    .zd28acpagelist a, .zd28acpagelist span {
        padding: 5px 9px;
        font-size: 12px;
    }
}
