:root {
    /* 全站主题：陶土橙 + 岩墨 + 纸色（与此前靛紫／青绿体系区分） */
    --primary-color: #c2410c;
    --primary-dark: #9a3412;
    --primary-soft: rgba(194, 65, 12, 0.12);
    --secondary-color: #1c1917;
    --accent-color: #0f766e;
    --surface: #faf7f2;
    --surface-elevated: #ffffff;
    --text-color: #292524;
    --text-muted: #78716c;
    --border-subtle: rgba(28, 25, 23, 0.1);
    --border-inner: rgba(28, 25, 23, 0.06);
    --gray-100: #f5f5f4;
    --gray-200: #e7e5e4;
    --transition-speed: 0.3s;
    --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
    /* 统一卡片外框：线宽 1px、圆角一致（避免板块有的圆有的方） */
    --radius-card: 0.75rem;
    --radius-inner: 0.625rem;
    --shadow-soft: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 14px rgba(15, 23, 42, 0.04);
    --shadow-hover: 0 4px 12px rgba(15, 23, 42, 0.08), 0 8px 28px rgba(15, 23, 42, 0.06);
    /* 首页 hp-* 共用描边／圆角 */
    --hp-frame: var(--radius-card);
    --hp-soft: var(--radius-inner);
    --hp-line: 1px solid var(--border-subtle);
    --hp-line-inner: 1px solid var(--border-inner);
}

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);
}

/* Bootstrap 栅格 + 卡片 hover 位移时防止撑出视口 */
.container .row > [class*="col-"] {
    min-width: 0;
}

/* —— 导航（新版） —— */
.zb5e13navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: none;
    padding: 0.65rem 0;
}

.zb5e13navbar-brand img {
    height: 44px;
}

.zb5e13nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 0.85rem !important;
    border-radius: 0.5rem;
    transition: color var(--transition-speed), background var(--transition-speed);
    white-space: normal;
    word-break: break-word;
}

.zb5e13text-accent {
    color: var(--primary-color) !important;
}

.min-w-0 {
    min-width: 0;
}

.zb5e13nav-link:hover {
    color: var(--primary-color) !important;
    background: var(--primary-soft);
}

/* —— 英雄区 —— */
.zb5e13hero-section {
    background: linear-gradient(165deg, #0c0a09 0%, var(--secondary-color) 55%, #431407 100%);
    color: #fafaf9;
    padding: clamp(4rem, 10vw, 6.5rem) 0;
    position: relative;
    overflow: hidden;
}

.zb5e13hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 12% 0%, rgba(194, 65, 12, 0.35), transparent 50%),
        radial-gradient(ellipse 50% 40% at 95% 90%, rgba(15, 118, 110, 0.2), transparent 45%);
    pointer-events: none;
}

.zb5e13hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.zb5e13hero-content {
    position: relative;
    z-index: 1;
}

.zb5e13hero-kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.zb5e13hero-title {
    font-size: clamp(1.85rem, 4.5vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.zb5e13hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1.75rem;
    opacity: 0.92;
    max-width: 36rem;
}

.zb5e13hero-image-container {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-top: 1rem;
}

.zb5e13hero-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    object-fit: contain;
}

.zb5e13hero-image-shadow {
    display: none;
}

.zb5e13hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.zb5e13hero-buttons .btn {
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.zb5e13hero-buttons .btn-light {
    background: #fff;
    color: var(--primary-color);
    border: none;
}

.zb5e13hero-buttons .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.zb5e13hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: #fff;
}

.zb5e13hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(194, 65, 12, 0.4);
}

@media (max-width: 768px) {
    .zb5e13hero-buttons {
        flex-direction: column;
    }
    .zb5e13hero-buttons .btn {
        width: 100%;
    }
}

/* —— 通栏导读 —— */
.zb5e13prose-section {
    background: var(--surface-elevated);
    border-bottom: 1px solid var(--border-subtle);
    padding: clamp(2rem, 5vw, 3rem) 0;
}

.zb5e13prose-section .lead {
    color: var(--text-muted);
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1rem, 2.2vw, 1.125rem);
}

/* —— 首页：信任条、双栏洞察、统计外框、英雄视觉 —— */
.zb5e13hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.zb5e13hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(250, 245, 255, 0.88);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
    max-width: 100%;
}

