:root {
    /* 全站主色：青绿 + 琥珀强调（与上一版紫罗兰体系区分） */
    --primary-color: #0d9488;
    --primary-dark: #0f766e;
    --primary-soft: rgba(13, 148, 136, 0.12);
    --secondary-color: #0f172a;
    --accent-color: #d97706;
    --surface: #f8fafc;
    --surface-elevated: #ffffff;
    --text-color: #0f172a;
    --text-muted: #64748b;
    --border-subtle: rgba(15, 23, 42, 0.1);
    --border-inner: rgba(15, 23, 42, 0.06);
    --gray-100: #ecfdf5;
    --gray-200: #d1fae5;
    --transition-speed: 0.3s;
    --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
    --radius-card: 0.75rem;
    --radius-inner: 0.5rem;
    /* 强调条与左侧装饰线统一宽度，避免「有的 4px、有的 6px」 */
    --edge-accent: 4px;
    --shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.05), 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 4px 12px rgba(15, 23, 42, 0.08), 0 16px 40px rgba(13, 148, 136, 0.08);
    --section-pad-y: clamp(2.75rem, 6vw, 4.5rem);
}

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;
}

/* —— 导航 —— */
.zf745bnavbar:not(.xhp-navbar) {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.6rem 0;
}

.zf745bnavbar-brand img {
    height: 44px;
    width: auto;
    max-height: 44px;
}

.zf745bnavbar:not(.xhp-navbar) .zf745bnav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.45rem 0.75rem !important;
    border-radius: 0.5rem;
    transition: color var(--transition-speed), background var(--transition-speed);
    white-space: normal;
    word-break: break-word;
}

.zf745bnavbar:not(.xhp-navbar) .zf745bnav-link:hover {
    color: var(--primary-dark) !important;
    background: var(--primary-soft);
}

/* —— 首页英雄区 —— */
.zf745bhero-section {
    background: linear-gradient(155deg, #0f0a1f 0%, #1e1b4b 38%, var(--primary-dark) 100%);
    color: #f8fafc;
    padding: clamp(3.25rem, 8vw, 5.5rem) 0 clamp(3rem, 7vw, 4.5rem);
    position: relative;
    overflow: hidden;
}

.zf745bhero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 10%, rgba(124, 58, 237, 0.45), transparent 55%),
        radial-gradient(ellipse 50% 45% at 92% 88%, rgba(251, 191, 36, 0.14), transparent 50%);
    pointer-events: none;
}

.zf745bhero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 0v8M26 44v8M0 26h8M44 26h8' stroke='%23fff' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
}

.zf745bhero-content {
    position: relative;
    z-index: 1;
}

.zf745bhero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.zf745bhero-title {
    font-size: clamp(1.9rem, 4.8vw, 3.15rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.zf745bhero-subtitle {
    font-size: clamp(1rem, 2.1vw, 1.2rem);
    margin-bottom: 1.25rem;
    opacity: 0.93;
    max-width: 38rem;
}

.zf745bhero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.zf745bhero-chip {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #e9d5ff;
}

.zf745bhero-image-container {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-top: 0.5rem;
}

.zf745bhero-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;
}

.zf745bhero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.zf745bhero-buttons .btn {
    padding: 0.62rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.zf745bhero-buttons .btn-light {
    background: #fff;
    color: var(--primary-dark);
}

.zf745bhero-buttons .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.zf745bhero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.zf745bhero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.4);
}

.zf745bhero-buttons .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.zf745bhero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@media (max-width: 768px) {
    .zf745bhero-buttons {
        flex-direction: column;
    }
    .zf745bhero-buttons .btn {
        width: 100%;
    }
}

/* —— 首页分区外壳：统一内边距与最大宽度，避免板块“框”高低不一 —— */
.zf745bhome-shell {
    padding: var(--section-pad-y) 0;
}

