/* 欧易下载官方网站 — 潮流深色 + 玫红霓虹 */
:root {
    --c-bg: #09090b;
    --c-bg-soft: #111113;
    --c-surface: #18181b;
    --c-surface-2: #27272a;
    --c-border: rgba(255, 255, 255, 0.08);
    --c-text: #fafafa;
    --c-muted: #a1a1aa;
    --c-primary: #f43f5e;
    --c-primary-dim: #e11d48;
    --c-accent: #22d3ee;
    --c-accent-2: #a78bfa;
    --c-gradient: linear-gradient(135deg, #f43f5e 0%, #a855f7 50%, #22d3ee 100%);
    --c-hero: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(244, 63, 94, 0.35), transparent),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(34, 211, 238, 0.2), transparent),
        #09090b;
    --radius: 14px;
    --radius-lg: 18px;
    --radius-sm: 10px;
    --container: 1140px;
    --nav-h: 64px;
    --gap: 1.2rem;
    --space-section: 3.5rem;
    --space-card: 1.2rem;
    --border: 1px solid var(--c-border);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* 内页浅色主题 */
.z442ceinner {
    --c-bg: #f4f4f5;
    --c-bg-soft: #ffffff;
    --c-surface: #ffffff;
    --c-surface-2: #f4f4f5;
    --c-border: #e4e4e7;
    --c-text: #18181b;
    --c-muted: #71717a;
    --c-primary: #e11d48;
    --c-primary-dim: #be123c;
    --c-accent: #0891b2;
    --c-accent-2: #7c3aed;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    margin: 0;
    font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--c-accent); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--c-primary); }

.z442cecontainer {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* —— 导航 —— */
.z442cenavbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-border);
}

.z442ceinner .z442cenavbar {
    background: rgba(255, 255, 255, 0.9);
}

.z442cenavbar .z442cecontainer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 0.75rem;
}

.z442cenavbar-brand img { height: 38px; width: auto; }

.z442cenavbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    background: var(--c-surface);
    cursor: pointer;
}

.z442cenavbar-toggler span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--c-text);
    border-radius: 2px;
}

.z442cenav-collapse { display: flex; align-items: center; }

.z442cenavbar-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.z442cenav-link {
    display: flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--c-muted) !important;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.25s, color 0.25s;
}

.z442cenav-link:hover,
.z442cenav-item.active .z442cenav-link {
    color: var(--c-text) !important;
    background: rgba(244, 63, 94, 0.15);
}

.z442ceinner .z442cenav-link:hover {
    background: rgba(225, 29, 72, 0.1);
    color: var(--c-primary) !important;
}

/* —— 按钮 —— */
.z442cebtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.7rem 1.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
    line-height: 1.3;
    text-align: center;
}

.z442cebtn-primary {
    background: var(--c-gradient);
    color: #fff;
    box-shadow: 0 4px 24px rgba(244, 63, 94, 0.4);
}

.z442cebtn-primary:hover { color: #fff; transform: translateY(-2px); }

.z442cebtn-ghost {
    background: transparent;
    color: var(--c-text);
    border: 1px solid var(--c-border);
}

.z442cebtn-ghost:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.z442cebtn-glow {
    background: var(--c-accent);
    color: #09090b;
    font-weight: 700;
}

.z442cebtn-glow:hover { color: #09090b; transform: translateY(-2px); }

.z442cebtn-outline {
    background: transparent;
    color: var(--c-primary);
    border: 2px solid var(--c-primary);
}

.z442ceinner .z442cebtn-outline { color: var(--c-primary-dim); border-color: var(--c-primary-dim); }

.z442cebtn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }

/* —— Hero —— */
.z442cehero {
    position: relative;
    padding: 3rem 0 3.5rem;
    background: var(--c-hero);
    overflow: hidden;
}

.z442cehero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-primary), var(--c-accent), transparent);
}

.z442cehero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.z442cehero-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-accent);
    border: 1px solid rgba(34, 211, 238, 0.35);
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.08);
}