.zb5e13hero-visual {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-card);
    padding: clamp(1rem, 3vw, 1.75rem);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
    overflow: clip;
}

.zb5e13hero-visual .zb5e13hero-image-container {
    margin-top: 0;
    padding: 0;
    min-height: 0;
}

.zb5e13hero-visual .zb5e13hero-image {
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0 auto;
    display: block;
}

.zb5e13insight-dual {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-elevated) 100%);
    border-bottom: 1px solid var(--border-subtle);
}

.zb5e13insight-card {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    height: 100%;
    box-shadow: var(--shadow-soft);
    box-sizing: border-box;
    overflow: clip;
}

.zb5e13insight-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.zb5e13insight-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.zb5e13stat-surface {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-inner);
    padding: 1rem 0.5rem;
    height: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.12);
}

.zb5e13article-band {
    background: var(--gray-100);
    border-top: 1px solid var(--border-subtle);
}

.zb5e13section-head--wide {
    max-width: 48rem;
}

.zb5e13features-bento .card.zb5e13feature-card {
    text-align: left;
}

.zb5e13features-bento .zb5e13feature-icon {
    margin-left: 0;
    margin-right: 0;
}

.zb5e13faq-section {
    background: var(--surface-elevated);
    border-top: 1px solid var(--border-subtle);
}

@media (max-width: 767px) {
    .zb5e13hero-trust span {
        font-size: 0.72rem;
        padding: 0.3rem 0.55rem;
    }

    .zb5e13hero-visual {
        margin-top: 0.5rem;
    }
}

/* —— 分区标题 —— */
.zb5e13section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.zb5e13section-head h2 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.zb5e13section-head p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
}

/* —— 特点卡片（与 Bootstrap .card 组合，保证边框圆角不被覆盖） —— */
.card.zb5e13feature-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: clip;
    box-sizing: border-box;
}

.card.zb5e13feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.zb5e13feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    background: var(--primary-soft);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-inner);
    margin: 0 auto 1.25rem;
}

/* —— 统计数据 —— */
.zb5e13stats-section {
    background: linear-gradient(120deg, #292524 0%, var(--primary-dark) 45%, #1c1917 100%);
    color: #fafaf9;
    padding: clamp(3rem, 6vw, 4rem) 0;
}

.zb5e13stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--accent-color);
}

.zb5e13stat-label {
    font-size: clamp(0.8125rem, 2vw, 1rem);
    opacity: 0.9;
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.35;
}

/* —— 下载区 —— */
.zb5e13download-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--surface) 100%);
}

.zb5e13download-header h2 {
    color: var(--secondary-color);
    font-weight: 700;
}

.zb5e13download-subtitle {
    color: var(--text-muted);
}

.zb5e13download-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: clip;
}

.zb5e13download-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.zb5e13platform-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.zb5e13ios-icon {
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    color: #fff;
}

.zb5e13android-icon {
    background: linear-gradient(135deg, #10b981, #047857);
    color: #fff;
}

.zb5e13download-info {
    background: rgba(194, 65, 12, 0.06);
    padding: 1.25rem;
    border-radius: var(--radius-inner);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-sizing: border-box;
}

.zb5e13info-item i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.15em;
}

.zb5e13info-item span {
    min-width: 0;
}

.zb5e13download-action .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
}

/* —— 新手指引 / 双栏 —— */
.zb5e13guide-section {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: var(--surface-elevated);
}

.zb5e13guide-panel {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    height: 100%;
    background: var(--gray-100);
    box-sizing: border-box;
    overflow: clip;
}

.zb5e13guide-panel h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.zb5e13guide-panel ol,
.zb5e13guide-panel ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.zb5e13guide-panel li {
    margin-bottom: 0.5rem;
}

/* —— 安全区 —— */
.zb5e13security-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--surface);
}

.zb5e13security-header h2 {
    color: var(--secondary-color);
    font-weight: 700;
}

.zb5e13security-subtitle {
    color: var(--text-muted);
}

.zb5e13security-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    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: clip;
}

.zb5e13security-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.zb5e13security-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.zb5e13security-card h3 {
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.zb5e13security-features {
    background: rgba(194, 65, 12, 0.06);
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-inner);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-sizing: border-box;
}

