/* ========================================================================
   北京进步加科技 · 会议与展览服务平台
   视觉系统:商务藏青 + 香槟金(Navy & Gold)
   ======================================================================== */

/* =========================
   全局重置与基础样式
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 主色:藏青 */
    --navy: #1e3a5f;
    --navy-dark: #0f2540;
    --navy-light: #e8eef5;
    --navy-soft: #f4f7fb;
    /* 点缀:香槟金 */
    --gold: #c9a961;
    --gold-dark: #a8893f;
    --gold-light: #f5efe0;
    /* 中性 */
    --bg: #f8fafc;
    --surface: #ffffff;
    --text: #1e293b;
    --text-soft: #475569;
    --text-mute: #94a3b8;
    --border: #e2e8f0;
    /* 阴影 */
    --shadow: 0 4px 12px rgba(30, 58, 95, 0.06);
    --shadow-strong: 0 12px 32px rgba(30, 58, 95, 0.12);
    /* 兼容旧变量名 */
    --primary: var(--navy);
    --primary-dark: var(--navy-dark);
    --primary-light: var(--navy-light);
    --primary-soft: var(--navy-soft);
    --accent: var(--gold);
    --accent-soft: var(--gold-light);
}

html, body {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   顶部品牌信息条
   ========================= */
.topbar {
    background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: #fff;
    font-size: 13px;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
}

.topbar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.22);
}

.topbar__logo {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.topbar__divider { opacity: 0.6; color: var(--gold); }

.topbar__tagline {
    opacity: 0.9;
}

.topbar__meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar__link {
    transition: opacity .2s ease, color .2s ease;
}
.topbar__link:hover { opacity: 0.8; color: var(--gold); }
.topbar__sep { opacity: 0.4; }

/* =========================
   搜索区
   ========================= */
.searchbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.searchbar__inner {
    display: flex;
    align-items: center;
    gap: 28px;
}

.searchbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* LOGO 已移除:保留文字标识 */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-text__name {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: 'Noto Serif SC', serif;
}
.brand-text__sub {
    font-size: 11px;
    color: var(--gold-dark);
    letter-spacing: 2px;
    margin-top: 2px;
    font-weight: 600;
}

.search {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 999px;
    padding: 4px 4px 4px 18px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.search:focus-within {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
}

.search__icon {
    color: var(--navy);
    display: inline-flex;
    margin-right: 8px;
}

.search__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 8px;
    font-size: 14px;
    color: var(--text);
    outline: none;
}

.search__btn {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 9px 26px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.search__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(30, 58, 95, 0.3);
}

.searchbar__hot {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-mute);
    flex-shrink: 0;
}
.searchbar__hot a {
    color: var(--text-soft);
    transition: color .2s ease;
}
.searchbar__hot a:hover { color: var(--gold-dark); }
.searchbar__mobile {
    margin-left: 4px;
    color: var(--navy) !important;
    font-weight: 600;
}

/* =========================
   主导航
   ========================= */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 56px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-main__item {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-soft);
    transition: all .2s ease;
    position: relative;
}
.nav-main__item:hover {
    color: var(--navy);
    background: var(--navy-light);
}
.nav-main__item--active {
    color: var(--navy-dark);
    background: var(--navy-light);
    font-weight: 700;
}
.nav-main__item--active::after {
    content: '';
    position: absolute;
    left: 18px; right: 18px;
    bottom: -1px;
    height: 3px;
    border-radius: 2px;
    background: var(--gold);
}

.nav-cats {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-cats__item {
    padding: 6px 14px;
    font-size: 14px;
    color: var(--text-soft);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all .2s ease;
}
.nav-cats__item:hover {
    color: var(--gold-dark);
    background: var(--gold-light);
}
.caret {
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.6;
}

/* =========================
   Hero 区域
   ========================= */
/* =========================
   英雄区:不对称双栏(左白底 / 右藏青块)
   ========================= */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    padding: 0;
    color: var(--text);
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    align-items: stretch;
    min-height: 520px;
}