.z442cehero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.z442cehero h1 span {
    background: var(--c-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.z442cehero-lead {
    margin: 0 0 1.75rem;
    max-width: 520px;
    font-size: 1.02rem;
    color: var(--c-muted);
    line-height: 1.75;
}

.z442cehero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.z442cehero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.z442cehero-frame {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0.85rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
    border: var(--border);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.z442cehero-frame img {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    border-radius: var(--radius);
}

.z442cehero-chip {
    position: absolute;
    padding: 0.45rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--c-surface);
    border: var(--border);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    max-width: calc(100% - 0.5rem);
    overflow: hidden;
    text-overflow: ellipsis;
}

.z442cehero-chip--a { top: 6%; right: 0.25rem; }
.z442cehero-chip--b { bottom: 10%; left: 0.25rem; }

/* —— 滚动条带 —— */
.z442ceticker {
    padding: 0.85rem 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    overflow: hidden;
}

.z442ceticker-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.82rem;
    color: var(--c-muted);
    font-weight: 500;
}

.z442ceticker-inner li::before {
    content: "◆ ";
    color: var(--c-primary);
    font-size: 0.55rem;
    vertical-align: middle;
}

/* —— 统一卡片 —— */
.z442cebento-card,
.z442cedl-card,
.z442cesafe-card,
.z442cebadge-item,
.z442cefaq-item,
.z442cenews-card,
.z442cebrand-card,
.z442cepath-step,
.z442ceonboard,
.z442cecta,
.z442cecard {
    border: var(--border);
}

.z442cebrand-card {
    border-top-width: 3px;
}

/* —— 区块通用 —— */
.z442cesection {
    padding: var(--space-section) 0;
}

.z442cesection--soft { background: var(--c-bg-soft); }

.z442cehead {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 0 0.25rem;
}

.z442celabel {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-primary);
}

.z442cehead h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.45rem, 3.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.z442cehead p {
    margin: 0;
    color: var(--c-muted);
    font-size: 0.98rem;
}

/* —— Bento 产品 —— */
.z442cebento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--gap);
    align-items: stretch;
}

.z442cebento-card {
    grid-column: span 3;
    padding: var(--space-card);
    background: var(--c-surface);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: border-color 0.3s, transform 0.3s;
    overflow-wrap: break-word;
}

.z442cebento-card:hover {
    border-color: rgba(244, 63, 94, 0.4);
    transform: translateY(-3px);
}

.z442cebento-card--wide { grid-column: span 6; }

.z442cebento-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    border-radius: 12px;
    background: rgba(244, 63, 94, 0.12);
}

.z442cebento-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    word-break: break-word;
}

.z442cebento-card p {
    margin: 0;
    flex: 1;
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.6;
}

/* —— 数据带 —— */
.z442cemetrics {
    padding: 2.25rem 0;
    background: var(--c-gradient);
}

.z442cemetrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
    text-align: center;
}

.z442cemetric strong {
    display: block;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.z442cemetric span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.z442cemetric {
    padding: 0.35rem 0.25rem;
}

/* —— 开户 —— */
.z442ceonboard {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--gap);
    align-items: stretch;
    padding: 1.6rem;
    background: var(--c-surface);
    border-radius: var(--radius-lg);
}

.z442ceonboard > div {
    min-width: 0;
}

.z442cetip-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.z442cetimeline {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

.z442cetimeline li {
    position: relative;
    padding: 0 0 1.25rem 2.5rem;
    font-size: 0.9rem;
    color: var(--c-muted);
}

.z442cetimeline li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    background: var(--c-primary);
    border-radius: 50%;
}

.z442cetimeline li strong {
    display: block;
    color: var(--c-text);
    margin-bottom: 0.2rem;
}

.z442cetip-box {
    padding: var(--space-card);
    border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(34, 211, 238, 0.12), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(34, 211, 238, 0.25);
}

.z442cetip-box h3 { margin: 0 0 0.65rem; font-size: 1rem; }
.z442cetip-box p { margin: 0; font-size: 0.9rem; color: var(--c-muted); line-height: 1.65; }

/* —— 下载 —— */
.z442cedl-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap);
    align-items: stretch;
}

.z442cedl-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-card);
    background: var(--c-surface);
    border-radius: var(--radius);
    min-height: 100%;
    min-width: 0;
}

.z442cedl-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.z442cedl-top > div:last-child {
    min-width: 0;
    flex: 1;
}

.z442cedl-card h3,
.z442cedl-card .sub {
    word-break: break-word;
}

.z442cedl-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    border-radius: 12px;
}

