:root {
    --primary-color: #ea580c;
    --primary-dark: #c2410c;
    --primary-soft: #fb923c;
    --secondary-color: #0c0a09;
    --accent-color: #65a30d;
    --accent-warm: #fbbf24;
    --surface: #fafaf9;
    --surface-elevated: #ffffff;
    --text-color: #1c1917;
    --text-muted: #57534e;
    --border-subtle: rgba(28, 25, 23, 0.12);
    --border-inner: rgba(28, 25, 23, 0.08);
    --gray-100: #f5f5f4;
    --gray-200: #e7e5e4;
    --transition-speed: 0.3s;
    --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
    --radius-card: 0.25rem;
    --radius-inner: 0.125rem;
    --radius-pill: 999px;
    --shadow-soft: 0 1px 0 rgba(28, 25, 23, 0.06);
    --shadow-hover: 0 8px 24px rgba(12, 10, 9, 0.08);
    --primary-rgb: 234, 88, 12;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", system-ui, sans-serif;
    color: var(--text-color);
    line-height: 1.65;
    background: var(--surface);
    overflow-x: hidden;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

.container .row > [class*="col-"] {
    min-width: 0;
}

/* —— 导航 —— */
.z565dfnavbar {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    padding: 0.6rem 0;
}

.z565dfnavbar-brand img {
    height: 44px;
    width: auto;
    max-height: 44px;
}

.z565dfnav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.45rem 0.75rem !important;
    border-radius: var(--radius-inner);
    transition: color var(--transition-speed), background var(--transition-speed);
    white-space: normal;
    word-break: break-word;
}

.z565dfnav-link:hover {
    color: var(--primary-dark) !important;
    background: rgba(var(--primary-rgb), 0.08);
}

/* —— 英雄区（新：斜切底 + 网格光晕） —— */
.z565dfhero-section {
    position: relative;
    color: #f8fafc;
    padding: clamp(3.25rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
    background: linear-gradient(165deg, #312e81 0%, var(--secondary-color) 42%, #4c1d95 100%);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.5rem), 0 100%);
}

@media (min-width: 768px) {
    .z565dfhero-section {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.5rem), 0 100%);
    }
}

.z565dfhero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 55% at 15% -10%, rgba(56, 189, 248, 0.35), transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 60%, rgba(139, 92, 246, 0.25), transparent 50%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(251, 191, 36, 0.12), transparent 45%);
    pointer-events: none;
}

.z565dfhero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0 0h36v36H0V0zm36 36h36v36H36V36z'/%3E%3C/svg%3E");
    pointer-events: none;
}

.z565dfhero-content {
    position: relative;
    z-index: 1;
}

.z565dfhero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-warm);
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 100%;
    flex-wrap: wrap;
}

.z565dfhero-title {
    font-size: clamp(1.9rem, 4.8vw, 3.15rem);
    font-weight: 800;
    margin-bottom: 0.85rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.z565dfhero-subtitle {
    font-size: clamp(1rem, 2.1vw, 1.2rem);
    margin-bottom: 1.25rem;
    opacity: 0.93;
    max-width: 38rem;
    font-weight: 400;
}

.z565dfhero-lede {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    opacity: 0.88;
    max-width: 40rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.z565dfhero-image-container {
    position: relative;
    z-index: 1;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-top: 0.5rem;
}

.z565dfhero-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.14);
    object-fit: contain;
}

.z565dfhero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.z565dfhero-buttons .btn {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.z565dfhero-buttons .btn-light {
    background: #fff;
    color: var(--primary-dark);
}

.z565dfhero-buttons .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    color: var(--primary-dark);
}

.z565dfhero-buttons .btn-primary,
.z565dfhero-buttons .btn-outline-light {
    background: linear-gradient(135deg, var(--accent-color), #0ea5e9);
    color: #0f172a;
}

.z565dfhero-buttons .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #f1f5f9;
}

.z565dfhero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.z565dfhero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(14, 165, 233, 0.45);
    color: #0f172a;
}

@media (max-width: 768px) {
    .z565dfhero-buttons {
        flex-direction: column;
    }

    .z565dfhero-buttons .btn {
        width: 100%;
    }
}

/* —— 导读与信息带 —— */
.z565dfprose-section {
    background: var(--surface-elevated);
    border-bottom: 1px solid var(--border-subtle);
    padding: clamp(2rem, 5vw, 2.75rem) 0;
}

.z565dfprose-section .lead {
    color: var(--text-muted);
    max-width: 54rem;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1rem, 2.1vw, 1.125rem);
    line-height: 1.75;
}

