/* 欧易下载官方 — 潮流深色主题（电光紫 + 霓虹青） */
:root {
    --bg: #06060a;
    --bg-elevated: #0e0e16;
    --surface: #14141f;
    --surface-2: #1c1c2a;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #f4f4f5;
    --text-muted: #a1a1aa;
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.45);
    --accent: #22d3ee;
    --accent-glow: rgba(34, 211, 238, 0.35);
    --gradient: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 50%, #c084fc 100%);
    --radius-sm: 8px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --card-border: 1px solid var(--border);
    --card-pad: 1.25rem;
    --container: 1140px;
    --nav-h: 64px;
    --section-py: 3.75rem;
    --gap: 1.125rem;
    --font: "PingFang SC", "Microsoft YaHei", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    line-height: 1.65;
    background: var(--bg);
    overflow-x: hidden;
}

body.zfed18nav-open { overflow: hidden; touch-action: none; }

body.zfed18subpage {
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(139, 92, 246, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(34, 211, 238, 0.08), transparent);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { color: #67e8f9; }

.zfed18container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

[class*="-grid"] > *,
.zfed18bento > *,
.zfed18faq-list > *,
.zfed18card,
.zfed18glass,
.zfed18proof-item,
.zfed18news-card,
.zfed18faq-item,
.zfed18hero-grid > *,
.zfed18official-grid > * {
    min-width: 0;
    max-width: 100%;
}

/* —— 导航 —— */
.zfed18navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    background: rgba(6, 6, 10, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.zfed18navbar .zfed18container {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--nav-h);
    gap: 1rem;
}

.zfed18navbar-brand { flex-shrink: 0; display: flex; align-items: center; }
.zfed18navbar-brand img { height: 38px; width: auto; }

.zfed18nav-toggle {
    display: none;
    margin-left: auto;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: var(--surface);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
}

.zfed18nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.zfed18navbar-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.zfed18nav-link {
    display: block;
    padding: 0.45rem 0.7rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted) !important;
    border-radius: 999px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.zfed18nav-link:hover,
.zfed18nav-item.active .zfed18nav-link {
    color: var(--text) !important;
    background: rgba(139, 92, 246, 0.15);
}

/* —— 按钮 —— */
.zfed18btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    text-decoration: none;
    line-height: 1.3;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.zfed18btn-glow {
    background: var(--gradient);
    color: #fff !important;
    box-shadow: 0 4px 18px var(--primary-glow);
}

.zfed18btn-glow:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px var(--primary-glow);
    color: #fff !important;
}

.zfed18btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text) !important;
    border: 1px solid var(--border-strong);
}

.zfed18btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text) !important;
}

.zfed18btn-outline {
    background: transparent;
    color: var(--accent) !important;
    border: 1px solid rgba(34, 211, 238, 0.5);
}

.zfed18btn-outline:hover {
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent) !important;
}

.zfed18btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }

/* —— 通用 —— */
.zfed18glass {
    background: rgba(20, 20, 31, 0.72);
    backdrop-filter: blur(10px);
    border: var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.zfed18tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.08);
    margin-bottom: 0.85rem;
}

.zfed18section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 2rem;
    padding: 0 0.25rem;
}

.zfed18section-head h2 {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 800;
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zfed18section-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* —— Hero —— */
.zfed18hero {
    position: relative;
    padding: 3.5rem 0 4rem;
    overflow: hidden;
}

.zfed18hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 400px at 15% 20%, rgba(139, 92, 246, 0.35), transparent),
        radial-gradient(circle 350px at 85% 60%, rgba(34, 211, 238, 0.2), transparent),
        radial-gradient(circle 300px at 50% 100%, rgba(192, 132, 252, 0.15), transparent);
    pointer-events: none;
}

.zfed18hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.zfed18hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.25);
    margin-bottom: 1.25rem;
}

