/* ===== 变量 ===== */
: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; }

.z6af9econtainer {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 头部 ===== */
.z6af9eheader {
    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);
}

.z6af9eheader-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.z6af9elogo {
    font-size: 17px;
    font-weight: 700;
    flex-shrink: 0;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.z6af9elogo a { color: var(--c-primary); text-decoration: none; }

.z6af9emain-nav ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

.z6af9emain-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;
}

.z6af9emain-nav a:hover,
.z6af9emain-nav .z6af9ethis a,
.z6af9emain-nav li.z6af9ethis a {
    color: var(--c-accent);
    background: rgba(0,168,150,0.08);
}

.z6af9emenu-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;
}

.z6af9emenu-toggle span {
    display: block;
    height: 2px;
    background: var(--c-primary);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.z6af9emenu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.z6af9emenu-toggle.active span:nth-child(2) { opacity: 0; }
.z6af9emenu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 按钮 ===== */
.z6af9ebtn {
    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;
}

.z6af9ebtn-fill {
    background: var(--c-accent);
    color: #fff;
    border: 2px solid var(--c-accent);
}

.z6af9ebtn-fill:hover { background: var(--c-accent-hover); border-color: var(--c-accent-hover); color: #fff; }

.z6af9ebtn-ghost {
    background: transparent;
    color: var(--c-primary);
    border: 2px solid var(--c-border);
}

.z6af9ebtn-ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ===== 首屏 ===== */
.z6af9ehero {
    position: relative;
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 56px;
    overflow: hidden;
}

.z6af9ehero-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;
}

.z6af9ehero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.z6af9ehero-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;
}

.z6af9ehero h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1.25;
    margin-bottom: 14px;
}

.z6af9ehero-lead {
    font-size: 15px;
    color: var(--c-muted);
    margin-bottom: 10px;
    line-height: 1.7;
}

.z6af9ehero-text {
    font-size: 14px;
    color: var(--c-text);
    margin-bottom: 24px;
    line-height: 1.75;
}

.z6af9ehero-btns { display: flex; flex-wrap: wrap; gap: 10px; }

.z6af9ehero-visual { display: flex; flex-direction: column; gap: 16px; align-items: center; }

.z6af9ehero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.z6af9emetric {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 14px 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.z6af9emetric b {
    display: block;
    font-size: 20px;
    color: var(--c-accent);
    margin-bottom: 2px;
}

.z6af9emetric span { font-size: 11px; color: var(--c-muted); }

.z6af9ehero-img {
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(11,25,41,0.12));
}

/* ===== 通用板块 ===== */
.z6af9esec { padding: 64px 0; }

.z6af9esec-white { background: var(--c-surface); }
.z6af9esec-tint { background: var(--c-tint); }
.z6af9esec-dark { background: var(--c-primary); color: #fff; }

.z6af9esec-top { margin-bottom: 36px; }
.z6af9esec-top-light .z6af9esec-title,
.z6af9esec-top-light .z6af9esec-desc { color: #fff; }

.z6af9esec-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.z6af9esec-desc {
    font-size: 14px;
    color: var(--c-muted);
    max-width: 520px;
    line-height: 1.6;
}

/* ===== Bento 服务 ===== */
.z6af9ebento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.z6af9ebento-item {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
    transition: box-shadow 0.2s;
}

.z6af9ebento-item:hover { box-shadow: var(--shadow); }

.z6af9ebento-wide { grid-column: span 1; }

.z6af9ebento-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.z6af9ebento-item h3 {
    font-size: 17px;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.z6af9ebento-item p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.7;
}

/* ===== 专业保障 ===== */
.z6af9epillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.z6af9epillar {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
}

.z6af9epillar-icon {
    width: 40px; height: 40px;
    background: rgba(0,168,150,0.12);
    border-radius: 50%;
    margin: 0 auto 12px;
    position: relative;
}

.z6af9epillar-icon::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 12px; height: 12px;
    background: var(--c-accent);
    border-radius: 50%;
}

.z6af9epillar h3 {
    font-size: 15px;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.z6af9epillar p {
    font-size: 12px;
    color: var(--c-muted);
    line-height: 1.65;
}

/* ===== 时间线 ===== */
.z6af9etimeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
}

.z6af9etimeline::before {
    content: "";
    position: absolute;
    top: 22px; left: 8%; right: 8%;
    height: 2px;
    background: var(--c-border);
    z-index: 0;
}

.z6af9etl-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 4px;
}

.z6af9etl-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);
}