.z565dftrust-strip {
    background: linear-gradient(180deg, var(--surface-elevated) 0%, var(--surface) 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: clamp(1.5rem, 4vw, 2.25rem) 0;
}

.z565dftrust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    box-shadow: var(--shadow-soft);
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.z565dftrust-item i {
    font-size: 1.35rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.z565dftrust-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.35rem;
}

.z565dftrust-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

/* —— 分区标题 —— */
.z565dfsection-head {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2.25rem;
}

.z565dfsection-head h2 {
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    letter-spacing: -0.02em;
}

.z565dfsection-head p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
}

.z565dfband {
    padding: clamp(2.75rem, 6vw, 4.25rem) 0;
}

.z565dfband--tint {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-elevated) 50%, var(--surface) 100%);
}

.z565dfband--solid {
    background: var(--surface-elevated);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

/* —— 特点卡片 —— */
.card.z565dffeature-card {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed) var(--transition-easing),
        box-shadow var(--transition-speed) var(--transition-easing);
    border: 1px solid var(--border-subtle);
    height: 100%;
    background: var(--surface-elevated);
    overflow: hidden;
    box-sizing: border-box;
}

.card.z565dffeature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.z565dffeature-icon {
    font-size: 1.65rem;
    color: var(--primary-dark);
    margin-bottom: 1.1rem;
    background: rgba(var(--primary-rgb), 0.1);
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-inner);
    margin-left: auto;
    margin-right: auto;
}

/* —— 统计数据 —— */
.z565dfstats-section {
    background: linear-gradient(135deg, #4c1d95 0%, var(--primary-dark) 50%, #312e81 100%);
    color: #f8fafc;
    padding: clamp(2.75rem, 6vw, 4rem) 0;
    position: relative;
    overflow: hidden;
}

.z565dfstats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(56, 189, 248, 0.2), transparent 55%);
    pointer-events: none;
}

.z565dfstat-item {
    text-align: center;
    padding: 1rem 0.5rem;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    height: 100%;
    min-height: 7.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.z565dfstat-number {
    font-size: clamp(1.85rem, 3.8vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--accent-warm);
    line-height: 1.1;
}

.z565dfstat-label {
    font-size: clamp(0.8rem, 1.9vw, 0.95rem);
    opacity: 0.92;
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* —— 下载区 —— */
.z565dfdownload-section {
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--surface) 100%);
}

.z565dfdownload-header h2 {
    color: var(--secondary-color);
    font-weight: 800;
}

.z565dfdownload-subtitle {
    color: var(--text-muted);
}

.z565dfdownload-card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    background: var(--surface-elevated);
    box-sizing: border-box;
    overflow: hidden;
    height: 100%;
}

.z565dfdownload-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.z565dfplatform-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.z565dfios-icon {
    background: linear-gradient(135deg, #6366f1, #4338ca);
    color: #fff;
}

.z565dfandroid-icon {
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
}

.z565dfdownload-info {
    background: rgba(var(--primary-rgb), 0.06);
    padding: 1.15rem;
    border-radius: var(--radius-inner);
    border: 1px solid var(--border-inner);
    box-sizing: border-box;
}

.z565dfinfo-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    gap: 0.5rem;
}

.z565dfinfo-item:last-child {
    margin-bottom: 0;
}

.z565dfinfo-item i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.15em;
}

.z565dfinfo-item span {
    min-width: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.z565dfdownload-action .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
}

/* —— 新手指引 —— */
.z565dfguide-section {
    padding: clamp(2.75rem, 6vw, 4.25rem) 0;
    background: var(--surface-elevated);
}

.z565dfguide-panel {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem 1.35rem;
    height: 100%;
    background: linear-gradient(180deg, #faf5ff 0%, var(--surface-elevated) 100%);
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.z565dfguide-panel h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.z565dfguide-panel ol,
.z565dfguide-panel ul {
    padding-left: 1.15rem;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.z565dfguide-panel li {
    margin-bottom: 0.45rem;
}

/* —— 安全区 —— */
.z565dfsecurity-section {
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
    background: var(--surface);
}

.z565dfsecurity-header h2 {
    color: var(--secondary-color);
    font-weight: 800;
}

.z565dfsecurity-subtitle {
    color: var(--text-muted);
}

.z565dfsecurity-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-card);
    padding: 1.35rem 1.15rem;
    height: 100%;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.z565dfsecurity-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.z565dfsecurity-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.z565dfsecurity-card h3 {
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.z565dfsecurity-features {
    background: rgba(var(--primary-rgb), 0.06);
    padding: 1rem 1rem;
    border-radius: var(--radius-inner);
    border: 1px solid var(--border-inner);
    box-sizing: border-box;
}

.z565dffeature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    gap: 0.45rem;
}

.z565dffeature-item:last-child {
    margin-bottom: 0;
}

.z565dffeature-item span {
    min-width: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.z565dffeature-item i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.12em;
}

.z565dfsecurity-certificates {
    margin-top: 2.5rem;
}

.z565dfcertificate-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-card);
    padding: 1.35rem 1.15rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
    height: 100%;
    transition: transform 0.25s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.z565dfcertificate-card:hover {
    transform: translateY(-3px);
}

.z565dfcertificate-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-soft), var(--primary-dark));
    color: #fff;
}

