/* ==========================================
   用卡屋官网 — 公共样式
   主色: #1a3a5c (深蓝)  辅色: #d4a843 (金色)
   ========================================== */

/* 基础重置 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    color: #333; background: #f5f7fa; line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
[hidden] { display: none !important; }

/* ========== 颜色变量 ========== */
:root {
    --blue: #1a3a5c;
    --blue-dark: #0d2137;
    --blue-light: #2a5a8c;
    --gold: #d4a843;
    --gold-dark: #b8912e;
    --gold-light: #e8c77b;
    --bg: #f5f7fa;
    --bg-card: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --text-on-dark: #8fa8c4;
    --border: #e8ecf1;
    --green: #27ae60;
    --red: #e74c3c;
}

/* ========== 通用组件 ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn-gold {
    display: inline-block; padding: 12px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff; font-size: 15px; font-weight: 600;
    border-radius: 6px; transition: all 0.3s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,67,0.35); }

.btn-outline {
    display: inline-block; padding: 12px 32px;
    background: transparent; color: var(--gold);
    border: 2px solid var(--gold); font-size: 15px; font-weight: 600;
    border-radius: 6px; transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

.section-title {
    font-size: 28px; color: var(--blue); text-align: center;
    margin-bottom: 40px; font-weight: 700;
}

/* ========== 顶部导航 ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(26,58,92,0.95); backdrop-filter: blur(10px);
    height: 70px; transition: all 0.3s;
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo span { color: var(--gold); font-size: 20px; font-weight: 700; }

.nav-menu { display: flex; gap: 22px; }
.nav-menu a {
    color: #c0cdd9; font-size: 15px; position: relative;
    padding: 4px 0; transition: color 0.2s;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--gold); transition: width 0.3s;
}
.nav-menu a:hover, .nav-menu a.active { color: #fff; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta {
    padding: 9px 22px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff; font-size: 14px; font-weight: 600; border-radius: 6px;
    transition: all 0.3s;
}
.nav-cta:hover { box-shadow: 0 4px 12px rgba(212,168,67,0.4); }

/* 汉堡菜单按钮 */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }

/* ========== 页面Hero ========== */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 60%, #0a1a2e 100%);
    padding: 120px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212,168,67,0.06) 0%, transparent 60%);
}
.page-hero * { position: relative; }
.page-hero h1 { color: #fff; font-size: 40px; font-weight: 700; margin-bottom: 16px; }
.page-hero h1 .gold { color: var(--gold); }
.page-hero .subtitle { color: var(--text-on-dark); font-size: 17px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; }

/* ========== 数据展示条 ========== */
.stats-bar {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    padding: 48px 0;
}
.stats-grid {
    display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { font-size: 40px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 14px; color: var(--text-on-dark); margin-top: 6px; }

/* ========== 卡片通用 ========== */
.card {
    background: var(--bg-card); border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s; overflow: hidden;
}
.card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

/* ========== 内容站通用模块 ========== */
.section { padding: 64px 0; background: #fff; }
.section.alt { background: var(--bg); }
.intro-text {
    max-width: 760px; margin: -18px auto 36px;
    text-align: center; color: var(--text-light); font-size: 15px; line-height: 1.9;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.content-card {
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    padding: 28px; box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.content-card h3, .content-card h4 { color: var(--blue); margin-bottom: 10px; }
.content-card p { color: var(--text-light); font-size: 14px; line-height: 1.8; }
.content-card .tag {
    display: inline-block; margin-bottom: 12px; padding: 4px 10px;
    background: #edf3f8; color: var(--blue); border-radius: 4px; font-size: 12px;
}
.notice-box {
    max-width: 860px; margin: 28px auto 0; padding: 18px 22px;
    border-left: 4px solid var(--gold); background: #fffbf0;
    color: var(--text-light); font-size: 14px; line-height: 1.8;
}

/* ========== 资讯建设中与咨询表单 ========== */
.news-grid, .article-list {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
}
.news-card, .article-card {
    min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--border);
    border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.news-card:not(.is-building):hover, .article-card:not(.is-building):hover {
    transform: translateY(-3px); box-shadow: 0 8px 26px rgba(13,33,55,.10);
}
.news-thumb, .article-thumb { aspect-ratio: 16 / 9; overflow: hidden; background: #edf2f7; }
.news-thumb img, .article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-info, .article-info { position: relative; padding: 20px; }
.news-info h4, .article-info h3 { color: var(--blue); margin: 8px 0; line-height: 1.45; }
.news-info p, .article-info p { color: var(--text-light); font-size: 14px; line-height: 1.8; }
.news-date, .article-meta { margin-top: 14px; color: var(--text-muted); font-size: 12px; }
.article-tag, .building-badge {
    display: inline-flex; width: fit-content; padding: 4px 9px; border-radius: 999px;
    background: #edf3f8; color: var(--blue); font-size: 12px; line-height: 1.4;
}
.building-badge { margin-top: 14px; background: #fff6dc; color: #775717; font-weight: 700; }
.construction-cover {
    display: grid; place-items: center; width: 100%; height: 100%; min-height: 160px;
    background: linear-gradient(135deg, #eaf0f6, #f8fafc); color: var(--blue);
}
.construction-cover span { padding: 8px 13px; border: 1px solid #cad6e2; border-radius: 999px; font-size: 13px; }
.construction-state {
    grid-column: 1 / -1; padding: 20px; border: 1px dashed #cfd9e3; border-radius: 10px;
    background: #f8fafc; color: var(--text-light); text-align: center; line-height: 1.8;
}
.form-row { margin-bottom: 18px; }
.form-row label, .contact-input-row label { display: block; margin-bottom: 6px; color: var(--text); font-size: 14px; font-weight: 600; }
.form-row input, .form-row select, .form-row textarea, .contact-input-row input {
    width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px;
    background: #f9fafb; color: var(--text); font: inherit;
}
.form-row textarea { min-height: 100px; resize: vertical; }
.contact-input-row { display: none; margin-bottom: 18px; }
.contact-input-row.active { display: block; }
.qr-upload-box { position: relative; padding: 18px; border: 2px dashed var(--border); border-radius: 8px; text-align: center; }
.qr-upload-box input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
#qrPreview { display: none; max-width: 150px; max-height: 150px; margin: 10px auto; border-radius: 8px; }
.form-submit { width: 100%; padding: 13px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; font-size: 16px; font-weight: 700; }
.upload-progress, #formSuccess { display: none; }
.upload-progress.active { display: block; margin-bottom: 18px; color: var(--text-light); text-align: center; }
#formSuccess { padding: 20px 0; text-align: center; }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; border: 0 !important; }
.lead-receipt { margin-top: 10px; color: var(--text-light); font-size: 13px; word-break: break-all; }
.qr-link { display: inline-block !important; line-height: 0 !important; }
.qr-link img { display: block; background: #fff; }
.btn-disabled {
    display: inline-flex; align-items: center; justify-content: center; padding: 12px 32px;
    border: 1px solid #d5dce4; border-radius: 6px; background: #eef2f6; color: #667788;
    font-size: 15px; font-weight: 600; cursor: not-allowed;
}

/* ========== 公众号同步与银行申请入口 ========== */
.hero-eyebrow {
    display: inline-flex; margin-bottom: 16px; padding: 6px 12px;
    border: 1px solid rgba(232,199,123,.38); border-radius: 999px;
    color: var(--gold-light); background: rgba(13,33,55,.42); font-size: 13px;
}
.content-hub-status {
    width: fit-content; max-width: 100%; margin: 24px auto 0; padding: 9px 14px;
    border-radius: 8px; background: rgba(255,255,255,.08); color: #d9e5f0; font-size: 13px;
}
.section-heading-row, .bank-toolbar {
    display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 26px;
}
.section-heading-row h2, .bank-toolbar h2 { color: var(--blue); font-size: 28px; margin-bottom: 6px; }
.section-heading-row p, .bank-toolbar p { color: var(--text-light); font-size: 14px; }
.official-account-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.official-account-card {
    min-width: 0; min-height: 292px; display: flex; flex-direction: column; padding: 22px;
    border: 1px solid var(--border); border-radius: 16px; background: #fff;
    box-shadow: 0 4px 18px rgba(13,33,55,.06); transition: transform .2s, border-color .2s, box-shadow .2s;
}
.official-account-card.is-connected:hover { transform: translateY(-3px); border-color: rgba(212,168,67,.7); box-shadow: 0 12px 30px rgba(13,33,55,.11); }
.official-account-card.is-pending { background: linear-gradient(145deg, #f8fafc, #f1f4f7); box-shadow: none; }
.official-account-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.official-account-card-avatar {
    display: grid; place-items: center; width: 68px; height: 68px; padding: 0;
    border: 1px solid #e6ebf0; border-radius: 18px; background: #fff; overflow: hidden;
}
button.official-account-card-avatar:hover { border-color: var(--gold); box-shadow: 0 6px 16px rgba(13,33,55,.12); }
.official-account-avatar { display: grid; place-items: center; width: 100%; height: 100%; overflow: hidden; background: #fff; }
.official-account-avatar img { width: 100%; height: 100%; object-fit: cover; }
.official-account-avatar .brand-initials { width: 100%; height: 100%; display: grid; place-items: center; background: var(--brand-color, var(--blue)); font-size: 17px; }
.official-account-state {
    padding: 5px 9px; border-radius: 999px; background: #edf7f1; color: #1f7a46;
    font-size: 11px; font-weight: 700;
}
.official-account-card.is-pending .official-account-state { background: #e9edf1; color: #72808e; }
.official-account-card h3 { color: var(--blue); font-size: 20px; line-height: 1.35; }
.official-account-description { min-height: 48px; margin-top: 8px; color: var(--text-light); font-size: 13px; line-height: 1.75; }
.official-account-card-stats { display: grid; gap: 4px; margin-top: 14px; color: var(--text-muted); font-size: 12px; }
.official-account-card-actions { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 20px; }
.official-account-card-actions .btn-gold, .official-account-card-actions .btn-outline { flex: 1 1 auto; padding: 9px 10px; text-align: center; font-size: 12px; }
.official-account-card-actions .btn-outline { background: #fff; }
.official-account-pending-copy { width: 100%; padding: 10px 12px; border-radius: 7px; background: #e8edf2; color: #758493; text-align: center; font-size: 12px; font-weight: 700; }
.account-filter-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.account-chip { display: inline-flex; align-items: center; gap: 4px; }
.account-filter, .account-follow-button {
    min-height: 42px; border: 1px solid var(--border); background: #fff; color: var(--blue);
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.account-filter {
    display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
    font-size: 14px; font-weight: 600;
}
.account-filter:hover, .account-filter.active { border-color: var(--gold); background: #fff9ea; }
.account-filter.active { box-shadow: inset 0 0 0 1px var(--gold); }
.account-count {
    display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px;
    border-radius: 999px; background: #edf3f8; color: var(--text-light); font-size: 11px;
}
.account-follow-button {
    display: grid; place-items: center; width: 42px; min-width: 42px; padding: 0; border-radius: 50%;
}
.account-follow-button:hover { border-color: var(--gold); box-shadow: 0 4px 12px rgba(13,33,55,.12); }
.account-avatar {
    display: inline-grid; place-items: center; width: 30px; height: 30px; overflow: hidden;
    border: 1px solid #e7ebef; border-radius: 50%; background: #fff;
}
.account-avatar img { width: 100%; height: 100%; object-fit: cover; }
.brand-initials { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.account-avatar .brand-initials { width: 100%; height: 100%; display: grid; place-items: center; background: var(--brand-color, var(--blue)); }

.synced-article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.synced-article-card {
    position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--border);
    border-radius: 14px; background: #fff; box-shadow: 0 3px 14px rgba(13,33,55,.06);
    transition: transform .2s, box-shadow .2s;
}
.synced-article-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,33,55,.11); }
.synced-article-card[hidden] { display: none; }
.synced-article-main { display: block; height: 100%; }
.synced-article-cover { display: grid; place-items: center; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(145deg, #e8eef5, #f8fafc); }
.synced-article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-cover-brand {
    display: grid; place-items: center; width: 86px; height: 86px; border-radius: 22px;
    background: #fff; box-shadow: 0 8px 24px rgba(13,33,55,.10); overflow: hidden;
}
.article-cover-brand img { width: 100%; height: 100%; object-fit: contain; }
.article-cover-brand .brand-initials { width: 100%; height: 100%; display: grid; place-items: center; background: var(--brand-color, var(--blue)); font-size: 18px; }
.synced-article-body { padding: 22px 20px 76px; }
.synced-article-body h2 { color: var(--blue); font-size: 19px; line-height: 1.48; margin-bottom: 10px; }
.synced-article-summary { color: var(--text-light); font-size: 14px; line-height: 1.75; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.synced-article-meta { display: flex; align-items: center; gap: 9px; margin-top: 15px; color: var(--text-muted); font-size: 12px; }
.content-mode-badge { padding: 3px 8px; border-radius: 999px; background: #f2f5f8; color: #5f7082; }
.article-read-more { display: inline-block; margin-top: 14px; color: var(--gold-dark); font-size: 13px; font-weight: 700; }
.article-card-actions {
    position: absolute; left: 18px; right: 18px; bottom: 17px; display: flex; align-items: center;
    justify-content: space-between; gap: 8px; pointer-events: none;
}
.article-card-actions > * { pointer-events: auto; }
.article-account-button {
    display: inline-flex; align-items: center; gap: 8px; min-width: 0; max-width: 72%;
    padding: 5px 10px 5px 5px; border: 1px solid var(--border);
    border-radius: 999px; background: #fff; color: var(--blue); font-size: 12px; font-weight: 600;
}
.article-account-button:hover { border-color: var(--gold); background: #fffaf0; }
.article-account-button > span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.article-local-link, .article-original-button {
    flex: 0 0 auto; color: var(--gold-dark); font-size: 12px; font-weight: 700; text-decoration: underline;
    text-underline-offset: 3px;
}
.article-original-button { padding: 5px 0; background: transparent; }
.article-local-link:hover, .article-original-button:hover { color: var(--blue); }
.sync-empty-state { padding: 36px 24px; }
.sync-empty-state strong { display: block; margin-bottom: 8px; color: var(--blue); font-size: 18px; }

.bank-search-label { display: grid; gap: 6px; min-width: 300px; color: var(--text-light); font-size: 12px; }
.bank-search-label input {
    width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 9px;
    background: #fff; color: var(--text); font: inherit;
}
.bank-application-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.bank-card {
    min-width: 0; min-height: 112px; display: grid; grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center; gap: 13px; padding: 18px; border: 1px solid var(--border); border-radius: 13px;
    background: #fff; color: var(--text); text-align: left; box-shadow: 0 2px 10px rgba(13,33,55,.04);
}
button.bank-card { width: 100%; font: inherit; }
.bank-card.is-live:hover { border-color: var(--gold); box-shadow: 0 8px 22px rgba(13,33,55,.10); transform: translateY(-2px); }
.bank-card.is-planned { opacity: .66; filter: saturate(.78); }
.bank-logo {
    display: grid; place-items: center; width: 58px; height: 58px; padding: 7px; overflow: hidden;
    border: 1px solid #edf0f3; border-radius: 14px; background: #fff;
}
.bank-logo img { width: 100%; height: 100%; object-fit: contain; }
.bank-logo > .brand-initials { width: 100%; height: 100%; display: grid; place-items: center; border-radius: 9px; background: var(--brand-color, var(--blue)); }
.bank-card-text { min-width: 0; display: grid; gap: 5px; }
.bank-card-text strong { color: var(--blue); font-size: 15px; line-height: 1.35; }
.bank-card-text small { color: var(--text-muted); font-size: 11px; }
.bank-card-action { color: var(--gold-dark); font-size: 12px; font-weight: 700; }
.bank-card.is-planned .bank-card-action { color: var(--text-muted); }
.bank-disclosure { max-width: none; margin-top: 28px; }

.action-modal { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 20px; }
.action-modal[hidden] { display: none; }
.action-modal-backdrop { position: absolute; inset: 0; background: rgba(5,16,28,.72); backdrop-filter: blur(5px); }
.action-modal-panel {
    position: relative; z-index: 1; width: min(440px, 100%); max-height: calc(100vh - 40px); overflow: auto;
    padding: 30px; border-radius: 18px; background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,.28); text-align: center;
}
.action-modal-panel h2 { margin: 4px 30px 8px; color: var(--blue); font-size: 24px; }
.action-modal-hint, .action-modal-fallback { color: var(--text-light); font-size: 14px; line-height: 1.7; }
.action-modal-close {
    position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%;
    background: #f1f4f7; color: var(--blue); font-size: 25px; line-height: 1;
}
.action-modal-qr {
    width: min(280px, 100%); min-height: 220px; display: grid; place-items: center;
    margin: 20px auto 14px; padding: 10px; border: 1px solid var(--border); border-radius: 14px; background: #fff;
}
.action-modal-qr img { width: auto; max-width: 100%; height: auto; max-height: 260px; object-fit: contain; }
.action-modal-qr svg { width: 100%; height: auto; max-height: 260px; }
.action-modal-actions { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.action-modal-actions .btn-gold, .action-modal-actions .btn-outline { padding: 10px 20px; }
body.modal-open { overflow: hidden; }

.article-detail-page { min-height: 70vh; padding: 106px 0 64px; background: #f3f6f9; }
.article-detail-shell { max-width: 900px; }
.article-detail-shell .breadcrumb { margin-bottom: 20px; color: var(--text-muted); font-size: 13px; }
.article-detail-card { padding: 48px 56px; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: 0 8px 32px rgba(13,33,55,.08); }
.article-detail-kicker { color: var(--gold-dark); font-size: 13px; font-weight: 700; letter-spacing: .05em; }
.article-detail-header h1 { margin: 12px 0; color: var(--blue-dark); font-size: clamp(30px, 5vw, 44px); line-height: 1.35; }
.article-detail-meta { color: var(--text-muted); font-size: 13px; }
.article-detail-content { margin-top: 38px; color: #303b46; font-size: 17px; line-height: 2; }
.article-detail-content p { margin: 0 0 1.35em; white-space: pre-line; }
.article-content-gallery { display: grid; gap: 18px; margin-top: 28px; }
.article-content-gallery img { display: block; width: auto; max-width: 100%; max-height: 860px; margin: 0 auto; border-radius: 14px; object-fit: contain; background: #f4f6f8; }
.article-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--border); }
.article-follow-action { display: inline-flex; align-items: center; gap: 8px; }
.article-detail-note { margin-top: 24px; padding: 14px 16px; border-radius: 9px; background: #f5f7f9; color: var(--text-muted); font-size: 12px; line-height: 1.7; }

.official-account-hero { padding: 106px 0 58px; text-align: left; }
.official-account-breadcrumb { justify-content: flex-start; margin-bottom: 22px; }
.official-account-profile {
    display: grid; grid-template-columns: 116px minmax(0, 1fr) minmax(220px, 290px);
    align-items: center; gap: 30px; padding: 30px;
    border: 1px solid rgba(255,255,255,.13); border-radius: 20px;
    background: rgba(255,255,255,.08); box-shadow: 0 16px 48px rgba(4,14,25,.18);
}
.official-account-profile-avatar {
    display: grid; place-items: center; width: 116px; height: 116px; padding: 0;
    border: 3px solid rgba(232,199,123,.72); border-radius: 28px; background: #fff; overflow: hidden;
}
.official-account-profile-avatar:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.official-account-profile-copy { min-width: 0; }
.official-account-profile-state {
    display: inline-flex; padding: 5px 10px; border: 1px solid rgba(232,199,123,.35);
    border-radius: 999px; background: rgba(13,33,55,.48); color: var(--gold-light); font-size: 12px; font-weight: 700;
}
.official-account-profile h1 { margin: 10px 0 6px; font-size: clamp(31px, 4vw, 46px); line-height: 1.25; }
.official-account-profile .subtitle { max-width: 680px; margin: 0; color: #c0cfdd; font-size: 15px; }
.official-account-profile-stats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.official-account-profile-stats span { padding: 5px 9px; border-radius: 7px; background: rgba(255,255,255,.09); color: #dbe5ef; font-size: 11px; }
.official-account-profile-action { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.14); }
.official-account-profile-action .btn-gold { width: 100%; text-align: center; }
.official-account-profile-action p { margin-top: 11px; color: #9fb2c5; font-size: 12px; line-height: 1.7; }
.account-page-article-count { flex: 0 0 auto; padding: 7px 11px; border-radius: 999px; background: #eef3f7; color: var(--blue); font-size: 12px; font-weight: 700; }

.account-filter:focus-visible, .account-follow-button:focus-visible, .article-account-button:focus-visible,
.article-local-link:focus-visible, .article-original-button:focus-visible, .official-account-card-avatar:focus-visible,
.official-account-page-link:focus-visible, .official-account-follow-link:focus-visible, .official-account-profile-avatar:focus-visible,
.official-account-profile-action .btn-gold:focus-visible,
.bank-card:focus-visible, .action-modal-close:focus-visible, .action-modal-actions a:focus-visible,
.action-modal-actions button:focus-visible, .bank-search-label input:focus-visible {
    outline: 3px solid rgba(212,168,67,.45); outline-offset: 2px;
}

/* ========== CTA条 ========== */
.cta-bar {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    padding: 50px 0; text-align: center;
}
.cta-bar h2 { color: #fff; font-size: 26px; margin-bottom: 24px; }
.cta-row { display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-row img { margin: 0 auto; }
.cta-qr {
    width: 90px; height: 90px; background: #fff; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: #999;
}

/* ========== Footer ========== */
.footer { background: #0d1a2a; padding: 50px 0 20px; color: #6b8299; }
.footer-grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px;
    margin-bottom: 30px;
}
.footer-col h4 { color: var(--gold); font-size: 15px; margin-bottom: 16px; }
.footer-col p { font-size: 13px; line-height: 1.8; }
.footer-col img { margin-left: 0; }
.footer-col a { display: block; font-size: 13px; line-height: 2.2; color: #6b8299; }
.footer-col a:hover { color: var(--gold); }
.footer-qr {
    width: 90px; height: 90px; background: #1a2d42; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: #4a6a8a; margin-top: 10px;
}
.footer-bottom {
    border-top: 1px solid #1a2d42; padding-top: 16px;
    text-align: center; font-size: 12px;
}
.footer-bottom a { color: #6b8299; }
.footer-bottom a:hover { color: var(--gold); }

/* ========== 浮窗客服按钮 ========== */
.float-contact {
    position: fixed; bottom: 100px; right: 24px; z-index: 900;
}
.float-btn {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(212,168,67,0.4);
    cursor: pointer; transition: all 0.3s; position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 26px; height: 26px; fill: #fff; }
.float-popup {
    display: none; position: absolute; bottom: 64px; right: 0;
    background: #fff; border-radius: 12px; padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15); width: 200px; text-align: center;
}
.float-popup.show { display: block; }
.float-popup img { margin: 0 auto; }
.float-popup .qr {
    width: 140px; height: 140px; background: #f0f4f8; border-radius: 8px;
    margin: 0 auto 10px; display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: #999;
}
.float-popup p { font-size: 13px; color: #666; }

/* ========== 移动端底部固定条 ========== */
.mobile-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--blue); padding: 10px 16px; z-index: 900;
    gap: 10px;
}
.mobile-bar a {
    flex: 1; text-align: center; padding: 10px; border-radius: 6px;
    font-size: 14px; font-weight: 600;
}
.mobile-bar .bar-consult { background: var(--gold); color: #fff; }
.mobile-bar .bar-call { background: rgba(255,255,255,0.15); color: #fff; }

/* ========== 动画 ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* 数字滚动 */
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

/* ========== 响应式 ========== */
@media (max-width: 768px) {
    .navbar .container { padding: 0 16px; }
    .nav-menu {
        display: none; position: fixed; top: 70px; left: 0; right: 0;
        background: var(--blue-dark); flex-direction: column;
        padding: 20px; gap: 0;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .page-hero { padding: 100px 16px 60px; }
    .page-hero h1 { font-size: 26px; }
    .page-hero .subtitle { font-size: 14px; }
    .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
    .hero-btns .btn-gold, .hero-btns .btn-outline { width: 200px; text-align: center; }

    .section-title { font-size: 22px; margin-bottom: 24px; }
    .container { padding: 0 16px; }

    .stats-grid { gap: 24px; }
    .stat-num { font-size: 28px; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .grid-2, .grid-3, .grid-4, .news-grid, .article-list { grid-template-columns: 1fr; }

    .mobile-bar { display: flex; }
    .float-contact { bottom: 80px; }

    .cta-bar h2 { font-size: 20px; }
}

/* === 20260810 上线完善公共组件 === */
.legal-content{max-width:900px}.legal-content h2{color:var(--blue);font-size:21px;margin:28px 0 10px}.legal-content p{color:var(--text-light);line-height:1.9;margin-bottom:12px}.legal-links{display:flex;justify-content:center;gap:18px;flex-wrap:wrap;margin:14px 0}.legal-links a{color:inherit;font-size:13px}.search-box{max-width:760px;margin:0 auto 28px}.search-box label{display:block;font-weight:700;color:var(--blue);margin-bottom:8px}.search-row{display:flex;gap:10px}.search-row input{flex:1;padding:13px 15px;border:1px solid var(--border);border-radius:8px;font-size:16px}.search-row button{padding:0 26px;border-radius:8px;background:var(--blue);color:#fff}.search-hint{font-size:12px;color:var(--text-muted);margin-top:8px}.search-results{max-width:760px;margin:0 auto;display:grid;gap:12px}.search-result{display:block;background:#fff;border:1px solid var(--border);border-radius:10px;padding:18px}.search-result h3{color:var(--blue);margin-bottom:5px}.search-result p{color:var(--text-light);font-size:14px}.error-state{text-align:center;padding:40px 0}.error-code{font-size:88px;line-height:1;color:var(--gold);font-weight:800;margin-bottom:18px}.consent-row{font-size:13px;color:var(--text-light);margin:12px 0 16px}.consent-row label{display:flex;gap:8px;align-items:flex-start}.consent-row input{margin-top:4px}.consent-row a{color:var(--blue);text-decoration:underline}@media(max-width:768px){.search-row{flex-direction:column}.search-row button{padding:12px}.error-code{font-size:64px}}

/* === 20260820 常见问题与双站导流 === */
.breadcrumb{display:flex;justify-content:center;gap:9px;margin:0 0 18px;color:#9fb3c9;font-size:13px}.breadcrumb a{color:var(--gold-light)}.cross-brand-card{display:flex;align-items:center;justify-content:space-between;gap:32px;padding:34px;border:1px solid #d9e2eb;border-radius:14px;background:linear-gradient(135deg,#fff,#f4f7fa)}.cross-brand-card>div{min-width:0}.cross-brand-card h2{margin:10px 0;color:var(--blue);font-size:24px}.cross-brand-card p{max-width:760px;color:var(--text-light);line-height:1.8}.cross-brand-card .btn-gold{flex:0 0 auto}.cross-brand-card .link-status{margin-top:8px;color:var(--text-muted);font-size:12px}.section-action{text-align:center;margin-top:30px}.faq-list{display:grid;gap:14px;max-width:900px;margin:0 auto}.faq-item{background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden}.faq-item summary{position:relative;padding:20px 56px 20px 22px;color:var(--blue);font-weight:700;cursor:pointer;list-style:none}.faq-item summary::-webkit-details-marker{display:none}.faq-item summary::after{content:'+';position:absolute;right:22px;top:16px;color:var(--gold-dark);font-size:25px;font-weight:400}.faq-item[open] summary::after{content:'−'}.faq-item[open] summary{border-bottom:1px solid var(--border)}.faq-answer{padding:0 22px 20px;color:var(--text-light);line-height:1.9}.faq-answer a{color:var(--blue);text-decoration:underline}.nav-toggle{background:transparent}
@media (max-width:1050px) and (min-width:769px){.nav-menu{gap:18px}.nav-menu a{font-size:14px}}
@media (max-width:768px){.cross-brand-card{align-items:flex-start;flex-direction:column;padding:24px}.cross-brand-card h2{font-size:21px}.breadcrumb{margin-bottom:14px}.faq-item summary{padding:18px 48px 18px 18px}.faq-answer{padding:0 18px 18px}}
.nav-toggle{border:0;color:inherit;font:inherit}

@media (max-width: 1180px) and (min-width: 769px) {
    .navbar .nav-menu { gap: 14px; }
    .navbar .nav-menu a { font-size: 13px; }
    .navbar .nav-cta { display: none; }
    .bank-application-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .official-account-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .official-account-profile { grid-template-columns: 96px minmax(0, 1fr); }
    .official-account-profile-avatar { width: 96px; height: 96px; }
    .official-account-profile-action { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; padding: 18px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
    .official-account-profile-action .btn-gold { width: auto; flex: 0 0 auto; }
    .official-account-profile-action p { margin-top: 0; }
}
@media (max-width: 980px) and (min-width: 769px) {
    .synced-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bank-application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .content-hub-status { line-height: 1.6; }
    .section-heading-row, .bank-toolbar { align-items: stretch; flex-direction: column; gap: 18px; }
    .section-heading-row h2, .bank-toolbar h2 { font-size: 23px; }
    .account-filter-row { flex-wrap: nowrap; margin-left: -16px; margin-right: -16px; padding: 0 16px 8px; overflow-x: auto; scrollbar-width: thin; }
    .account-chip, .account-filter { flex: 0 0 auto; }
    .official-account-grid, .synced-article-grid, .bank-application-grid { grid-template-columns: 1fr; }
    .official-account-card { min-height: 270px; }
    .bank-search-label { min-width: 0; }
    .bank-card { min-height: 96px; grid-template-columns: 52px minmax(0, 1fr) auto; padding: 14px; }
    .bank-logo { width: 52px; height: 52px; }
    .action-modal { padding: 12px; align-items: end; }
    .action-modal-panel { max-height: calc(100vh - 24px); padding: 26px 18px 20px; border-radius: 18px 18px 10px 10px; }
    .action-modal-panel h2 { font-size: 21px; }
    .action-modal-qr { width: min(250px, 100%); min-height: 190px; }
    .action-modal-actions { flex-direction: column; }
    .action-modal-actions .btn-gold, .action-modal-actions .btn-outline { width: 100%; text-align: center; }
    .article-detail-page { padding: 88px 0 40px; }
    .article-detail-shell .breadcrumb { justify-content: flex-start; overflow: hidden; }
    .article-detail-card { padding: 30px 20px; border-radius: 12px; }
    .article-detail-header h1 { font-size: 28px; }
    .article-detail-content { margin-top: 28px; font-size: 16px; line-height: 1.9; }
    .article-detail-actions { flex-direction: column; }
    .article-detail-actions .btn-gold, .article-detail-actions .btn-outline { width: 100%; justify-content: center; text-align: center; }
    .official-account-hero { padding: 88px 0 36px; }
    .official-account-breadcrumb { overflow: hidden; }
    .official-account-profile { grid-template-columns: 74px minmax(0, 1fr); align-items: start; gap: 16px; padding: 20px; border-radius: 14px; }
    .official-account-profile-avatar { width: 74px; height: 74px; border-radius: 19px; }
    .official-account-profile h1 { margin-top: 8px; font-size: 27px; }
    .official-account-profile .subtitle { grid-column: 1 / -1; font-size: 13px; }
    .official-account-profile-stats { grid-column: 1 / -1; }
    .official-account-profile-action { grid-column: 1 / -1; padding: 16px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
    .official-account-profile-action .btn-gold { width: 100%; }
    .account-page-article-count { width: fit-content; }
}