.zb5e13feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.zb5e13feature-item:last-child {
    margin-bottom: 0;
}

.zb5e13feature-item span {
    min-width: 0;
}

.zb5e13feature-item i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.15em;
}

.zb5e13security-certificates {
    margin-top: 3rem;
}

.zb5e13certificate-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    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: clip;
}

.zb5e13certificate-card:hover {
    transform: translateY(-3px);
}

.zb5e13certificate-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.zb5e13certificate-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

.zb5e13certificate-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* —— FAQ 卡片 —— */
.card.zb5e13faq-card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.25s ease;
    overflow: clip;
    box-sizing: border-box;
}

.card.zb5e13faq-card:hover {
    box-shadow: var(--shadow-hover);
}

.card.zb5e13faq-card .card-title {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
}

/* —— 文章区 —— */
#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);
}

/* —— 页脚 —— */
.zb5e13footer {
    background: var(--secondary-color);
    padding: 3rem 0 1.5rem;
    color: #94a3b8;
}

.zb5e13footer .zb5e13footer-title {
    color: #e2e8f0;
}

.zb5e13footer-link {
    color: #94a3b8;
}

.zb5e13footer-link:hover {
    color: #fdba74;
}

.zb5e13footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.zb5e13footer-bottom a {
    color: #cbd5e1;
}

.zb5e13footer-bottom a:hover {
    color: #fdba74;
}

/* —— 子页内容区 —— */
.zb5e13page-shell {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--surface);
    min-height: 50vh;
}

.zb5e13page-shell .card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: clip;
    box-sizing: border-box;
}

.zb5e13page-shell .card.shadow-sm {
    box-shadow: var(--shadow-soft) !important;
}

.zb5e13page-shell aside a {
    color: var(--primary-dark);
    text-decoration: none;
}

.zb5e13page-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(194, 65, 12, 0.22);
}

/* —— 内页侧栏标题 —— */
.zb5e13sidebar-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);
    }
}

.zb5e13hero-content,
.card.zb5e13feature-card,
.zb5e13download-card,
.card.zb5e13faq-card {
    animation: fadeIn 0.55s var(--transition-easing) forwards;
}

img {
    max-width: 100%;
    height: auto;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.75rem;
    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;
    }
}

/* 列表页分页 */
.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;
}