.z565dfcertificate-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
}

.z565dfcertificate-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

/* —— FAQ —— */
.card.z565dffaq-card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.25s ease;
    overflow: hidden;
    box-sizing: border-box;
    background: var(--surface-elevated);
}

.card.z565dffaq-card:hover {
    box-shadow: var(--shadow-hover);
}

.card.z565dffaq-card .card-title {
    color: var(--secondary-color);
    font-size: 0.98rem;
    font-weight: 600;
}

section#faq.bg-white,
section#faq.z565dffaq-band {
    border-top: 1px solid var(--border-subtle);
}

.z565dffaq-band {
    background: var(--surface-elevated) !important;
}

/* —— 文章区 —— */
#article .card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    box-sizing: border-box;
}

#article .card:hover {
    box-shadow: var(--shadow-hover);
}

.z565dfarticle-band {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--surface) 100%);
    border-top: 1px solid var(--border-subtle);
}

/* —— 页脚 —— */
.z565dffooter {
    background: var(--secondary-color);
    padding: 2.75rem 0 1.35rem;
    color: #a8a29e;
}

.z565dffooter .z565dffooter-title {
    color: #fafaf9;
}

.z565dffooter-link {
    color: #a8a29e;
}

.z565dffooter-link:hover {
    color: var(--primary-soft);
}

.z565dffooter-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.35rem;
}

.z565dffooter-bottom a {
    color: #d6d3d1;
}

.z565dffooter-bottom a:hover {
    color: var(--primary-soft);
}

/* —— 子页内容区 —— */
.z565dfpage-shell {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--surface);
    min-height: 50vh;
}

.z565dfpage-shell .card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-sizing: border-box;
}

.z565dfpage-shell .card.shadow-sm {
    box-shadow: var(--shadow-soft) !important;
}

.z565dfpage-shell aside a {
    color: var(--primary-dark);
    text-decoration: none;
}

.z565dfpage-shell aside a:hover {
    text-decoration: underline;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    border: none !important;
}

.btn-outline-primary {
    color: var(--primary-dark) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.2);
}

.z565dfsidebar-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jz-bnh .jz-bnh-hero,
.jz-bnh .jz-bnh-tile,
.jz-bnh .jz-bnh-panel {
    animation: fadeIn 0.55s var(--transition-easing) forwards;
}

img {
    max-width: 100%;
    height: auto;
}

.navbar-toggler {
    border: 1px solid var(--border-subtle);
    padding: 0.45rem 0.55rem;
    border-radius: var(--radius-inner);
}

.navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.65rem;
    border-radius: var(--radius-card);
    margin-top: 0.5rem;
    border: 1px solid var(--border-subtle);
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .z565dfnavbar > .container {
        min-width: 0;
    }

    .z565dfnavbar .navbar-brand.z565dfnavbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 3.5rem);
        margin-right: 0.35rem;
    }

    .z565dfnavbar-brand img {
        max-width: min(200px, 58vw);
        height: auto;
        max-height: 42px;
        object-fit: contain;
    }
}

.pagebar .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pagebar .pagelist li {
    display: inline-flex;
    margin: 0;
}