.z442cedl-icon--win { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.z442cedl-icon--and { background: linear-gradient(135deg, #22c55e, #15803d); }
.z442cedl-icon--ios { background: linear-gradient(135deg, #64748b, #334155); }
.z442cedl-icon--web { background: var(--c-gradient); }

.z442cedl-card h3 { margin: 0; font-size: 1.02rem; }
.z442cedl-card .sub { margin: 0; font-size: 0.8rem; color: var(--c-muted); }

.z442cedl-list {
    flex: 1;
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    list-style: none;
    background: var(--c-bg-soft);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--c-muted);
}

.z442cedl-list li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.z442cedl-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-accent);
}

.z442cedl-card .z442cebtn {
    width: 100%;
    margin-top: auto;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    white-space: normal;
}

/* —— 安全 —— */
.z442cesafe-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
    align-items: stretch;
}

.z442cesafe-card {
    padding: var(--space-card);
    text-align: center;
    background: var(--c-surface);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.z442cesafe-card .ico {
    font-size: 1.75rem;
    margin-bottom: 0.65rem;
}

.z442cesafe-card h3 {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
}

.z442cesafe-list {
    flex: 1;
    margin-top: auto;
    text-align: left;
    font-size: 0.8rem;
    color: var(--c-muted);
}

.z442cesafe-list div {
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--c-border);
}

.z442cesafe-list div:last-child { border-bottom: none; }

.z442cebadges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
    margin-top: 1.5rem;
    align-items: stretch;
}

.z442cebadge-item {
    padding: var(--space-card);
    text-align: center;
    background: var(--c-bg-soft);
    border-radius: var(--radius);
    height: 100%;
}

.z442cebadge-item h4 { margin: 0.5rem 0 0.25rem; font-size: 0.92rem; }
.z442cebadge-item p { margin: 0; font-size: 0.8rem; color: var(--c-muted); }

/* —— 品牌矩阵 —— */
.z442cebrand-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
    align-items: stretch;
}

.z442cebrand-card {
    padding: var(--space-card);
    border-radius: var(--radius);
    background: var(--c-surface);
    border-top: 3px solid var(--c-primary);
    height: 100%;
    min-width: 0;
}

.z442cebrand-card:nth-child(2) { border-top-color: var(--c-accent); }
.z442cebrand-card:nth-child(3) { border-top-color: var(--c-accent-2); }

.z442cebrand-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.z442cebrand-card p { margin: 0; font-size: 0.88rem; color: var(--c-muted); line-height: 1.65; }

/* —— 路径 —— */
.z442cepath {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
    counter-reset: path;
    align-items: stretch;
}

.z442cepath-step {
    position: relative;
    padding: var(--space-card);
    background: var(--c-surface);
    border-radius: var(--radius);
    counter-increment: path;
    height: 100%;
    min-width: 0;
}

.z442cepath-step::before {
    content: counter(path, decimal-leading-zero);
    display: block;
    margin-bottom: 0.65rem;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--c-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.z442cepath-step h3 { margin: 0 0 0.35rem; font-size: 0.95rem; }
.z442cepath-step p { margin: 0; font-size: 0.82rem; color: var(--c-muted); }

/* —— FAQ —— */
.z442cefaq {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap);
    max-width: 900px;
    margin: 0 auto;
}

.z442cefaq-item {
    padding: var(--space-card);
    background: var(--c-surface);
    border-radius: var(--radius);
    height: 100%;
    min-width: 0;
}

.z442cefaq-item h3 {
    margin: 0 0 0.45rem;
    font-size: 0.95rem;
    word-break: break-word;
}
.z442cefaq-item p { margin: 0; font-size: 0.86rem; color: var(--c-muted); line-height: 1.6; }

/* —— CTA —— */
.z442cecta {
    margin: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    background: var(--c-surface);
    background-image: radial-gradient(circle at 50% 0%, rgba(244, 63, 94, 0.15), transparent 60%);
}

.z442cecta h2 { margin: 0 0 0.5rem; font-size: 1.5rem; }
.z442cecta p { margin: 0 0 1.25rem; color: var(--c-muted); max-width: 520px; margin-left: auto; margin-right: auto; }
.z442cecta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* —— 资讯 —— */
.z442cenews-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.z442cenews-top h2 { margin: 0; font-size: 1.5rem; font-weight: 800; }

.z442cenews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: var(--gap);
    align-items: stretch;
}