.zf745bhome-shell--tight {
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.zf745bsection-shell {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.zf745bband-muted {
    background: linear-gradient(180deg, var(--surface-elevated) 0%, var(--surface) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.zf745bband-deep {
    background: linear-gradient(135deg, #115e59 0%, var(--secondary-color) 100%);
    color: #f1f5f9;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.zf745bband-deep .zf745bsection-head h2,
.zf745bband-deep .zf745bsection-head p {
    color: inherit;
}

.zf745bband-deep .zf745bsection-head p {
    opacity: 0.88;
}

/* —— 通栏导读 —— */
.zf745bprose-section {
    background: var(--surface-elevated);
    border-bottom: 1px solid var(--border-subtle);
    padding: clamp(2rem, 5vw, 3rem) 0;
}

.zf745bprose-section .lead {
    color: var(--text-muted);
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1rem, 2.1vw, 1.125rem);
}

/* —— 分区标题 —— */
.zf745bsection-head {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2.25rem;
}

.zf745bsection-head h2 {
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.zf745bsection-head p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.zf745bband-deep .zf745bsection-head h2 {
    color: #fff;
}

/* —— 特点卡片 —— */
.card.zf745bfeature-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.zf745bfeature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.zf745bfeature-icon {
    font-size: 1.65rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: var(--primary-soft);
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-inner);
    margin: 0 auto 1rem;
}

/* —— 统计数据 —— */
.zf745bstats-section {
    padding: var(--section-pad-y) 0;
}

.zf745bstat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-card);
    padding: 1.35rem 1rem;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
}

.zf745bstat-number {
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--accent-color);
    line-height: 1.1;
}

.zf745bstat-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;
}

/* —— 下载区 —— */
.zf745bdownload-section {
    padding: var(--section-pad-y) 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--surface) 100%);
}

.zf745bdownload-header h2 {
    color: var(--secondary-color);
    font-weight: 800;
}

.zf745bdownload-subtitle {
    color: var(--text-muted);
}

.zf745bdownload-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%;
}

.zf745bdownload-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.zf745bplatform-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.zf745bios-icon {
    background: linear-gradient(135deg, #6366f1, #4338ca);
    color: #fff;
}

.zf745bandroid-icon {
    background: linear-gradient(135deg, #a855f7, #7e22ce);
    color: #fff;
}

.zf745bdownload-info {
    background: var(--primary-soft);
    padding: 1.1rem 1.15rem;
    border-radius: var(--radius-inner);
    border: 1px solid var(--border-inner);
    box-sizing: border-box;
}

.zf745binfo-item i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.15em;
}

.zf745binfo-item span {
    min-width: 0;
}

.zf745bdownload-action .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
}

.zf745bdownload-card .ms-3 {
    min-width: 0;
}

/* —— 新手指引 —— */
.zf745bguide-section {
    padding: var(--section-pad-y) 0;
    background: var(--surface-elevated);
}

.zf745bguide-panel {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    padding: 1.35rem 1.4rem;
    height: 100%;
    background: linear-gradient(180deg, #ecfdf5 0%, var(--surface-elevated) 100%);
    box-sizing: border-box;
    overflow: hidden;
}

.zf745bguide-panel h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.9rem;
}

.zf745bguide-panel ol,
.zf745bguide-panel ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.zf745bguide-panel li {
    margin-bottom: 0.45rem;
}

/* —— 语境 / 词解条 —— */
.zf745bcontext-panel {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem 1.5rem;
    box-sizing: border-box;
}

.zf745bcontext-panel p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

/* —— 安全区 —— */
.zf745bsecurity-section {
    padding: var(--section-pad-y) 0;
    background: var(--surface);
}

.zf745bsecurity-header h2 {
    color: var(--secondary-color);
    font-weight: 800;
}

.zf745bsecurity-subtitle {
    color: var(--text-muted);
}

.zf745bsecurity-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-card);
    padding: 1.35rem 1.25rem;
    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;
}

.zf745bsecurity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.zf745bsecurity-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.zf745bsecurity-card h3 {
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.zf745bsecurity-features {
    background: var(--primary-soft);
    padding: 1rem 1.1rem;
    border-radius: var(--radius-inner);
    border: 1px solid var(--border-inner);
    box-sizing: border-box;
}

.zf745bfeature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    gap: 0.5rem;
}