/* 左侧:白底深字内容区 */
.hero__content {
    padding: 84px 64px 84px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__eyebrow {
    display: inline-block;
    background: var(--navy-light);
    color: var(--navy);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    align-self: flex-start;
}

.hero__title {
    font-size: 46px;
    line-height: 1.22;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 22px;
    font-family: 'Noto Serif SC', serif;
    letter-spacing: -0.5px;
}
.hero__title-line {
    display: block;
    color: var(--navy-dark);
}
.hero__title-line--accent {
    color: var(--gold-dark);
    font-style: italic;
    font-weight: 700;
}

.hero__lede {
    font-size: 16px;
    color: var(--text-soft);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero__cta {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
}

.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all .25s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn--primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 6px 18px rgba(30, 58, 95, 0.22);
}
.btn--primary:hover {
    transform: translateY(-2px);
    background: var(--navy-dark);
    box-shadow: 0 10px 24px rgba(30, 58, 95, 0.32);
}
.btn--ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--border);
}
.btn--ghost:hover {
    background: var(--navy-soft);
    border-color: var(--navy);
    transform: translateY(-2px);
}
.btn--lg {
    padding: 14px 36px;
    font-size: 16px;
}

.hero__chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}
.hero__chips li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 500;
}
.hero__chips .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
}

/* 右侧:藏青色块 + 香槟金流程号角 */
.hero__flow {
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff;
    padding: 56px 56px 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
/* 右块左上角香槟金装饰角 */
.hero__flow::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 60px;
    background: var(--gold);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
/* 右块右下角网格装饰 */
.hero__flow::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 240px; height: 240px;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.hero__flow-head {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}
.hero__flow-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(201, 169, 97, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
}
.hero__flow-title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    font-family: 'Noto Serif SC', serif;
}

.hero__flow-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
}

.hero__flow-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: transform .25s ease;
}
.hero__flow-item:hover {
    transform: translateX(6px);
}

.hero__flow-no {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    min-width: 44px;
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.hero__flow-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}
.hero__flow-text strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}
.hero__flow-text em {
    font-style: normal;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
}

/* =========================
   区块通用
   ========================= */
section {
    padding: 70px 0;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}
.section-head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
    max-width: 100%;
    gap: 24px;
    flex-wrap: wrap;
}
.section-head--row > div { text-align: left; }

.section-head__kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-dark);
    background: var(--gold-light);
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}
.kicker--light {
    color: var(--gold);
    background: rgba(201, 169, 97, 0.18);
}

.section-head__title {
    font-size: 34px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 14px;
    line-height: 1.3;
    font-family: 'Noto Serif SC', serif;
    position: relative;
    display: inline-block;
}
.section-head__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 14px auto 0;
}

.section-head__sub {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================
   四大领域
   ========================= */
.domains {
    background: #fff;
}

/* =========================
   四大服务板块:业务流程时间轴
   ========================= */
.domains__timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 单步:左轴 + 右卡 */
.domain-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: stretch;
    gap: 0;
}

/* 左侧轨道:编号 + 节点 + 阶段名 */
.domain-step__rail {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 0 0;
    /* 藏青竖线 */
    border-left: 2px solid var(--navy);
    margin-left: 0;
}
/* 节点:香槟金圆 + 白内圈 */
.domain-step__node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--gold);
    z-index: 1;
    transition: all .3s ease;
}
.domain-step:hover .domain-step__node {
    transform: scale(1.25);
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--gold), 0 0 12px rgba(201, 169, 97, 0.6);
}
/* 编号(顶部) */
.domain-step__no {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    letter-spacing: 1px;
}
/* 阶段名(节点下方竖排) */
.domain-step__phase {
    margin-top: 12px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 12.5px;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 4px;
    font-family: 'Noto Serif SC', serif;
}

/* 右侧卡片 */
.domain-step__card {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--navy);
    border-radius: 12px;
    padding: 28px 36px 26px 28px;
    margin-left: 20px;
    overflow: hidden;
    color: inherit;
    transition: all .3s ease;
}
.domain-step__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-left-color: var(--gold);
}

/* 右上角水印编号 */
.domain-step__watermark {
    position: absolute;
    top: 8px;
    right: 24px;
    font-size: 80px;
    font-weight: 800;
    color: var(--navy-light);
    line-height: 1;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    pointer-events: none;
    transition: color .3s ease;
}
.domain-step__card:hover .domain-step__watermark {
    color: var(--gold-light);
}

.domain-step__title {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 10px;
    font-family: 'Noto Serif SC', serif;
}

.domain-step__desc {
    position: relative;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 88%;
}

