/* ===== 空放官网主题 · 墨绿 + 暖金 ===== */
:root {
    --c-primary: #1b4332;
    --c-primary-dark: #081c15;
    --c-primary-light: #2d6a4f;
    --c-accent: #d4a373;
    --c-accent-dark: #bc6c25;
    --c-bg: #f4f7f5;
    --c-bg-alt: #e8efeb;
    --c-card: #ffffff;
    --c-text: #2d3748;
    --c-muted: #64748b;
    --c-border: #d8e2dc;
    --c-shadow: 0 8px 24px rgba(8, 28, 21, 0.08);
    --c-radius: 12px;
    --c-header-h: 72px;
    --c-max: 1140px;
    --c-gap: 24px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--c-primary-light);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--c-accent-dark);
}

.z341d8container {
    width: 100%;
    max-width: var(--c-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 顶栏导航 ===== */
.z341d8header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--c-border);
    backdrop-filter: blur(8px);
}

.z341d8header-inner,
.z341d8header .z341d8container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--c-header-h);
    gap: 16px;
}

.z341d8logo {
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.z341d8logo a {
    color: var(--c-primary);
    text-decoration: none;
}

.z341d8nav {
    display: flex;
    align-items: center;
}

.z341d8nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    gap: 4px 0;
    justify-content: flex-end;
}

.z341d8nav-item {
    margin-left: 4px;
}

.z341d8nav-item a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text);
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
}

.z341d8nav-item a:hover,
.z341d8nav-item.z341d8this a {
    color: var(--c-primary);
    background: var(--c-bg-alt);
}

.z341d8menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    border: none;
    background: none;
    flex-shrink: 0;
    z-index: 1002;
}

.z341d8menu-toggle span {
    display: block;
    height: 3px;
    background: var(--c-primary);
    border-radius: 2px;
    transition: 0.3s ease;
}

.z341d8menu-toggle.z341d8active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.z341d8menu-toggle.z341d8active span:nth-child(2) {
    opacity: 0;
}

.z341d8menu-toggle.z341d8active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.z341d8nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 28, 21, 0.45);
    z-index: 998;
}

.z341d8nav-overlay.z341d8active {
    display: block;
}

body.z341d8nav-open {
    overflow: hidden;
}

/* ===== 按钮 ===== */
.z341d8btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.z341d8btn-main {
    background: var(--c-accent);
    color: var(--c-primary-dark);
    border-color: var(--c-accent);
}

.z341d8btn-main:hover {
    background: var(--c-accent-dark);
    border-color: var(--c-accent-dark);
    color: #fff;
}

.z341d8btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.z341d8btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.z341d8btn-block {
    width: 100%;
}

.z341d8link-arrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-primary-light);
    text-decoration: none;
}

.z341d8link-arrow:hover {
    color: var(--c-accent-dark);
}

/* ===== 首屏 Hero ===== */
.z341d8hero {
    margin-top: var(--c-header-h);
    padding: 56px 0 48px;
    background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 55%, var(--c-primary-light) 100%);
    color: #fff;
    overflow: hidden;
}

.z341d8hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.z341d8hero-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    background: rgba(212, 163, 115, 0.25);
    border: 1px solid rgba(212, 163, 115, 0.5);
    border-radius: 20px;
    margin-bottom: 16px;
}

.z341d8hero-title {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 700;
}

.z341d8hero-desc {
    font-size: 16px;
    line-height: 1.75;
    opacity: 0.92;
    margin-bottom: 28px;
    max-width: 540px;
}

.z341d8hero-desc strong {
    color: var(--c-accent);
    font-weight: 600;
}

.z341d8hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.z341d8hero-visual {
    position: relative;
}

.z341d8hero-visual img {
    border-radius: var(--c-radius);
    box-shadow: var(--c-shadow);
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.08);
}

.z341d8hero-stats {
    list-style: none;
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.z341d8hero-stats li {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--c-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.z341d8hero-stats strong {
    display: block;
    font-size: 22px;
    color: var(--c-accent);
}

.z341d8hero-stats span {
    font-size: 12px;
    opacity: 0.85;
}

/* ===== 步骤条 ===== */
.z341d8strip {
    background: var(--c-card);
    border-bottom: 1px solid var(--c-border);
}

.z341d8strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.z341d8strip-item {
    padding: 22px 20px;
    border-right: 1px solid var(--c-border);
    text-align: center;
}

.z341d8strip-item:last-child {
    border-right: none;
}

.z341d8strip-item em {
    display: block;
    font-style: normal;
    font-size: 28px;
    font-weight: 700;
    color: var(--c-accent-dark);
    margin-bottom: 8px;
}

.z341d8strip-item p {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.5;
}

/* ===== 通用区块 ===== */
.z341d8section {
    padding: 72px 0;
}

.z341d8section-alt {
    background: var(--c-bg-alt);
}

.z341d8section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.z341d8section-head-left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.z341d8section-title {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--c-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.z341d8section-title-light {
    color: #fff;
}

.z341d8section-sub {
    font-size: 16px;
    color: var(--c-muted);
}

/* ===== 产品卡片 ===== */
.z341d8product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--c-gap);
    align-items: stretch;
}

.z341d8product-card {
    position: relative;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--c-shadow);
    transition: transform 0.25s ease, border-color 0.25s;
}