.zf745bfeature-item:last-child {
    margin-bottom: 0;
}

.zf745bfeature-item span {
    min-width: 0;
    font-size: 0.9rem;
}

.zf745bfeature-item i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.15em;
}

.zf745bsecurity-certificates {
    margin-top: 2.5rem;
}

.zf745bcertificate-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;
}

.zf745bcertificate-card:hover {
    transform: translateY(-3px);
}

.zf745bcertificate-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-color), var(--primary-dark));
    color: #fff;
}

.zf745bcertificate-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
}

.zf745bcertificate-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

/* —— FAQ —— */
.card.zf745bfaq-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;
}

.card.zf745bfaq-card:hover {
    box-shadow: var(--shadow-hover);
}

.card.zf745bfaq-card .card-title {
    color: var(--secondary-color);
    font-size: 0.98rem;
    font-weight: 600;
}

section#faq.bg-white,
section#faq.zf745bfaq-wrap {
    border-top: 1px solid var(--border-subtle);
}

.zf745bfaq-wrap {
    background: var(--surface-elevated);
}

/* —— 文章区 —— */
#article.zf745barticle-band {
    background: var(--surface);
    border-top: 1px solid var(--border-subtle);
}

#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);
}

/* —— 页脚 —— */
.zf745bfooter {
    background: var(--secondary-color);
    padding: 2.75rem 0 1.35rem;
    color: #94a3b8;
}

.zf745bfooter .zf745bfooter-title {
    color: #ccfbf1;
}

.zf745bfooter-link {
    color: #94a3b8;
}

.zf745bfooter-link:hover {
    color: #5eead4;
}

.zf745bfooter-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.35rem;
}

.zf745bfooter-bottom a {
    color: #cbd5e1;
}

.zf745bfooter-bottom a:hover {
    color: #5eead4;
}

/* —— 子页 —— */
.zf745bpage-shell {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--surface);
    min-height: 50vh;
}

.zf745bpage-shell .card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-sizing: border-box;
}

.zf745bpage-shell .card.shadow-sm {
    box-shadow: var(--shadow-soft) !important;
}

.zf745bpage-shell aside a {
    color: var(--primary-dark);
    text-decoration: none;
}

.zf745bpage-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 var(--primary-soft);
}

.zf745bsidebar-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);
    }
}

.zf745bhero-content,
.card.zf745bfeature-card,
.zf745bdownload-card,
.card.zf745bfaq-card {
    animation: fadeIn 0.55s var(--transition-easing) forwards;
}

img {
    max-width: 100%;
    height: auto;
}

.navbar-toggler {
    border: none;
    padding: 0.45rem;
}

.zf745bnavbar:not(.xhp-navbar) .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.65rem;
    border-radius: var(--radius-card);
    margin-top: 0.45rem;
    border: 1px solid var(--border-subtle);
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .zf745bnavbar:not(.xhp-navbar) .navbar-collapse {
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 0;
    }
}

/* 深色顶栏：折叠菜单内边距与圆角（不与浅色 .navbar-collapse 规则混用） */
@media (max-width: 991.98px) {
    .zf745bnavbar.xhp-navbar .navbar-collapse {
        padding: 0.5rem 0.55rem;
        border-radius: var(--xhp-radius-sm, 0.375rem);
        margin-top: 0.4rem;
        box-sizing: border-box;
    }
}

.pagebar .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding-left: 0;
    margin: 0;
    max-width: 100%;
}

.pagebar .pagelist li {
    display: inline-flex;
    margin: 0;
}

.zf745bthumb-home {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.zf745binfo-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    gap: 0.5rem;
}

.zf745binfo-item:last-child {
    margin-bottom: 0;
}

.zf745bstat-item {
    text-align: center;
    padding: 0.5rem 0.35rem;
    box-sizing: border-box;
}

.zf745bfriend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.zf745bfriend-links li {
    display: inline;
}

.zf745bfriend-links a {
    color: #94a3b8;
    text-decoration: none;
}