.z565dfthumb-home {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.text-primary {
    color: var(--primary-dark) !important;
}

.bi.text-primary {
    color: var(--primary-color) !important;
}

@media (max-width: 767px) {
    .z565dfnavbar {
        padding: 0.45rem 0;
    }

    .z565dfnavbar .navbar-collapse {
        max-height: min(72vh, 28rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z565dfnavbar .navbar-nav .nav-link {
        padding: 0.5rem 0.4rem !important;
        font-size: 0.94rem;
    }

    .z565dfprose-section .lead {
        text-align: left;
        font-size: 0.9375rem;
        line-height: 1.75;
        max-width: none;
    }

    .z565dfsection-head {
        margin-bottom: 1.65rem;
        text-align: left;
    }

    .z565dfsection-head h2 {
        text-align: left;
    }

    .z565dfsection-head p {
        font-size: 0.9rem;
        line-height: 1.65;
        text-align: left;
    }

    .z565dfguide-panel {
        padding: 1.15rem;
    }

    .z565dfguide-panel h3 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.35rem;
        font-size: 1rem;
        line-height: 1.35;
    }

    .z565dfhero-section {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.25rem), 0 100%);
        padding-top: clamp(2rem, 6vw, 3rem);
        padding-bottom: clamp(2.5rem, 8vw, 3.75rem);
    }

    .z565dfhero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .z565dfhero-lede {
        font-size: 0.9rem;
    }

    .z565dfhero-image-container {
        min-height: 140px;
        margin-top: 0.5rem;
    }

    .z565dfhero-buttons .btn-lg {
        --bs-btn-padding-y: 0.5rem;
        --bs-btn-padding-x: 1rem;
        font-size: 0.9rem;
    }

    .z565dfstats-section {
        padding: clamp(2rem, 5vw, 2.75rem) 0;
    }

    .z565dfstat-item {
        min-height: 0;
        padding: 0.85rem 0.35rem;
    }

    .z565dfstat-label {
        max-width: none;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .z565dfstat-number {
        font-size: clamp(1.4rem, 5vw, 1.85rem);
    }

    .z565dfsecurity-section {
        padding: clamp(2.25rem, 5vw, 3.25rem) 0;
    }

    .z565dfdownload-section {
        padding: clamp(2.25rem, 5vw, 3.25rem) 0;
    }

    .z565dfguide-section {
        padding: clamp(2.25rem, 5vw, 3rem) 0;
    }

    .z565dfband {
        padding: clamp(2rem, 5vw, 2.75rem) 0;
    }

    .card.z565dffaq-card .card-body {
        padding: 0.85rem 1rem;
    }

    .z565dffooter {
        padding: 2rem 0 1.15rem;
    }

    .z565dffooter-bottom p.small.mb-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        column-gap: 0.35rem;
        row-gap: 0.4rem;
    }

    .z565dffooter-bottom p.small.mb-2 > span {
        opacity: 0.45;
        flex: 0 0 auto;
    }

    .z565dfpage-shell {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }

    .z565dfpage-shell h1.h3 {
        font-size: clamp(1.05rem, 4.5vw, 1.35rem);
        line-height: 1.35;
        word-break: break-word;
    }

    .z565dfpage-shell header .small {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
        row-gap: 0.25rem;
    }

    .z565dfsecurity-icon {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    #article .card-body {
        padding: 0.75rem;
    }

    #article .z565dfthumb-home {
        height: 96px !important;
    }

    #article h3.h5,
    #article .card-body h3.h6,
    #article .card-body h3 {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .listbox .e2 li {
        padding-bottom: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .listbox .e2 li h2.h5 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
        line-height: 1.35;
        word-break: break-word;
    }

    .listbox .e2 li p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .z565dfthumb-list,
    .z565dfthumb-related {
        height: 72px !important;
    }

    .z565dfthumb-side {
        height: 50px !important;
    }

    .z565dfthumb-cover {
        max-width: 100% !important;
        width: 100%;
        height: 170px !important;
        margin: 0 auto;
    }

    .z565dfdownload-card .card-body {
        padding: 1rem !important;
    }

    .z565dfdownload-card .d-flex.align-items-center {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1rem !important;
    }

    .z565dfdownload-card .d-flex.align-items-center .ms-3 {
        margin-left: 0 !important;
    }

    .z565dfplatform-icon {
        width: 52px;
        height: 52px;
        font-size: 1.15rem;
    }

    .z565dfdownload-info {
        padding: 1rem;
    }

    .z565dfdownload-action .btn {
        width: 100%;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .z565dftrust-item {
        padding: 0.9rem 1rem;
    }
}

@media (max-width: 575px) {
    #article .z565dfthumb-home {
        height: 88px !important;
    }

    .z565dfthumb-list,
    .z565dfthumb-related {
        height: 64px !important;
    }

    .z565dfthumb-side {
        height: 46px !important;
    }

    .z565dfthumb-cover {
        height: 150px !important;
    }

    .pagebar .pagelist {
        gap: 0.35rem;
    }

    .z565dfhero-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.05em;
    }

    .z565dffooter-bottom {
        font-size: 0.8125rem;
    }
}

.z565dffriend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.z565dffriend-links li {
    display: inline;
}

.z565dffriend-links a {
    color: #a8a29e;
    text-decoration: none;
}

.z565dffriend-links a:hover {
    color: var(--primary-soft);
}

