/* ===== 变量与重置 ===== */
:root {
    --c-primary: #1A2332;
    --c-accent: #C8962E;
    --c-accent-hover: #A67B1F;
    --c-secondary: #2E4057;
    --c-bg: #F8F7F4;
    --c-surface: #FFFFFF;
    --c-text: #2A2A2A;
    --c-muted: #6B7280;
    --c-border: #E5E2DC;
    --c-light: #F0EDE8;
    --radius: 8px;
    --shadow: 0 2px 12px rgba(26,35,50,0.08);
    --header-h: 64px;
}

*, *::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; }

.z9599ccontainer {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 头部导航 ===== */
.z9599cheader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--c-primary);
    height: var(--header-h);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.z9599cheader-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.z9599clogo {
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.z9599clogo a {
    color: #fff;
    text-decoration: none;
}

.z9599cmain-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

.z9599cmain-nav a {
    display: block;
    padding: 6px 10px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 13px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.z9599cmain-nav a:hover,
.z9599cmain-nav .z9599cthis a {
    color: #fff;
    background: rgba(200,150,46,0.25);
}

.z9599cmenu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    cursor: pointer;
    padding: 6px;
}

.z9599cmenu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.z9599cmenu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.z9599cmenu-toggle.active span:nth-child(2) { opacity: 0; }
.z9599cmenu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 通用板块 ===== */
.z9599csection {
    padding: 72px 0;
}

.z9599csection-head {
    margin-bottom: 40px;
}

.z9599csection-head-light .z9599csection-title,
.z9599csection-head-light .z9599csection-sub {
    color: #fff;
}

.z9599csection-head-light .z9599csection-tag {
    color: var(--c-accent);
}

.z9599csection-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--c-accent);
    margin-bottom: 8px;
}

.z9599csection-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.z9599csection-sub {
    font-size: 15px;
    color: var(--c-muted);
    max-width: 560px;
    line-height: 1.6;
}

.z9599cbtn {
    display: inline-block;
    padding: 11px 24px;
    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;
}

.z9599cbtn-primary {
    background: var(--c-accent);
    color: #fff;
    border: 2px solid var(--c-accent);
}

.z9599cbtn-primary:hover {
    background: var(--c-accent-hover);
    border-color: var(--c-accent-hover);
    color: #fff;
}

.z9599cbtn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.z9599cbtn-outline:hover {
    border-color: #fff;
    color: #fff;
}

/* ===== 首屏 ===== */
.z9599chero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 64px;
    background: var(--c-primary);
    color: #fff;
    overflow: hidden;
}

.z9599chero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.z9599chero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--c-accent);
    border-left: 3px solid var(--c-accent);
    padding-left: 10px;
    margin-bottom: 16px;
}

.z9599chero h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.z9599chero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 12px;
    line-height: 1.7;
}

.z9599chero-text {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
    line-height: 1.75;
}

.z9599chero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.z9599chero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.z9599chero-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.z9599chero-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
}

.z9599chero-stat strong {
    display: block;
    font-size: 22px;
    color: var(--c-accent);
    margin-bottom: 4px;
}

.z9599chero-stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
}

.z9599chero-image {
    text-align: center;
}

.z9599chero-image img {
    max-height: 260px;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

/* ===== 业务范围 ===== */
.z9599cservices {
    background: var(--c-surface);
}

.z9599cservice-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.z9599cservice-row {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--c-bg);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    transition: box-shadow 0.2s;
}

.z9599cservice-row:hover {
    box-shadow: var(--shadow);
}

.z9599cservice-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--c-primary);
    color: var(--c-accent);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.z9599cservice-body h3 {
    font-size: 18px;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.z9599cservice-body p {
    font-size: 14px;
    color: var(--c-muted);
    margin-bottom: 10px;
    line-height: 1.7;
}

.z9599cservice-body ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.z9599cservice-body li {
    font-size: 13px;
    color: var(--c-text);
    padding-left: 14px;
    position: relative;
}

.z9599cservice-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--c-accent);
    border-radius: 50%;
}

/* ===== 核心优势 ===== */
.z9599cfeatures {
    background: var(--c-secondary);
}

.z9599cfeature-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.z9599cfeature-box {
    padding: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
}

.z9599cfeature-box h3 {
    font-size: 17px;
    color: var(--c-accent);
    margin-bottom: 10px;
}