.zfed18hero-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.zfed18hero h1 {
    font-size: clamp(1.65rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
    overflow-wrap: break-word;
}

.zfed18hero-lead {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    max-width: 520px;
    overflow-wrap: break-word;
}

.zfed18hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.zfed18hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.zfed18hero-chips span {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.zfed18hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.zfed18hero-frame {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0.85rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.08));
    border: var(--card-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.zfed18hero-frame img {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    border-radius: var(--radius);
}

/* —— 滚动条带 —— */
.zfed18ticker {
    border-block: 1px solid var(--border);
    background: var(--bg-elevated);
    padding: 0.85rem 0;
    overflow: hidden;
}

.zfed18ticker-track {
    display: flex;
    gap: 2.5rem;
    animation: zfed18ticker 28s linear infinite;
    width: max-content;
}

.zfed18ticker-item {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.zfed18ticker-item strong {
    color: var(--accent);
    font-weight: 600;
}

@keyframes zfed18ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* —— 官方叙事 —— */
.zfed18official {
    padding: var(--section-py) 0;
}

.zfed18official-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: stretch;
}

.zfed18official-card {
    padding: var(--card-pad);
    height: 100%;
}

.zfed18official-card h2 {
    font-size: 1.35rem;
    margin: 0 0 1rem;
    color: var(--text);
}

.zfed18official-card p {
    margin: 0 0 0.85rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    overflow-wrap: break-word;
}

.zfed18kw-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.zfed18kw-row span {
    font-size: 0.75rem;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: #c4b5fd;
}

/* —— Bento 交易生态 —— */
.zfed18ecosystem {
    padding: var(--section-py) 0;
    background: var(--bg-elevated);
}

.zfed18bento {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(0, auto);
    gap: var(--gap);
}

.zfed18bento-item {
    padding: var(--card-pad);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.zfed18bento-item:hover {
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.zfed18bento-item.span-2 { grid-column: span 2; }
.zfed18bento-item.span-row { grid-row: span 1; }

.zfed18bento-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.zfed18bento-item h3 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
}

.zfed18bento-item p {
    margin: 0;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
    overflow-wrap: break-word;
}

.zfed18bento-item.highlight {
    background: linear-gradient(160deg, rgba(139, 92, 246, 0.2), rgba(34, 211, 238, 0.06));
    border-color: rgba(139, 92, 246, 0.28);
}

/* —— 实力背书 stats —— */
.zfed18proof {
    padding: 3rem 0;
    position: relative;
}

.zfed18proof::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0.08;
}

.zfed18proof-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
}

.zfed18proof-item {
    text-align: center;
    padding: 1.15rem 0.85rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: var(--card-border);
}

.zfed18proof-num {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.zfed18proof-label {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* —— 客户端下载 —— */
.zfed18clients {
    padding: var(--section-py) 0;
}

.zfed18clients-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
}

.zfed18client-card {
    padding: var(--card-pad);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.zfed18client-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.zfed18client-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.zfed18client-icon.win { background: #2563eb; color: #fff; }
.zfed18client-icon.and { background: #22c55e; color: #052e16; }
.zfed18client-icon.ios {
    background: linear-gradient(135deg, #52525b, #18181b);
    color: #fff;
    font-size: 0.85rem;
}
.zfed18client-icon.ios::before { content: "\F8FF"; }

.zfed18client-card h3 { margin: 0; font-size: 1.05rem; }
.zfed18client-card .sub { margin: 0; font-size: 0.8rem; color: var(--text-muted); }

.zfed18client-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    flex: 1;
}

.zfed18client-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.45rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.zfed18client-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.zfed18client-card .zfed18btn { width: 100%; }

/* —— 开户向导 —— */
.zfed18onboard {
    padding: var(--section-py) 0;
    background: var(--bg-elevated);
}

.zfed18timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
    position: relative;
}

.zfed18step {
    position: relative;
    text-align: center;
    padding: var(--card-pad);
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: var(--card-border);
}

.zfed18step-dot {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid rgba(139, 92, 246, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.zfed18step h4 {
    margin: 0 0 0.45rem;
    font-size: 0.92rem;
}

.zfed18step p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    overflow-wrap: break-word;
}

/* —— 合规安全 —— */
.zfed18trust {
    padding: var(--section-py) 0;
}

.zfed18trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap);
}

.zfed18trust-panel {
    padding: var(--card-pad);
}

.zfed18trust-panel h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.zfed18trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.zfed18trust-list div {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0.45rem 0.6rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.zfed18badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
    margin-top: var(--gap);
}

.zfed18badge {
    text-align: center;
    padding: var(--card-pad);
}

.zfed18badge strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.zfed18badge span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* —— 对比表 —— */
.zfed18compare {
    padding: 3rem 0;
    background: var(--bg-elevated);
}

.zfed18table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: var(--card-border);
    background: var(--surface);
}

.zfed18table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 520px;
}

.zfed18table th,
.zfed18table td {
    padding: 0.75rem 0.85rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    line-height: 1.45;
    overflow-wrap: break-word;
}

.zfed18table th {
    background: var(--surface-2);
    color: var(--accent);
    font-weight: 600;
}

.zfed18table td { color: var(--text-muted); }
.zfed18table tr:last-child td { border-bottom: none; }

/* —— FAQ —— */
.zfed18faq {
    padding: var(--section-py) 0;
}

.zfed18faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.zfed18faq-item {
    border-radius: var(--radius-lg);
    border: var(--card-border);
    background: var(--surface);
    overflow: hidden;
}

.zfed18faq-item summary {
    padding: 0.9rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.45;
    word-break: break-word;
}

.zfed18faq-item summary::-webkit-details-marker { display: none; }

.zfed18faq-item summary::after {
    content: "+";
    color: var(--accent);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.zfed18faq-item[open] summary::after { content: "−"; }

.zfed18faq-item p {
    margin: 0;
    padding: 0 1rem 0.9rem;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
    overflow-wrap: break-word;
}

/* —— 资讯 —— */
.zfed18news {
    padding: var(--section-py) 0;
    background: var(--bg-elevated);
}

.zfed18news-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.zfed18news-head h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.zfed18news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
}

.zfed18news-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--card-border);
    background: var(--surface);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.zfed18news-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.zfed18thumb-home {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.zfed18news-body {
    padding: 0.75rem;
    flex: 1;
}

.zfed18news-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.zfed18news-card h3 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zfed18news-card h3 a { color: var(--text); }
.zfed18news-card h3 a:hover { color: var(--accent); }

/* —— 页脚 —— */
.zfed18footer {
    padding: 3rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border);
    background: #040408;
}