.zf745bfriend-links a:hover {
    color: #5eead4;
}

.zf745barticle-content {
    line-height: 1.75;
    word-break: break-word;
    min-width: 0;
}

.zf745barticle-content img {
    max-width: 100%;
    height: auto;
}

.zf745barticle-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
}

.zf745barticle-content video,
.zf745barticle-content iframe {
    max-width: 100%;
}

.zf745barticle-content pre {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.8125rem;
}

.zf745bdiyfield {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.zf745bmeta-tags {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.zf745bmeta-tags .list-inline-item {
    margin-right: 0 !important;
    display: inline-block;
}

.zf745btagitem 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;
}

.zf745btagitem a:hover {
    background: rgba(13, 148, 136, 0.22);
}

.zf745bpages .pagelist a {
    color: var(--primary-dark);
}

@media (max-width: 767px) {
    .zf745bnavbar:not(.xhp-navbar) {
        padding: 0.4rem 0;
    }

    .zf745bnavbar .navbar-collapse {
        max-height: min(72vh, 28rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .zf745bnavbar .navbar-nav .nav-link {
        padding: 0.48rem 0.4rem !important;
        font-size: 0.94rem;
    }

    .zf745bprose-section .lead {
        text-align: left;
        font-size: 0.9375rem;
        line-height: 1.72;
        max-width: none;
    }

    .zf745bsection-head {
        margin-bottom: 1.65rem;
        text-align: left;
    }

    .zf745bsection-head h2 {
        font-size: 1.28rem;
    }

    .zf745bsection-head p {
        font-size: 0.9rem;
        line-height: 1.62;
    }

    .zf745bguide-panel {
        padding: 1.15rem;
    }

    .zf745bguide-panel h3 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.35rem;
        font-size: 1.02rem;
        line-height: 1.35;
    }

    .zf745bhero-section:not(.xhp-hero) {
        padding-top: clamp(2rem, 7vw, 3rem);
        padding-bottom: clamp(2rem, 8vw, 3.25rem);
    }

    .zf745bhero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .zf745bhero-image-container {
        min-height: 140px;
        margin-top: 0.25rem;
    }

    .zf745bhero-buttons .btn-lg {
        --bs-btn-padding-y: 0.52rem;
        --bs-btn-padding-x: 1rem;
        font-size: 0.9375rem;
    }

    .zf745bstat-label {
        max-width: none;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .zf745bstat-number {
        font-size: clamp(1.4rem, 5.2vw, 1.85rem);
    }

    .zf745bstat-card {
        padding: 1.1rem 0.75rem;
    }

    .card.zf745bfaq-card .card-body {
        padding: 0.85rem 1rem;
    }

    .zf745bfooter {
        padding: 2rem 0 1.15rem;
    }

    .zf745bfooter-bottom p.small.mb-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        column-gap: 0.35rem;
        row-gap: 0.4rem;
    }

    .zf745bfooter-bottom p.small.mb-2 > span {
        opacity: 0.45;
        flex: 0 0 auto;
    }

    .zf745bpage-shell {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }

    .zf745bpage-shell h1.h3 {
        font-size: clamp(1.05rem, 4.5vw, 1.35rem);
        line-height: 1.35;
        word-break: break-word;
    }

    .zf745bpage-shell header .small {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
        row-gap: 0.25rem;
    }

    .zf745bsecurity-icon {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    #article .card-body {
        padding: 0.75rem;
    }

    #article .zf745bthumb-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;
    }

    .zf745bthumb-list,
    .zf745bthumb-related {
        height: 72px !important;
    }

    .zf745bthumb-side {
        height: 50px !important;
    }

    .zf745bthumb-cover {
        max-width: 100% !important;
        width: 100%;
        height: 170px !important;
        margin: 0 auto;
    }

    .zf745bdownload-card .card-body {
        padding: 1rem !important;
    }

    .zf745bdownload-card .d-flex.align-items-center {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1rem !important;
    }

    .zf745bdownload-card .d-flex.align-items-center .ms-3 {
        margin-left: 0 !important;
    }

    .zf745bplatform-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .zf745bdownload-info {
        padding: 1rem;
    }

    .zf745bdownload-action .btn {
        width: 100%;
        white-space: normal;
    }

    .zf745bcontext-panel {
        padding: 1.15rem;
    }
}

@media (max-width: 575px) {
    #article .zf745bthumb-home {
        height: 88px !important;
    }

    .zf745bthumb-list,
    .zf745bthumb-related {
        height: 64px !important;
    }

    .zf745bthumb-side {
        height: 46px !important;
    }

    .zf745bthumb-cover {
        height: 150px !important;
    }

    .pagebar .pagelist {
        gap: 0.35rem;
    }

    .zf745bhero-kicker {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
        line-height: 1.35;
        max-width: 100%;
    }

    .zf745bfooter-bottom {
        font-size: 0.8125rem;
    }

    body.css365jz-page-home .xhp-hero__k {
        letter-spacing: 0.1em;
        font-size: 0.62rem;
    }

    body.css365jz-page-home .xhp-met__v {
        font-size: clamp(1.1rem, 6.5vw, 1.5rem);
    }

    body.css365jz-page-home .xhp-met__l {
        font-size: 0.64rem;
        line-height: 1.25;
    }

    body.css365jz-page-home .xhp-card {
        padding: 0.9rem 0.75rem;
    }

    body.css365jz-page-home .xhp-grid {
        gap: 0.55rem;
    }

    body.css365jz-page-home .xhp-step {
        padding: 0.75rem 0.75rem;
    }

    body.css365jz-page-home .xhp-dl__body {
        padding: 0.75rem 0.85rem;
    }

    body.css365jz-page-home #article.xhp-lit .css365jz-article-band__intro {
        font-size: 0.78rem;
    }

    body.css365jz-page-home .xhp-certs {
        gap: 0.45rem;
    }
}