.z442cenews-card {
    overflow: hidden;
    background: var(--c-surface);
    border-radius: var(--radius);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.z442cenews-card:hover { transform: translateY(-4px); }

.z442cenews-card img,
.z442cethumb-home {
    width: 100%;
    height: 108px;
    object-fit: cover;
    flex-shrink: 0;
}

.z442cenews-body {
    padding: 0.75rem 0.9rem 0.9rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.z442cenews-meta {
    font-size: 0.72rem;
    color: var(--c-muted);
    margin-bottom: 0.35rem;
}

.z442cenews-card h3 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.z442cenews-card h3 a { color: var(--c-text); }
.z442cenews-card h3 a:hover { color: var(--c-primary); }

/* —— 页脚 —— */
.z442cefooter {
    padding: 3rem 0 1.25rem;
    background: #000;
    border-top: 1px solid var(--c-border);
}

.z442cefooter-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.z442cefooter-grid p { font-size: 0.88rem; color: var(--c-muted); line-height: 1.65; }

.z442cefooter h5 {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--c-text);
}

.z442cefooter ul { list-style: none; margin: 0; padding: 0; }
.z442cefooter li { margin-bottom: 0.4rem; }
.z442cefooter a { color: var(--c-muted); font-size: 0.85rem; }
.z442cefooter a:hover { color: var(--c-primary); }

.z442cefooter-brand img { filter: brightness(0) invert(1); height: 38px; }

.z442ceflinks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.z442cefooter-end {
    padding-top: 1.25rem;
    border-top: 1px solid var(--c-border);
    text-align: center;
    font-size: 0.82rem;
    color: var(--c-muted);
}

.z442cefooter-end p { margin: 0.3rem 0; }
.z442cefooter-end a { color: var(--c-muted); }
.z442cefooter-end a:hover { color: var(--c-accent); }

.z442cefooter--inner {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    padding: 1.5rem 0;
}

.z442cefooter--inner .z442cefooter-end {
    border-top: none;
    padding-top: 0;
}

.z442cefooter--inner .z442cefooter-end a { color: var(--c-muted); }
.z442cefooter--inner .z442cefooter-end a:hover { color: var(--c-primary); }

.z442ceonboard-cta { margin-top: 1.25rem; margin-bottom: 0; }

.z442cefooter-friends { margin-bottom: 1.5rem; }
.z442cefooter-friends h5 {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--c-text);
}

/* —— 内页 —— */
.z442cepage-main { padding: 2rem 0 3.5rem; }

.z442cepage-banner {
    margin-bottom: 1.75rem;
    padding: 1.75rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.08), rgba(8, 145, 178, 0.06));
    border: 1px solid var(--c-border);
}

.z442cepage-banner h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.25rem, 4vw, 1.65rem);
    color: var(--c-text);
}

.z442cepage-banner .lead { margin: 0; color: var(--c-muted); font-size: 0.92rem; }

.z442celayout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1.75rem;
    align-items: start;
}

.z442cecard {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.z442ceinner .z442cecard { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); }

.z442cecard-body { padding: 1.25rem; }

.z442celayout > aside .z442cecard + .z442cecard { margin-top: 1rem; }
.z442celayout > div:first-child > .z442cecard + .z442cecard { margin-top: 1.25rem; }

.z442cecontent-list { list-style: none; margin: 0; padding: 0; }

.z442celist-item {
    padding-bottom: 1.15rem;
    margin-bottom: 1.15rem;
    border-bottom: 1px solid var(--c-border);
}

.z442celist-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.z442celist-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.z442cethumb-list,
.z442cethumb-related {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.z442celist-meta { font-size: 0.78rem; color: var(--c-muted); margin-bottom: 0.3rem; }

.z442celist-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.z442celist-title a { color: var(--c-text); }
.z442celist-title a:hover { color: var(--c-primary); }

.z442celist-desc {
    margin: 0;
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.55;
}

.z442cesidebar-title {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-text);
}

.z442cesidebar-list { list-style: none; margin: 0; padding: 0; }

.z442cesidebar-list li {
    margin-bottom: 0.45rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid var(--c-border);
}

.z442cesidebar-list li:last-child { border-bottom: none; }