/* 药丸标签:藏青底白字 */
.domain-step__tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    position: relative;
}
.domain-step__tags li {
    font-size: 12.5px;
    color: #fff;
    background: var(--navy);
    padding: 4px 14px;
    border-radius: 999px;
    font-weight: 500;
    transition: background .3s ease;
}
.domain-step__card:hover .domain-step__tags li {
    background: var(--gold-dark);
}

/* 进入板块链接 */
.domain-step__more {
    position: relative;
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    transition: transform .2s ease;
}
.domain-step__card:hover .domain-step__more { transform: translateX(4px); }

/* =========================
   信息大厅
   ========================= */
.hall {
    background: var(--bg);
}

.hall__filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 14px;
    color: var(--text-soft);
    cursor: pointer;
    transition: all .2s ease;
}
.chip:hover {
    color: var(--navy);
    border-color: var(--navy-light);
}
.chip.is-active {
    background: var(--navy);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}

.hall__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: 4px solid var(--navy);
}
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: transparent;
}

.info-card__tag {
    display: inline-block;
    align-self: flex-start;
    background: var(--navy-light);
    color: var(--navy-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.info-card__body {
    padding: 22px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.info-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 51px;
}
.info-card__excerpt {
    color: var(--text-soft);
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.info-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    font-size: 12px;
    color: var(--text-mute);
}

/* =========================
   活动资讯卡片 (重设计)
   ========================= */
.hall__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.news-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 26px 28px 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    box-shadow: var(--shadow);
}
/* 顶部彩色装饰条 */
.news-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
    transition: height .3s ease;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(201, 169, 97, .35);
}
.news-card:hover::before { height: 6px; }
/* 背景装饰:右上方块(展位意象) */
.news-card::after {
    content: '';
    position: absolute;
    right: -40px; top: -40px;
    width: 140px; height: 140px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 8px;
    transform: rotate(15deg);
    pointer-events: none;
}