.z565dfarticle-content {
    line-height: 1.75;
    word-break: break-word;
}

.z565dfarticle-content img {
    max-width: 100%;
    height: auto;
}

.z565dfdiyfield {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.z565dfmeta-tags {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.z565dfmeta-tags .list-inline-item {
    margin-right: 0 !important;
    display: inline-block;
}

.z565dftagitem a {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.85rem;
}

.z565dftagitem a:hover {
    background: rgba(var(--primary-rgb), 0.22);
}

.z565dfpages .pagelist a {
    color: var(--primary-dark);
}

/* 列表页缩略图列防挤压 */
.listbox .e2 li .col-4 {
    min-width: 0;
}

.listbox .e2 li .col-8 {
    min-width: 0;
}


/* 首页：深色终端风 + 琥珀金强调（jz-bnh，与旧纸媒布局区分） */

.jz-bnh-page {
    background: #080a0e;
}

.jz-bnh-nav {
    background: rgba(8, 10, 14, 0.88) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 176, 32, 0.12) !important;
    box-shadow: none !important;
}

.jz-bnh-nav .z565dfnav-link {
    color: rgba(228, 232, 240, 0.9) !important;
}

.jz-bnh-nav .z565dfnav-link:hover {
    color: #ffb020 !important;
    background: rgba(255, 176, 32, 0.08) !important;
}

.jz-bnh-nav .navbar-collapse {
    background: rgba(14, 18, 26, 0.97) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px;
    margin-top: 0.5rem;
}

@media (min-width: 992px) {
    .jz-bnh-nav .navbar-collapse {
        background: transparent !important;
        border: none !important;
        margin-top: 0;
    }
}

.jz-bnh-nav .navbar-toggler {
    border-color: rgba(255, 176, 32, 0.35);
}

.jz-bnh-core,
.jz-bnh-metrics,
.jz-bnh-clients,
.jz-bnh-guard,
.jz-bnh-faq,
.jz-bnh-feed {
    scroll-margin-top: 5rem;
}

.jz-bnh {
    --bn-bg0: #06080c;
    --bn-bg1: #0c1018;
    --bn-panel: #121826;
    --bn-line: rgba(255, 255, 255, 0.07);
    --bn-border: 1px solid rgba(255, 255, 255, 0.08);
    --bn-border-soft: 1px solid rgba(255, 255, 255, 0.06);
    --bn-border-light: 1px solid rgba(15, 20, 25, 0.1);
    --bn-border-light-soft: 1px solid rgba(15, 20, 25, 0.08);
    --bn-strip: 3px solid var(--bn-accent);
    --bn-strip-alt: 3px solid #2ea8ff;
    --bn-text: #e8ecf4;
    --bn-muted: #8b95ad;
    --bn-accent: #ffb020;
    --bn-accent-d: #e09612;
    --bn-accent-glow: rgba(255, 176, 32, 0.22);
    --bn-light: #f0f3f8;
    --bn-light-muted: #5c6578;
    background: var(--bn-bg0);
    color: var(--bn-text);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

.jz-bnh p,
.jz-bnh li {
    overflow-wrap: break-word;
}

.jz-bnh .jz-bnh-sec__title,
.jz-bnh .jz-bnh-feed__title,
.jz-bnh .jz-bnh-panel h3,
.jz-bnh .jz-bnh-tile h3,
.jz-bnh .jz-bnh-guard__card h3 {
    overflow-wrap: break-word;
}

/* —— Hero —— */
.jz-bnh-hero {
    position: relative;
    padding: 0;
    overflow-x: hidden;
}

.jz-bnh-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 85% 15%, rgba(255, 176, 32, 0.14), transparent 55%),
        radial-gradient(80% 60% at 10% 90%, rgba(46, 160, 220, 0.08), transparent 50%),
        linear-gradient(180deg, #0a0d14 0%, #06080c 100%);
    pointer-events: none;
}

.jz-bnh-hero__inner {
    position: relative;
    display: grid;
    gap: 2.25rem;
    align-items: center;
    padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 4rem);
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

@media (min-width: 992px) {
    .jz-bnh-hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
        gap: 3rem;
    }
}

.jz-bnh-hero__copy {
    min-width: 0;
}

.jz-bnh-hero__kicker {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bn-accent);
    margin-bottom: 0.85rem;
}