.z442cesidebar-hot {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.z442cethumb-side {
    width: 68px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.z442cesidebar-hot a:last-child {
    flex: 1;
    min-width: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    word-break: break-word;
    color: var(--c-text);
}

.z442cearticle-title {
    margin: 0 0 1rem;
    font-size: clamp(1.2rem, 4vw, 1.55rem);
    font-weight: 800;
    line-height: 1.35;
    word-break: break-word;
    color: var(--c-text);
}

.z442cearticle-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.82rem;
    color: var(--c-muted);
    margin-bottom: 1.15rem;
}

.z442cethumb-cover {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}

.z442cearticle-content {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--c-text);
    overflow-wrap: break-word;
}

.z442cearticle-content img { max-width: 100%; height: auto; margin: 1rem 0; }

.z442cearticle-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.z442cemeta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

.z442cetagitem a {
    display: inline-block;
    padding: 0.28rem 0.7rem;
    font-size: 0.78rem;
    background: var(--c-surface-2);
    border-radius: 999px;
    color: var(--c-primary);
}

.z442ceprenext {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.88rem;
}

.z442cerelated-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--c-border);
}

.z442cerelated-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.z442cerelated-item > div > a:first-of-type {
    font-weight: 600;
    color: var(--c-text);
}

.z442cecard .pagebar { padding: 0 1.25rem 1.25rem; border-top: 1px solid var(--c-border); }

.pagebar .pagelist,
.zzpages .pagelist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    justify-content: center;
}

.pagebar .pagelist a,
.zzpages .pagelist a {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--c-text);
    background: var(--c-surface);
}

.pagebar .pagelist a:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* 网格防溢出 */
.z442cebento > *,
.z442cedl-grid > *,
.z442cesafe-grid > *,
.z442cebrand-row > *,
.z442cepath > *,
.z442cefaq > *,
.z442cenews-grid > *,
.z442cehero-grid > *,
.z442ceonboard > *,
.z442cemetrics-grid > * { min-width: 0; }

/* —— 响应式 —— */
@media (max-width: 1100px) {
    .z442cesafe-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
    .z442cebento-card,
    .z442cebento-card--wide { grid-column: span 6; }
    .z442celayout { grid-template-columns: minmax(0, 1fr) 280px; gap: 1.5rem; }
    .z442cefooter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .z442cenews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .z442cehead { margin-bottom: 1.5rem; }
    .z442cehead h2 { font-size: 1.35rem; }
    .z442cehead p { font-size: 0.92rem; }
    .z442cemetrics { padding: 1.85rem 0; }
    .z442cepage-banner { padding: 1.25rem; }
}