/* 分类主题色 - 会议策划(藏青) */
.news-card--nutrition::before { background: linear-gradient(90deg, #1e3a5f 0%, #3b5e8a 100%); }
.news-card--nutrition .news-card__cat { color: #1e3a5f; background: #e8eef5; }
.news-card--nutrition:hover { border-color: rgba(30, 58, 95, .35); }
/* 分类主题色 - 展览展示(香槟金) */
.news-card--sport::before { background: linear-gradient(90deg, #c9a961 0%, #d9bd7a 100%); }
.news-card--sport .news-card__cat { color: #a8893f; background: #f5efe0; }
.news-card--sport:hover { border-color: rgba(201, 169, 97, .35); }
/* 分类主题色 - 商务活动(深青蓝) */
.news-card--chronic::before { background: linear-gradient(90deg, #0f766e 0%, #14b8a6 100%); }
.news-card--chronic .news-card__cat { color: #0f766e; background: #ecfdf5; }
.news-card--chronic:hover { border-color: rgba(15, 118, 110, .35); }
/* 分类主题色 - 配套服务(暖灰) */
.news-card--mind::before { background: linear-gradient(90deg, #78716c 0%, #a8a29e 100%); }
.news-card--mind .news-card__cat { color: #57534e; background: #f5f5f4; }
.news-card--mind:hover { border-color: rgba(120, 113, 108, .35); }

.news-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.news-card__cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: .5px;
}
.news-card__cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.news-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: #a8893f;
    background: linear-gradient(90deg, #f5efe0 0%, #ede4cc 100%);
    border: 1px solid #d9bd7a;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 700;
}
.news-card__badge::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #c9a961;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, .25);
}

.news-card__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: color .3s ease;
}
.news-card:hover .news-card__title { color: var(--navy-dark); }

.news-card__excerpt {
    color: var(--text-soft);
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.news-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.news-card__tag {
    font-size: 11.5px;
    color: var(--navy);
    background: var(--navy-light);
    padding: 3px 9px;
    border-radius: 4px;
    font-weight: 600;
}

.news-card__foot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.news-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 95, .25);
}
.news-card__btn:hover {
    background: var(--gold-dark);
    transform: translateX(2px);
    box-shadow: 0 6px 16px rgba(168, 137, 63, .35);
}
.news-card__btn svg { transition: transform .3s ease; }
.news-card__btn:hover svg { transform: translateX(2px); }

@media (max-width: 960px) {
    .hall__grid { grid-template-columns: 1fr; }
}

/* =========================
   服务方案(藏青背景)
   ========================= */
.solutions {
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: #fff;
}

.solutions .section-head__title { color: #fff; }
.solutions .section-head__title::after { background: var(--gold); }
.solutions .section-head__sub { color: rgba(255,255,255,0.78); }
.solutions .section-head__kicker {
    color: var(--gold);
    background: rgba(201, 169, 97, 0.18);
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.solution {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}
.solution::after {
    content: '';
    position: absolute;
    right: -40px; bottom: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    transition: transform .4s ease;
}
.solution:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.3);
    border-color: var(--gold);
}
.solution:hover::after { transform: scale(1.4); }

.solution__num {
    font-size: 13px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
}
.solution h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-family: 'Noto Serif SC', serif;
}
.solution p {
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 18px;
    min-height: 48px;
    position: relative;
    z-index: 1;
}
.solution__price {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
}
.solution__price small {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* =========================
   顶部用户链接增强
   ========================= */
.topbar__user { font-weight: 600; color: var(--gold); }
.topbar__link--logout { color: rgba(255, 220, 200, 0.9); }
.topbar__link--logout:hover { color: #fcd9a8; }

/* =========================
   模态框
   ========================= */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 37, 64, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    transition: opacity .25s ease;
}
.modal.is-open {
    display: flex;
    opacity: 1;
}

.modal__panel {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 460px;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 37, 64, 0.4);
    transform: translateY(20px) scale(0.98);
    transition: transform .25s ease;
    position: relative;
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); }

.modal__panel--sm { max-width: 420px; }
.modal__panel--lg { max-width: 760px; }
.modal__panel--auth {
    max-width: 880px;
    padding: 0;
    overflow: hidden;
}

/* ===== L1 双栏卡片:登录/注册 ===== */
.auth-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 540px;
}

/* 左侧:藏青品牌区 */
.auth-card__brand {
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff;
    padding: 48px 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.auth-card__brand::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 60px;
    background: var(--gold);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.auth-card__brand::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 180px; height: 180px;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.auth-card__brand-inner {
    position: relative;
    z-index: 1;
}
.auth-card__logo {
    color: var(--gold);
    margin-bottom: 22px;
}
.auth-card__brand-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-family: 'Noto Serif SC', serif;
    letter-spacing: 1px;
}
.auth-card__brand-sub {
    font-size: 12.5px;
    color: rgba(201, 169, 97, 0.9);
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    text-transform: uppercase;
}
.auth-card__brand-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}
.auth-card__brand-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.auth-card__brand-points li {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}
.auth-card__brand-points li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* 右侧:表单区 */
.auth-card__form {
    background: #fff;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
}
.auth-card__form-head {
    margin-bottom: 26px;
}
.auth-card__form-head h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
    font-family: 'Noto Serif SC', serif;
}
.auth-card__form-head p {
    font-size: 13.5px;
    color: var(--text-mute);
}
.auth-card__form .modal__body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.auth-card__form .modal__footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
    text-align: center;
    font-size: 13.5px;
    color: var(--text-soft);
}
.auth-card__form .modal__footer a {
    color: var(--gold-dark);
    font-weight: 600;
}
.auth-card__form .btn--block {
    margin-top: 8px;
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

/* 下划线式输入框(无框) */
.input-wrap--underline {
    border: none !important;
    border-bottom: 1.5px solid var(--border) !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 4px 0 !important;
    transition: border-color .25s ease;
}
.input-wrap--underline:hover {
    border-bottom-color: var(--navy-light) !important;
}
.input-wrap--underline:focus-within {
    border-bottom-color: var(--gold) !important;
    box-shadow: 0 2px 0 -1px rgba(201, 169, 97, 0.2) !important;
}
.input-wrap--underline .input-wrap__icon {
    color: var(--text-mute);
}
.input-wrap--underline:focus-within .input-wrap__icon {
    color: var(--gold-dark);
}

/* 验证码下划线版 */
.captcha--underline {
    border: none;
    gap: 14px;
}
.captcha--underline .captcha__input {
    border: none;
    border-bottom: 1.5px solid var(--border);
    border-radius: 0;
    padding: 6px 4px;
    background: transparent;
    flex: 1;
}
.captcha--underline .captcha__input:focus {
    border-bottom-color: var(--gold);
    box-shadow: none;
}
.captcha--underline .captcha__box {
    border: 1px solid var(--border);
    border-radius: 6px;
}

.modal__close {
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    border: none;
    background: rgba(255,255,255,0.18);
    color: inherit;
    font-size: 22px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background .2s ease, transform .2s ease, color .2s ease;
}
.modal__close:hover { background: var(--gold); color: var(--navy-dark); transform: rotate(90deg); }
.modal__header--user .modal__close,
.modal__header--login .modal__close,
.modal__header--register .modal__close {
    color: #fff;
}
.modal__header--user .modal__close:hover,
.modal__header--login .modal__close:hover,
.modal__header--register .modal__close:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.modal__header {
    padding: 26px 28px 22px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.modal__header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 6px;
    font-family: 'Noto Serif SC', serif;
}
.modal__header p {
    font-size: 13.5px;
    color: var(--text-soft);
}
.modal__header--login,
.modal__header--register {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff;
    border-bottom: none;
}
.modal__header--login h3,
.modal__header--register h3 { color: #fff; }
.modal__header--login p,
.modal__header--register p { color: rgba(255,255,255,0.9); }
.modal__header--user {
    background: linear-gradient(135deg, var(--navy-light) 0%, #f4f7fb 100%);
}

.modal__body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
}
.modal__body--user { padding: 0; }

.modal__footer {
    padding: 14px 28px 22px;
    text-align: center;
    font-size: 13.5px;
    color: var(--text-mute);
}
.modal__footer a {
    color: var(--navy);
    font-weight: 600;
    cursor: pointer;
}
.modal__footer a:hover { color: var(--gold-dark); text-decoration: underline; }
.modal__footer--right {
    text-align: right;
    padding: 16px 28px;
    border-top: 1px solid var(--border);
}

.btn--block {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

/* =========================
   表单元素
   ========================= */
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}
.form-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
    outline: none;
    font-family: inherit;
}
.form-group input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
}
.form-group input::placeholder { color: #9ca3af; }

/* =========================
   输入框容器(带左侧图标 + 右侧眼睛)
   ========================= */
.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.input-wrap:hover { border-color: #cbd5e1; }
.input-wrap:focus-within {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
}
.input-wrap__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px 0 12px;
    color: var(--text-soft);
    flex-shrink: 0;
}
.input-wrap input {
    flex: 1;
    min-width: 0;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 11px 8px !important;
    box-shadow: none !important;
    font-size: 14.5px;
    color: var(--text);
    font-family: inherit;
    border-radius: 0 !important;
}
.input-wrap input::placeholder { color: #9ca3af; }
.input-wrap input:focus { box-shadow: none !important; }
.input-wrap__toggle {
    border: none;
    background: transparent;
    color: var(--text-soft);
    cursor: pointer;
    padding: 0 10px 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    flex-shrink: 0;
    border-radius: 6px;
    transition: color .2s ease, background .2s ease;
}
.input-wrap__toggle:hover { color: var(--navy-dark); background: var(--navy-light); }
.input-wrap__toggle .eye-close { display: none; }
.input-wrap__toggle.is-shown .eye-open { display: none; }
.input-wrap__toggle.is-shown .eye-close { display: inline-block; }

/* =========================
   图形验证码
   ========================= */
.captcha {
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.captcha__input {
    flex: 1;
    min-width: 0;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text);
    background: #fff;
    outline: none;
    font-family: 'SF Mono', 'Consolas', 'Roboto Mono', monospace;
    letter-spacing: 4px;
    text-align: center;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.captcha__input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
}
.captcha__input::placeholder {
    color: #9ca3af;
    letter-spacing: 0;
    font-family: inherit;
}
.captcha__box {
    position: relative;
    width: 140px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8fafc;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: border-color .2s ease;
}
.captcha__box:hover { border-color: var(--navy); }
.captcha__canvas {
    display: block;
    width: 100%;
    height: 100%;
}
.captcha__refresh {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    color: var(--navy-dark);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .3s ease, color .2s ease;
}
.captcha__refresh:hover {
    background: var(--gold);
    color: var(--navy-dark);
}
.captcha__refresh.spinning svg {
    animation: captchaSpin .5s ease;
}
@keyframes captchaSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* 自定义复选框 */
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0 22px;
    cursor: pointer;
    user-select: none;
    position: relative;
}
.checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
    pointer-events: none;
}
.checkbox__box {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--navy);
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: all .15s ease;
}
.checkbox__box::after {
    content: '';
    position: absolute;
    left: 5px; top: 1px;
    width: 5px; height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform .15s ease;
}
.checkbox input[type="checkbox"]:checked ~ .checkbox__box {
    background: var(--navy);
    border-color: var(--navy);
}
.checkbox input[type="checkbox"]:checked ~ .checkbox__box::after {
    transform: rotate(45deg) scale(1);
}
.checkbox__text {
    color: var(--text-soft);
    font-size: 13.5px;
    line-height: 1.6;
}
.checkbox__text a {
    color: var(--navy);
    font-weight: 600;
}
.checkbox__text a:hover { color: var(--gold-dark); text-decoration: underline; }

/* =========================
   个人中心
   ========================= */
/* =========================
   个人中心(双栏:左藏青用户卡 + 右 Tab 内容区)
   ========================= */
.uc-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 560px;
}