.z341d8product-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-primary-light);
}

.z341d8product-featured {
    border-color: var(--c-accent);
    box-shadow: 0 12px 32px rgba(27, 67, 50, 0.12);
}

.z341d8product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--c-accent);
    color: var(--c-primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.z341d8product-icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: var(--c-primary);
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 18px;
}

.z341d8product-card h3 {
    font-size: 20px;
    color: var(--c-primary);
    margin-bottom: 12px;
}

.z341d8product-card p {
    font-size: 14px;
    color: var(--c-muted);
    flex: 1;
    margin-bottom: 16px;
}

.z341d8product-meta {
    list-style: none;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--c-text);
}

.z341d8product-meta li {
    padding: 4px 0;
    border-bottom: 1px dashed var(--c-border);
}

.z341d8product-meta li:last-child {
    border-bottom: none;
}

/* ===== 流程 ===== */
.z341d8flow-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--c-gap);
    counter-reset: flow;
}

.z341d8flow-step {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--c-shadow);
}

.z341d8flow-step span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--c-primary);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 14px;
}

.z341d8flow-step h4 {
    font-size: 17px;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.z341d8flow-step p {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.55;
}

/* ===== 优势 ===== */
.z341d8adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.z341d8adv-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 22px 20px;
    border-left: 4px solid var(--c-accent);
    box-shadow: var(--c-shadow);
}

.z341d8adv-card h4 {
    font-size: 17px;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.z341d8adv-card p {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.55;
}

/* ===== 知识专区 ===== */
.z341d8knowledge {
    background: var(--c-card);
}

.z341d8knowledge-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.z341d8knowledge-body {
    display: grid;
    gap: 20px;
}

.z341d8knowledge-block {
    padding: 22px 24px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
}

.z341d8knowledge-block h3 {
    font-size: 17px;
    color: var(--c-primary);
    margin-bottom: 10px;
}

.z341d8knowledge-block p {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.75;
}

/* ===== FAQ ===== */
.z341d8faq-list {
    max-width: 880px;
    margin: 0 auto;
}

.z341d8faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.z341d8faq-item summary {
    padding: 18px 22px;
    font-weight: 600;
    color: var(--c-primary);
    cursor: pointer;
    list-style: none;
}

.z341d8faq-item summary::-webkit-details-marker {
    display: none;
}

.z341d8faq-item p {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.7;
}

/* ===== 首页资讯（仅标题+图） ===== */
.z341d8home-articles {
    background: var(--c-bg-alt);
}

.z341d8home-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.z341d8home-article-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    overflow: hidden;
    box-shadow: var(--c-shadow);
    transition: transform 0.25s ease;
}

.z341d8home-article-card:hover {
    transform: translateY(-3px);
}

.z341d8home-article-thumb {
    display: block;
    height: 120px;
    overflow: hidden;
    background: var(--c-bg-alt);
}

.z341d8home-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z341d8home-article-info {
    padding: 12px 14px 14px;
}

.z341d8home-article-info h3 {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.z341d8home-article-info h3 a {
    color: var(--c-text);
    text-decoration: none;
}

.z341d8home-article-info h3 a:hover {
    color: var(--c-primary-light);
}

.z341d8home-article-date {
    font-size: 12px;
    color: var(--c-muted);
}

/* ===== 联系 ===== */
.z341d8contact {
    background: linear-gradient(160deg, var(--c-primary-dark), var(--c-primary));
    color: #fff;
}

.z341d8contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.z341d8contact-intro-box p {
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.7;
}

.z341d8contact-quick {
    list-style: none;
    font-size: 15px;
}

.z341d8contact-quick li {
    padding: 6px 0;
    opacity: 0.88;
}

.z341d8contact-form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--c-radius);
    padding: 28px;
}

.z341d8form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.z341d8contact-form input,
.z341d8contact-form select,
.z341d8contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: var(--c-text);
}

.z341d8contact-form textarea {
    margin-bottom: 12px;
    resize: vertical;
    min-height: 100px;
}