.z6af9etl-item h3 {
    font-size: 13px;
    color: var(--c-primary);
    margin-bottom: 4px;
}

.z6af9etl-item p {
    font-size: 11px;
    color: var(--c-muted);
    line-height: 1.5;
}

/* ===== FAQ ===== */
.z6af9efaq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.z6af9efaq {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.z6af9efaq summary {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 36px;
}

.z6af9efaq summary::-webkit-details-marker { display: none; }

.z6af9efaq summary::after {
    content: "+";
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--c-accent);
}

.z6af9efaq[open] summary::after { content: "−"; }

.z6af9efaq p {
    padding: 0 18px 14px;
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.65;
}

/* ===== 文章资讯 ===== */
.z6af9ehome-article-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.z6af9ehome-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;
}

.z6af9ehome-article-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.z6af9ehome-article-thumb {
    display: block;
    height: 110px;
    overflow: hidden;
}

.z6af9ehome-article-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.z6af9ehome-article-info { padding: 10px 12px 12px; }

.z6af9ehome-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;
}

.z6af9ehome-article-info h3 a {
    color: var(--c-text);
    text-decoration: none;
}

.z6af9ehome-article-info h3 a:hover { color: var(--c-accent); }

/* ===== 案例 ===== */
.z6af9ecases-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.z6af9ecase {
    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);
}

.z6af9ecase span {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--c-accent);
    margin-bottom: 8px;
}

.z6af9ecase h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}

.z6af9ecase p {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* ===== 行业资讯 ===== */
.z6af9enews-list { display: flex; flex-direction: column; gap: 12px; }

.z6af9enews-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;
}

.z6af9enews-row:hover { box-shadow: var(--shadow); }

.z6af9enews-row time {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-accent);
    min-width: 80px;
    padding-top: 2px;
}

.z6af9enews-row h3 {
    font-size: 15px;
    color: var(--c-primary);
    margin-bottom: 6px;
}

.z6af9enews-row p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.6;
}

/* ===== 注意事项 ===== */
.z6af9etips-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.z6af9etip {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
}

.z6af9etip h3 {
    font-size: 15px;
    color: var(--c-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--c-accent);
}

.z6af9etip li {
    font-size: 13px;
    color: var(--c-muted);
    padding-left: 14px;
    position: relative;
    margin-bottom: 7px;
    line-height: 1.55;
}

.z6af9etip li::before {
    content: "·";
    position: absolute;
    left: 2px;
    color: var(--c-accent);
    font-weight: 700;
}

/* ===== 知识补充 ===== */
.z6af9eknowledge {
    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);
}

.z6af9eknowledge-box {
    max-width: 780px;
    margin: 0 auto;
}

.z6af9eknowledge-box h2 {
    font-size: 20px;
    color: var(--c-primary);
    margin-bottom: 14px;
    text-align: center;
}

.z6af9eknowledge-box p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.z6af9eknowledge-box p:last-child { margin-bottom: 0; }

/* ===== 页脚 ===== */
.z6af9efooter {
    background: var(--c-primary);
    color: rgba(255,255,255,0.65);
    padding: 36px 0 22px;
}

.z6af9efooter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.z6af9efooter-links h3 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
}

.z6af9efooter-links li { margin-bottom: 5px; }

.z6af9efooter-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
}

.z6af9efooter-links a:hover { color: var(--c-accent); }

.z6af9efooter-info { text-align: right; }
.z6af9efooter-info p { font-size: 13px; margin-bottom: 5px; }
.z6af9efooter-info a { color: var(--c-accent); text-decoration: none; }

/* ===== 内页 ===== */
.z6af9epage-wrap {
    padding-top: calc(var(--header-h) + 16px);
    padding-bottom: 48px;
    min-height: 60vh;
}

.z6af9ebreadcrumb {
    padding: 10px 0;
    font-size: 13px;
    color: var(--c-muted);
}

.z6af9ebreadcrumb a { color: var(--c-accent); text-decoration: none; }
.z6af9ebreadcrumb-sep { margin: 0 6px; color: var(--c-border); }
.z6af9ebreadcrumb-current { color: var(--c-text); }

.z6af9epage-layout {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.z6af9epage-main { flex: 1; min-width: 0; }

/* ===== 侧栏 ===== */
.z6af9esidebar { width: 270px; flex-shrink: 0; }

.z6af9esidebar-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 14px;
}

.z6af9esidebar-block:last-child { margin-bottom: 0; }

.z6af9esidebar-title {
    background: var(--c-primary);
    color: #fff;
    font-size: 13px;
    padding: 11px 14px;
    margin: 0;
}