.jz-bnh-hero__title {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    font-weight: 800;
    font-size: clamp(1.62rem, 5.5vw, 3.1rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 0.85rem;
    color: #fff;
    overflow-wrap: break-word;
}

.jz-bnh-hero__deck {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.55;
    color: rgba(232, 236, 244, 0.88);
    margin-bottom: 1rem;
    max-width: 36rem;
}

.jz-bnh-hero__tags {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.jz-bnh-hero__tags li {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: var(--bn-border-soft);
    color: rgba(255, 248, 230, 0.95);
    background: rgba(255, 176, 32, 0.06);
    box-sizing: border-box;
}

.jz-bnh-hero__note {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--bn-muted);
    max-width: 38rem;
    margin: 0 0 1.25rem;
}

.jz-bnh-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.jz-bnh-btn {
    border-radius: 10px;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.jz-bnh-btn--primary {
    background: linear-gradient(135deg, var(--bn-accent), var(--bn-accent-d));
    border: 1px solid rgba(255, 176, 32, 0.42);
    color: #0a0c10 !important;
    box-shadow: 0 4px 20px var(--bn-accent-glow);
}

.jz-bnh-btn--primary:hover {
    color: #0a0c10 !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(255, 176, 32, 0.35);
}

.jz-bnh-btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border: var(--bn-border-soft);
    color: var(--bn-text) !important;
}

.jz-bnh-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 176, 32, 0.45);
    color: #fff !important;
}

.jz-bnh-btn--dark {
    background: #0a0c10;
    border: 1px solid #0a0c10;
    color: #fff !important;
}

.jz-bnh-btn--dark:hover {
    background: #161b26;
    border-color: #161b26;
    color: #fff !important;
}

.jz-bnh-btn--outline {
    background: transparent;
    border: 1px solid rgba(10, 12, 16, 0.2);
    color: #0f1419 !important;
}

.jz-bnh-btn--outline:hover {
    border-color: var(--bn-accent);
    color: var(--bn-accent-d) !important;
    background: rgba(255, 176, 32, 0.06);
}

@media (max-width: 576px) {
    .jz-bnh-hero__cta {
        flex-direction: column;
    }

    .jz-bnh-hero__cta .btn {
        width: 100%;
    }
}

.jz-bnh-hero__visual {
    min-width: 0;
    max-width: 100%;
    text-align: center;
    overflow-x: hidden;
}

@media (min-width: 992px) {
    .jz-bnh-hero__visual {
        text-align: right;
    }
}

.jz-bnh-hero__glass {
    display: inline-block;
    padding: 0.65rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: var(--bn-border-soft);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    max-width: 100%;
    box-sizing: border-box;
    vertical-align: top;
}

.jz-bnh-hero__img {
    display: block;
    width: 100%;
    max-width: min(300px, 88vw);
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
}

.jz-bnh-hero__fine {
    margin: 1rem auto 0;
    max-width: 22rem;
    font-size: 0.72rem;
    line-height: 1.5;
    color: var(--bn-muted);
}

@media (min-width: 992px) {
    .jz-bnh-hero__fine {
        margin-right: 0;
        margin-left: auto;
    }
}

/* —— 要点条 —— */
.jz-bnh-strip {
    position: relative;
    padding: clamp(1.75rem, 4vw, 2.5rem) 0;
    background: var(--bn-bg1);
    border-top: var(--bn-border);
    border-bottom: var(--bn-border);
}

.jz-bnh-strip .container {
    min-width: 0;
}

.jz-bnh-strip__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.15rem;
    height: 100%;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--bn-border);
    box-sizing: border-box;
    min-height: 100%;
    min-width: 0;
}

.jz-bnh-strip__item i {
    font-size: 1.35rem;
    color: var(--bn-accent);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.jz-bnh-strip__item strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
    color: #fff;
}

.jz-bnh-strip__item p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--bn-muted);
}

/* —— 分区标题 —— */
.jz-bnh-sec {
    max-width: 44rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.jz-bnh-sec--light .jz-bnh-sec__title {
    color: #0f1419;
}

.jz-bnh-sec--light .jz-bnh-sec__lead {
    color: var(--bn-light-muted);
}

.jz-bnh-sec--on-dark .jz-bnh-sec__title {
    color: #fff;
}

.jz-bnh-sec--on-dark .jz-bnh-sec__lead {
    color: rgba(200, 208, 224, 0.82);
}

.jz-bnh-sec__title {
    font-weight: 800;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #fff;
}

.jz-bnh-sec__lead {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--bn-muted);
    overflow-wrap: break-word;
}