.z9599cfeature-box p {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

/* ===== 办理流程 ===== */
.z9599cprocess {
    background: var(--c-bg);
}

.z9599cprocess-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.z9599cprocess-step {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    position: relative;
}

.z9599cprocess-step span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: var(--c-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 12px;
}

.z9599cprocess-step h3 {
    font-size: 15px;
    color: var(--c-primary);
    margin-bottom: 6px;
}

.z9599cprocess-step p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.5;
}

/* ===== 常见问答 ===== */
.z9599cfaq {
    background: var(--c-surface);
}

.z9599cfaq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 800px;
}

.z9599cfaq-item {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--c-bg);
}

.z9599cfaq-item summary {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 40px;
}

.z9599cfaq-item summary::-webkit-details-marker { display: none; }

.z9599cfaq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--c-accent);
    font-weight: 400;
}

.z9599cfaq-item[open] summary::after { content: "−"; }

.z9599cfaq-item p {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.7;
}

/* ===== 精选文章 ===== */
.z9599carticles {
    background: var(--c-bg);
}

.z9599chome-article-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.z9599chome-article-card {
    background: var(--c-surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
    transition: box-shadow 0.2s, transform 0.2s;
}

.z9599chome-article-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.z9599chome-article-thumb {
    display: block;
    height: 120px;
    overflow: hidden;
}

.z9599chome-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z9599chome-article-info {
    padding: 10px 12px 14px;
}

.z9599chome-article-info h3 {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}

.z9599chome-article-info h3 a {
    color: var(--c-text);
    text-decoration: none;
}

.z9599chome-article-info h3 a:hover {
    color: var(--c-accent);
}

/* ===== 案例展示 ===== */
.z9599ccases {
    background: var(--c-primary);
}

.z9599ccase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.z9599ccase-card {
    padding: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
}

.z9599ccase-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--c-accent);
    background: rgba(200,150,46,0.15);
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.z9599ccase-card h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}

.z9599ccase-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
}

/* ===== 行业观察 ===== */
.z9599cnews {
    background: var(--c-surface);
}

.z9599cnews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.z9599cnews-card {
    padding: 22px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    transition: box-shadow 0.2s;
}

.z9599cnews-card:hover {
    box-shadow: var(--shadow);
}

.z9599cnews-card time {
    display: block;
    font-size: 12px;
    color: var(--c-accent);
    margin-bottom: 8px;
}

.z9599cnews-card h3 {
    font-size: 16px;
    color: var(--c-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.z9599cnews-card p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.65;
}

/* ===== 委托规范 ===== */
.z9599ctips {
    background: var(--c-bg);
}

.z9599ctips-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.z9599ctip-block {
    padding: 22px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
}

.z9599ctip-block h3 {
    font-size: 16px;
    color: var(--c-primary);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--c-accent);
}

.z9599ctip-block li {
    font-size: 13px;
    color: var(--c-muted);
    padding-left: 16px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.6;
}

.z9599ctip-block li::before {
    content: "·";
    position: absolute;
    left: 4px;
    color: var(--c-accent);
    font-weight: 700;
}

/* ===== 知识补充 ===== */
.z9599cknowledge {
    padding: 56px 0;
    background: var(--c-light);
    border-top: 1px solid var(--c-border);
}

.z9599cknowledge-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.z9599cknowledge-inner h2 {
    font-size: 22px;
    color: var(--c-primary);
    margin-bottom: 16px;
}

.z9599cknowledge-inner p {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: left;
}

.z9599cknowledge-inner p:last-child {
    margin-bottom: 0;
}

/* ===== 页脚 ===== */
.z9599cfooter {
    background: var(--c-primary);
    color: rgba(255,255,255,0.7);
    padding: 40px 0 24px;
}

.z9599cfooter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.z9599cfooter-links h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 14px;
}

.z9599cfooter-links ul li {
    margin-bottom: 6px;
}

.z9599cfooter-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
}

.z9599cfooter-links a:hover {
    color: var(--c-accent);
}

.z9599cfooter-info {
    text-align: right;
}

.z9599cfooter-info p {
    font-size: 13px;
    margin-bottom: 6px;
}

.z9599cfooter-info a {
    color: var(--c-accent);
    text-decoration: none;
}

/* ===== 内页通用 ===== */
.z9599cpage-wrap {
    padding-top: calc(var(--header-h) + 20px);
    min-height: 60vh;
    padding-bottom: 48px;
}