/* ========== 首页：交易所深色主题（body.css365jz-page-home）========== */
body.css365jz-page-home {
    --xhp-bg: #0b0e11;
    --xhp-panel: #161a1e;
    --xhp-line: rgba(252, 213, 53, 0.14);
    --xhp-gold: #fcd535;
    --xhp-gold-dim: #c9a227;
    --xhp-text: #eaecef;
    --xhp-muted: #848e9c;
    --xhp-cyan: #2bb4a8;
    /* 首页板块：统一描边 / 圆角 / 强调条厚度，避免「有的粗、有的细、圆角不一」 */
    --xhp-stroke: rgba(255, 255, 255, 0.09);
    --xhp-border-1: 1px solid var(--xhp-stroke);
    --xhp-radius: 0.5rem;
    --xhp-radius-sm: 0.375rem;
    --xhp-accent-w: 2px;
    background-color: var(--xhp-bg);
    color: var(--xhp-text);
}

body.css365jz-page-home .xhp-sec + .xhp-sec {
    border-top: 1px solid var(--xhp-line);
}

body.css365jz-page-home .xhp-sec,
body.css365jz-page-home .xhp-strip,
body.css365jz-page-home .zf745bhero-section.xhp-hero {
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow-x: clip) {
    body.css365jz-page-home .xhp-sec,
    body.css365jz-page-home .xhp-strip,
    body.css365jz-page-home .zf745bhero-section.xhp-hero {
        overflow-x: hidden;
    }
}

.zf745bnavbar.xhp-navbar {
    --xhp-bg: #0b0e11;
    --xhp-panel: #161a1e;
    --xhp-line: rgba(252, 213, 53, 0.14);
    --xhp-gold: #fcd535;
    --xhp-text: #eaecef;
    --xhp-muted: #848e9c;
    padding: 0.6rem 0;
    background: var(--xhp-bg) !important;
    border-bottom: 1px solid var(--xhp-line);
    backdrop-filter: none;
}

.zf745bnavbar.xhp-navbar .navbar-toggler {
    border-color: rgba(252, 213, 53, 0.35);
}

.zf745bnavbar.xhp-navbar .navbar-toggler-icon {
    filter: invert(1) brightness(1.1);
}