.zfed18footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.zfed18footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 1rem 0 0;
    line-height: 1.6;
}

.zfed18footer-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.85rem;
    color: var(--text);
}

.zfed18footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zfed18footer-links li { margin-bottom: 0.4rem; }

.zfed18footer-link {
    font-size: 0.85rem;
    color: var(--text-muted) !important;
}

.zfed18footer-link:hover { color: var(--accent) !important; }

.zfed18friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zfed18friend-links a {
    font-size: 0.82rem;
    color: var(--text-muted) !important;
}

.zfed18footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.zfed18footer-bottom p { margin: 0.35rem 0; }
.zfed18footer-bottom a { color: var(--text-muted) !important; }
.zfed18footer-bottom a:hover { color: var(--accent) !important; }

/* —— 列表 / 内页 —— */
.zfed18page-hero {
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.zfed18page-hero h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zfed18page-hero p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.zfed18page-main { padding: 0 0 3.5rem; }

.zfed18layout-2col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: var(--gap);
    align-items: start;
}

.zfed18card {
    background: rgba(20, 20, 31, 0.85);
    border: var(--card-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.zfed18card-body { padding: var(--card-pad); }

.zfed18card h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--text);
}

.listbox .e2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.listbox .e2 li {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.listbox .e2 li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.zfed18list-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    align-items: start;
}

.zfed18list-row h2 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
}

.zfed18list-row h2 a { color: var(--text); }
.zfed18list-row h2 a:hover { color: var(--accent); }

.zfed18list-row p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.zfed18list-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.zfed18thumb-list,
.zfed18thumb-related {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.zfed18thumb-side {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius-sm, 8px);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.zfed18thumb-cover {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.zfed18sidebar-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    align-items: flex-start;
}

.zfed18sidebar-item > a:last-child {
    flex: 1;
    min-width: 0;
    font-size: 0.88rem;
    color: var(--text);
    word-break: break-word;
}

.zfed18sidebar-item > a:last-child:hover { color: var(--accent); }

.zfed18sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zfed18sidebar-list li { margin-bottom: 0.45rem; }
.zfed18sidebar-list a { color: var(--text-muted); font-size: 0.9rem; }
.zfed18sidebar-list a:hover { color: var(--accent); }

.zfed18article-content {
    line-height: 1.8;
    font-size: 0.95rem;
    color: var(--text-muted);
    overflow-wrap: break-word;
}

.zfed18article-content h2,
.zfed18article-content h3 { color: var(--text); }

.zfed18article-content img,
.zfed18article-content table,
.zfed18article-content iframe {
    max-width: 100%;
}

.zfed18article-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.zfed18card header h1 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.35;
    word-break: break-word;
}