/* ===== 页脚 ===== */
.z341d8footer {
    background: var(--c-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 48px 0 24px;
}

.z341d8footer-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.z341d8footer-info h3,
.z341d8footer-links h4,
.z341d8footer-contact h4 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 16px;
}

.z341d8footer-info p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.z341d8footer-links ul {
    list-style: none;
}

.z341d8footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
}

.z341d8footer-links a:hover {
    color: var(--c-accent);
}

.z341d8footer-contact p {
    font-size: 14px;
    margin-bottom: 6px;
    opacity: 0.8;
}

.z341d8footer-bottom {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 13px;
    opacity: 0.75;
}

.z341d8footer-bottom a {
    color: var(--c-accent);
}

.z341d8friend-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.z341d8friend-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* ===== 内页通用 ===== */
.z341d8page-main {
    margin-top: var(--c-header-h);
    padding: 32px 0 64px;
    min-height: 50vh;
}

.z341d8breadcrumb {
    font-size: 14px;
    color: var(--c-muted);
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.z341d8breadcrumb a {
    color: var(--c-primary-light);
    text-decoration: none;
}

.z341d8breadcrumb-sep {
    color: var(--c-border);
}

.z341d8page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}

.z341d8page-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 28px;
    box-shadow: var(--c-shadow);
    min-width: 0;
    overflow: hidden;
}

.z341d8page-head {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--c-border);
}

.z341d8page-title {
    font-size: 26px;
    color: var(--c-primary);
    line-height: 1.35;
}

.z341d8page-desc {
    margin-top: 10px;
    color: var(--c-muted);
    font-size: 15px;
}

/* 列表页 */
.z341d8list-items {
    list-style: none;
}

.z341d8list-item {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--c-border);
}

.z341d8list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.z341d8list-thumb {
    flex: 0 0 200px;
    width: 200px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--c-bg-alt);
    display: block;
}

.z341d8list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z341d8list-body {
    flex: 1;
    min-width: 0;
}

.z341d8list-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.z341d8list-title a {
    color: var(--c-text);
    text-decoration: none;
}

.z341d8list-title a:hover {
    color: var(--c-primary-light);
}

.z341d8list-meta {
    font-size: 13px;
    color: var(--c-muted);
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.z341d8list-intro {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.65;
    margin-bottom: 8px;
}

.z341d8list-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-primary-light);
    text-decoration: none;
}

/* 分页 */
.z341d8pagebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--c-border);
}

.z341d8pagebar-prev {
    flex: 0 0 auto;
    text-align: left;
}

.z341d8pagebar-center {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.z341d8pagebar-next {
    flex: 0 0 auto;
    text-align: right;
}

.z341d8pagebar ul,
.z341d8pagebar-center ul,
.z341d8pagebar-prev ul,
.z341d8pagebar-next ul {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.z341d8pagebar a,
.z341d8pagebar span {
    display: inline-block;
    padding: 8px 14px;
    font-size: 14px;
    text-decoration: none;
    color: var(--c-text);
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    line-height: 1.3;
}

.z341d8pagebar a:hover {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}

/* 内容页 */
.z341d8article-title {
    font-size: 28px;
    color: var(--c-primary-dark);
    line-height: 1.35;
    margin-bottom: 14px;
}

.z341d8article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 13px;
    color: var(--c-muted);
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--c-border);
}

.z341d8article-meta a {
    color: var(--c-primary-light);
}

.z341d8article-thumb {
    margin-bottom: 22px;
    border-radius: var(--c-radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
    text-align: center;
    background: var(--c-bg-alt);
}

.z341d8article-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--c-text);
    word-break: break-word;
    overflow-wrap: break-word;
}

.z341d8article-body img {
    max-width: 100%;
    height: auto;
    margin: 16px auto;
    border-radius: 8px;
}

.z341d8article-body table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

.z341d8article-gallery {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--c-border);
}

.z341d8article-gallery p {
    margin-bottom: 16px;
}

.z341d8diyfield {
    margin-top: 20px;
    padding: 18px;
    background: var(--c-bg);
    border-radius: var(--c-radius);
    border: 1px solid var(--c-border);
    font-size: 15px;
}

.z341d8meta-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.z341d8tagitem a {
    display: inline-block;
    padding: 5px 12px;
    background: var(--c-bg-alt);
    color: var(--c-primary);
    border-radius: 16px;
    font-size: 13px;
    text-decoration: none;
}

.z341d8article-pager {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--c-border);
    font-size: 14px;
    flex-wrap: wrap;
}

.z341d8article-pager a {
    color: var(--c-primary-light);
    text-decoration: none;
    max-width: 48%;
    line-height: 1.5;
}

.z341d8article-pager a:hover {
    color: var(--c-accent-dark);
}