/* 左侧:藏青用户卡 */
.uc-card__aside {
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.uc-card__aside::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px; height: 60px;
    background: var(--gold);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.uc-card__aside::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 180px; height: 180px;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.uc-card__aside-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}
.uc-card__avatar {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.25);
    font-family: 'Noto Serif SC', serif;
    margin-bottom: 16px;
}
.uc-card__name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    font-family: 'Noto Serif SC', serif;
    letter-spacing: 1px;
}
.uc-card__role {
    font-size: 12px;
    color: rgba(201, 169, 97, 0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.uc-card__meta {
    margin: 0 0 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    text-align: left;
}
.uc-card__meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}
.uc-card__meta-row dt {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
.uc-card__meta-row dd {
    font-size: 12.5px;
    color: #fff;
    margin: 0;
    font-family: 'SF Mono', 'Consolas', monospace;
    letter-spacing: 0.3px;
    max-width: 60%;
    text-align: right;
    word-break: break-all;
}
.uc-card__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.uc-card__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.uc-card__stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
}
.uc-card__stat-label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}
.uc-card__stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(201, 169, 97, 0.3);
}

/* 右侧:Tab 内容区 */
.uc-card__main {
    background: #fff;
    display: flex;
    flex-direction: column;
}
.uc-card__main-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px 18px;
    border-bottom: 1px solid var(--border);
}
.uc-card__main-head h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 4px;
    font-family: 'Noto Serif SC', serif;
}
.uc-card__main-head p {
    font-size: 13px;
    color: var(--text-mute);
}
.btn--sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* Tab */
.tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: #fff;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 1;
}
.tab-btn {
    padding: 14px 22px;
    background: transparent;
    border: none;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-mute);
    cursor: pointer;
    position: relative;
    transition: color .2s ease;
    font-family: inherit;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.is-active { color: var(--navy-dark); }