.z6af9esidebar-title a { color: #fff; text-decoration: none; }
.z6af9esidebar-title a:hover { color: var(--c-accent); }

.z6af9esidebar-thumb-list { max-height: 340px; overflow-y: auto; }

.z6af9esidebar-thumb-item {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--c-border);
    align-items: flex-start;
}

.z6af9esidebar-thumb-item:last-child { border-bottom: none; }

.z6af9esidebar-thumb {
    flex-shrink: 0;
    width: 60px; height: 45px;
    overflow: hidden;
    border-radius: 6px;
    display: block;
}

.z6af9esidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }

.z6af9esidebar-thumb-info { flex: 1; min-width: 0; }

.z6af9esidebar-thumb-info > a {
    display: block;
    font-size: 12px;
    color: var(--c-text);
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 2px;
}

.z6af9esidebar-thumb-info > a:hover { color: var(--c-accent); }

.z6af9esidebar-date { font-size: 11px; color: var(--c-muted); }

/* ===== 内容页 ===== */
.z6af9earticle-detail {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 26px;
}

.z6af9earticle-header {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--c-border);
}

.z6af9earticle-title {
    font-size: 22px;
    color: var(--c-primary);
    line-height: 1.4;
    margin-bottom: 10px;
}

.z6af9earticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--c-muted);
}

.z6af9earticle-meta a { color: var(--c-accent); text-decoration: none; }

.z6af9earticle-thumb {
    margin-bottom: 18px;
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
}

.z6af9earticle-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--c-text);
    margin-bottom: 18px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.z6af9earticle-body .context,
.z6af9earticle-body .dede_pagelist { display: none !important; }

.z6af9earticle-body img { max-width: 100%; height: auto; }

.z6af9ediyfield {
    margin-bottom: 14px;
    padding: 14px;
    background: var(--c-bg);
    border-radius: var(--radius);
    font-size: 14px;
}

.z6af9eimage-item { margin-bottom: 10px; text-align: center; }
.z6af9eimage-item figcaption { font-size: 13px; color: var(--c-muted); margin-top: 5px; }

.z6af9emeta-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);
}

.z6af9etagitem 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;
}

.z6af9etagitem a:hover { background: var(--c-accent); color: #fff; }

.z6af9earticle-prenext {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--c-border);
    font-size: 13px;
}

.z6af9eprenext-left, .z6af9eprenext-right { flex: 1; min-width: 0; }
.z6af9eprenext-right { text-align: right; }
.z6af9eprenext-left ul li:nth-child(2), .z6af9eprenext-left .next { display: none; }
.z6af9eprenext-right ul li:nth-child(1), .z6af9eprenext-right .pre { display: none; }
.z6af9earticle-prenext a { color: var(--c-accent); text-decoration: none; }
.z6af9earticle-prenext ul { list-style: none; padding: 0; margin: 0; }

.z6af9erelated-title {
    font-size: 16px;
    color: var(--c-primary);
    margin-bottom: 14px;
    padding-bottom: 7px;
    border-bottom: 2px solid var(--c-accent);
}

.z6af9erelated-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--c-border);
}

.z6af9erelated-item:last-child { border-bottom: none; }

.z6af9erelated-thumb {
    flex-shrink: 0;
    width: 100px; height: 68px;
    overflow: hidden;
    border-radius: 6px;
    display: block;
}

.z6af9erelated-thumb img { width: 100%; height: 100%; object-fit: cover; }