.zf745bnavbar.xhp-navbar .nav-link {
    color: var(--xhp-text) !important;
    border-radius: 0.25rem;
    font-weight: 500;
    padding: 0.45rem 0.75rem !important;
    white-space: normal;
    word-break: break-word;
}

.zf745bnavbar.xhp-navbar .nav-link:hover {
    color: var(--xhp-gold) !important;
    background: rgba(252, 213, 53, 0.08);
}

.zf745bnavbar.xhp-navbar .navbar-collapse {
    background: #12161c;
    border: 1px solid var(--xhp-line);
}

@media (min-width: 992px) {
    .zf745bnavbar.xhp-navbar .navbar-collapse {
        background: transparent;
        border: none;
    }
}

@media (max-width: 767px) {
    .zf745bnavbar.xhp-navbar {
        padding: 0.4rem 0;
    }
}

body.css365jz-page-home .zf745bhero-section.xhp-hero {
    background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(252, 213, 53, 0.07), transparent 55%),
        linear-gradient(180deg, #0b0e11 0%, #0f1318 100%);
    color: var(--xhp-text);
    padding: clamp(2.5rem, 8vw, 4.25rem) 0 clamp(2rem, 6vw, 3.5rem);
    border-top: var(--xhp-accent-w) solid var(--xhp-gold);
    overflow: hidden;
}

body.css365jz-page-home .zf745bhero-section.xhp-hero::before,
body.css365jz-page-home .zf745bhero-section.xhp-hero::after {
    display: none;
}

.xhp-hero__inner {
    display: grid;
    gap: 1.75rem;
    align-items: center;
    min-width: 0;
}

@media (min-width: 992px) {
    .xhp-hero__inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
    }
}

.xhp-hero__k {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--xhp-gold);
    margin-bottom: 0.65rem;
}

.xhp-hero__h1 {
    font-size: clamp(1.65rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 0.75rem;
    color: var(--xhp-text);
}

.xhp-hero__lead {
    font-size: 0.95rem;
    color: var(--xhp-muted);
    max-width: 36rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.xhp-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.xhp-hero__tags span {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.28rem 0.55rem;
    border: var(--xhp-border-1);
    border-radius: var(--xhp-radius-sm);
    color: var(--xhp-muted);
    background: rgba(255, 255, 255, 0.03);
}

.xhp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.xhp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--xhp-radius-sm);
    text-decoration: none;
    border: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.xhp-btn--gold {
    background: var(--xhp-gold);
    color: #0b0e11;
}

.xhp-btn--gold:hover {
    color: #0b0e11;
    opacity: 0.92;
    transform: translateY(-1px);
}

.xhp-btn--ghost {
    background: transparent;
    color: var(--xhp-text);
    border: var(--xhp-border-1);
}

.xhp-btn--ghost:hover {
    border-color: var(--xhp-gold);
    color: var(--xhp-gold);
}

.xhp-hero__viz {
    text-align: center;
    min-width: 0;
}

.xhp-hero__vizwrap {
    display: inline-block;
    padding: 0.75rem;
    background: var(--xhp-panel);
    border: var(--xhp-border-1);
    border-radius: var(--xhp-radius);
    max-width: min(280px, 100%);
    width: 100%;
    box-sizing: border-box;
}

body.css365jz-page-home .xhp-hero .zf745bhero-image {
    border-radius: var(--xhp-radius-sm);
    border: none;
    box-shadow: none;
    max-width: 100%;
    height: auto;
    display: block;
}

.xhp-hero__cap {
    font-size: 0.72rem;
    color: var(--xhp-muted);
    margin-top: 0.65rem;
    line-height: 1.45;
}

.xhp-strip {
    background: var(--xhp-panel);
    border-top: 1px solid var(--xhp-line);
    border-bottom: 1px solid var(--xhp-line);
    padding: 1rem 0;
}

.xhp-strip p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--xhp-muted);
    text-align: center;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
    word-break: break-word;
}

.xhp-sec {
    padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}

.xhp-sec--dark {
    background: var(--xhp-bg);
    color: var(--xhp-text);
}