.tab-btn.is-active::after {
    content: '';
    position: absolute;
    left: 22px; right: 22px;
    bottom: -1px;
    height: 3px;
    border-radius: 2px 2px 0 0;
    background: var(--gold);
}

.tab-content {
    display: none;
    padding: 24px 32px;
    min-height: 280px;
    flex: 1;
    overflow-y: auto;
}
.tab-content.is-active { display: block; }

.table-empty {
    text-align: center;
    color: var(--text-mute);
    padding: 50px 0;
    font-size: 14px;
}
.table-empty a {
    color: var(--navy);
    font-weight: 600;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}
.orders-table thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 12.5px;
}
.orders-table tbody td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.orders-table tbody tr:nth-child(even) { background: var(--bg); }
.orders-table tbody tr:hover { background: var(--navy-light); }
.orders-table tbody tr:last-child td { border-bottom: none; }
.orders-table .order-no {
    font-family: 'SF Mono', 'Consolas', monospace;
    color: var(--text-mute);
    font-size: 12.5px;
}
.orders-table .order-amount {
    color: var(--navy-dark);
    font-weight: 700;
}
.orders-table .order-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}
.orders-table .order-status--done,
.orders-table .order-status--paid {
    background: var(--navy-light);
    color: var(--navy-dark);
}
.orders-table .order-status--progress {
    background: var(--gold-light);
    color: var(--gold-dark);
}

.reading-item__badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: linear-gradient(135deg, var(--navy), var(--gold));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    vertical-align: middle;
}