/* 缩略图 */
.zb5e13thumb-home {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

@media (max-width: 767px) {
    .zb5e13navbar {
        padding: 0.45rem 0;
    }

    .zb5e13navbar .navbar-collapse {
        max-height: 72vh;
        overflow-y: auto;
    }

    .zb5e13navbar .navbar-nav .nav-link {
        padding: 0.55rem 0.65rem !important;
        font-size: 0.9375rem;
        min-height: 2.75rem;
        display: flex;
        align-items: center;
    }

    .zb5e13prose-section .lead {
        text-align: left;
        font-size: 0.9375rem;
        line-height: 1.7;
        max-width: none;
    }

    .zb5e13section-head {
        margin-bottom: 1.75rem;
    }

    .zb5e13section-head p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .zb5e13guide-panel {
        padding: 1.15rem;
    }

    .zb5e13guide-panel h3 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.35rem;
        font-size: 1.02rem;
        line-height: 1.35;
    }

    .zb5e13hero-section {
        padding-top: clamp(2rem, 7vw, 3.25rem);
        padding-bottom: clamp(2.25rem, 8vw, 3.75rem);
    }

    .zb5e13hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.15rem;
    }

    .zb5e13hero-image-container {
        min-height: 140px;
        margin-top: 0.25rem;
    }

    .zb5e13hero-buttons .btn-lg {
        --bs-btn-padding-y: 0.52rem;
        --bs-btn-padding-x: 1rem;
        font-size: 0.9375rem;
    }

    .zb5e13stats-section {
        padding: clamp(2rem, 5vw, 2.75rem) 0;
    }

    .zb5e13stat-label {
        max-width: none;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .zb5e13stat-number {
        font-size: clamp(1.45rem, 5.5vw, 1.95rem);
    }

    .zb5e13security-section {
        padding: clamp(2.25rem, 5vw, 3.5rem) 0;
    }

    .zb5e13download-section {
        padding: clamp(2.25rem, 5vw, 3.5rem) 0;
    }

    .zb5e13guide-section {
        padding: clamp(2.25rem, 5vw, 3.25rem) 0;
    }

    .card.zb5e13faq-card .card-body {
        padding: 0.85rem 1rem;
    }

    .zb5e13footer {
        padding: 2rem 0 1.15rem;
    }

    .zb5e13footer-bottom p.small.mb-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        column-gap: 0.35rem;
        row-gap: 0.4rem;
    }

    .zb5e13footer-bottom p.small.mb-2 > span {
        opacity: 0.45;
        flex: 0 0 auto;
    }

    .zb5e13page-shell {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }

    .zb5e13page-shell h1.h3 {
        font-size: clamp(1.05rem, 4.5vw, 1.35rem);
        line-height: 1.35;
        word-break: break-word;
    }

    .zb5e13page-shell header .small {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
        row-gap: 0.25rem;
    }

    .zb5e13page-shell aside .card-body {
        min-width: 0;
    }

    .zb5e13page-shell aside a {
        word-break: break-word;
    }

    .zb5e13security-icon {
        width: 60px;
        height: 60px;
        font-size: 1.45rem;
    }

    #article .card-body {
        padding: 0.75rem;
    }

    #article .zb5e13thumb-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;
    }

    .zb5e13thumb-list,
    .zb5e13thumb-related {
        height: 72px !important;
    }

    .zb5e13thumb-side {
        height: 50px !important;
    }

    .zb5e13thumb-cover {
        max-width: 100% !important;
        width: 100%;
        height: 170px !important;
        margin: 0 auto;
    }

    .zb5e13download-card .card-body {
        padding: 1rem !important;
    }

    .zb5e13download-card .d-flex.align-items-center {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1rem !important;
    }

    .zb5e13download-card .d-flex.align-items-center .ms-3 {
        margin-left: 0 !important;
    }

    .zb5e13platform-icon {
        width: 52px;
        height: 52px;
        font-size: 1.15rem;
    }

    .zb5e13download-info {
        padding: 1rem;
    }

    .zb5e13download-action .btn {
        width: 100%;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}

@media (max-width: 575px) {
    #article .zb5e13thumb-home {
        height: 88px !important;
    }

    .zb5e13thumb-list,
    .zb5e13thumb-related {
        height: 64px !important;
    }

    .zb5e13thumb-side {
        height: 46px !important;
    }

    .zb5e13thumb-cover {
        height: 150px !important;
    }

    .pagebar .pagelist {
        gap: 0.35rem;
    }

    .zb5e13hero-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.04em;
        line-height: 1.35;
        max-width: 100%;
    }

    .zb5e13footer-bottom {
        font-size: 0.8125rem;
    }
}

.zb5e13info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.zb5e13info-item:last-child {
    margin-bottom: 0;
}

.zb5e13stat-item {
    text-align: center;
    padding: 0.5rem 0.35rem;
    box-sizing: border-box;
}

.zb5e13friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.zb5e13friend-links li {
    display: inline;
}

.zb5e13friend-links a {
    color: #94a3b8;
    text-decoration: none;
}

.zb5e13friend-links a:hover {
    color: #fdba74;
}

.zb5e13article-content {
    line-height: 1.75;
    word-break: break-word;
}

.zb5e13article-content img {
    max-width: 100%;
    height: auto;
}