.z341d8related {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px solid var(--c-border);
}

.z341d8related-title {
    font-size: 20px;
    color: var(--c-primary);
    margin-bottom: 20px;
}

.z341d8related-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.z341d8related-item {
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    overflow: hidden;
    background: var(--c-bg);
}

.z341d8related-thumb {
    display: block;
    height: 120px;
    overflow: hidden;
    background: var(--c-bg-alt);
}

.z341d8related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z341d8related-body {
    padding: 12px 14px;
}

.z341d8related-body h4 {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.z341d8related-body h4 a {
    color: var(--c-text);
    text-decoration: none;
}

.z341d8related-body p {
    font-size: 12px;
    color: var(--c-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 侧栏 */
.z341d8sidebar {
    position: sticky;
    top: calc(var(--c-header-h) + 16px);
    min-width: 0;
}

.z341d8sidebar-box {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: 20px;
    box-shadow: var(--c-shadow);
}

.z341d8sidebar-title {
    font-size: 17px;
    color: var(--c-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-accent);
}

.z341d8sidebar-list {
    list-style: none;
    max-height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
}

.z341d8sidebar-item {
    border-bottom: 1px solid var(--c-border);
}

.z341d8sidebar-item:last-child {
    border-bottom: none;
}

.z341d8sidebar-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    color: var(--c-text);
    font-size: 13px;
    line-height: 1.4;
}

.z341d8sidebar-item a:hover {
    color: var(--c-primary-light);
}

.z341d8sidebar-thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 42px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--c-bg-alt);
}

.z341d8sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z341d8sidebar-text {
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== 响应式 ===== */
@media (max-width: 1100px) {
    .z341d8home-articles-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .z341d8page-layout {
        grid-template-columns: 1fr 260px;
    }
}

@media (max-width: 992px) {
    .z341d8menu-toggle {
        display: flex;
    }

    .z341d8nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 88vw);
        height: 100vh;
        background: var(--c-card);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
        padding: calc(var(--c-header-h) + 12px) 16px 24px;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .z341d8nav.z341d8active {
        right: 0;
    }

    .z341d8nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .z341d8nav-item {
        margin: 0;
        border-bottom: 1px solid var(--c-border);
    }

    .z341d8nav-item a {
        padding: 14px 12px;
        border-radius: 0;
    }

    .z341d8hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .z341d8hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .z341d8hero-actions {
        justify-content: center;
    }

    .z341d8hero-visual {
        max-width: 420px;
        margin: 0 auto;
    }

    .z341d8strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z341d8strip-item:nth-child(2) {
        border-right: none;
    }

    .z341d8strip-item:nth-child(1),
    .z341d8strip-item:nth-child(2) {
        border-bottom: 1px solid var(--c-border);
    }

    .z341d8product-grid,
    .z341d8adv-grid,
    .z341d8flow-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .z341d8knowledge-layout {
        grid-template-columns: 1fr;
    }

    .z341d8section-head-left {
        text-align: center;
    }

    .z341d8home-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .z341d8contact-wrap {
        grid-template-columns: 1fr;
    }

    .z341d8footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .z341d8page-layout {
        grid-template-columns: 1fr;
    }

    .z341d8sidebar {
        position: static;
    }

    .z341d8list-item {
        flex-direction: column;
    }

    .z341d8list-thumb {
        width: 100%;
        flex: none;
        height: 180px;
    }

    .z341d8related-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .z341d8pagebar {
        flex-direction: column;
        align-items: stretch;
    }

    .z341d8pagebar-prev,
    .z341d8pagebar-next,
    .z341d8pagebar-center {
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --c-header-h: 60px;
    }

    .z341d8section {
        padding: 48px 0;
    }

    .z341d8strip-grid {
        grid-template-columns: 1fr;
    }

    .z341d8strip-item {
        border-right: none;
        border-bottom: 1px solid var(--c-border);
    }

    .z341d8strip-item:last-child {
        border-bottom: none;
    }

    .z341d8product-grid,
    .z341d8adv-grid,
    .z341d8flow-list,
    .z341d8related-list {
        grid-template-columns: 1fr;
    }

    .z341d8home-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .z341d8form-row {
        grid-template-columns: 1fr;
    }

    .z341d8footer-wrapper {
        grid-template-columns: 1fr;
    }

    .z341d8footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .z341d8page-content {
        padding: 18px 16px;
    }

    .z341d8article-title,
    .z341d8page-title {
        font-size: 22px;
    }

    .z341d8article-pager a {
        max-width: 100%;
    }

    .z341d8hero {
        padding: 40px 0 32px;
    }

    .z341d8hero-stats {
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .z341d8home-articles-grid {
        grid-template-columns: 1fr;
    }
}