.xhp-sec--panel {
    background: var(--xhp-panel);
}

.xhp-hd {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto 1.75rem;
}

.xhp-hd--left {
    text-align: left;
    margin-left: 0;
    max-width: 34rem;
}

.xhp-hd__t {
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: inherit;
}

.xhp-hd__d {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--xhp-muted);
}

.xhp-sec--dark .xhp-hd__d {
    color: #9aa5b1;
}

.xhp-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .xhp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .xhp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.xhp-card {
    background: var(--xhp-panel);
    border: var(--xhp-border-1);
    border-top: var(--xhp-accent-w) solid var(--xhp-gold);
    border-radius: var(--xhp-radius);
    padding: 1.1rem 1rem;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}

.xhp-card__t {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--xhp-text);
}

.xhp-card__p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--xhp-muted);
}

.xhp-steps {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

@media (min-width: 768px) {
    .xhp-steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.75rem;
    }
}

.xhp-step {
    flex: 1 1 100%;
    min-width: 0;
    padding: 0.85rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: var(--xhp-border-1);
    border-radius: var(--xhp-radius);
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .xhp-step {
        flex: 1 1 calc(25% - 0.75rem);
    }
}

.xhp-step__n {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    background: var(--xhp-gold);
    color: #0b0e11;
    border-radius: var(--xhp-radius-sm);
}

.xhp-step__body {
    min-width: 0;
}

.xhp-step__body h3 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--xhp-text);
}

.xhp-step__body p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--xhp-muted);
}

.xhp-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .xhp-metrics {
        grid-template-columns: repeat(4, 1fr);
    }
}

.xhp-met {
    padding: 0.5rem;
    min-width: 0;
}

.xhp-met__v {
    display: block;
    font-size: clamp(1.35rem, 4.5vw, 2rem);
    font-weight: 800;
    color: var(--xhp-gold);
    line-height: 1.1;
    margin-bottom: 0.25rem;
    font-variant-numeric: tabular-nums;
}

.xhp-met__l {
    font-size: 0.72rem;
    color: var(--xhp-muted);
    line-height: 1.3;
}

.xhp-dl {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.xhp-dl__row {
    display: flex;
    align-items: stretch;
    background: var(--xhp-panel);
    border: var(--xhp-border-1);
    border-radius: var(--xhp-radius);
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.xhp-dl__mark {
    width: var(--xhp-accent-w);
    min-width: var(--xhp-accent-w);
    background: var(--xhp-gold);
    flex-shrink: 0;
}

.xhp-dl__body {
    flex: 1;
    min-width: 0;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 576px) {
    .xhp-dl__body {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
}

.xhp-dl__txt {
    min-width: 0;
    flex: 1;
}

.xhp-dl__txt h3 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--xhp-text);
}

.xhp-dl__txt p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--xhp-muted);
    line-height: 1.45;
    overflow-wrap: break-word;
    word-break: break-word;
}

.xhp-dl__body .btn-primary {
    flex-shrink: 0;
    align-self: flex-start;
}

@media (min-width: 576px) {
    .xhp-dl__body .btn-primary {
        align-self: center;
    }
}

.xhp-sec4 {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .xhp-sec4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .xhp-sec4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.xhp-mini {
    padding: 0.75rem 0.8rem;
    border: var(--xhp-border-1);
    border-radius: var(--xhp-radius);
    background: rgba(255, 255, 255, 0.02);
    min-height: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.xhp-mini h3 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--xhp-text);
}

.xhp-mini p {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.45;
    color: var(--xhp-muted);
}

.xhp-certs {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .xhp-certs {
        grid-template-columns: repeat(3, 1fr);
    }
}

.xhp-cert {
    padding: 0.65rem 0.75rem;
    border: var(--xhp-border-1);
    border-radius: var(--xhp-radius-sm);
    font-size: 0.72rem;
    color: var(--xhp-muted);
    text-align: center;
    box-sizing: border-box;
    min-width: 0;
}