.z9599cbreadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: var(--c-muted);
}

.z9599cbreadcrumb a {
    color: var(--c-accent);
    text-decoration: none;
}

.z9599cbreadcrumb-sep {
    margin: 0 6px;
    color: var(--c-border);
}

.z9599cbreadcrumb-current {
    color: var(--c-text);
}

.z9599cpage-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.z9599cpage-main {
    flex: 1;
    min-width: 0;
}

/* ===== 侧栏 ===== */
.z9599csidebar {
    width: 280px;
    flex-shrink: 0;
}

.z9599csidebar-block {
    background: var(--c-surface);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    overflow: hidden;
}

.z9599csidebar-title {
    background: var(--c-primary);
    color: #fff;
    font-size: 14px;
    padding: 12px 16px;
    margin: 0;
}

.z9599csidebar-thumb-list {
    max-height: 640px;
    overflow-y: auto;
}

.z9599csidebar-thumb-item {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border);
    align-items: flex-start;
}

.z9599csidebar-thumb-item:last-child {
    border-bottom: none;
}

.z9599csidebar-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 48px;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}

.z9599csidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z9599csidebar-thumb-info {
    flex: 1;
    min-width: 0;
}

.z9599csidebar-thumb-info > a {
    display: block;
    font-size: 13px;
    color: var(--c-text);
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 3px;
}

.z9599csidebar-thumb-info > a:hover {
    color: var(--c-accent);
}

.z9599csidebar-date {
    font-size: 11px;
    color: var(--c-muted);
}

/* ===== 内容页 ===== */
.z9599carticle-detail {
    background: var(--c-surface);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    padding: 28px;
}

.z9599carticle-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-border);
}

.z9599carticle-title {
    font-size: 24px;
    color: var(--c-primary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.z9599carticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: var(--c-muted);
}

.z9599carticle-meta a {
    color: var(--c-accent);
    text-decoration: none;
}

.z9599carticle-thumb {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
}

.z9599carticle-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--c-text);
    margin-bottom: 20px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.z9599carticle-body .context,
.z9599carticle-body .dede_pagelist {
    display: none !important;
}

.z9599carticle-body img {
    max-width: 100%;
    height: auto;
}

.z9599cdiyfield {
    margin-bottom: 16px;
    padding: 14px;
    background: var(--c-bg);
    border-radius: var(--radius);
    font-size: 14px;
}

.z9599carticle-images {
    margin-bottom: 20px;
}

.z9599cimage-item {
    margin-bottom: 12px;
    text-align: center;
}

.z9599cimage-item figcaption {
    font-size: 13px;
    color: var(--c-muted);
    margin-top: 6px;
}

.z9599cmeta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 0;
    margin-bottom: 16px;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.z9599ctagitem a {
    display: inline-block;
    padding: 3px 10px;
    background: var(--c-light);
    color: var(--c-accent);
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
}

.z9599ctagitem a:hover {
    background: var(--c-accent);
    color: #fff;
}

.z9599carticle-prenext {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--c-border);
    font-size: 13px;
}

.z9599cprenext-left,
.z9599cprenext-right {
    flex: 1;
    min-width: 0;
}

.z9599cprenext-right {
    text-align: right;
}

.z9599cprenext-left ul li:nth-child(2),
.z9599cprenext-left .next { display: none; }

.z9599cprenext-right ul li:nth-child(1),
.z9599cprenext-right .pre { display: none; }

.z9599carticle-prenext a {
    color: var(--c-accent);
    text-decoration: none;
}

.z9599carticle-prenext ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z9599crelated-title {
    font-size: 17px;
    color: var(--c-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--c-accent);
}

.z9599crelated-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--c-border);
}

.z9599crelated-item:last-child {
    border-bottom: none;
}

.z9599crelated-thumb {
    flex-shrink: 0;
    width: 110px;
    height: 72px;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}

.z9599crelated-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z9599crelated-info {
    flex: 1;
    min-width: 0;
}