.zb5e13diyfield {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.zb5e13meta-tags {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.zb5e13meta-tags .list-inline-item {
    margin-right: 0 !important;
    display: inline-block;
}

.zb5e13tagitem a {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.85rem;
}

.zb5e13tagitem a:hover {
    background: rgba(194, 65, 12, 0.2);
}

.zb5e13pages .pagelist a {
    color: var(--primary-dark);
}

/* ========= 首页独家：hp-* 编辑型版式（仅 body.css365jz-home）========= */
body.css365jz-home {
    background: var(--surface);
}

/* —— Hero：上深下浅的「杂志头版」+ 波浪过渡 —— */
.hp-hero {
    position: relative;
    background: linear-gradient(165deg, #0c0a09 0%, #1c1917 52%, #292524 100%);
    color: #fafaf9;
    padding: clamp(2.5rem, 6vw, 4rem) 0 0;
    overflow: clip;
}

.hp-hero__grid {
    display: grid;
    gap: 2rem;
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

@media (min-width: 992px) {
    .hp-hero__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.55fr);
        align-items: end;
    }
}

.hp-hero__eyebrow {
    font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fdba74;
    margin-bottom: 0.75rem;
}

.hp-hero__title {
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    max-width: 16ch;
}

.hp-hero__lede {
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    opacity: 0.92;
    max-width: 38rem;
    margin-bottom: 1rem;
}

.hp-hero__note {
    font-size: 0.9rem;
    line-height: 1.65;
    opacity: 0.88;
    max-width: 40rem;
    margin-bottom: 0;
}

.hp-hero__meta {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.hp-hero__meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(250, 250, 249, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    box-sizing: border-box;
}

.hp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.hp-btn-outline {
    border-radius: var(--hp-soft) !important;
    font-weight: 700;
}

.hp-btn-solid {
    border-radius: var(--hp-soft) !important;
    font-weight: 700;
}

@media (max-width: 576px) {
    .hp-hero__actions .btn {
        flex: 1 1 100%;
        justify-content: center;
    }
}

.hp-hero__panel {
    border: var(--hp-line);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.1rem 1.25rem;
    border-radius: var(--hp-soft);
    box-sizing: border-box;
}

.hp-hero__panel-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fdba74;
    margin-bottom: 0.5rem;
}

.hp-hero__panel-text {
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
    opacity: 0.9;
}

.hp-hero__figure {
    margin: 0;
    padding: 0 0 2.5rem;
    overflow-x: clip;
}

.hp-hero__img {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: min(52vh, 420px);
    object-fit: contain;
    object-position: center bottom;
    border-radius: var(--hp-soft);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.hp-hero__cap {
    font-size: 0.78rem;
    color: rgba(250, 250, 249, 0.65);
    margin: 0.6rem 0 0;
    text-align: center;
}

.hp-hero__wave {
    line-height: 0;
    margin-top: -1px;
}

.hp-hero__wave svg {
    display: block;
    width: 100%;
    height: clamp(28px, 5vw, 48px);
}

/* —— 导读 + 侧栏 —— */
.hp-slab {
    padding: clamp(2.5rem, 5vw, 3.75rem) 0;
    background: var(--surface);
}

.hp-h2 {
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hp-prose {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hp-prose--drop {
    overflow: hidden;
}

.hp-prose--drop::after {
    content: "";
    display: table;
    clear: both;
}

.hp-prose:last-child {
    margin-bottom: 0;
}

.hp-prose--drop::first-letter {
    float: left;
    font-size: 3.25rem;
    line-height: 0.85;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 0.45rem;
    margin-top: 0.1rem;
}

.hp-aside {
    border: var(--hp-line);
    background: var(--surface-elevated);
    padding: 1.25rem 1.35rem;
    border-radius: var(--hp-frame);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 5.5rem;
    box-sizing: border-box;
    overflow: clip;
}

.hp-aside__title {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hp-aside__list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.hp-aside__list li {
    margin-bottom: 0.45rem;
}

/* —— 横向主题轨 —— */
.hp-pillboard {
    border-top: var(--hp-line);
    border-bottom: var(--hp-line);
    background: var(--surface-elevated);
    padding: 1rem 0;
}

.hp-pillboard__track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.125rem 0 0.35rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

.hp-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 10.5rem;
    padding: 0.65rem 1rem;
    border-radius: var(--hp-soft);
    border: var(--hp-line);
    background: var(--gray-100);
    box-sizing: border-box;
}

.hp-pill__n {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.hp-pill__t {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* —— 能力版图：交替色带 —— */
.hp-features {
    padding: clamp(2.75rem, 6vw, 4.25rem) 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--gray-100) 100%);
}

.hp-sector-head {
    max-width: 44rem;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.hp-sector-head--light .hp-sector-head__h,
.hp-sector-head--light .hp-sector-head__p {
    color: #fafaf9;
}

.hp-sector-head--light .hp-sector-head__p {
    opacity: 0.88;
}

.hp-sector-head__h {
    font-weight: 800;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    letter-spacing: -0.02em;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.hp-sector-head__p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.hp-band {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0;
    border: var(--hp-line);
    border-radius: var(--hp-frame);
    overflow: clip;
    margin-bottom: 0.75rem;
    background: var(--surface-elevated);
    box-sizing: border-box;
}

.hp-band--alt {
    background: #fffefb;
}

.hp-band__idx {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    padding: 1rem 0.55rem;
    background: var(--secondary-color);
    color: #ffedd5;
    text-align: center;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hp-band--alt .hp-band__idx {
    background: var(--primary-dark);
    border-right-color: rgba(255, 255, 255, 0.1);
}

.hp-band__body {
    padding: 1.15rem 1.25rem 1.25rem;
    box-sizing: border-box;
    min-width: 0;
}

.hp-band__h {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.45rem;
}

.hp-band__p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
}

@media (max-width: 575px) {
    .hp-band__idx {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: 0.12em;
        padding: 0.5rem 0.85rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hp-band--alt .hp-band__idx {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .hp-band {
        grid-template-columns: 1fr;
    }
}

/* —— 时间线指引 —— */
.hp-guide {
    padding: clamp(2.75rem, 6vw, 4rem) 0;
    background: linear-gradient(160deg, #1c1917 0%, #292524 55%, #431407 100%);
    color: #fafaf9;
}

.hp-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hp-timeline::before {
    content: "";
    position: absolute;
    left: 1.15rem;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.hp-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem 0 1.25rem;
    box-sizing: border-box;
}

.hp-timeline__badge {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    background: #fed7aa;
    color: var(--primary-dark);
    z-index: 1;
    margin-top: 0.15rem;
    box-sizing: border-box;
}

.hp-timeline__content {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--hp-frame);
    padding: 1rem 1.15rem;
    box-sizing: border-box;
    min-width: 0;
}

.hp-timeline__h {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #fff;
}

.hp-timeline__p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    opacity: 0.88;
}

@media (max-width: 575px) {
    .hp-timeline::before {
        left: 0.9rem;
    }

    .hp-timeline__item {
        grid-template-columns: 2.25rem minmax(0, 1fr);
        gap: 0.75rem;
    }
}

/* —— 数据丝带 —— */
.hp-stats {
    padding: 0 0 clamp(1rem, 3vw, 1.5rem);
    background: var(--surface-elevated);
}

.hp-stats__ribbon {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: var(--hp-line);
    border-radius: var(--hp-frame);
    overflow: clip;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .hp-stats__ribbon {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.hp-stats__cell {
    padding: 1.25rem 0.85rem;
    text-align: center;
    border-right: var(--hp-line-inner);
    border-bottom: var(--hp-line-inner);
    box-sizing: border-box;
    background: linear-gradient(180deg, #fffefb 0%, var(--surface-elevated) 100%);
    min-width: 0;
}

@media (max-width: 991px) {
    .hp-stats__cell:nth-child(2n) {
        border-right: none;
    }
}

@media (min-width: 992px) {
    .hp-stats__cell {
        border-bottom: none;
    }

    .hp-stats__cell:last-child {
        border-right: none;
    }

    .hp-stats__cell:not(:last-child) {
        border-right: var(--hp-line-inner);
    }
}

.hp-stats__num {
    display: block;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hp-stats__lbl {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-muted);
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
}

/* —— 下载：标签 + 侧色条 —— */
.hp-download {
    padding: clamp(2.75rem, 6vw, 4rem) 0;
    background: var(--surface);
}

.hp-dl-tabs {
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hp-dl-tabs .nav-link {
    border-radius: var(--hp-soft) !important;
    font-weight: 700;
    color: var(--text-muted);
    border: var(--hp-line);
    padding: 0.45rem 1.1rem;
}

.hp-dl-tabs .nav-link.active {
    background: var(--secondary-color) !important;
    color: #fff !important;
    border-color: var(--secondary-color) !important;
}

.hp-dl-strip {
    display: flex;
    flex-direction: column;
    border: var(--hp-line);
    border-radius: var(--hp-frame);
    overflow: clip;
    background: var(--surface-elevated);
    box-sizing: border-box;
}

.hp-dl-strip__rail {
    flex: 0 0 auto;
    min-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    background: linear-gradient(180deg, #0369a1, #0c4a6e);
    padding: 1rem 1.35rem;
    box-sizing: border-box;
    border-bottom: var(--hp-line-inner);
}

@media (min-width: 576px) {
    .hp-dl-strip {
        flex-direction: row;
    }

    .hp-dl-strip__rail {
        border-bottom: none;
        border-right: var(--hp-line-inner);
    }
}

.hp-dl-strip__rail--and {
    background: linear-gradient(180deg, #047857, #064e3b);
}

.hp-dl-strip__main {
    padding: 1.25rem 1.35rem;
    flex: 1 1 auto;
    min-width: 0;
    box-sizing: border-box;
}

.hp-dl-strip__h {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.hp-dl-strip__p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0.65rem;
}

.hp-dl-strip__ul {
    margin: 0 0 0.5rem;
    padding-left: 1.1rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.hp-download__foot {
    margin-top: 1.25rem;
    text-align: center;
}

/* —— 风险治理 —— */
.hp-security {
    padding: clamp(2.75rem, 6vw, 4rem) 0;
    background: var(--surface-elevated);
    border-top: var(--hp-line);
}

.hp-risk {
    max-width: 52rem;
    margin: 0 auto;
    border: var(--hp-line);
    border-radius: var(--hp-frame);
    overflow: clip;
    box-sizing: border-box;
    background: var(--gray-100);
}

.hp-risk__row {
    padding: 1rem 1.15rem;
    border-bottom: var(--hp-line-inner);
    box-sizing: border-box;
}

.hp-risk__row:last-child {
    border-bottom: none;
}

.hp-risk__h {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.35rem;
}

.hp-risk__p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.hp-cert {
    border: var(--hp-line);
    border-radius: var(--hp-frame);
    padding: 1rem 1.1rem;
    height: 100%;
    background: var(--surface-elevated);
    box-sizing: border-box;
    overflow: clip;
}

.hp-cert__tag {
    display: inline-block;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
}

.hp-cert__p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* —— FAQ 手风琴 —— */
.hp-faqwrap {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: var(--surface);
    border-top: var(--hp-line);
}

.hp-accordion__item {
    border: var(--hp-line) !important;
    border-radius: var(--hp-frame) !important;
    margin-bottom: 0.65rem;
    overflow: clip;
    background: var(--surface-elevated);
}

.hp-accordion__item:last-child {
    margin-bottom: 0;
}

.hp-accordion__btn {
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: var(--secondary-color) !important;
    background: var(--surface-elevated) !important;
    box-shadow: none !important;
}

.hp-accordion__btn:not(.collapsed) {
    background: var(--gray-100) !important;
    color: var(--primary-dark) !important;
}

.hp-accordion__body {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* —— 文章栅格 —— */
.hp-articles {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: var(--gray-100);
    border-top: var(--hp-line);
}

.hp-articles__title {
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

.hp-article-card {
    border-radius: var(--hp-frame) !important;
    border: var(--hp-line) !important;
    box-shadow: none !important;
    overflow: clip;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hp-article-card:hover {
    border-color: rgba(194, 65, 12, 0.35) !important;
    box-shadow: var(--shadow-soft) !important;
}

.hp-article-card__img {
    border-radius: 0 !important;
}

@media (max-width: 767px) {
    .hp-aside {
        position: static;
    }

    .hp-prose--drop::first-letter {
        font-size: 2.5rem;
    }
}

/* —— 首页（body.css365jz-home）移动端：排版、换行与触控 —— */
@media (max-width: 767px) {
    body.css365jz-home .hp-hero {
        padding-top: clamp(1.65rem, 5vw, 2.75rem);
    }

    body.css365jz-home .hp-hero__grid {
        gap: 1.25rem;
        padding-bottom: 1.15rem;
    }

    body.css365jz-home .hp-hero__title {
        max-width: none;
        font-size: clamp(1.5rem, 6.2vw, 2.2rem);
        line-height: 1.12;
        word-break: break-word;
    }

    body.css365jz-home .hp-hero__eyebrow {
        letter-spacing: 0.08em;
        line-height: 1.45;
        word-break: break-word;
    }

    body.css365jz-home .hp-hero__lede,
    body.css365jz-home .hp-hero__note {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    body.css365jz-home .hp-hero__meta {
        gap: 0.45rem 0.5rem;
    }

    body.css365jz-home .hp-hero__meta li {
        font-size: 0.74rem;
        padding: 0.32rem 0.55rem;
        max-width: 100%;
    }

    body.css365jz-home .hp-hero__figure {
        padding: 0 0 clamp(1.1rem, 3.5vw, 1.65rem);
    }

    body.css365jz-home .hp-hero__img {
        max-height: min(40vh, 300px);
    }

    body.css365jz-home .hp-hero__cap {
        font-size: 0.74rem;
        line-height: 1.5;
        padding: 0 0.25rem;
    }

    body.css365jz-home .hp-h2 {
        font-size: clamp(1.2rem, 4.8vw, 1.55rem);
        line-height: 1.25;
        word-break: break-word;
    }

    body.css365jz-home .hp-prose {
        font-size: 0.9375rem;
        line-height: 1.75;
        word-break: break-word;
    }

    body.css365jz-home .hp-aside__list li {
        word-break: break-word;
    }

    body.css365jz-home .hp-sector-head {
        margin-bottom: 1.65rem;
    }

    body.css365jz-home .hp-sector-head__h {
        font-size: clamp(1.2rem, 4.2vw, 1.5rem);
        line-height: 1.25;
        word-break: break-word;
    }

    body.css365jz-home .hp-sector-head__p {
        font-size: 0.9rem;
        line-height: 1.65;
        word-break: break-word;
    }

    body.css365jz-home .hp-band__body {
        padding: 1rem 1rem 1.1rem;
    }

    body.css365jz-home .hp-band__h {
        font-size: 1rem;
        line-height: 1.3;
        word-break: break-word;
    }

    body.css365jz-home .hp-band__p {
        font-size: 0.88rem;
        line-height: 1.65;
        word-break: break-word;
    }

    body.css365jz-home .hp-timeline__content {
        word-break: break-word;
    }

    body.css365jz-home .hp-timeline__p {
        word-break: break-word;
    }

    body.css365jz-home .hp-stats__lbl {
        max-width: none;
        font-size: 0.74rem;
        line-height: 1.4;
        padding: 0 0.2rem;
    }

    body.css365jz-home .hp-dl-strip__main {
        padding: 1rem 1rem;
    }

    body.css365jz-home .hp-dl-strip__p,
    body.css365jz-home .hp-dl-strip__ul {
        word-break: break-word;
    }

    body.css365jz-home .hp-risk__h {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0.35rem;
        line-height: 1.35;
        word-break: break-word;
    }

    body.css365jz-home .hp-risk__p {
        word-break: break-word;
    }

    body.css365jz-home .hp-accordion__btn {
        white-space: normal !important;
        text-align: left !important;
        line-height: 1.45 !important;
        padding: 0.85rem 0.95rem !important;
        font-size: 0.9rem !important;
    }

    body.css365jz-home #article .hp-article-card .card-body {
        padding: 0.75rem 0.85rem;
    }

    body.css365jz-home .hp-slab,
    body.css365jz-home .hp-features,
    body.css365jz-home .hp-guide,
    body.css365jz-home .hp-download,
    body.css365jz-home .hp-security,
    body.css365jz-home .hp-faqwrap,
    body.css365jz-home .hp-articles {
        padding-left: env(safe-area-inset-left, 0);
        padding-right: env(safe-area-inset-right, 0);
    }
}

@media (max-width: 575px) {
    body.css365jz-home .hp-sector-head,
    body.css365jz-home .hp-sector-head.hp-sector-head--light {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
        padding: 0 0.125rem;
    }

    body.css365jz-home .hp-pillboard .container > p.small {
        text-align: left;
        font-size: 0.875rem;
        line-height: 1.65;
        word-break: break-word;
        padding-left: 0.125rem;
        padding-right: 0.125rem;
    }

    body.css365jz-home .hp-pill {
        min-width: min(10.5rem, 78vw);
    }

    body.css365jz-home .hp-dl-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    body.css365jz-home .hp-dl-tabs .nav-item {
        width: 100%;
    }

    body.css365jz-home .hp-dl-tabs .nav-link {
        width: 100%;
        text-align: center;
    }

    body.css365jz-home .hp-dl-strip__rail {
        min-height: 4.25rem;
        padding: 0.85rem 1rem;
    }

    body.css365jz-home .hp-cert__p {
        word-break: break-word;
    }
}