.xhp-cert strong {
    display: block;
    color: var(--xhp-gold);
    font-size: 0.78rem;
    margin-bottom: 0.2rem;
}

.xhp-accwrap {
    max-width: 40rem;
    margin: 0 auto;
}

body.css365jz-page-home .xhp-acc.accordion {
    border: var(--xhp-border-1);
    border-radius: var(--xhp-radius-sm);
    overflow: hidden;
}

body.css365jz-page-home .xhp-acc .accordion-item {
    background: var(--xhp-panel);
    border: none;
    border-radius: 0;
}

body.css365jz-page-home .xhp-acc .accordion-item + .accordion-item {
    border-top: var(--xhp-border-1);
}

body.css365jz-page-home .xhp-acc .accordion-button {
    background: var(--xhp-panel);
    color: var(--xhp-text);
    font-size: 0.88rem;
    box-shadow: none;
}

body.css365jz-page-home .xhp-acc .accordion-button:not(.collapsed) {
    background: rgba(252, 213, 53, 0.12);
    color: var(--xhp-gold);
    box-shadow: none;
}

body.css365jz-page-home .xhp-acc .accordion-body {
    background: #12161c;
    color: var(--xhp-muted);
    border-top: var(--xhp-border-1);
    font-size: 0.82rem;
}

.xhp-lit {
    background: #f3f4f6;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.xhp-lit .xhp-hd__t {
    color: #0f172a;
}

.xhp-lit .xhp-hd__d {
    color: #64748b;
}

body.css365jz-page-home #article.xhp-lit .card.css365jz-article-card {
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-left: var(--xhp-accent-w) solid var(--xhp-gold-dim);
    border-radius: var(--xhp-radius-sm);
    box-sizing: border-box;
    overflow: hidden;
}

body.css365jz-page-home #article.xhp-lit .css365jz-article-band__title {
    color: #0f172a;
}

@media (max-width: 767px) {
    body.css365jz-page-home .xhp-sec {
        padding: clamp(1.65rem, 4.5vw, 2.75rem) 0;
    }

    body.css365jz-page-home #faq.xhp-sec {
        padding-top: 1.35rem;
        padding-bottom: 1.35rem;
    }

    body.css365jz-page-home .zf745bhero-section.xhp-hero {
        padding-top: clamp(1.85rem, 5.5vw, 3rem);
        padding-bottom: clamp(1.65rem, 4.5vw, 2.65rem);
    }

    body.css365jz-page-home .xhp-hero__h1,
    body.css365jz-page-home .xhp-hero__lead {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    body.css365jz-page-home .xhp-hero__viz {
        width: 100%;
    }

    body.css365jz-page-home .xhp-hero__vizwrap {
        display: block;
        max-width: min(280px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    body.css365jz-page-home .xhp-metrics {
        gap: 0.65rem 0.5rem;
    }

    body.css365jz-page-home .xhp-met {
        padding: 0.35rem 0.25rem;
    }

    body.css365jz-page-home .xhp-hero__actions {
        flex-direction: column;
    }

    body.css365jz-page-home .xhp-hero__actions .xhp-btn {
        width: 100%;
    }

    .xhp-dl__body .btn-primary {
        width: 100%;
    }

    body.css365jz-page-home .xhp-acc .accordion-button {
        white-space: normal;
        line-height: 1.35;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
        padding-left: 0.85rem;
        padding-right: 2.25rem;
        font-size: 0.84rem;
    }

    body.css365jz-page-home .xhp-acc .accordion-body {
        padding: 0.75rem 0.85rem;
    }

    .xhp-strip p {
        font-size: 0.82rem;
        text-align: left;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .xhp-hd,
    .xhp-hd--left {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    body.css365jz-page-home #article.xhp-lit .css365jz-article-band__intro {
        line-height: 1.55;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

body.css365jz-page-home .xhp-dl .btn-primary {
    background: var(--xhp-gold);
    border: none;
    color: #0b0e11;
    font-weight: 700;
}

body.css365jz-page-home .xhp-dl .btn-primary:hover {
    background: #e6c230;
    color: #0b0e11;
}