.readings-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.reading-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all .2s ease;
    cursor: pointer;
}
.reading-item:hover {
    border-color: var(--gold);
    background: var(--bg);
    transform: translateX(2px);
}
.reading-item__cover {
    width: 80px; height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy-light), var(--gold-light));
    background-size: cover;
    background-position: center;
}
.reading-item__body { flex: 1; min-width: 0; }
.reading-item__title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.reading-item__meta {
    font-size: 12px;
    color: var(--text-mute);
    display: flex;
    align-items: center;
    gap: 8px;
}
.reading-item__cat {
    color: var(--gold-dark);
    font-weight: 600;
}

/* =========================
   协议正文
   ========================= */
.agreement-body { max-height: 60vh; }

/* =========================
   付费二维码弹窗
   ========================= */
.payqr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 4px 4px 0;
}
.payqr__box {
    position: relative;
    width: 220px;
    height: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
.payqr__code {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payqr__code svg { width: 100%; height: 100%; display: block; }
.payqr__code-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}
.payqr__code-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payqr__brand {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--gold);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.35);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    border: 1px solid var(--gold);
}
.payqr__brand-name { letter-spacing: 1px; }
.payqr__brand::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
}
.payqr__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--navy-dark);
    margin-top: 8px;
}
.payqr__price-cur { font-size: 18px; font-weight: 600; }
.payqr__price-num {
    font-size: 38px;
    font-weight: 800;
    color: #b91c1c;
    letter-spacing: -1px;
    font-family: 'Cormorant Garamond', serif;
}
.payqr__price-tag {
    font-size: 13px;
    color: var(--text-soft);
    margin-left: 4px;
}
.payqr__notice {
    width: 100%;
    background: linear-gradient(180deg, var(--navy-light) 0%, #f4f7fb 100%);
    border: 1px dashed var(--navy);
    border-radius: 12px;
    padding: 14px 18px;
}
.payqr__notice-strong {
    color: var(--navy-dark);
    font-size: 14.5px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 8px;
    text-indent: 0;
    position: relative;
    padding-left: 22px;
}
.payqr__notice-strong::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #b91c1c;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payqr__notice-sub {
    color: var(--text-soft);
    font-size: 12.5px;
    margin: 3px 0;
    text-indent: 0;
    line-height: 1.6;
}
.payqr__cta {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 4px;
}
.payqr__cta .btn { flex: 1; }
.payqr__cta--single { justify-content: center; }
.payqr__cta--single .btn { flex: 0 1 220px; }
@media (max-width: 480px) {
    .payqr__box { width: 180px; height: 180px; padding: 12px; }
    .payqr__code { width: 152px; height: 152px; }
    .payqr__price-num { font-size: 32px; }
}
.agreement-content {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.85;
}
.agreement-content h4 {
    color: var(--navy-dark);
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0 10px;
    padding-left: 12px;
    border-left: 3px solid var(--gold);
    font-family: 'Noto Serif SC', serif;
}
.agreement-content h4:first-child { margin-top: 0; }
.agreement-content p {
    margin-bottom: 10px;
    text-indent: 2em;
}
.agreement-content p.agreement-date {
    text-align: right;
    color: var(--text-mute);
    margin-top: 24px;
    text-indent: 0;
    font-size: 12.5px;
}
.agreement-content ul,
.agreement-content ol {
    margin: 8px 0 14px;
    padding-left: 28px;
    text-indent: 0;
}
.agreement-content ul { list-style: disc; }
.agreement-content ol { list-style: decimal; }
.agreement-content li {
    margin: 4px 0;
    line-height: 1.8;
}
.agreement-content code {
    background: var(--navy-light);
    color: var(--navy-dark);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 12.5px;
    font-family: 'SF Mono', 'Consolas', 'Roboto Mono', monospace;
}
.agreement-content a {
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px dashed var(--gold);
}
.agreement-content a:hover {
    color: var(--gold-dark);
    border-bottom-style: solid;
}

/* =========================
   页脚(深藏青)
   ========================= */
.footer {
    background: var(--navy-dark);
    color: #cbd5e1;
    padding: 56px 0 0;
    border-top: 2px solid var(--gold);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 36px;
}

.footer__col--brand strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin: 14px 0 10px;
    font-weight: 700;
    font-family: 'Noto Serif SC', serif;
}
.footer__col--brand p {
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.8;
}