/* —— 特性 Bento —— */
.jz-bnh-core {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: linear-gradient(180deg, #080a0f 0%, #0a0e16 100%);
    border-top: var(--bn-border);
}

.jz-bnh-core .container {
    min-width: 0;
}

.jz-bnh-bento {
    display: grid;
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
    min-width: 0;
}

@media (min-width: 768px) {
    .jz-bnh-bento {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .jz-bnh-tile--wide {
        grid-column: span 7;
    }

    .jz-bnh-tile:not(.jz-bnh-tile--wide) {
        grid-column: span 5;
    }

    .jz-bnh-bento > .jz-bnh-tile:nth-child(n + 3) {
        grid-column: span 4;
    }
}

.jz-bnh-tile {
    padding: 1.25rem 1.35rem;
    border-radius: 16px;
    background: var(--bn-panel);
    border: var(--bn-border);
    box-sizing: border-box;
    min-width: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.jz-bnh-tile:hover {
    border-color: rgba(255, 176, 32, 0.32);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    transform: translateY(-1px);
}

.jz-bnh-tile__icon {
    display: inline-flex;
    width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 176, 32, 0.12);
    color: var(--bn-accent);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.jz-bnh-tile h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.45rem;
    color: #fff;
}

.jz-bnh-tile p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--bn-muted);
}

/* —— 数据条 —— */
.jz-bnh-metrics {
    padding: clamp(2rem, 5vw, 3rem) 0;
    background: #05070a;
    border-top: var(--bn-border);
}

.jz-bnh-metrics .container {
    min-width: 0;
}

.jz-bnh-metrics__intro {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 1.35rem;
    font-size: 0.86rem;
    color: var(--bn-muted);
    line-height: 1.6;
}

.jz-bnh-metrics__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--bn-line);
    border: var(--bn-border);
    border-radius: 16px;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .jz-bnh-metrics__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.jz-bnh-metrics__cell {
    background: #0a0e14;
    padding: 1.35rem 0.75rem;
    text-align: center;
    min-width: 0;
    box-sizing: border-box;
}

.jz-bnh-metrics__num {
    display: block;
    font-family: ui-monospace, Consolas, monospace;
    font-size: clamp(1.45rem, 3.2vw, 2rem);
    font-weight: 800;
    color: var(--bn-accent);
    line-height: 1.15;
    margin-bottom: 0.35rem;
}

.jz-bnh-metrics__lab {
    display: block;
    font-size: 0.74rem;
    line-height: 1.4;
    color: var(--bn-muted);
    max-width: 11rem;
    margin: 0 auto;
}

/* —— 下载 —— */
.jz-bnh-clients {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: var(--bn-light);
    color: #0f1419;
    border-top: var(--bn-border-light-soft);
}

.jz-bnh-clients .container {
    min-width: 0;
}

.jz-bnh-clients__row {
    margin-top: 0.25rem;
    min-width: 0;
}

.jz-bnh-panel {
    height: 100%;
    padding: 1.5rem 1.5rem 1.35rem;
    border-radius: 18px;
    background: #fff;
    border: var(--bn-border-light-soft);
    border-top: var(--bn-strip);
    box-shadow: 0 10px 32px rgba(15, 20, 25, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.jz-bnh-panel--alt {
    border-top: var(--bn-strip-alt);
}

.jz-bnh-panel__tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #fff;
    background: #0f1419;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    margin-bottom: 0.55rem;
}

.jz-bnh-panel h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.jz-bnh-panel__lead {
    font-size: 0.88rem;
    color: var(--bn-light-muted);
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.jz-bnh-panel__list {
    margin: 0 0 1.15rem;
    padding-left: 1.1rem;
    font-size: 0.84rem;
    color: var(--bn-light-muted);
    line-height: 1.5;
    flex-grow: 1;
}

.jz-bnh-panel__btn {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 991px) {
    .jz-bnh-panel__btn {
        width: 100%;
        align-self: stretch;
    }
}

.jz-bnh-clients__ios {
    text-align: center;
    font-size: 0.8rem;
    color: var(--bn-light-muted);
    margin: 1.5rem 0 0;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

/* —— 安全 —— */
.jz-bnh-guard {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: #fff;
    color: #0f1419;
    border-top: var(--bn-border-light-soft);
}

.jz-bnh-guard .container {
    min-width: 0;
}

.jz-bnh-guard__card {
    height: 100%;
    padding: 1.2rem 1.25rem;
    border-radius: 14px;
    border: var(--bn-border-light);
    background: #fafbfc;
    box-sizing: border-box;
    min-width: 0;
}

.jz-bnh-guard__card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.jz-bnh-guard__card ul {
    margin: 0;
    padding-left: 1rem;
    font-size: 0.82rem;
    color: var(--bn-light-muted);
    line-height: 1.5;
}

.jz-bnh-badges {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.jz-bnh-badges li {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: var(--bn-border-light);
    color: var(--bn-light-muted);
    background: #fff;
    box-sizing: border-box;
}

/* —— FAQ —— */
.jz-bnh-faq {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: var(--bn-bg1);
    border-top: var(--bn-border);
}

.jz-bnh-faq .container {
    min-width: 0;
}

.jz-bnh-faq__list {
    max-width: 44rem;
    margin: 0 auto;
    min-width: 0;
}

.jz-bnh-faq__item {
    border-bottom: var(--bn-border);
    padding: 0.1rem 0;
}

.jz-bnh-faq__item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
    padding: 0.85rem 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 0.5rem 0.75rem;
    text-align: left;
    overflow-wrap: break-word;
}

.jz-bnh-faq__item summary::-webkit-details-marker {
    display: none;
}

.jz-bnh-faq__item summary::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--bn-accent);
    line-height: 1;
    margin-top: 0.1em;
}

.jz-bnh-faq__item[open] summary::after {
    content: "−";
}

.jz-bnh-faq__item p {
    margin: 0 0 1rem;
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--bn-muted);
    padding-right: 0;
}