.zfed18meta-tags {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.zfed18tagitem a {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    font-size: 0.8rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c4b5fd !important;
}

.zfed18prenext {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.zfed18card-mt { margin-top: 1.25rem; }

.zfed18card-mt0 { margin-bottom: 1.25rem; }

.zfed18cover-wrap { margin-bottom: 1.5rem; }

.zfed18card-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--text);
}

.zfed18related-item { margin-bottom: 1rem; }
.zfed18related-item:last-child { margin-bottom: 0; }

.zfed18related-title {
    font-weight: 600;
    color: var(--text);
}

.zfed18related-title:hover { color: var(--accent); }

.zfed18related-desc {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pagebar .pagelist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.pagebar .pagelist a,
.pagebar .pagelist span {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted) !important;
    background: var(--surface);
}

.pagebar .pagelist a:hover {
    border-color: var(--primary);
    color: var(--text) !important;
    background: rgba(139, 92, 246, 0.2);
}

/* —— 响应式 —— */
@media (max-width: 1100px) {
    .zfed18nav-link {
        padding: 0.38rem 0.5rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 1024px) {
    .zfed18bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .zfed18bento-item.span-2 { grid-column: span 2; }
    .zfed18news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .zfed18proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .zfed18clients-grid { grid-template-columns: minmax(0, 1fr); }
}

/* 平板及以下 */
@media (max-width: 991px) {
    .zfed18nav-toggle { display: flex; }

    .zfed18navbar .zfed18container {
        min-height: var(--nav-h);
    }

    .zfed18navbar-nav {
        display: none;
        position: fixed;
        top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
        left: 0;
        right: 0;
        width: 100%;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 12px 0.75rem;
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
        background: rgba(14, 14, 22, 0.98);
        border-bottom: 1px solid var(--border);
        max-height: min(78vh, calc(100dvh - var(--nav-h) - env(safe-area-inset-top, 0px)));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    }

    .zfed18navbar-nav.is-open { display: flex; }

    .zfed18nav-link {
        padding: 0.7rem 0.85rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        white-space: normal;
        font-size: 0.9rem;
    }

    .zfed18hero-grid,
    .zfed18official-grid { grid-template-columns: 1fr; }

    .zfed18hero-visual {
        order: -1;
        margin-bottom: 0.25rem;
    }

    .zfed18hero-content {
        text-align: center;
    }

    .zfed18hero h1,
    .zfed18hero-lead {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .zfed18hero-eyebrow { margin-left: auto; margin-right: auto; }
    .zfed18hero-cta { justify-content: center; }
    .zfed18hero-chips { justify-content: center; }

    .zfed18timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .zfed18trust-grid { grid-template-columns: 1fr; }
    .zfed18layout-2col { grid-template-columns: 1fr; }
    .zfed18layout-2col > aside { margin-top: 0.25rem; }
    .zfed18footer-grid { grid-template-columns: 1fr 1fr; }
}

/* 手机 */
@media (max-width: 767px) {
    :root {
        --section-py: 2.75rem;
        --gap: 0.875rem;
        --nav-h: 56px;
        --card-pad: 1.1rem;
    }

    .zfed18container { padding: 0 12px; }

    .zfed18navbar-nav {
        padding-left: 12px;
        padding-right: 12px;
    }

    .zfed18navbar-brand img { height: 30px; }

    .zfed18hero { padding: 1.75rem 0 2.25rem; }

    .zfed18hero h1 {
        font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    }

    .zfed18hero-lead {
        font-size: 0.875rem;
        line-height: 1.55;
    }

    .zfed18hero-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .zfed18hero-cta .zfed18btn {
        width: 100%;
        max-width: 100%;
    }

    .zfed18hero-chips {
        flex-direction: column;
        align-items: stretch;
    }

    .zfed18hero-chips span {
        text-align: center;
    }

    .zfed18hero-frame {
        max-width: min(240px, 88vw);
        padding: 0.6rem;
    }

    .zfed18section-head {
        margin-bottom: 1.35rem;
    }

    .zfed18section-head h2 {
        font-size: 1.25rem;
    }

    .zfed18section-head p {
        font-size: 0.875rem;
    }

    .zfed18official-card h2 {
        font-size: 1.15rem;
    }

    .zfed18kw-row {
        justify-content: center;
    }

    .zfed18bento { grid-template-columns: minmax(0, 1fr); }
    .zfed18bento-item.span-2 { grid-column: span 1; }

    .zfed18badges,
    .zfed18news-grid,
    .zfed18proof-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .zfed18timeline { grid-template-columns: minmax(0, 1fr); }
    .zfed18trust-list { grid-template-columns: 1fr; }

    .zfed18ticker {
        padding: 0.65rem 0;
    }

    .zfed18ticker-track {
        animation-duration: 38s;
        gap: 2rem;
    }

    .zfed18client-head {
        flex-wrap: wrap;
    }

    .zfed18compare {
        padding: 2rem 0;
    }

    .zfed18table-wrap {
        margin: 0 -2px;
    }

    .zfed18news-head {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 1.25rem;
    }

    .zfed18news-head h2 {
        font-size: 1.25rem;
    }

    .zfed18news-head .zfed18btn {
        width: 100%;
    }

    .zfed18thumb-home {
        aspect-ratio: 16 / 9;
        max-height: 180px;
    }

    .zfed18footer {
        padding: 2.25rem 0 calc(1.25rem + env(safe-area-inset-bottom, 0px));
    }

    .zfed18footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.35rem;
    }

    .zfed18footer-brand img { margin: 0 auto; }
    .zfed18friend-links { justify-content: center; }

    .zfed18footer-bottom {
        font-size: 0.78rem;
        line-height: 1.7;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .zfed18page-main {
        padding: 0 0 2.5rem;
    }

    .zfed18page-hero {
        padding: 1.5rem 0 1.25rem;
        margin-bottom: 1.25rem;
    }

    .zfed18page-hero h1 {
        font-size: 1.2rem;
    }

    .zfed18list-row {
        grid-template-columns: 88px 1fr;
        gap: 0.75rem;
    }

    .zfed18list-row h2 {
        font-size: 0.92rem;
    }

    .zfed18list-row p {
        font-size: 0.82rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .zfed18card header h1 {
        font-size: 1.1rem;
    }

    .zfed18article-header-meta {
        flex-direction: column;
        gap: 0.3rem;
    }

    .zfed18thumb-cover {
        max-height: 200px;
    }

    .zfed18client-card .zfed18btn,
    .zfed18btn {
        min-height: 44px;
        box-sizing: border-box;
    }

    .pagebar .pagelist {
        justify-content: center;
    }

    .zfed18btn-glow:hover,
    .zfed18btn:hover,
    .zfed18bento-item:hover,
    .zfed18news-card:hover {
        transform: none;
        box-shadow: none;
    }

    .zfed18bento-item:hover,
    .zfed18news-card:hover {
        border-color: var(--border);
    }
}

/* 小屏手机 */
@media (max-width: 480px) {
    :root {
        --card-pad: 1rem;
        --section-py: 2.5rem;
    }

    .zfed18container { padding: 0 10px; }

    .zfed18navbar-nav {
        padding-left: 10px;
        padding-right: 10px;
    }

    .zfed18hero-chips {
        gap: 0.35rem;
    }

    .zfed18proof-item {
        padding: 0.9rem 0.65rem;
    }

    .zfed18proof-num {
        font-size: 1.45rem;
    }

    .zfed18list-row { grid-template-columns: 1fr; }

    .zfed18list-row .thumb-wrap a {
        display: block;
    }

    .zfed18thumb-list,
    .zfed18thumb-related {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: 160px;
    }

    .zfed18sidebar-item {
        flex-direction: column;
    }

    .zfed18thumb-side {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: 120px;
    }

    .zfed18step-dot {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) and (hover: hover) {
    .zfed18btn-glow:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 22px var(--primary-glow);
    }
}