.z9599crelated-link {
    font-size: 14px;
    color: var(--c-primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.z9599crelated-link:hover {
    color: var(--c-accent);
}

.z9599crelated-info p {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.5;
}

/* ===== 列表页 ===== */
.z9599clist-header {
    background: var(--c-surface);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    padding: 22px 24px;
    margin-bottom: 16px;
}

.z9599clist-title {
    font-size: 22px;
    color: var(--c-primary);
    margin-bottom: 6px;
}

.z9599clist-desc {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.6;
}

.z9599clistbox {
    background: var(--c-surface);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    overflow: hidden;
}

.z9599clist-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    border-bottom: 1px solid var(--c-border);
    transition: background 0.15s;
}

.z9599clist-item:last-child {
    border-bottom: none;
}

.z9599clist-item:hover {
    background: var(--c-bg);
}

.z9599clist-thumb {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    overflow: hidden;
    border-radius: var(--radius);
    display: block;
}

.z9599clist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z9599clist-content {
    flex: 1;
    min-width: 0;
}

.z9599clist-meta {
    font-size: 12px;
    color: var(--c-muted);
    margin-bottom: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.z9599clist-meta a {
    color: var(--c-accent);
    text-decoration: none;
}

.z9599clist-link {
    font-size: 16px;
    color: var(--c-primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    line-height: 1.4;
}

.z9599clist-link:hover {
    color: var(--c-accent);
}

.z9599clist-intro {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.6;
}

/* ===== 分页 ===== */
.z9599cpagebar {
    margin-top: 16px;
    padding: 16px;
    background: var(--c-surface);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}

.z9599cpages ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.z9599cpages a,
.z9599cpages span {
    display: inline-block;
    padding: 7px 14px;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    color: var(--c-text);
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.z9599cpages a:hover {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}

.z9599cpages .thisclass span,
.z9599cpages .thisclass a {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .z9599chero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .z9599chero-side {
        order: -1;
    }

    .z9599chero-panel {
        grid-template-columns: repeat(3, 1fr);
    }

    .z9599chome-article-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .z9599cprocess-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .z9599cpage-layout {
        flex-direction: column;
    }

    .z9599csidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root { --header-h: 56px; }

    .z9599cmenu-toggle {
        display: flex;
    }

    .z9599cmain-nav {
        position: fixed;
        top: var(--header-h);
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - var(--header-h));
        background: var(--c-primary);
        padding: 16px;
        overflow-y: auto;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.2);
        z-index: 999;
    }

    .z9599cmain-nav.active {
        right: 0;
    }

    .z9599cmain-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .z9599cmain-nav a {
        padding: 10px 14px;
        font-size: 14px;
    }

    .z9599clogo {
        font-size: 16px;
        max-width: 160px;
    }

    .z9599csection {
        padding: 48px 0;
    }

    .z9599csection-title {
        font-size: 22px;
    }

    .z9599chero {
        padding-top: calc(var(--header-h) + 32px);
        padding-bottom: 40px;
    }

    .z9599chero h2 {
        font-size: 26px;
    }

    .z9599chero-panel {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .z9599chero-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 12px 16px;
    }

    .z9599chero-stat strong {
        font-size: 18px;
        margin-bottom: 0;
    }

    .z9599chero-actions {
        flex-direction: column;
    }

    .z9599chero-actions .z9599cbtn {
        width: 100%;
    }

    .z9599cservice-row {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .z9599cfeature-cols {
        grid-template-columns: 1fr;
    }

    .z9599cprocess-track {
        grid-template-columns: 1fr;
    }

    .z9599chome-article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .z9599ccase-grid,
    .z9599cnews-grid {
        grid-template-columns: 1fr;
    }

    .z9599ctips-cols {
        grid-template-columns: 1fr;
    }

    .z9599cfooter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .z9599cfooter-info {
        text-align: center;
    }

    .z9599clist-item {
        flex-direction: column;
        gap: 12px;
        padding: 14px;
    }

    .z9599clist-thumb {
        width: 100%;
        height: 160px;
    }

    .z9599carticle-detail {
        padding: 18px 14px;
    }

    .z9599carticle-title {
        font-size: 20px;
    }

    .z9599crelated-item {
        flex-direction: column;
    }

    .z9599crelated-thumb {
        width: 100%;
        height: 140px;
    }

    .z9599carticle-prenext {
        flex-direction: column;
        gap: 10px;
    }

    .z9599cprenext-right {
        text-align: left;
    }

    .z9599ccontainer {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .z9599chome-article-grid {
        grid-template-columns: 1fr;
    }

    .z9599chome-article-thumb {
        height: 140px;
    }

    .z9599chero h2 {
        font-size: 22px;
    }

    .z9599cpages a,
    .z9599cpages span {
        padding: 6px 10px;
        font-size: 12px;
    }
}