/* —— 文章 —— */
.jz-bnh-feed {
    padding: clamp(2.25rem, 5vw, 3.5rem) 0 3rem;
    background: var(--bn-light);
    border-top: var(--bn-border-light-soft);
}

.jz-bnh-feed .container {
    min-width: 0;
}

.jz-bnh-feed__head {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .jz-bnh-feed__head {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1rem;
    }

    .jz-bnh-feed__head > div:first-child {
        flex: 1;
        min-width: 0;
    }
}

.jz-bnh-feed__title {
    font-weight: 800;
    font-size: 1.35rem;
    margin: 0;
    color: #0f1419;
}

.jz-bnh-feed__sub {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--bn-light-muted);
    max-width: 36rem;
    margin-top: 0.35rem;
}

.jz-bnh-card .card-img-top {
    border-radius: 14px 14px 0 0;
}

.jz-bnh-card {
    border-radius: 14px !important;
    border: var(--bn-border-light) !important;
    box-shadow: 0 6px 20px rgba(15, 20, 25, 0.04) !important;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.jz-bnh-card:hover {
    border-color: rgba(255, 176, 32, 0.38) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 20, 25, 0.08) !important;
}

.jz-bnh-card__meta {
    color: var(--bn-light-muted) !important;
}

.jz-bnh-card__link {
    color: #0f1419 !important;
}

.jz-bnh-card:hover .jz-bnh-card__link {
    color: var(--bn-accent-d) !important;
}

@media (max-width: 767px) {
    .jz-bnh-hero__inner {
        gap: 1.65rem;
        padding-top: clamp(2.2rem, 6vw, 3.5rem);
        padding-bottom: clamp(2.1rem, 5vw, 3.25rem);
    }

    .jz-bnh-hero__deck {
        font-size: 0.95rem;
    }

    .jz-bnh-hero__note {
        font-size: 0.8rem;
    }

    .jz-bnh-bento {
        gap: 0.75rem;
    }

    .jz-bnh-tile {
        padding: 1.1rem 1.05rem;
    }

    .jz-bnh-panel {
        padding: 1.25rem 1.1rem 1.1rem;
    }

    .jz-bnh-guard__card {
        padding: 1rem 0.95rem;
    }

    .jz-bnh-feed__sub {
        max-width: none;
    }

    .jz-bnh-sec {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    .jz-bnh-metrics__intro {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }

    .jz-bnh-metrics__cell {
        padding: 1.05rem 0.45rem;
    }

    .jz-bnh-faq__item p {
        padding-right: 0;
    }

    .jz-bnh-page .z565dfpage-shell {
        padding-top: 1.35rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .jz-bnh-hero__tags li {
        font-size: 0.65rem;
        padding: 0.28rem 0.5rem;
    }

    .jz-bnh-strip__item {
        padding: 0.95rem 0.85rem;
        gap: 0.75rem;
    }

    .jz-bnh-metrics__num {
        font-size: clamp(1.2rem, 5.2vw, 1.65rem);
    }

    .jz-bnh-metrics__lab {
        max-width: none;
        font-size: 0.68rem;
        padding: 0 0.15rem;
    }

    .jz-bnh-badges {
        gap: 0.4rem;
        row-gap: 0.45rem;
    }

    .jz-bnh-card:hover {
        transform: none;
    }

    .jz-bnh-feed__head .jz-bnh-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

@media (hover: none) {
    .jz-bnh-tile:hover {
        transform: none;
    }

    .jz-bnh-card:hover {
        transform: none;
    }
}