.footer__col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Noto Serif SC', serif;
}
.footer__col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer__col a {
    display: block;
    color: #94a3b8;
    font-size: 13.5px;
    margin-bottom: 10px;
    transition: color .2s ease, transform .2s ease;
}
.footer__col a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
}
.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: 12.5px;
}
.footer__bottom-inner a { color: #94a3b8; }
.footer__bottom-inner a:hover { color: var(--gold); }
.footer__bottom-inner .sep { opacity: 0.4; }

/* =========================
   回到顶部
   ========================= */
.back-top {
    position: fixed;
    right: 24px; bottom: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(30, 58, 95, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
    z-index: 999;
    border: 1px solid var(--gold);
}
.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.back-top:hover { transform: translateY(-3px); background: var(--gold); color: var(--navy-dark); }

/* =========================
   响应式
   ========================= */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__content { padding: 60px 0 40px; }
    .hero__flow { padding: 48px 36px; }
    .hero__title { font-size: 38px; }
    .domains__grid, .solutions__grid { grid-template-columns: repeat(2, 1fr); }
    .hall__grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: repeat(2, 1fr); }
    .domain-step__rail { width: 56px; }
}

@media (max-width: 768px) {
    .topbar__inner { flex-direction: column; height: auto; padding: 8px 0; gap: 6px; }
    .topbar__meta { display: none; }
    .searchbar__inner { flex-direction: column; gap: 14px; }
    .search { width: 100%; }
    .searchbar__hot { flex-wrap: wrap; justify-content: center; }
    .navbar__inner { flex-direction: column; height: auto; padding: 10px 0; gap: 8px; }
    .nav-main, .nav-cats { flex-wrap: wrap; justify-content: center; }
    .hero__inner { min-height: auto; }
    .hero__content { padding: 44px 0 32px; }
    .hero__flow { padding: 40px 28px; }
    .hero__title { font-size: 30px; }
    .hero__lede { font-size: 15px; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__chips { gap: 14px; }
    .hero__flow-head { margin-bottom: 24px; }
    .hero__flow-list { gap: 18px; }
    .hero__flow-no { font-size: 26px; min-width: 36px; }
    .section-head__title { font-size: 24px; }
    .domains__grid, .solutions__grid, .hall__grid { grid-template-columns: 1fr; }
    .domain-step__rail { width: 36px; }
    .domain-step__phase { display: none; }
    .domain-step__no { font-size: 12px; }
    .footer__inner { grid-template-columns: 1fr; }
    .footer__bottom-inner { flex-direction: column; gap: 6px; }
    /* 模态框 & 个人中心 */
    .modal { padding: 10px; }
    .modal__header, .modal__body, .modal__footer { padding-left: 18px; padding-right: 18px; }
    .modal__panel--lg { max-width: 100%; }
    .user-summary { padding: 18px; gap: 12px; }
    .user-summary__avatar { width: 52px; height: 52px; font-size: 22px; }
    .orders-table { font-size: 12.5px; }
    .orders-table thead th, .orders-table tbody td { padding: 10px 8px; }
    .orders-table .order-no, .orders-table .order-time { display: none; }
    .captcha { flex-direction: column; align-items: stretch; }
    .captcha__box { width: 100%; }
    /* L1 双栏卡片:移动端纵向堆叠,品牌区隐藏 */
    .auth-card { grid-template-columns: 1fr; min-height: auto; }
    .auth-card__brand { display: none; }
    .auth-card__form { padding: 32px 24px; }
    .auth-card__form-head h3 { font-size: 21px; }
    /* 个人中心:移动端用户卡置顶精简 */
    .uc-card { grid-template-columns: 1fr; min-height: auto; }
    .uc-card__aside { padding: 28px 24px; }
    .uc-card__aside-inner { display: flex; align-items: center; gap: 16px; text-align: left; flex-wrap: wrap; }
    .uc-card__avatar { width: 56px; height: 56px; font-size: 22px; margin-bottom: 0; }
    .uc-card__name { margin-bottom: 0; }
    .uc-card__role { margin-bottom: 0; }
    .uc-card__meta { width: 100%; margin: 16px 0 0; padding: 14px 0 0; border-top: 1px solid rgba(201, 169, 97, 0.2); border-bottom: none; }
    .uc-card__stats { width: 100%; margin-top: 12px; }
    .uc-card__main-head { padding: 20px 24px 14px; }
    .uc-card__main-head h3 { font-size: 19px; }
    .tabs { padding: 0 24px; }
    .tab-content { padding: 18px 24px; }
    .modal__panel--auth { max-width: 100%; }
}