.z6af9erelated-link {
    font-size: 14px;
    color: var(--c-primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.z6af9erelated-link:hover { color: var(--c-accent); }
.z6af9erelated-info p { font-size: 12px; color: var(--c-muted); line-height: 1.5; }

/* ===== 列表页 ===== */
.z6af9elist-header {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-bottom: 14px;
}

.z6af9elist-title { font-size: 21px; color: var(--c-primary); margin-bottom: 5px; }
.z6af9elist-desc { font-size: 13px; color: var(--c-muted); line-height: 1.6; }

.z6af9elistbox {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.z6af9elist-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--c-border);
    transition: background 0.15s;
}

.z6af9elist-item:last-child { border-bottom: none; }
.z6af9elist-item:hover { background: var(--c-bg); }

.z6af9elist-thumb {
    flex-shrink: 0;
    width: 170px; height: 114px;
    overflow: hidden;
    border-radius: var(--radius);
    display: block;
}

.z6af9elist-thumb img { width: 100%; height: 100%; object-fit: cover; }

.z6af9elist-content { flex: 1; min-width: 0; }

.z6af9elist-meta {
    font-size: 12px;
    color: var(--c-muted);
    margin-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.z6af9elist-meta a { color: var(--c-accent); text-decoration: none; }

.z6af9elist-link {
    font-size: 15px;
    color: var(--c-primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    line-height: 1.4;
}

.z6af9elist-link:hover { color: var(--c-accent); }
.z6af9elist-intro { font-size: 13px; color: var(--c-muted); line-height: 1.6; }

/* ===== 分页 ===== */
.z6af9epagebar {
    margin-top: 14px;
    padding: 14px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
}

.z6af9epages-lr { width: 100%; }

.z6af9epages ul,
.z6af9epagelist {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0; margin: 0;
    width: 100%;
}

.z6af9epagelist li { display: inline-block; }

.z6af9epages a, .z6af9epages span,
.z6af9epagelist a, .z6af9epagelist 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;
}

.z6af9epages a:hover, .z6af9epagelist a:hover {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}

.z6af9epages .thisclass span, .z6af9epages .thisclass a,
.z6af9epagelist .thisclass span, .z6af9epagelist .thisclass a {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .z6af9ehero-inner { grid-template-columns: 1fr; gap: 28px; }
    .z6af9ehero-visual { order: -1; }
    .z6af9epillars { grid-template-columns: repeat(2, 1fr); }
    .z6af9etimeline { grid-template-columns: repeat(3, 1fr); }
    .z6af9etimeline::before { display: none; }
    .z6af9ecases-row { grid-template-columns: repeat(2, 1fr); }
    .z6af9ehome-article-grid { grid-template-columns: repeat(3, 1fr); }
    .z6af9epage-layout { flex-direction: column; }
    .z6af9esidebar { width: 100%; }
}

@media (max-width: 768px) {
    :root { --header-h: 56px; }

    .z6af9emenu-toggle { display: flex; }

    .z6af9emain-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);
    }

    .z6af9emain-nav.active { right: 0; }

    .z6af9emain-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .z6af9emain-nav a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .z6af9elogo { font-size: 15px; max-width: 160px; }
    .z6af9esec { padding: 44px 0; }
    .z6af9esec-title { font-size: 22px; }

    .z6af9ehero { padding-top: calc(var(--header-h) + 28px); padding-bottom: 36px; }
    .z6af9ehero h2 { font-size: 26px; }
    .z6af9ehero-metrics { grid-template-columns: 1fr; }
    .z6af9ehero-btns { flex-direction: column; }
    .z6af9ehero-btns .z6af9ebtn { width: 100%; }

    .z6af9ebento { grid-template-columns: 1fr; }
    .z6af9epillars { grid-template-columns: 1fr; }
    .z6af9etimeline { grid-template-columns: 1fr 1fr; gap: 16px; }
    .z6af9efaq-grid { grid-template-columns: 1fr; }
    .z6af9ehome-article-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .z6af9ecases-row { grid-template-columns: 1fr; }
    .z6af9etips-row { grid-template-columns: 1fr; }

    .z6af9enews-row { flex-direction: column; gap: 6px; padding: 14px 16px; }
    .z6af9enews-row time { min-width: auto; }

    .z6af9efooter-content { grid-template-columns: 1fr; text-align: center; }
    .z6af9efooter-info { text-align: center; }

    .z6af9elist-item { flex-direction: column; gap: 10px; padding: 14px; }
    .z6af9elist-thumb { width: 100%; height: 150px; }
    .z6af9earticle-detail { padding: 16px 14px; }
    .z6af9earticle-title { font-size: 19px; }
    .z6af9erelated-item { flex-direction: column; }
    .z6af9erelated-thumb { width: 100%; height: 130px; }
    .z6af9earticle-prenext { flex-direction: column; gap: 8px; }
    .z6af9eprenext-right { text-align: left; }

    .z6af9epages ul, .z6af9epagelist { justify-content: center; }
    .z6af9esidebar-thumb-list { max-height: 260px; }
    .z6af9econtainer { padding: 0 16px; }
}

@media (max-width: 480px) {
    .z6af9ehome-article-grid { grid-template-columns: 1fr; }
    .z6af9ehome-article-thumb { height: 130px; }
    .z6af9ehero h2 { font-size: 22px; }
    .z6af9etimeline { grid-template-columns: 1fr; }

    .z6af9epages a, .z6af9epages span,
    .z6af9epagelist a, .z6af9epagelist span {
        padding: 5px 9px;
        font-size: 12px;
    }
}