@media (max-width: 900px) {
    .z442cenavbar-toggler { display: flex; flex-shrink: 0; }
    .z442cenavbar .z442cecontainer { position: static; }
    .z442cenavbar-brand img { height: 34px; }

    .z442cenav-collapse {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        z-index: 999;
        display: none;
        flex-direction: column;
        background: var(--c-surface);
        border-bottom: 1px solid var(--c-border);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
        padding: 0.75rem max(1rem, env(safe-area-inset-right)) 1rem max(1rem, env(safe-area-inset-left));
        max-height: calc(100dvh - var(--nav-h));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z442cenav-collapse.is-open { display: flex; }
    .z442cenavbar-nav { flex-direction: column; width: 100%; align-items: stretch; }
    .z442cenav-link {
        min-height: 44px;
        padding: 0.7rem 0.75rem;
        border-radius: var(--radius-sm);
        white-space: normal;
    }

    .z442cehero-grid,
    .z442ceonboard,
    .z442cedl-grid,
    .z442celayout { grid-template-columns: 1fr; }

    .z442cehero-visual { order: -1; margin-bottom: 0.5rem; }
    .z442cehero-chip { display: none; }
    .z442cehero-content { text-align: center; }
    .z442cehero-lead {
        margin-left: auto;
        margin-right: auto;
        max-width: none;
    }
    .z442cehero-actions {
        justify-content: center;
        width: 100%;
    }
    .z442cehero-tag {
        max-width: 100%;
        text-align: center;
        line-height: 1.4;
    }
    .z442cehero h1 { font-size: clamp(1.65rem, 6vw, 2.35rem); }

    .z442cemetrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
    .z442cebrand-row,
    .z442cepath,
    .z442cefaq,
    .z442cesafe-grid { grid-template-columns: 1fr; }
    .z442cebento-card,
    .z442cebento-card--wide { grid-column: span 12; }
    .z442cehero-frame { max-width: 260px; }
    .z442cehero-frame img { max-width: 220px; }
    .z442cetip-box { height: auto; }
    .z442cenews-top { flex-direction: column; align-items: stretch; }
    .z442cenews-top .z442cebtn { width: 100%; }
    .z442cecta-actions { flex-direction: column; align-items: stretch; }
    .z442cecta-actions .z442cebtn { width: 100%; }
    .z442celayout { gap: 1.25rem; }
    .z442celayout > aside { order: 2; }
    .z442cepage-main { padding: 1.5rem 0 3rem; }
    .z442cefooter-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .z442ceflinks { justify-content: center; }
}

@media (max-width: 600px) {
    :root {
        --nav-h: 56px;
        --gap: 0.85rem;
        --space-section: 2.5rem;
        --space-card: 1rem;
    }

    .z442cesection { padding: var(--space-section) 0; }
    .z442cecontainer {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .z442ceticker { padding: 0.65rem 0; }
    .z442ceticker-inner {
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.78rem;
        text-align: center;
    }

    .z442ceonboard { padding: var(--space-card); }
    .z442cetimeline li { padding-left: 2.35rem; font-size: 0.86rem; }
    .z442cetimeline li::before { width: 1.6rem; height: 1.6rem; font-size: 0.75rem; }

    .z442cehero { padding: 1.75rem 0 2rem; }
    .z442cehero-lead { font-size: 0.9rem; line-height: 1.65; }
    .z442cehero-actions { flex-direction: column; }
    .z442cehero-actions .z442cebtn {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.88rem;
    }
    .z442cehero-frame { max-width: 240px; }
    .z442cehero-frame img { max-width: 200px; }

    .z442cedl-top { flex-wrap: nowrap; gap: 0.65rem; }
    .z442cedl-icon { width: 42px; height: 42px; flex-shrink: 0; font-size: 0.68rem; }
    .z442cedl-card .z442cebtn { font-size: 0.85rem; }

    .z442cemetrics { padding: 1.5rem 0; }
    .z442cemetric strong { font-size: 1.4rem; }
    .z442cemetric span { font-size: 0.8rem; }

    .z442cenews-grid { grid-template-columns: 1fr; }
    .z442cenews-top h2 { font-size: 1.3rem; }
    .z442cenews-card img,
    .z442cethumb-home { height: 140px; }

    .z442cefooter {
        padding: 2.25rem 0 max(1.25rem, env(safe-area-inset-bottom));
    }
    .z442cefooter-grid { gap: 1.25rem; }
    .z442cefooter-friends { text-align: center; }

    .z442cecta { padding: 1.35rem 1rem; }
    .z442cecta h2 { font-size: 1.25rem; }
    .z442cecta p { font-size: 0.88rem; }

    .z442cebadges { grid-template-columns: 1fr; }

    .z442cepage-main { padding: 1.25rem 0 2.5rem; }
    .z442cepage-banner {
        margin-bottom: 1.25rem;
        padding: 1rem;
    }
    .z442cepage-banner h1 { font-size: 1.2rem; }
    .z442cepage-banner .lead { font-size: 0.85rem; }

    .z442celist-row { grid-template-columns: 96px minmax(0, 1fr); gap: 0.75rem; }
    .z442cethumb-list,
    .z442cethumb-related { height: 72px; }
    .z442celist-title { font-size: 0.92rem; }
    .z442celist-desc {
        font-size: 0.84rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .z442cearticle-meta-bar { flex-direction: column; gap: 0.35rem; }
    .z442cethumb-cover { max-height: 200px; }
    .z442cearticle-content { font-size: 0.94rem; }

    .z442cecard-body { padding: 1rem; }
    .z442cecard .pagebar { padding: 0.75rem 1rem 1rem; }

    .z442cebtn { font-size: 0.88rem; }
    .z442cebtn-sm { font-size: 0.8rem; padding: 0.45rem 0.85rem; }
}

@media (max-width: 480px) {
    .z442cenews-grid { grid-template-columns: 1fr; }
    .z442cemetrics-grid { gap: 0.65rem; }
    .z442cemetric { padding: 0.25rem; }
}

@media (max-width: 380px) {
    .z442celist-row,
    .z442cerelated-item { grid-template-columns: 1fr; }

    .z442celist-row > a { display: block; }

    .z442cethumb-list,
    .z442cethumb-related {
        width: 100%;
        height: 140px;
    }

    .z442cehero h1 { font-size: 1.5rem; }
    .z442cehero h1 br { display: none; }
}
