/* 三农帮扶 - 登录 / 注册公共样式
 *
 * 移动端 H5 适配方案
 * - viewport: width=device-width（见 PHP 页面 <meta>）
 * - 流式布局：所有外壳宽度 100%
 * - rem 等比缩放：以 375 设计稿为基准，1rem = 100px @ 375
 *   设计值 px / 100 = rem 值（如 24px → 0.24rem）
 * - 不使用 max-width / 固定 px 宽度 / margin:auto 居中
 */

html {
    /* 375 设计稿：1rem = 100px；移动端按屏宽等比缩放 */
    font-size: calc(100vw / 3.75);
}

/* 桌面预览：锁定手机容器宽度，避免 rem 放大 */
@media screen and (min-width: 500px) {
    html {
        font-size: 100px;
    }

    body {
        background: #222;
    }

    .phone,
    .phone--home {
        max-width: 3.75rem;
        margin: 0 auto;
        box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.4);
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    width: 100%;
    min-height: 100vh;
    /* 还原成常规文字尺寸，避免继承 html 的巨大 font-size */
    font-size: 0.14rem;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
    color: #000;
    background: #b1000e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

input,
button {
    font-family: inherit;
    outline: none;
    border: none;
    background: transparent;
}

/* ========= 手机外壳（流式铺满） ========= */
.phone {
    position: relative;
    width: 100%;
    min-height: 8.12rem;
    overflow: hidden;
    background: #b1000e;
}

/* 顶部红色党建背景图 */
.phone .bg-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5.09rem;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

/* 整屏长背景 */
.phone .bg-full {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8.12rem;
    object-fit: cover;
    pointer-events: none;
    z-index: 2;
}

/* 左上角装饰花纹 */
.phone .bg-decoration {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.86rem;
    height: 1.95rem;
    opacity: 0.3;
    object-fit: cover;
    pointer-events: none;
    z-index: 3;
}

/* 注册页额外的底部建筑 */
.phone .bg-building {
    position: absolute;
    left: 0;
    top: 1.45rem;
    width: 100%;
    height: 6.67rem;
    object-fit: cover;
    pointer-events: none;
    z-index: 2;
}

.phone .bg-register-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8.12rem;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

.phone .bg-register-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8.12rem;
    object-fit: cover;
    pointer-events: none;
    z-index: 2;
}

/* ========= 状态栏（已停用，兜底隐藏） ========= */
.status-bar,
.home-status-bar,
.profile-status-bar {
    display: none !important;
}

/* ========= LOGO ========= */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0.82rem;
    width: 1rem;
    height: 1rem;
    z-index: 5;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.12rem;
    border: 0.0066rem solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.04rem 0.04rem 0 rgba(0, 0, 0, 0.25);
}

/* ========= 白色卡片 ========= */
.card {
    position: absolute;
    left: 0.16rem;
    width: 3.43rem;
    padding: 0.24rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.32rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.86) 0%, #ffffff 6.25%);
    border-radius: 0.12rem;
    box-shadow: 0 0.04rem 0.04rem 0 rgba(0, 0, 0, 0.25);
    z-index: 8;
}

.card--login {
    top: 2.46rem;
}

.card--register {
    top: 2.34rem;
}

.card .form-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.16rem;
}

.card .welcome {
    width: 100%;
    padding: 0 0.12rem;
    display: flex;
    flex-direction: column;
    gap: 0.06rem;
}

.card .welcome .hello {
    color: #ca1414;
    font-size: 0.24rem;
    line-height: 0.28rem;
    font-weight: 600;
}

.card .welcome .subtitle {
    color: #000;
    opacity: 0.6;
    font-size: 0.14rem;
    line-height: 0.18rem;
}

/* ========= 输入框列表 ========= */
.field-list {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.field {
    position: relative;
    width: 3.19rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.12rem;
    display: flex;
    align-items: center;
    padding: 0.03rem 0.08rem 0.03rem 0.12rem;
    min-height: 0.46rem;
}

.field .label {
    font-size: 0.16rem;
    font-weight: 500;
    color: #000;
    line-height: 0.2rem;
    margin-right: 0.12rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0.64rem;
}

.field input {
    flex: 1;
    font-size: 0.14rem;
    line-height: 0.21rem;
    color: #000;
    background: transparent;
    border: none;
    width: 100%;
    padding: 0.12rem 0;
}

.field input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

/* 验证码字段 */
.field--captcha {
    padding-right: 0.06rem;
}

.field--captcha input {
    min-width: 0;
}

.field--captcha .captcha-img {
    width: 0.8rem;
    height: 0.3rem;
    object-fit: cover;
    border-radius: 0.04rem;
    margin-left: 0.08rem;
    flex-shrink: 0;
}

/* ========= 提交按钮组 ========= */
.submit-wrap {
    width: 3.43rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.12rem;
}

.btn-primary {
    width: 2.48rem;
    height: 0.44rem;
    background: #ca1414;
    color: #fff;
    border-radius: 1rem;
    font-size: 0.16rem;
    font-weight: 600;
    line-height: 0.2rem;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.btn-primary:hover {
    background: #b01010;
}

.btn-primary:active {
    transform: scale(0.98);
}

.tip {
    display: flex;
    align-items: center;
    gap: 0.02rem;
    font-size: 0.14rem;
    line-height: 0.21rem;
}

.tip .tip-text {
    color: #000;
    opacity: 0.5;
}

.tip .tip-link {
    color: #ca1414;
}

.tip .tip-link:hover {
    text-decoration: underline;
}

/* ========= 底部手势条 ========= */
.gesture-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.16rem;
    z-index: 10;
}

.gesture-bar::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(50% - 0.005rem);
    transform: translate(-50%, -50%);
    width: 1.2rem;
    height: 0.03rem;
    border-radius: 0.02rem;
    background: rgba(0, 0, 0, 0.4);
}

/* =======================================================================
 * 首页
 * 设计稿: Figma 42:11794 (375 x 1061)
 * 1rem = 100px @ 375 viewport
 * ======================================================================= */
body.page-home {
    background: #fff3f2;
}

.phone--home {
    position: relative;
    width: 100%;
    min-height: 10.61rem;
    padding-bottom: 0.72rem;
    background: #fff3f2;
    overflow: hidden;
}

/* ---------- 顶部红色英雄区 (0 - 216px, Figma image 209) ---------- */
.home-header {
    position: relative;
    width: 100%;
    height: 2.16rem;
    background: #e82619;
    overflow: hidden;
    z-index: 1;
}

.home-header-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2.16rem;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

/* 底部红色渐变，把党建图的底边淡化到纯红 */
.home-header-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2.16rem;
    background: linear-gradient(180deg, rgba(232, 38, 25, 0) 50%, #e82619 100%);
    pointer-events: none;
    z-index: 2;
}

/* 红色横幅底部的弧形装饰 (Figma 矩形 11 2, 375x212.258 @ y=186.74)
 * 透明上半部分靠扩展到 216 的 .home-header 红色底托起穹顶形状；
 * z-index 介于 header(1) 与 content(3) 之间，content 盖住下半部的粉色填充。
 */
.home-header-curve {
    position: absolute;
    left: 0;
    top: 1.8674rem;
    width: 100%;
    height: 2.1226rem;
    object-fit: fill;
    pointer-events: none;
    z-index: 2;
}

/* ---------- 状态栏 ---------- */
.home-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.32rem;
    padding: 0.04rem 0.16rem 0 0.16rem;
    z-index: 10;
}

/* ---------- 品牌行 (y=32, h=46) ---------- */
.home-brand {
    position: absolute;
    left: 0;
    top: 0.32rem;
    right: 0;
    height: 0.46rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
    z-index: 4;
}

.home-brand-icon {
    width: 0.36rem;
    height: 0.34rem;
    object-fit: contain;
}

.home-brand-text {
    color: #e0230d;
}

.home-brand-title {
    font-size: 0.18rem;
    line-height: 0.22rem;
    letter-spacing: 0.055rem;
    font-weight: 700;
    -webkit-text-stroke: 0.01rem #fff;
    paint-order: stroke fill;
    text-shadow:
        -0.01rem 0 #fff,
        0.01rem 0 #fff,
        0 -0.01rem #fff,
        0 0.01rem #fff;
}

.home-brand-subtitle {
    margin-top: 0.06rem;
    font-size: 0.06rem;
    line-height: 0.1rem;
    letter-spacing: -0.0024rem;
    font-weight: 400;
    -webkit-text-stroke: 0.004rem #fff;
    paint-order: stroke fill;
    text-shadow:
        -0.004rem 0 #fff,
        0.004rem 0 #fff,
        0 -0.004rem #fff,
        0 0.004rem #fff;
}

/* ---------- 左右宣传文案 (y=117) ---------- */
.home-hero-copy {
    position: absolute;
    top: 1.17rem;
    z-index: 5;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.07rem;
}

.home-hero-copy--left {
    left: 0.3rem;
}

.home-hero-copy--right {
    right: 0.3rem;
}

.home-hero-title {
    font-size: 0.21rem;
    line-height: 0.24rem;
    letter-spacing: 0.021rem;
    font-weight: 800;
    white-space: nowrap;
}

.home-hero-subtitle {
    font-size: 0.14rem;
    line-height: 0.18rem;
    letter-spacing: 0.0168rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ---------- 中央 LOGO 组合 (x=106.5 y=78 w=163 h=158) ---------- */
.home-logo-wrap {
    position: absolute;
    left: 50%;
    top: 0.78rem;
    transform: translateX(-50%);
    width: 1.63rem;
    height: 1.58rem;
    z-index: 5;
    pointer-events: none;
}

/* 光环 (115.5,78) 145x102 => 在 wrap 内偏 9,0 */
.home-logo-glow {
    position: absolute;
    left: 0.09rem;
    top: 0;
    width: 1.45rem;
    height: 1.02rem;
    object-fit: contain;
}

/* 舞台底座 image208 (106.5,133) 163x103 => wrap 内 0, 55 */
.home-logo-base {
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 1.63rem;
    height: 1.03rem;
    object-fit: contain;
}

/* 正中 logo (145,99) 86x86 => wrap 内 38.5, 21 */
.home-logo-main {
    position: absolute;
    left: 0.385rem;
    top: 0.21rem;
    width: 0.86rem;
    height: 0.86rem;
    border: 0.01rem solid #fff;
    border-radius: 0.12rem;
    object-fit: cover;
}

/* 底部椭圆高光阴影 (147.5,184) 81x5 => wrap 内 41, 106 */
.home-logo-shadow {
    position: absolute;
    left: 0.41rem;
    top: 1.06rem;
    width: 0.81rem;
    height: 0.05rem;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(0.02rem);
}

/* ---------- 建立档案按钮 (x=122.5 y=205 w=130 h=28) ---------- */
.home-archive-btn {
    position: absolute;
    left: 50%;
    top: 2.05rem;
    transform: translateX(-50%);
    z-index: 6;
    width: 1.3rem;
    height: 0.28rem;
    padding: 0.06rem 0.14rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 0.01rem solid #ffe2b7;
    border-radius: 0.3rem;
    background: #d40a0a;
    color: #ffeec6;
    font-size: 0.14rem;
    line-height: 0.16rem;
    letter-spacing: 0.014rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
    box-shadow: 0 0.02rem 0.06rem rgba(0, 0, 0, 0.15);
}

.home-archive-btn:active {
    transform: translateX(-50%) scale(0.97);
    background: #b70808;
}

/* ---------- 主体内容区 (Figma Frame 270990588 @ y=233 开始) ----------
 * header(216) + margin-top(17) = 233，让出 17px 粉色过渡带给弧形图下半部显露。
 * 整个内容区在 Figma 中都是 #fff3f2 粉底（基金卡、菜单、Banner、新闻均无独立白底）。
 */
.home-content {
    position: relative;
    z-index: 3;
    background: #fff3f2;
    margin-top: 0.17rem;
    padding-bottom: 0.12rem;
}

/* 建档/二级页：与首页粉色背景一致，无白色圆角卡片 */
.home-content--plain {
    background: #fff3f2;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0;
    min-height: calc(100vh - 2.16rem - 0.72rem);
}

/* ---------- 基金分红卡片 (Figma y=233-355, padding-top 16px) ---------- */
.home-fund-card {
    padding: 0.16rem 0.2rem 0.16rem;
    background: transparent;
}

.home-fund-head {
    display: flex;
    flex-direction: column;
    gap: 0.04rem;
}

.home-fund-label {
    display: flex;
    align-items: center;
    gap: 0.04rem;
}

.home-fund-label-text {
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: #000;
    opacity: 0.6;
    font-weight: 500;
}

.home-fund-eye-btn {
    width: 0.22rem;
    height: 0.22rem;
    padding: 0;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.home-fund-eye {
    width: 0.18rem;
    height: 0.18rem;
    opacity: 0.9;
    transition: opacity 0.16s ease, filter 0.16s ease;
}

.home-fund-eye-btn.is-hidden .home-fund-eye {
    opacity: 0.42;
    filter: grayscale(1);
}

.home-fund-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.02rem;
    padding: 0.02rem 0.06rem;
    border-radius: 0.3rem;
    background: linear-gradient(90deg, #fbe8c5 0%, #f7ca7e 100%);
    color: #d43935;
    font-size: 0.1rem;
    line-height: 0.14rem;
    font-weight: 500;
}

.home-fund-badge img {
    width: 0.12rem;
    height: 0.12rem;
}

.home-fund-value {
    font-size: 0.22rem;
    line-height: 0.26rem;
    color: #000;
    font-weight: 600;
}

.home-fund-divider {
    height: 0.01rem;
    margin: 0.12rem 0;
    background: rgba(0, 0, 0, 0.12);
}

.home-fund-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.16rem;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 500;
}

.home-fund-meta-item {
    display: flex;
    align-items: center;
    gap: 0.04rem;
    color: #000;
}

.home-fund-meta-label {
    color: rgba(0, 0, 0, 0.58);
    opacity: 1;
}

.home-fund-meta-value {
    color: #1f1f1f;
    opacity: 1;
    font-weight: 700;
    letter-spacing: 0.002rem;
}

.home-fund-meta-value--money {
    color: #c91515;
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.home-fund-meta-value--money em {
    margin-left: 0.02rem;
    font-style: normal;
    font-size: 0.12rem;
    font-weight: 600;
    color: #c91515;
}

/* ---------- 功能菜单 (y=355, h=167) ---------- */
.home-menu {
    position: relative;
    background: #fff3f2;
}

.home-menu-divider {
    height: 0.03rem;
    background: #ca1414;
}

.home-menu-row {
    display: flex;
    justify-content: space-between;
    padding: 0 0.08rem;
}

.home-menu-row--first {
    padding-top: 0.12rem;
    padding-bottom: 0.06rem;
}

.home-menu-row--second {
    padding-top: 0.06rem;
    padding-bottom: 0.12rem;
}

.home-menu-item {
    width: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
    text-align: center;
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
}

.home-menu-icon {
    width: 0.42rem;
    height: 0.42rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-menu-icon img {
    width: 0.42rem;
    height: 0.42rem;
    object-fit: contain;
}

.home-menu-label {
    font-size: 0.14rem;
    line-height: 0.14rem;
    font-weight: 500;
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.85);
}

/* ---------- Banner + 视频区 ---------- */
.home-section {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    padding: 0 0.12rem;
    background: #fff3f2;
}

.home-banner {
    position: relative;
    width: 100%;
    height: 0.98rem;
    border-radius: 0.12rem;
    overflow: hidden;
    background: #fff;
    border: 0.01rem solid #fff;
}

.home-banner img {
    position: absolute;
    display: block;
    max-width: none;
    pointer-events: none;
}

.home-banner-bg {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner-overlay-top {
    left: 0;
    top: -0.3233rem;
    width: 3.51rem;
    height: 0.64rem;
    object-fit: cover;
    opacity: 0.4;
}

.home-banner-ribbon {
    left: -0.0633rem;
    top: 0.2867rem;
    width: 3.73rem;
    height: 1.02rem;
    object-fit: cover;
}

.home-banner-flag {
    left: 0;
    top: 0.29rem;
    width: 0.83rem;
    height: 0.81rem;
    object-fit: contain;
}

.home-banner-building {
    left: 0.7301rem;
    top: 0.4321rem;
    width: 2.0096rem;
    height: 0.6178rem;
    object-fit: contain;
}

.home-banner-wave {
    left: 0;
    top: 0.46rem;
    width: 3.5211rem;
    height: 0.7394rem;
    object-fit: cover;
}

.home-banner-star {
    left: 0.0567rem;
    top: 0.7967rem;
    width: 0.3rem;
    height: 0.15rem;
    object-fit: cover;
}

.home-banner-badge {
    right: 0.07rem;
    bottom: -0.02rem;
    width: 0.45rem;
    height: 0.28rem;
    object-fit: cover;
    object-position: top;
}

.home-banner-title {
    left: 0.5967rem;
    top: 0.0467rem;
    width: 2.42rem;
    height: 0.63rem;
    object-fit: contain;
}

.home-video {
    position: relative;
    width: 100%;
    aspect-ratio: 1024 / 660;
    background: #000;
    border-radius: 0.08rem;
    overflow: hidden;
}

.home-video-cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.44rem;
    height: 0.44rem;
    border: 0.01rem solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(0.02rem);
    -webkit-backdrop-filter: blur(0.02rem);
}

.home-video-play::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-top: 0.08rem solid transparent;
    border-bottom: 0.08rem solid transparent;
    border-left: 0.12rem solid #fff;
}

.home-video-back {
    position: absolute;
    top: 0.1rem;
    left: 0.1rem;
    z-index: 5;
    width: 0.36rem;
    height: 0.36rem;
    padding: 0;
    line-height: 0.32rem;
    text-align: center;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.28rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0.02rem 0.06rem rgba(0, 0, 0, 0.35);
    transition: background 0.2s ease;
}

.home-video-back:hover,
.home-video-back:focus {
    background: rgba(0, 0, 0, 0.75);
    outline: none;
}

/* ---------- 新闻列表 ---------- */
.home-news {
    margin-top: 0.12rem;
    background: #fff3f2;
}

.home-news-item {
    display: flex;
    align-items: center;
    gap: 0.12rem;
    padding: 0.08rem 0.12rem;
    position: relative;
}
.home-news-item--link {
    text-decoration: none;
    color: inherit;
}
.home-news-item--link:active { background: rgba(196, 18, 18, 0.04); }

.home-news-item + .home-news-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0.01rem;
    background: rgba(0, 0, 0, 0.06);
}

.home-news-title {
    flex: 1;
    min-width: 0;
    font-size: 0.14rem;
    line-height: 0.18rem;
    color: #000;
    opacity: 0.85;
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.home-news-thumb {
    width: 0.88rem;
    height: 0.58rem;
    border-radius: 0.04rem;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    background: #f3e6e3;
}

/* ---------- 底部 Tab 导航 ---------- */
.home-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    background: #b30a0a;
    color: #fff;
    box-shadow: inset 0 0.0033rem 0 rgba(0, 0, 0, 0.12);
}

/* 桌面预览：底部导航需与 .phone 容器一同居中（必须放在基础 .home-bottom-nav 之后，避免被覆盖） */
@media screen and (min-width: 500px) {
    .home-bottom-nav {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 3.75rem;
    }
}

.home-bottom-nav-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0 0.16rem;
}

.home-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.02rem;
    height: 0.56rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.home-bottom-nav-item.is-active {
    color: #fff;
    font-weight: 500;
}

.home-bottom-nav-item img {
    width: 0.24rem;
    height: 0.24rem;
    object-fit: contain;
}

.home-bottom-nav-item span {
    font-size: 0.1rem;
    line-height: 0.14rem;
}

.home-bottom-gesture {
    position: relative;
    height: 0.16rem;
}

.home-bottom-gesture::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1.2rem;
    height: 0.03rem;
    border-radius: 0.03rem;
    background: rgba(255, 255, 255, 0.4);
}

/* ---------- 建档页 42:13350 ---------- */
body.page-archive-form {
    background: #970600;
}

.phone--archive-form {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 0.72rem;
    background: #970600;
    overflow: hidden;
}

.archive-header {
    position: relative;
    height: 2.99rem;
    overflow: hidden;
}

.archive-header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(151, 6, 0, 0) 0.83rem, #970600 1.97rem);
    pointer-events: none;
}

.archive-title {
    position: absolute;
    left: 50%;
    top: 0.98rem;
    width: 3.43rem;
    transform: translateX(-50%);
    margin: 0;
    text-align: center;
    white-space: nowrap;
    font-size: 0.48rem;
    line-height: 0.59rem;
    letter-spacing: 0.02rem;
    font-weight: 900;
    background: linear-gradient(180deg, #ffffff 0%, #fce2ad 95.67%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 0.03rem #d9271d;
    paint-order: stroke fill;
    text-shadow:
        0 0.02rem 0 rgba(217, 39, 29, 0.12),
        0.01rem 0.01rem 0 rgba(255, 255, 255, 0.18);
    z-index: 5;
}

.archive-main {
    position: relative;
    z-index: 3;
    margin-top: -1.2rem;
    padding: 0 0.2rem 0;
    background: #970600;
}

.archive-card {
    position: relative;
    width: 100%;
    border-radius: 0.12rem;
    background: #fff;
    box-shadow: 0 0.02rem 0.04rem rgba(0, 0, 0, 0.12);
}

.archive-card--profile {
    border: 0.02rem solid #ffefd1;
    padding: 0.26rem 0 0.16rem;
}

.archive-card--fund {
    padding: 0 0 0.16rem;
    margin-top: -0.11rem;
}

.archive-card-tab {
    position: absolute;
    left: 50%;
    top: -0.02rem;
    transform: translateX(-50%);
    width: 1.54rem;
    height: 0.32rem;
    background: linear-gradient(180deg, #ff2b20 0%, #db0909 100%);
    border: 0.01rem solid #ffd39a;
    border-radius: 0 0 0.18rem 0.18rem;
    box-shadow:
        inset 0 -0.02rem 0 rgba(255, 236, 205, 0.22),
        0 0.02rem 0.04rem rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 2;
}

.archive-field-list {
    width: 100%;
}

.archive-field-row {
    min-height: 0.52rem;
    padding: 0.16rem 0.12rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.12rem;
    border-bottom: 0.01rem solid rgba(0, 0, 0, 0.08);
}

.archive-card--profile .archive-field-row:first-child,
.archive-card--fund .archive-field-row:first-child {
    min-height: 0.56rem;
    padding-top: 0.2rem;
    padding-bottom: 0.16rem;
}

.archive-field-row span {
    color: #000;
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 400;
}

.archive-field-label {
    flex: 0 0 auto;
    white-space: nowrap;
}

.archive-field-control {
    flex: 1;
    min-width: 0;
}

.archive-field-control input,
.archive-field-control select {
    width: 100%;
    border: 0;
    background: transparent;
    color: #000;
    font-size: 0.15rem;
    line-height: 0.2rem;
    text-align: right;
    appearance: none;
    -webkit-appearance: none;
}

.archive-field-control input::placeholder,
.archive-field-control select:invalid {
    color: rgba(0, 0, 0, 0.35);
}

.archive-field-control input:focus,
.archive-field-control select:focus {
    outline: none;
}

.archive-form {
    display: block;
}

.archive-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 0.46rem;
    margin: 0.16rem auto 0;
    background: linear-gradient(180deg, #ff120d 0%, #d90707 100%);
    border: 0.01rem solid #ffd39a;
    border-radius: 0.3rem;
    box-shadow:
        inset 0 -0.02rem 0 rgba(255, 236, 205, 0.28),
        0 0.03rem 0.08rem rgba(0, 0, 0, 0.12);
    text-decoration: none;
    cursor: pointer;
}

.archive-submit-btn span {
    color: #ffe7b2;
    text-shadow: 0 0.01rem 0 rgba(128, 20, 0, 0.2);
    font-size: 0.18rem;
    line-height: 0.22rem;
    font-weight: 500;
}

.archive-fund-panel {
    margin-top: 0.2rem;
}

.archive-fund-panel-head {
    height: 0.6rem;
    border: 0.01rem solid rgba(255, 255, 255, 0.3);
    border-radius: 0.12rem 0.12rem 0 0;
    background: url("../images/archive-fund-header-bg.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.archive-fund-panel-head span {
    background: linear-gradient(119deg, #ffeccd 7.91%, #f8bf63 99.86%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 0.2rem;
    line-height: 0.26rem;
    letter-spacing: 0.012rem;
    font-weight: 800;
}

.archive-upload {
    padding: 0.12rem 0 0.12rem;
    border-bottom: 0.01rem solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
}

.archive-upload-title {
    color: #d9271d;
    font-size: 0.16rem;
    line-height: 0.22rem;
    font-weight: 700;
    text-align: center;
}

.archive-upload-box {
    width: 0.8rem;
    height: 0.87rem;
    border-radius: 0.08rem;
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.4rem;
    line-height: 1;
    font-weight: 300;
    user-select: none;
    cursor: pointer;
}

.archive-upload-input {
    position: absolute;
    width: 0.01rem;
    height: 0.01rem;
    opacity: 0;
    pointer-events: none;
}

.archive-submit-btn--fund {
    margin-top: 0.16rem;
}

.archive-footer-scenic {
    width: calc(100% + 0.4rem);
    height: 0.99rem;
    margin: 0 -0.2rem -0.03rem;
}

.archive-footer-scenic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-archive-progress {
    background: #970600;
}

.phone--archive-progress {
    position: relative;
    width: 100%;
    min-height: 13.31rem;
    padding-bottom: 0.72rem;
    background: #970600;
    overflow: hidden;
}

.archive-header--progress {
    height: 2.99rem;
}

.archive-progress-main {
    position: relative;
    z-index: 3;
    margin-top: -1.22rem;
    padding: 0 0.2rem 0;
    background: #970600;
}

.archive-progress-card,
.archive-progress-share-card,
.archive-progress-tips-card {
    width: 100%;
    border-radius: 0.12rem;
    background: #fff;
}

.archive-progress-card {
    padding: 0.16rem 0.12rem;
}

.archive-progress-status-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    min-height: 0.98rem;
    padding: 0.16rem;
    border-radius: 0.08rem;
    background: linear-gradient(180deg, rgba(202, 20, 20, 0.08) 0%, rgba(202, 20, 20, 0.14) 100%);
}

.archive-progress-status-box--alert {
    background: linear-gradient(180deg, rgba(255, 138, 31, 0.08) 0%, rgba(255, 138, 31, 0.16) 100%);
}

.archive-progress-status-box--done {
    background: linear-gradient(180deg, rgba(26, 166, 116, 0.08) 0%, rgba(26, 166, 116, 0.16) 100%);
}

.archive-progress-clock {
    position: relative;
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 50%;
    background: #ca1414;
    flex-shrink: 0;
    box-shadow: 0 0.02rem 0.04rem rgba(202, 20, 20, 0.32);
}

.archive-progress-clock::before,
.archive-progress-clock::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center bottom;
    background: #fff;
    border-radius: 0.02rem;
}

.archive-progress-clock::before {
    width: 0.03rem;
    height: 0.11rem;
    transform: translate(-50%, -100%) rotate(0deg);
    animation: archive-progress-clock-min 6s linear infinite;
}

.archive-progress-clock::after {
    width: 0.03rem;
    height: 0.08rem;
    transform: translate(-50%, -100%) rotate(45deg);
    animation: archive-progress-clock-hour 36s linear infinite;
}

@keyframes archive-progress-clock-min {
    from { transform: translate(-50%, -100%) rotate(0deg); }
    to   { transform: translate(-50%, -100%) rotate(360deg); }
}

@keyframes archive-progress-clock-hour {
    from { transform: translate(-50%, -100%) rotate(45deg); }
    to   { transform: translate(-50%, -100%) rotate(405deg); }
}

/* 等待签名脉冲（filled） */
.archive-progress-clock--pulse {
    animation: archive-progress-pulse 1.6s ease-in-out infinite;
}
@keyframes archive-progress-pulse {
    0%, 100% { box-shadow: 0 0.02rem 0.04rem rgba(202, 20, 20, 0.32), 0 0 0 0 rgba(202, 20, 20, 0.4); }
    50%      { box-shadow: 0 0.02rem 0.04rem rgba(202, 20, 20, 0.32), 0 0 0 0.06rem rgba(202, 20, 20, 0); }
}

/* 警示图标（need_invite） */
.archive-progress-status-mark {
    width: 0.36rem;
    height: 0.36rem;
    flex-shrink: 0;
    display: block;
}
.archive-progress-status-mark svg {
    display: block;
    width: 100%;
    height: 100%;
}

.archive-progress-status-text {
    color: #ca1414;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 500;
}

.archive-progress-status-box--alert .archive-progress-status-text { color: #d96a16; }
.archive-progress-status-box--done  .archive-progress-status-text { color: #1aa674; }

.archive-progress-user {
    display: flex;
    align-items: flex-start;
    gap: 0.12rem;
    margin-top: 0.12rem;
}

.archive-progress-user-avatar {
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 0.08rem;
    border: 0.0033rem solid rgba(0, 0, 0, 0.12);
    object-fit: cover;
    flex-shrink: 0;
}

.archive-progress-user-copy {
    min-width: 0;
}

.archive-progress-user-title {
    color: #000;
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 500;
}

.archive-progress-user-desc {
    margin-top: 0.04rem;
    color: rgba(0, 0, 0, 0.72);
    font-size: 0.12rem;
    line-height: 0.18rem;
    word-break: break-word;
    white-space: normal;
}

.archive-progress-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.08rem;
    margin-top: 0.12rem;
}

.archive-progress-action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.04rem;
    height: 0.32rem;
    border-radius: 0.06rem;
    background: linear-gradient(180deg, #e62a2a 0%, #ca1414 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 500;
    box-shadow:
        inset 0 0.005rem 0 rgba(255, 255, 255, 0.25),
        0 0.02rem 0.02rem rgba(168, 15, 15, 0.18);
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
    user-select: none;
    -webkit-user-select: none;
}

.archive-progress-action-btn .archive-progress-action-icon {
    width: 0.14rem;
    height: 0.14rem;
    flex-shrink: 0;
    display: block;
}

.archive-progress-action-btn:active {
    transform: scale(0.96);
    filter: brightness(0.93);
    box-shadow: inset 0 0.005rem 0 rgba(0, 0, 0, 0.08);
}

.archive-progress-action-btn.is-disabled,
.archive-progress-action-btn[aria-disabled="true"] {
    background: linear-gradient(180deg, #e8c7c7 0%, #d8b1b1 100%);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

.archive-progress-share-card {
    position: relative;
    margin-top: 0.16rem;
    padding-top: 0.2rem;
    padding-bottom: 0.1rem;
    box-shadow: 0 0.02rem 0.02rem #5190f1;
}

.archive-card-tab--progress {
    top: -0.01rem;
}

.archive-progress-share-body {
    padding: 0.12rem 0.12rem 0.12rem;
}

.archive-progress-qrcode-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.archive-progress-qrcode {
    width: 1.46rem;
    height: 1.46rem;
    padding: 0.06rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 0.08rem;
    box-shadow:
        0 0 0 0.02rem #ca1414,
        0 0 0 0.04rem #fff,
        0 0 0 0.05rem rgba(202, 20, 20, 0.35);
}

.archive-progress-qrcode canvas,
.archive-progress-qrcode img {
    display: block;
    width: 100%;
    height: 100%;
}

.archive-progress-qrcode-label {
    display: inline-flex;
    align-items: center;
    gap: 0.04rem;
    padding: 0.03rem 0.08rem;
    border-radius: 0.04rem;
    color: #000;
    font-size: 0.13rem;
    line-height: 0.18rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: background 0.15s ease;
}

.archive-progress-qrcode-label:active {
    background: rgba(202, 20, 20, 0.08);
}

.archive-progress-qrcode-label b {
    color: #ca1414;
    font-weight: 600;
    letter-spacing: 0.02rem;
    font-family: "DIN Alternate", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.14rem;
}

.archive-progress-copy-mini {
    width: 0.12rem;
    height: 0.12rem;
    color: #ca1414;
    flex-shrink: 0;
    margin-left: 0.02rem;
    opacity: 0.65;
}

.archive-progress-link-row {
    margin-top: 0.14rem;
    height: 0.42rem;
    padding: 0 0.04rem 0 0.1rem;
    border: 0.01rem solid #ca1414;
    border-radius: 0.08rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.08rem;
    background: linear-gradient(180deg, #fff 0%, #fff5f4 100%);
}

.archive-progress-link-row > span,
.archive-progress-contact-row > span {
    color: #000;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 500;
    flex-shrink: 0;
}

.archive-progress-link-row .archive-progress-link-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(202, 20, 20, 0.92);
    font-size: 0.12rem;
    font-family: "DIN Alternate", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.005rem;
}

.archive-progress-pill svg {
    flex-shrink: 0;
    width: 0.12rem;
    height: 0.12rem;
}

.archive-progress-link-row .archive-progress-pill {
    flex-shrink: 0;
}

.archive-progress-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.03rem;
    height: 0.28rem;
    padding: 0 0.1rem;
    border-radius: 0.04rem;
    background: #ca1414;
    color: #fff;
    font-size: 0.13rem;
    line-height: 0.16rem;
    font-weight: 500;
    text-decoration: none;
    transition: filter 0.12s ease, transform 0.12s ease;
}

.archive-progress-pill:active {
    transform: scale(0.96);
    filter: brightness(0.92);
}

.archive-progress-pill--ghost {
    background: #fff;
    color: #ca1414;
    border: 0.01rem solid #ca1414;
}

.archive-progress-divider {
    height: 0.01rem;
    margin: 0.18rem 0;
    background: linear-gradient(90deg, rgba(202, 20, 20, 0) 0%, rgba(202, 20, 20, 0.18) 50%, rgba(202, 20, 20, 0) 100%);
}

.archive-progress-contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.08rem;
    min-height: 0.48rem;
    margin-top: 0.12rem;
    padding: 0 0.06rem 0 0.12rem;
    border-radius: 0.08rem;
    background: rgba(202, 20, 20, 0.08);
}

.archive-progress-contact-row:first-of-type {
    margin-top: 0;
}

.archive-progress-contact-row .archive-progress-contact-label {
    display: inline-flex;
    align-items: center;
    gap: 0.06rem;
}

.archive-progress-contact-row .archive-progress-contact-icon {
    width: 0.16rem;
    height: 0.16rem;
    flex-shrink: 0;
    color: #ca1414;
}

.archive-progress-tips-card {
    margin-top: 0.16rem;
    padding: 0.12rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.99) 14.07%, #ffffff 100%);
    border: 0.0033rem solid #fff;
}

.archive-progress-tips-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.06rem;
}

.archive-progress-tips-title span {
    color: #cf0000;
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 700;
}

.archive-progress-tips-line {
    width: 0.89rem;
    height: 0.02rem;
    background: linear-gradient(90deg, rgba(207, 0, 0, 0) 0%, #cf0000 100%);
}

.archive-progress-tips-line--reverse {
    background: linear-gradient(90deg, #cf0000 0%, rgba(207, 0, 0, 0) 100%);
}

.archive-progress-tips-content {
    margin-top: 0.14rem;
    color: #330101;
    font-size: 0.13rem;
    line-height: 0.22rem;
    font-weight: 400;
    text-align: justify;
    letter-spacing: 0.005rem;
}

.archive-progress-tips-content p {
    text-indent: 2em;
}

.archive-progress-tips-content p + p {
    margin-top: 0.1rem;
}

.archive-progress-tips-content strong {
    color: #cf0000;
    font-weight: 700;
}

.archive-progress-tips-content em {
    color: #c9221a;
    font-style: normal;
    font-weight: 600;
}

.archive-footer-scenic--progress {
    margin-top: -0.03rem;
}

/* ---------- 建档审核页：Figma 146:3810 ---------- */
body.page-archive-progress {
    background: #970600;
}

.phone--archive-progress {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 0.72rem;
    background: #970600;
    overflow: hidden;
}

.archive-progress-hero {
    position: relative;
    height: 2.99rem;
    overflow: hidden;
}

.archive-progress-hero-bg,
.archive-progress-hero-fade {
    position: absolute;
    inset: 0;
}

.archive-progress-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-progress-hero-fade {
    background: linear-gradient(180deg, rgba(151, 6, 0, 0) 27.64%, #970600 65.75%);
    pointer-events: none;
}

.archive-progress-brand {
    position: absolute;
    left: 0.12rem;
    top: 0.36rem;
    right: 0.12rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
    height: 0.46rem;
}

.archive-progress-brand-icon {
    width: 0.36rem;
    height: 0.34rem;
    object-fit: contain;
    flex-shrink: 0;
}

.archive-progress-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.06rem;
    color: #e0230d;
    white-space: nowrap;
}

.archive-progress-brand-title {
    font-size: 0.18rem;
    line-height: 0.22rem;
    font-weight: 800;
    letter-spacing: 0.1296rem;
}

.archive-progress-brand-subtitle {
    font-size: 0.06rem;
    line-height: 0.1rem;
    font-family: ABeeZee, Arial, sans-serif;
    letter-spacing: -0.0024rem;
}

.archive-progress-fund-title {
    position: absolute;
    left: 0.07rem;
    top: 0.83rem;
    z-index: 2;
    width: 3.61rem;
    height: 0.43rem;
    object-fit: contain;
}

.archive-progress-slogan {
    position: absolute;
    left: 50%;
    top: 1.43rem;
    z-index: 2;
    width: 3.59rem;
    transform: translateX(-50%);
    text-align: center;
    color: transparent;
    background: linear-gradient(180deg, #ffffff 0%, #fce2ad 95.67%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 0.2rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.024rem;
}

.archive-progress-main {
    position: relative;
    z-index: 4;
    margin-top: -1.1rem;
    padding: 0 0.19rem;
    background: transparent;
}

.archive-progress-card,
.archive-progress-share-card,
.archive-progress-tips-card {
    width: 100%;
    border-radius: 0.12rem;
    background: #fff;
}

.archive-progress-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.16rem;
    padding: 0.16rem 0.12rem;
    box-shadow: none;
}

.archive-progress-note {
    color: #ca1414;
    font-size: 0.14rem;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.0168rem;
    white-space: nowrap;
}

.archive-progress-status-box {
    width: 100%;
    min-height: 0.98rem;
    padding: 0.16rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.12rem;
    border-radius: 0.08rem;
    background: rgba(202, 20, 20, 0.1);
}

.archive-progress-clock {
    position: relative;
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 50%;
    background: #ca1414;
    box-shadow: none;
    flex-shrink: 0;
}

.archive-progress-clock::before,
.archive-progress-clock::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center bottom;
    background: #fff;
    border-radius: 0.02rem;
}

.archive-progress-clock::before {
    width: 0.03rem;
    height: 0.11rem;
    transform: translate(-50%, -100%) rotate(0deg);
    animation: none;
}

.archive-progress-clock::after {
    width: 0.03rem;
    height: 0.08rem;
    transform: translate(-50%, -100%) rotate(90deg);
    animation: none;
}

.archive-progress-clock--pulse {
    animation: none;
}

.archive-progress-status-text {
    color: #ca1414;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 500;
}

.archive-progress-user {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.12rem;
    margin-top: -0.04rem;
}

.archive-progress-user-avatar {
    width: 0.52rem;
    height: 0.52rem;
    border: 0.0033rem solid rgba(0, 0, 0, 0.12);
    border-radius: 0.08rem;
    object-fit: cover;
    flex-shrink: 0;
}

.archive-progress-user-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.archive-progress-user-title {
    color: #000;
    font-size: 0.16rem;
    line-height: 0.22rem;
    font-weight: 500;
    word-break: break-all;
}

.archive-progress-user-desc {
    margin-top: 0.04rem;
    color: #000;
    font-size: 0.12rem;
    line-height: 0.2rem;
    font-weight: 400;
    word-break: break-word;
    white-space: normal;
}

.archive-progress-actions {
    width: 100%;
    height: 0.42rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 0.08rem;
    margin-top: -0.04rem;
}

.archive-progress-action-btn {
    width: 100%;
    height: 0.28rem;
    border: 0;
    border-radius: 0.04rem;
    background: #ca1414;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 500;
    font-family: inherit;
}

.archive-progress-action-btn.is-disabled,
.archive-progress-action-btn[aria-disabled="true"] {
    background: #ca1414;
    color: #fff;
    opacity: 1;
    pointer-events: none;
}

.archive-progress-share-card {
    position: relative;
    margin-top: 0.2rem;
    padding-top: 0.2rem;
    padding-bottom: 0.1rem;
    box-shadow: 0 0.02rem 0.01rem #5190f1;
}

.archive-card-tab--progress {
    top: 0;
    width: 1.54rem;
    height: 0.32rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: url("../images/archive-section-tab-bg.png") 0 -0.61rem / 100% auto no-repeat;
    box-shadow: none;
    color: #fff;
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 500;
    letter-spacing: 0.01rem;
    overflow: hidden;
    white-space: nowrap;
}

.archive-progress-share-body {
    padding: 0.16rem 0.12rem 0.12rem;
}

.archive-progress-qrcode-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
}

.archive-progress-qrcode {
    width: 1.42rem;
    height: 1.42rem;
    padding: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-progress-qrcode canvas,
.archive-progress-qrcode img {
    display: block;
    width: 1.42rem;
    height: 1.42rem;
}

.archive-progress-qrcode-label {
    padding: 0;
    color: #000;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 400;
}

.archive-progress-link-row {
    width: 100%;
    height: 0.42rem;
    margin-top: 0.12rem;
    padding: 0 0.08rem;
    display: flex;
    align-items: center;
    gap: 0.06rem;
    border: 0.01rem solid #ca1414;
    border-radius: 0.08rem;
    background: #fff;
}

.archive-progress-link-label,
.archive-progress-contact-row > span {
    flex: 0 0 auto;
    color: #000;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 500;
}

.archive-progress-link-text {
    flex: 1 1 auto;
    min-width: 0;
    color: #ca1414;
    font-size: 0.12rem;
    line-height: 0.18rem;
    font-weight: 400;
    font-family: "DIN Alternate", "Helvetica Neue", Arial, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.archive-progress-link-copy,
.archive-progress-contact-action {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: #ca1414;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 500;
    font-family: inherit;
}

.archive-progress-divider {
    height: 0.01rem;
    margin: 0.16rem 0;
    background: rgba(202, 20, 20, 0.18);
}

.archive-progress-contact-row {
    min-height: 0.48rem;
    padding: 0 0.08rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.08rem;
    background: rgba(202, 20, 20, 0.1);
}

.archive-progress-contact-row + .archive-progress-contact-row {
    margin-top: 0.08rem;
}

.archive-progress-tips-card {
    margin-top: 0.2rem;
    padding: 0.12rem;
    border: 0.0033rem solid #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.99) 14.07%, #fff 100%);
}

.archive-progress-tips-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.06rem;
}

.archive-progress-tips-title > span:not(.archive-progress-tips-line) {
    color: #cf0000;
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 700;
}

.archive-progress-tips-line {
    width: 0.89rem;
    height: 0.02rem;
    background: linear-gradient(90deg, rgba(207, 0, 0, 0) 0%, #cf0000 100%);
}

.archive-progress-tips-line--reverse {
    background: linear-gradient(90deg, #cf0000 0%, rgba(207, 0, 0, 0) 100%);
}

.archive-progress-tips-content {
    margin-top: 0.12rem;
    color: #330101;
    font-size: 0.12rem;
    line-height: 0.16rem;
    font-weight: 500;
    letter-spacing: 0;
    text-align: left;
}

.archive-progress-tips-content p {
    text-indent: 0;
}

.archive-progress-tips-content p + p {
    margin-top: 0.08rem;
}

.archive-progress-tips-content b {
    font-weight: 600;
}

.archive-footer-scenic--progress {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 0.99rem;
    margin: 0.1rem 0 0;
    object-fit: cover;
}

.archive-progress-toast {
    position: fixed;
    left: 50%;
    bottom: 0.88rem;
    z-index: 60;
    transform: translateX(-50%) translateY(0.12rem);
    min-width: 1.2rem;
    padding: 0.09rem 0.14rem;
    border-radius: 0.18rem;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.13rem;
    line-height: 0.18rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.archive-progress-toast.is-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

body.page-lottery {
    background: #ca3225;
}

.phone--lottery {
    position: relative;
    width: 100%;
    min-height: 15.04rem;
    padding-bottom: 0.72rem;
    background: linear-gradient(180deg, #cf2c20 0%, #ca3225 100%);
    overflow: hidden;
}

.lottery-hero {
    position: relative;
    height: 7.36rem;
    overflow: hidden;
}

.lottery-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 6.91rem;
    object-fit: cover;
}

.lottery-title-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2.23rem;
    z-index: 4;
}

.lottery-title-sub {
    position: absolute;
    left: 0.25rem;
    top: 0.88rem;
    width: 2.73rem;
    height: 0.44rem;
    object-fit: contain;
}

.lottery-title-light {
    position: absolute;
    width: 1.86rem;
    height: 0.2rem;
    object-fit: contain;
}

.lottery-title-wrap .lottery-title-light:first-of-type {
    left: -0.25rem;
    top: 1.18rem;
}

.lottery-title-main {
    position: absolute;
    left: 0.5rem;
    top: 1.38rem;
    width: 3.1rem;
    height: 0.44rem;
    object-fit: contain;
}

.lottery-title-wrap .lottery-title-main + .lottery-title-light {
    left: 1.5rem;
    top: 1.66rem;
}

.lottery-title-tag {
    position: absolute;
    left: 1.04rem;
    top: 1.87rem;
    width: 1.66rem;
    height: 0.36rem;
    object-fit: contain;
}

.lottery-board {
    position: absolute;
    left: 0.12rem;
    top: 2.81rem;
    width: 3.51rem;
    min-height: 3.45rem;
    padding: 0.14rem 0.14rem 0.5rem;
    border: 0.015rem solid #fff;
    border-radius: 0.24rem;
    background: linear-gradient(180deg, #f96f34 0%, #e90101 100%);
    box-shadow:
        inset -0.01rem -0.08rem 0.04rem rgba(0, 0, 0, 0.12),
        inset 0 0.04rem 0.04rem rgba(255, 242, 242, 0.25);
    z-index: 3;
}

.lottery-board-inner {
    padding: 0.06rem;
    border: 0.0033rem solid #fff;
    border-radius: 0.16rem;
    background: linear-gradient(180deg, #e90101 0%, #f96f34 100%);
    box-shadow: inset 0 0.01rem 0.02rem rgba(255, 255, 255, 0.3);
}

.lottery-prize-row {
    display: grid;
    gap: 0.03rem;
}

.lottery-prize-row + .lottery-prize-row {
    margin-top: 0.04rem;
}

.lottery-prize-row--1,
.lottery-prize-row--3 {
    grid-template-columns: repeat(4, 1fr);
}

.lottery-prize-row--2 {
    grid-template-columns: repeat(3, 1fr);
}

.lottery-prize-card {
    height: 0.9rem;
    border-radius: 0.08rem;
    background: linear-gradient(180deg, #ffffff 46.64%, #ffede1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0.05rem;
}

.lottery-prize-card.is-active {
    background: linear-gradient(180deg, #d9271d 10.76%, #c80c02 84.25%);
    border: 0.02rem solid #fff8da;
    padding-top: 0.03rem;
}

.lottery-prize-image-wrap {
    width: 0.5rem;
    height: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lottery-prize-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lottery-prize-name {
    margin-top: 0.01rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0.3rem;
}

.lottery-prize-name span {
    font-size: 0.12rem;
    line-height: 0.15rem;
    color: #da261e;
    text-align: center;
    white-space: nowrap;
}

.lottery-prize-card.is-active .lottery-prize-name span {
    color: #fff5d3;
}

.lottery-board-spark {
    position: absolute;
    width: 0.27rem;
    height: 0.3rem;
    object-fit: contain;
}

.lottery-board-spark--left-top {
    left: 0;
    top: 0.41rem;
}

.lottery-board-spark--right-top {
    right: 0;
    top: 0;
}

.lottery-board-spark--right-mid {
    right: 0;
    bottom: 0.32rem;
}

.lottery-board-tip {
    position: absolute;
    left: 50%;
    bottom: 0.15rem;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.16rem;
    line-height: 0.2rem;
    letter-spacing: 0.0128rem;
    font-weight: 500;
    white-space: nowrap;
}

.lottery-draw-btn-wrap {
    position: absolute;
    left: 0.79rem;
    top: 6.58rem;
    z-index: 4;
}

.lottery-draw-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 0.52rem;
    padding: 0;
    border: 0.01rem solid #fff1ed;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f96f34 0%, #e90101 100%);
    box-shadow:
        inset 0 0.04rem 0.04rem rgba(255, 240, 240, 0.25),
        inset 0.01rem -0.06rem 0.04rem rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 0.2rem;
    line-height: 0.24rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.02rem;
}

.lottery-hero-mid-bg {
    position: absolute;
    left: 0;
    top: 6.11rem;
    width: 100%;
    height: 1.35rem;
    object-fit: cover;
    z-index: 2;
}

.lottery-main {
    position: relative;
    z-index: 3;
    padding: 0 0.2rem 0.2rem;
    background: #ca3225;
}

.lottery-card {
    position: relative;
    margin-top: 0.12rem;
    padding: 0.23rem 0.12rem 0.12rem;
    border-radius: 0.18rem;
    background: transparent;
    overflow: visible;
}

.lottery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/lottery-card-frame.png") center/100% 100% no-repeat;
    pointer-events: none;
}

.lottery-card > * {
    position: relative;
    z-index: 1;
}

.lottery-card--rewards {
    margin-top: 0.16rem;
    padding-bottom: 0.04rem;
}

.lottery-section-title {
    position: absolute;
    left: 50%;
    top: -0.11rem;
    transform: translateX(-50%);
    width: 2.43rem;
    height: 0.45rem;
}

.lottery-section-title img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lottery-section-title span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fefaef;
    font-size: 0.18rem;
    line-height: 0.22rem;
    font-weight: 600;
    white-space: nowrap;
}

.lottery-share-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lottery-qrcode-box {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.08rem;
    border-radius: 0.12rem;
    border: 0.01rem solid #ca1414;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 600;
}

.lottery-invite-row {
    width: 100%;
    margin-top: 0.12rem;
    padding: 0.12rem;
    border-radius: 0.12rem;
    border: 0.0066rem solid #ca1414;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.12rem;
}

.lottery-invite-row span {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 500;
}

.lottery-invite-row a {
    color: #ca1414;
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 500;
    text-decoration: none;
}

.lottery-outline-btn,
.lottery-solid-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.47rem;
    height: 0.42rem;
    margin-top: 0.12rem;
    border-radius: 1rem;
    text-decoration: none;
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 600;
}

.lottery-outline-btn {
    border: 0.01rem solid #ca1414;
    background: #fff;
    color: #ca1414;
}

.lottery-solid-btn {
    background: #ca1414;
    color: #fff;
}

.lottery-reward-list {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.lottery-reward-item {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    padding: 0.1rem 0.08rem;
    border-radius: 0.12rem;
    background: #fff;
}

.lottery-reward-thumb {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 0.08rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: #fff;
}

.lottery-reward-thumb--badge {
    border: 0.0033rem solid rgba(0, 0, 0, 0.12);
}

.lottery-reward-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lottery-reward-thumb--badge .lottery-reward-image {
    width: 0.32rem;
    height: 0.32rem;
}

.lottery-reward-copy {
    flex: 1;
    min-width: 0;
}

.lottery-reward-title {
    color: #000;
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 500;
}

.lottery-reward-desc {
    margin-top: 0.04rem;
    color: #ca1414;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 500;
}

.lottery-reward-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0.56rem;
    padding: 0 0.1rem;
    height: 0.26rem;
    border: none;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f96f34 0%, #ca1414 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 600;
    flex-shrink: 0;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.01rem;
    box-shadow: 0 0.02rem 0.04rem rgba(202, 20, 20, 0.25);
    white-space: nowrap;
}

.lottery-reward-form {
    margin: 0;
    flex-shrink: 0;
}

.lottery-reward-btn--locked {
    background: #f1e8d8;
    color: #9a7a3c;
    box-shadow: none;
    cursor: not-allowed;
    font-weight: 500;
    font-size: 0.13rem;
}

.lottery-reward-btn--claimed {
    background: #d9c7a5;
    color: #fff;
    box-shadow: none;
    cursor: default;
    font-weight: 500;
}

.lottery-reward-item.is-claimed {
    opacity: 0.85;
}

.lottery-reward-item.is-claimed .lottery-reward-title {
    color: #8a7a55;
}

.lottery-reward-item.is-ready {
    box-shadow: 0 0.04rem 0.1rem rgba(233, 1, 1, 0.15);
}

.lottery-reward-progress {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    margin-top: 0.06rem;
}

.lottery-reward-progress-bar {
    position: relative;
    flex: 1;
    height: 0.06rem;
    border-radius: 0.06rem;
    background: #f3e4c8;
    overflow: hidden;
}

.lottery-reward-progress-bar span {
    display: block;
    height: 100%;
    border-radius: 0.06rem;
    background: linear-gradient(90deg, #f96f34 0%, #e90101 100%);
    transition: width 0.4s ease;
}

.lottery-reward-progress-text {
    font-size: 0.11rem;
    font-weight: 600;
    color: #ca1414;
    letter-spacing: 0.01rem;
    min-width: 0.42rem;
    text-align: right;
}

/* ───────── 抽奖页：状态条（次数 + 签到） ───────── */
.lottery-status-bar {
    position: absolute;
    left: 0.31rem;
    right: 0.31rem;
    top: 2.29rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0.4rem;
    padding: 0 0.08rem 0 0.14rem;
    border-radius: 0.2rem;
    background: rgba(136, 0, 7, 0.62);
    border: 0.01rem solid rgba(255, 235, 184, 0.48);
    box-shadow:
        inset 0 0.01rem 0 rgba(255, 255, 255, 0.24),
        0 0.04rem 0.12rem rgba(111, 0, 5, 0.18);
    backdrop-filter: blur(0.06rem);
}

.lottery-status-chances {
    display: flex;
    align-items: center;
    gap: 0.04rem;
    color: #fff7dc;
}

.lottery-status-label {
    font-size: 0.12rem;
    line-height: 0.16rem;
    font-weight: 600;
    opacity: 0.92;
}

.lottery-status-value {
    min-width: 0.18rem;
    font-size: 0.2rem;
    line-height: 0.24rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    text-shadow: 0 0.01rem 0.02rem rgba(100, 0, 0, 0.28);
}

.lottery-status-unit {
    font-size: 0.11rem;
    line-height: 0.14rem;
    color: rgba(255, 247, 220, 0.86);
}

.lottery-status-signform {
    margin: 0;
}

.lottery-sign-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 0.28rem;
    min-width: 0.86rem;
    padding: 0 0.12rem;
    border: none;
    border-radius: 1rem;
    background: linear-gradient(180deg, #fff3b4 0%, #ffc949 100%);
    color: #9a1700;
    font-size: 0.12rem;
    font-weight: 700;
    letter-spacing: 0.01rem;
    cursor: pointer;
    box-shadow:
        inset 0 0.01rem 0 rgba(255, 255, 255, 0.75),
        0 0.02rem 0.05rem rgba(68, 0, 0, 0.22);
    font-family: inherit;
}

.lottery-sign-btn.is-done,
.lottery-sign-btn:disabled {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 247, 220, 0.74);
    cursor: default;
    box-shadow: inset 0 0 0 0.01rem rgba(255, 255, 255, 0.12);
}

/* 抽奖 9 宫格高亮动画 */
.lottery-prize-card {
    transition: transform 0.12s ease;
}
.lottery-prize-card.is-active {
    transform: scale(1.04);
    box-shadow: 0 0 0.12rem rgba(255, 242, 160, 0.9);
}

/* 抽奖按钮禁用状态 */
.lottery-draw-btn.is-disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: wait;
}

/* ───────── 邀请奖励（领取） ───────── */
.lottery-card--invite-claim {
    padding-bottom: 0.2rem;
}

.lottery-invite-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.06rem;
    margin: 0.12rem 0 0.14rem;
}

.lottery-invite-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.08rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.08rem;
    border: 0.005rem solid rgba(202, 20, 20, 0.2);
}

.lottery-invite-stat--hl {
    background: linear-gradient(180deg, #ffe8a6 0%, #ffb366 100%);
    border-color: #e09016;
}

.lottery-invite-stat-value {
    font-size: 0.22rem;
    line-height: 0.26rem;
    font-weight: 800;
    color: #c00003;
}

.lottery-invite-stat--hl .lottery-invite-stat-value {
    color: #7a2b00;
}

.lottery-invite-stat-label {
    margin-top: 0.02rem;
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: #8a6f3d;
}

.lottery-invite-claim-form {
    margin: 0;
    display: flex;
    justify-content: center;
}

.lottery-invite-claim-form .lottery-solid-btn[disabled] {
    opacity: 0.5;
    cursor: default;
}

/* 邀请分享 · 双按钮并排 */
.lottery-share-actions {
    display: flex;
    gap: 0.1rem;
    margin-top: 0.12rem;
}

.lottery-share-actions .lottery-outline-btn,
.lottery-share-actions .lottery-solid-btn {
    flex: 1;
    width: auto;
    min-width: 0;
    margin-top: 0;
    padding: 0 0.06rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.15rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.lottery-share-actions .lottery-outline-btn {
    border: 0.01rem solid #ca1414;
    background: #fff;
    color: #ca1414;
}

.lottery-share-actions .lottery-solid-btn {
    background: linear-gradient(180deg, #f96f34 0%, #e90101 100%);
    color: #fff;
    box-shadow: inset 0 0.02rem 0 rgba(255, 222, 148, 0.25);
}

/* 邀请二维码 */
.lottery-qrcode-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.08rem 0 0.14rem;
}

.lottery-qrcode-canvas {
    width: 1.66rem;
    height: 1.66rem;
    padding: 0.08rem;
    background: #fff;
    border-radius: 0.1rem;
    border: 0.01rem solid rgba(202, 20, 20, 0.3);
    box-shadow: 0 0.03rem 0.08rem rgba(122, 0, 4, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
}

.lottery-qrcode-canvas img,
.lottery-qrcode-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.lottery-qrcode-caption {
    margin-top: 0.1rem;
    font-size: 0.13rem;
    line-height: 0.18rem;
    color: #8a6f3d;
    letter-spacing: 0.02rem;
    font-weight: 500;
}

/* 邀请链接展示 */
.lottery-invite-row--link {
    gap: 0.08rem;
}
.lottery-invite-link {
    flex: 1;
    font-size: 0.12rem !important;
    line-height: 0.16rem !important;
    color: #1e5bff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500 !important;
}

/* ───────── 中奖记录 ───────── */
.lottery-record-list {
    margin-top: 0.1rem;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.1rem;
    overflow: hidden;
}

.lottery-record-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.1rem 0.12rem;
    border-bottom: 0.005rem dashed rgba(202, 20, 20, 0.18);
    font-size: 0.14rem;
    color: #3a1d12;
}
.lottery-record-row:last-child { border-bottom: none; }

.lottery-record-name {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    font-weight: 600;
}

.lottery-record-tag {
    font-style: normal;
    font-size: 0.11rem;
    padding: 0.01rem 0.06rem;
    border-radius: 0.06rem;
    background: #ffeacf;
    color: #b64a00;
    font-weight: 500;
}

.lottery-record-time {
    font-size: 0.12rem;
    color: #8a6f3d;
}

/* ───────── flash 提示条 ───────── */
.ly-flash {
    position: fixed;
    left: 50%;
    top: 16%;
    transform: translateX(-50%);
    z-index: 10001;
    padding: 10px 20px;
    background: rgba(20, 8, 8, 0.85);
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.ly-flash.is-out {
    opacity: 0;
    transform: translate(-50%, -10px);
}

/* ───────── 中奖弹窗 ───────── */
.ly-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ly-modal[hidden] { display: none; }

.ly-modal-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.ly-modal-box {
    position: relative;
    width: min(320px, 84vw);
    padding: 28px 24px 20px;
    background: linear-gradient(180deg, #fff5d3 0%, #ffe0b0 100%);
    border: 2px solid #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.ly-modal-title {
    color: #c00003;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
}

.ly-modal-prize {
    margin-top: 14px;
    padding: 14px 10px;
    font-size: 20px;
    font-weight: 800;
    color: #7a2b00;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px dashed rgba(192, 0, 3, 0.4);
    border-radius: 10px;
}

.ly-modal-image-wrap {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fff3d8 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), 0 6px 14px rgba(192, 0, 3, 0.15);
}

.ly-modal-image-wrap[hidden] { display: none; }

.ly-modal-image {
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
}

.ly-modal-extra {
    margin-top: 10px;
    font-size: 13px;
    line-height: 20px;
    color: #8a6f3d;
}

.ly-modal-btn {
    margin-top: 18px;
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(180deg, #f96f34 0%, #e90101 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(192, 0, 3, 0.25);
    font-family: inherit;
}

body.page-fund {
    background: #c00003;
}

.phone--fund {
    position: relative;
    width: 100%;
    padding-bottom: 0.72rem;
    background: #fff3f2;
    overflow: hidden;
}

.fund-hero {
    position: relative;
    height: 2.85rem;
    background: #c00003;
    overflow: hidden;
}

.fund-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 2.85rem;
    object-fit: cover;
    z-index: 1;
}

.fund-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(192, 0, 3, 0) 52%, #ca160f 100%);
    z-index: 2;
}

.fund-hero-art {
    position: absolute;
    left: 0;
    top: 0.81rem;
    width: 100%;
    height: 1.66rem;
    z-index: 4;
}

.fund-hero-art img {
    position: absolute;
    display: block;
    max-width: none;
    pointer-events: none;
}

.fund-hero-art-overlay {
    left: 0;
    top: -0.13rem;
    width: 3.75rem;
    height: 0.68rem;
    object-fit: cover;
    opacity: 0.4;
}

.fund-hero-art-title {
    left: 0.22rem;
    top: 0;
    width: 3rem;
    height: 0.78rem;
    object-fit: contain;
}

.fund-hero-art-flag {
    left: 0;
    top: 0.72rem;
    width: 1.03rem;
    height: 0.99rem;
    object-fit: contain;
}

.fund-hero-art-building {
    left: 0.78rem;
    top: 1.02rem;
    width: 2.15rem;
    height: 0.66rem;
    object-fit: contain;
}

.fund-hero-art-ribbon {
    left: -0.02rem;
    top: 0.78rem;
    width: 3.79rem;
    height: 1.05rem;
    object-fit: cover;
}

.fund-hero-art-wave {
    left: 0;
    top: 0.88rem;
    width: 3.75rem;
    height: 0.79rem;
    object-fit: cover;
}

.fund-hero-art-star {
    left: 0.06rem;
    top: 1.46rem;
    width: 0.5rem;
    height: 0.25rem;
    object-fit: cover;
}

.fund-hero-art-badge {
    right: 0.07rem;
    top: 1.33rem;
    width: 0.7rem;
    height: 0.44rem;
    object-fit: cover;
}

.fund-header-curve {
    top: 2.16rem;
    height: 1.1rem;
    z-index: 3;
}

.fund-main {
    position: relative;
    z-index: 4;
    margin-top: -0.41rem;
    padding: 0;
}

.fund-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    padding: 0 0.12rem;
}

.fund-card {
    position: relative;
    border: 0.0033rem solid rgba(0, 0, 0, 0.12);
    border-radius: 0.12rem;
    background: #fff;
    overflow: hidden;
}

.fund-card-cover {
    position: relative;
    height: 1.3rem;
    overflow: hidden;
    border-radius: 0.12rem 0.12rem 0 0;
}

.fund-card-cover-bg,
.fund-card-cover-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fund-card-cover-bg {
    object-fit: cover;
    object-position: center top;
}

.fund-card-cover-overlay {
    object-fit: cover;
    object-position: center top;
}

.fund-card-tag {
    position: absolute;
    left: 0;
    top: 0;
    width: 0.7rem;
    height: 0.18rem;
}

.fund-card-tag img {
    display: block;
    width: 100%;
    height: 100%;
}

.fund-card-tag span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff6c6;
    font-size: 0.1rem;
    line-height: 0.14rem;
    white-space: nowrap;
}

.fund-card-body {
    padding: 0.08rem 0.12rem 0.12rem;
}

.fund-card-title-block {
    display: flex;
    flex-direction: column;
    gap: 0.04rem;
}

.fund-card-subtitle-bg {
    width: 1.09rem;
    height: 0.16rem;
    object-fit: cover;
}

.fund-card-title {
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 500;
    color: #000;
}

.fund-card-divider {
    width: 100%;
    height: 0.01rem;
    margin-top: 0.12rem;
    background: url("../images/fund-card-divider.png") center/100% 100% no-repeat;
}

.fund-card-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: #fbfbfb;
    border-radius: 0.08rem;
    padding: 0.16rem;
    margin-top: 0.12rem;
    column-gap: 0.12rem;
    row-gap: 0.16rem;
    border: 1px solid #f1f1f1;
}

/* 兼容历史用法：旧的 --compact 版本与新默认布局一致 */
.fund-card-meta--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fund-card-meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.06rem;
    min-width: 0;
}

.fund-card-meta-label {
    color: #666;
    font-size: 0.12rem;
    line-height: 1;
    font-weight: 400;
}

.fund-card-meta-value {
    color: #ca1414;
    font-size: 0.16rem;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fund-card-desc {
    margin-top: 0.12rem;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.12rem;
    line-height: 0.16rem;
    font-weight: 500;
}

.fund-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.58rem;
    height: 0.32rem;
    margin: 0.12rem auto 0;
    border-radius: 0.3rem;
    background: #ca1414;
    color: #fff;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 500;
}

.fund-footer-scenic {
    position: relative;
    margin-top: 0.07rem;
    margin-bottom: -0.72rem;
    width: 100%;
    height: 2.2rem;
    z-index: 1;
    overflow: hidden;
    line-height: 0;
}

.fund-footer-scenic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.6rem;
    background: linear-gradient(180deg, #fff3f2 0%, rgba(255, 243, 242, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.fund-footer-scenic img {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
}

/* ==========================================================================
   个人中心 (profile.php) - Figma 26:6062
   ========================================================================== */
.phone--profile {
    position: relative;
    width: 100%;
    padding-bottom: 0.72rem;
    background: #970305;
    overflow: hidden;
}

.profile-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 7.62rem;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.profile-bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(151, 3, 5, 0) 0%, rgba(151, 3, 5, 0) 82%, #970305 100%);
}

.profile-status-bar {
    height: 0.32rem;
    padding: 0.04rem 0.16rem 0 0.16rem;
    z-index: 10;
}

.profile-brand {
    z-index: 4;
}

.profile-main {
    position: relative;
    z-index: 3;
    padding: 0.9rem 0.12rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

/* ---------- 用户信息卡 ---------- */
.profile-user-card {
    position: relative;
    width: 100%;
    height: 1.22rem;
    padding-top: 0.08rem;
    border-radius: 0.12rem;
    border: 1px solid #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, #fff 38%);
    overflow: hidden;
    box-sizing: border-box;
}

.profile-user-highlight {
    position: absolute;
    left: -0.325rem;
    top: 0.586rem;
    width: 4.561rem;
    height: 1.153rem;
    background: radial-gradient(ellipse at center, #fce0be 0%, rgba(252, 224, 190, 0) 70%);
    transform: rotate(-0.85deg);
    opacity: 0.5;
    pointer-events: none;
}

.profile-user-avatar {
    position: absolute;
    left: 0.1rem;
    top: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.profile-user-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-user-info {
    position: absolute;
    left: 0.78rem;
    top: 0.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.06rem;
    z-index: 2;
    color: #000;
}

.profile-user-name {
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 600;
}

.profile-user-phone {
    font-size: 0.12rem;
    line-height: 0.16rem;
    font-weight: 500;
}

.profile-user-service {
    position: absolute;
    right: 0;
    top: 0.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    height: 0.22rem;
    width: 0.84rem;
    padding: 0 0.08rem 0 0;
    border-radius: 0.22rem 0 0 0.22rem;
    background: linear-gradient(100.89deg, #ff3112 3.7%, #cb0801 99.58%);
    color: #fff;
    font-size: 0.1rem;
    line-height: 0.14rem;
    font-weight: 500;
    text-decoration: none;
    z-index: 3;
}

.profile-user-service span {
    position: relative;
    margin-right: 0.02rem;
}

.profile-user-service img {
    position: absolute;
    left: -0.06rem;
    top: -0.04rem;
    width: 0.34rem;
    height: 0.3rem;
    object-fit: cover;
    border-radius: 50%;
}

.profile-user-meta {
    position: absolute;
    left: 0.2rem;
    right: 0.2rem;
    bottom: 0.18rem;
    display: flex;
    align-items: center;
    gap: 0.24rem;
    z-index: 2;
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: #000;
}

.profile-user-status {
    display: flex;
    align-items: center;
    gap: 0.06rem;
}

.profile-user-status-label {
    font-weight: 500;
}

.profile-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.02rem;
    height: 0.14rem;
    padding: 0 0.03rem 0 0.01rem;
    border-radius: 0.3rem;
    border: 0.66px solid #ca1414;
    font-size: 0.1rem;
    line-height: 0.14rem;
    font-weight: 500;
    color: #ca1414;
}

.profile-tag--success {
    border-color: #0c922b;
    color: #0c922b;
}

.profile-tag-check {
    display: inline-block;
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 50%;
    background: #ca1414;
    position: relative;
}

.profile-tag-check::after {
    content: "";
    position: absolute;
    left: 0.029rem;
    top: 0.055rem;
    width: 0.035rem;
    height: 0.015rem;
    border-left: 1.2px solid #fff;
    border-bottom: 1.2px solid #fff;
    transform: rotate(-45deg);
}

.profile-tag-check--green {
    background: #0c922b;
}

.profile-user-invite {
    font-weight: 500;
}

/* ---------- 通用卡片 ---------- */
.profile-card {
    position: relative;
    width: 100%;
    border-radius: 0.12rem;
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
}

.profile-card-header {
    padding: 0.12rem 0.12rem 0.09rem;
}

.profile-card-header h2 {
    margin: 0;
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 600;
    color: #000;
}

/* ---------- 帮扶资金 ---------- */
.profile-fund {
    padding-bottom: 0.16rem;
}

.profile-fund-balance {
    margin: 0 0.12rem;
    padding: 0.12rem;
    border-radius: 0.08rem;
    background: #ca1414;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.1rem;
    color: #fff;
}

.profile-fund-balance-label {
    font-size: 0.12rem;
    line-height: 0.16rem;
    opacity: 0.6;
}

.profile-fund-balance-value {
    margin-top: 0.04rem;
    font-size: 0.24rem;
    line-height: 0.28rem;
    font-weight: 500;
}

.profile-fund-balance-actions {
    display: flex;
    gap: 0.1rem;
}

.profile-fund-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 0.24rem;
    padding: 0 0.12rem;
    border-radius: 0.3rem;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 500;
    text-decoration: none;
}

.profile-fund-btn--solid {
    background: #fff;
    color: #ca1414;
}

.profile-fund-btn--outline {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.profile-fund-btn.is-disabled {
    background: rgba(255, 255, 255, 0.55);
    color: #888;
    cursor: not-allowed;
    pointer-events: auto;
}

/* ---------- 政务风格通用提示弹窗 ---------- */
.gov-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.gov-modal[hidden] { display: none; }

.gov-modal-mask {
    position: absolute;
    inset: 0;
    background: rgba(20, 8, 8, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.gov-modal.is-open .gov-modal-mask { opacity: 1; }

.gov-modal-card {
    position: relative;
    width: 100%;
    max-width: 340px;
    background: linear-gradient(180deg, #fff 0%, #fff7f5 100%);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(154, 8, 8, 0.35);
    border: 1px solid rgba(202, 20, 20, 0.18);
    overflow: hidden;
    transform: translateY(12px) scale(0.96);
    opacity: 0;
    transition: transform 0.28s cubic-bezier(.2,.85,.4,1.2), opacity 0.24s ease;
}

.gov-modal.is-open .gov-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.gov-modal-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px 14px;
    background: linear-gradient(135deg, #c41212 0%, #8a0808 100%);
    color: #fff;
}

.gov-modal-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: linear-gradient(90deg, #f6d28a 0%, #f0a93b 50%, #f6d28a 100%);
}

.gov-modal-emblem {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 222, 173, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gov-modal-emblem img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.25));
}

.gov-modal-header-text { flex: 1; min-width: 0; }

.gov-modal-title {
    font-size: 17px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.gov-modal-subtitle {
    margin-top: 2px;
    font-size: 11px;
    line-height: 16px;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.gov-modal-body {
    padding: 20px 22px 8px;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
}

.gov-modal-body p { margin: 0 0 10px; }
.gov-modal-body p:last-child { margin-bottom: 0; }
.gov-modal-body strong { color: #c41212; font-weight: 600; }

.gov-modal-lead {
    padding: 10px 12px;
    background: linear-gradient(180deg, rgba(196,18,18,0.06), rgba(196,18,18,0.02));
    border-left: 3px solid #c41212;
    border-radius: 4px;
    margin-bottom: 12px !important;
}

.gov-modal-actions {
    display: flex;
    gap: 10px;
    padding: 14px 20px 20px;
}

.gov-modal-btn {
    flex: 1;
    height: 40px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.gov-modal-btn--ghost {
    background: #fff;
    color: #555;
    border: 1px solid #ddd;
}

.gov-modal-btn--ghost:active { background: #f5f5f5; }

.gov-modal-btn--primary {
    background: linear-gradient(135deg, #d51616 0%, #970305 100%);
    color: #fff;
    box-shadow: 0 6px 14px rgba(154, 8, 8, 0.32);
}

.gov-modal-btn--primary:active {
    transform: translateY(1px);
    box-shadow: 0 3px 8px rgba(154, 8, 8, 0.32);
}

/* ---------- Banner ---------- */
.profile-banner {
    position: relative;
    width: 100%;
    height: 0.98rem;
    border: 0.33px solid #fff;
    border-radius: 0.12rem;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

.profile-banner-bg,
.profile-banner-overlay,
.profile-banner-ribbon,
.profile-banner-flag,
.profile-banner-building,
.profile-banner-wave,
.profile-banner-star,
.profile-banner-badge,
.profile-banner-title {
    position: absolute;
    pointer-events: none;
}

.profile-banner-bg {
    left: -0.12rem;
    top: 0;
    width: 3.75rem;
    height: 1.6rem;
    object-fit: cover;
}

.profile-banner-overlay {
    left: 0;
    top: -0.32rem;
    width: 100%;
    height: 0.64rem;
    opacity: 0.4;
    object-fit: cover;
}

.profile-banner-ribbon {
    left: -0.06rem;
    top: 0.29rem;
    width: 3.73rem;
    height: 1.02rem;
    object-fit: cover;
}

.profile-banner-building {
    left: 0;
    top: 0.29rem;
    width: 0.83rem;
    height: 0.81rem;
    object-fit: cover;
}

.profile-banner-flag {
    left: 0.73rem;
    top: 0.43rem;
    width: 2.01rem;
    height: 0.62rem;
    object-fit: cover;
}

.profile-banner-wave {
    left: 0;
    top: 0.46rem;
    width: 100%;
    height: 0.74rem;
    object-fit: cover;
}

.profile-banner-star {
    left: 2.79rem;
    top: 0.73rem;
    width: 0.66rem;
    height: 0.41rem;
    object-fit: cover;
    object-position: top;
}

.profile-banner-star2 {
    left: 2.99rem;
    top: 0.66rem;
    width: 0.45rem;
    height: 0.28rem;
    object-fit: cover;
    object-position: top;
}

.profile-banner-badge {
    left: 0.06rem;
    top: 0.8rem;
    width: 0.47rem;
    height: 0.23rem;
    object-fit: contain;
}

.profile-banner-title {
    left: 0.6rem;
    top: 0.05rem;
    width: 2.42rem;
    height: 0.63rem;
    object-fit: contain;
    z-index: 3;
}

/* ---------- 我的钱包 ---------- */
.profile-wallet {
    position: relative;
    min-height: 2.18rem;
    padding-bottom: 0.16rem;
}

.profile-wallet-coin {
    position: absolute;
    right: 0.09rem;
    top: -0.1rem;
    width: 1.06rem;
    height: 1.12rem;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
    z-index: 1;
}

.profile-wallet-today {
    position: relative;
    padding: 0 0.12rem 0.04rem;
    z-index: 2;
}

.profile-wallet-today-label {
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: rgba(0, 0, 0, 0.6);
}

.profile-wallet-today-value {
    margin-top: 0.04rem;
    font-size: 0.22rem;
    line-height: 0.26rem;
    font-weight: 500;
    color: #ca1414;
}

.profile-wallet-stats {
    position: relative;
    margin: 0.08rem 0.12rem 0;
    padding: 0.08rem 0.42rem;
    border-radius: 0.08rem;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.profile-wallet-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0.1rem;
    margin: 0.12rem 0.12rem 0;
}

.profile-wallet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 0.34rem;
    border-radius: 0.3rem;
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 600;
    text-decoration: none;
}

.profile-wallet-btn--solid {
    background: #ca1414;
    color: #fff;
}

.profile-wallet-btn--outline {
    border: 1px solid #ca1414;
    color: #ca1414;
    background: #fff;
}

.profile-wallet-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.04rem;
}

.profile-wallet-stat-label {
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: rgba(0, 0, 0, 0.6);
}

.profile-wallet-stat-value {
    font-size: 0.18rem;
    line-height: 0.22rem;
    font-weight: 500;
    color: #000;
}

.profile-wallet-stats-divider {
    width: 1px;
    height: 0.38rem;
    background: rgba(0, 0, 0, 0.1);
}

/* ---------- 我的持有 ---------- */
.profile-holdings {
    padding-bottom: 0.16rem;
}

.profile-holdings-list {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    padding: 0 0.12rem;
}

.profile-holdings-empty {
    margin: 0 0.12rem;
    padding: 0.22rem 0.12rem;
    border-radius: 0.08rem;
    background: rgba(0, 0, 0, 0.04);
    text-align: center;
}

.profile-holdings-empty-title {
    font-size: 0.15rem;
    line-height: 0.2rem;
    font-weight: 600;
    color: #333;
}

.profile-holdings-empty-desc {
    margin-top: 0.04rem;
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: rgba(0, 0, 0, 0.5);
}

.profile-holdings-divider {
    height: 0.33px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 -0.12rem;
}

.profile-holding {
    display: flex;
    gap: 0.08rem;
    align-items: flex-start;
}

.profile-holding-cover {
    width: 0.62rem;
    height: 0.78rem;
    border-radius: 0.08rem;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-holding-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    min-width: 0;
}

.profile-holding-top {
    display: flex;
    flex-direction: column;
    gap: 0.04rem;
}

.profile-holding-title {
    font-size: 0.16rem;
    line-height: 0.2rem;
    font-weight: 500;
    color: #000;
}

.profile-holding-tags {
    display: flex;
    gap: 0.04rem;
}

.profile-mini-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 0.14rem;
    padding: 0 0.04rem;
    border-radius: 0.02rem;
    border: 0.5px solid #000;
    font-size: 0.1rem;
    line-height: 0.14rem;
    color: #000;
}

.profile-mini-tag--danger {
    border-color: #ca1414;
    color: #ca1414;
}

.profile-holding-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.08rem 0.12rem;
    border-radius: 0.04rem;
    background: rgba(0, 0, 0, 0.05);
    font-size: 0.1rem;
    line-height: 0.14rem;
    font-weight: 500;
    color: #000;
}

.profile-holding-meta-item {
    display: flex;
    align-items: center;
    gap: 0.02rem;
}

.profile-holding-meta-value {
    color: #ca1414;
    opacity: 0.9;
}

/* ---------- 提现 ---------- */
.page-withdraw {
    background: #f6f7fb;
}

.phone--withdraw {
    position: relative;
    min-height: 100vh;
    padding-bottom: 0.3rem;
    background: #f6f7fb;
}

.withdraw-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0.52rem;
    padding: 0 0.16rem;
    background: #ca1414;
    color: #fff;
}

.withdraw-back,
.withdraw-topbar-right {
    width: 0.32rem;
    height: 0.32rem;
}

.withdraw-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.withdraw-back span {
    width: 0.08rem;
    height: 0.08rem;
    border-left: 0.02rem solid #fff;
    border-bottom: 0.02rem solid #fff;
    transform: rotate(45deg) translate(0.02rem, -0.02rem);
}

.withdraw-topbar-title {
    font-size: 0.18rem;
    line-height: 0.24rem;
    font-weight: 700;
}

.withdraw-main {
    padding: 0.14rem;
}

.withdraw-balance-card,
.withdraw-form,
.withdraw-record,
.withdraw-empty {
    border-radius: 0.16rem;
    background: #fff;
    box-shadow: 0 0.06rem 0.18rem rgba(32, 38, 55, 0.06);
}

.withdraw-balance-card {
    padding: 0.18rem 0.16rem;
    background: linear-gradient(135deg, #d8171f 0%, #a6070d 100%);
    color: #fff;
}

.withdraw-balance-label {
    font-size: 0.13rem;
    line-height: 0.18rem;
    opacity: 0.75;
}

.withdraw-balance-value {
    margin-top: 0.06rem;
    font-size: 0.3rem;
    line-height: 0.36rem;
    font-weight: 700;
}

.withdraw-balance-value span {
    margin-left: 0.04rem;
    font-size: 0.14rem;
    font-weight: 500;
}

.withdraw-alert {
    margin-top: 0.12rem;
    padding: 0.1rem 0.12rem;
    border-radius: 0.12rem;
    background: #fff1f1;
    color: #b60f16;
    font-size: 0.13rem;
    line-height: 0.19rem;
}

.withdraw-alert--success {
    background: #effaf0;
    color: #23823a;
}

.withdraw-form {
    margin-top: 0.12rem;
    padding: 0.16rem;
}

.withdraw-field + .withdraw-field {
    margin-top: 0.14rem;
}

.withdraw-field-label {
    display: block;
    margin-bottom: 0.08rem;
    font-size: 0.13rem;
    line-height: 0.18rem;
    font-weight: 600;
    color: #303542;
}

.withdraw-field input[type="text"],
.withdraw-field input[type="number"] {
    width: 100%;
    height: 0.42rem;
    padding: 0 0.12rem;
    border: 0.01rem solid #e6e8ef;
    border-radius: 0.1rem;
    background: #fafbfe;
    color: #222733;
    font-size: 0.14rem;
    font-family: inherit;
    box-sizing: border-box;
}

.withdraw-field input[readonly],
.withdraw-input-locked {
    background: #f1f3f8;
    color: #5f6470;
    cursor: not-allowed;
    border-color: #dde0e8;
    font-weight: 600;
    letter-spacing: 1px;
}

.withdraw-field input[readonly]:focus,
.withdraw-input-locked:focus {
    outline: none;
    border-color: #dde0e8;
    box-shadow: none;
}

.withdraw-field-hint {
    margin-top: 0.06rem;
    padding: 0.06rem 0.1rem;
    background: #fff7e8;
    border-left: 0.02rem solid #c9911d;
    color: #8a6f3d;
    font-size: 0.11rem;
    line-height: 0.16rem;
    border-radius: 0.04rem;
    letter-spacing: 0.02rem;
}

.withdraw-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.08rem;
}

.withdraw-method {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.06rem;
    min-height: 0.82rem;
    margin: 0;
    padding: 0.12rem 0.08rem 0.1rem;
    border: 0.01rem solid #e6e8ef;
    border-radius: 0.14rem;
    background: #fafbfe;
    color: #303542;
    font-size: 0.14rem;
    font-weight: 600;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.withdraw-method input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.withdraw-method img {
    width: 0.32rem;
    height: 0.32rem;
    flex: 0 0 auto;
    object-fit: contain;
}

.withdraw-method span {
    display: block;
    line-height: 0.18rem;
}

.withdraw-method:has(input:checked) {
    border-color: #ca1414;
    background: #fff7f7;
    color: #ca1414;
    box-shadow: 0 0.04rem 0.1rem rgba(202, 20, 20, 0.08);
}

.withdraw-method:has(input:checked)::after {
    content: '';
    position: absolute;
    right: 0.08rem;
    top: 0.08rem;
    width: 0.08rem;
    height: 0.05rem;
    border-left: 0.018rem solid #ca1414;
    border-bottom: 0.018rem solid #ca1414;
    transform: rotate(-45deg);
}

.withdraw-tip {
    margin-top: 0.14rem;
    color: #8b92a1;
    font-size: 0.12rem;
    line-height: 0.18rem;
}

.withdraw-submit {
    margin-top: 0.18rem;
    width: 100%;
    height: 0.46rem;
    border: none;
    border-radius: 1rem;
    background: #ca1414;
    color: #fff;
    font-size: 0.16rem;
    font-weight: 700;
    font-family: inherit;
}

.withdraw-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.08rem;
    margin-bottom: 0.12rem;
}

.withdraw-tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0.34rem;
    border-radius: 1rem;
    background: #fff;
    color: #5f6675;
    font-size: 0.13rem;
    text-decoration: none;
}

.withdraw-tabs a.is-active {
    background: #ca1414;
    color: #fff;
}

.withdraw-empty {
    padding: 0.28rem 0.16rem;
    text-align: center;
}

.withdraw-empty-title {
    font-size: 0.16rem;
    font-weight: 700;
    color: #303542;
}

.withdraw-empty-desc {
    margin-top: 0.06rem;
    font-size: 0.12rem;
    color: #8b92a1;
}

.withdraw-record-list {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.withdraw-record {
    position: relative;
    padding: 0.14rem;
}

.withdraw-record-head {
    display: flex;
    justify-content: space-between;
    gap: 0.12rem;
}

.withdraw-record-title {
    font-size: 0.15rem;
    line-height: 0.2rem;
    font-weight: 700;
    color: #303542;
}

.withdraw-record-time {
    margin-top: 0.02rem;
    font-size: 0.11rem;
    line-height: 0.15rem;
    color: #8b92a1;
}

.withdraw-record-amount {
    color: #ca1414;
    font-size: 0.18rem;
    line-height: 0.22rem;
    font-weight: 700;
}

.withdraw-record-meta {
    display: flex;
    flex-direction: column;
    gap: 0.03rem;
    margin-top: 0.1rem;
    color: #5f6675;
    font-size: 0.12rem;
    line-height: 0.17rem;
}

.withdraw-record-status {
    position: absolute;
    right: 0.14rem;
    bottom: 0.14rem;
    padding: 0.02rem 0.08rem;
    border-radius: 1rem;
    font-size: 0.11rem;
    line-height: 0.16rem;
}

.withdraw-record-status--pending {
    background: #fff4dc;
    color: #aa6800;
}

.withdraw-record-status--paid {
    background: #effaf0;
    color: #23823a;
}

.withdraw-record-status--rejected {
    background: #fff1f1;
    color: #b60f16;
}

.withdraw-record-remark {
    margin-top: 0.08rem;
    color: #b60f16;
    font-size: 0.12rem;
    line-height: 0.17rem;
}

/* ---------- 系统功能 ---------- */
.profile-actions {
    padding-bottom: 0.12rem;
    padding-top: 0.04rem;
    border: 0.33px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.02rem 0.02rem rgba(0, 0, 0, 0.06);
}

.profile-card-header--plain h2 {
    font-weight: 500;
}

.profile-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0.12rem;
    padding: 0 0.24rem;
}

.profile-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.04rem;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.85);
}

.profile-action img {
    width: 0.36rem;
    height: 0.36rem;
    object-fit: contain;
}

.profile-action span {
    font-size: 0.12rem;
    line-height: 0.16rem;
}

/* ==========================================================================
 * 实名认证页 (verify.php)
 * 政府风格：深红主色 + 金色衬托 + 庄重衬线标题
 * ========================================================================== */

.page-verify {
    background: #f5ebd9;
    min-height: 100vh;
}

.phone--verify {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% 0, #ca1414 0%, #8a0006 40%, #5c0205 100%),
        #5c0205;
    overflow: hidden;
    padding-bottom: 40px;
}

.phone--verify::before {
    content: "";
    position: absolute;
    inset: 186px 0 0;
    background: linear-gradient(180deg, #fff5ea 0%, #fff 140px, #fff 100%);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

/* --- Header --- */
.verify-header {
    position: relative;
    width: 100%;
    height: 246px;
    overflow: hidden;
    z-index: 2;
}

.verify-header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9;
}

.verify-header-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 70%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 70%),
        linear-gradient(180deg, rgba(176, 0, 14, 0.15) 0%, rgba(151, 6, 0, 0.55) 70%, rgba(151, 6, 0, 0.7) 100%);
}

.verify-brand {
    position: absolute;
    top: 44px;
    left: 18px;
    right: 18px;
    z-index: 3;
}

.verify-title-block {
    position: absolute;
    top: 118px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    white-space: nowrap;
}

.verify-title {
    font-size: 26px;
    line-height: 34px;
    color: #ffe9a2;
    font-weight: 700;
    margin: 0;
    letter-spacing: 8px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.35),
        0 0 1px rgba(255, 215, 120, 0.6);
    font-family: "SimSun", "STSong", "PingFang SC", serif;
}

.verify-title-decor {
    width: 38px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,225,160,0) 0%, #ffd480 50%, rgba(255,225,160,0) 100%);
    position: relative;
}

.verify-title-decor::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #ffd480;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 4px rgba(255, 215, 120, 0.7);
}

.verify-title-decor--left::before {
    right: -3px;
}

.verify-title-decor--right::before {
    left: -3px;
}

.verify-subtitle {
    position: absolute;
    top: 160px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255, 233, 162, 0.7);
    font-family: "Arial", sans-serif;
    z-index: 3;
}

/* --- Main --- */
.verify-main {
    position: relative;
    z-index: 3;
    margin-top: -60px;
    padding: 0 20px;
}

/* --- 通知条 --- */
.verify-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    background: #fff8e8;
    border: 1px solid #f5c77a;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(176, 0, 14, 0.06);
}

.verify-notice-badge {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ca1414;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    font-family: "Arial", sans-serif;
    margin-top: 1px;
}

.verify-notice-text {
    flex: 1 1 auto;
    font-size: 12px;
    line-height: 18px;
    color: #6b4a0a;
}

.verify-notice-text strong {
    display: block;
    color: #b1000e;
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 13px;
}

/* --- 主卡片 --- */
.verify-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #d8b35a;
    border-radius: 10px;
    padding: 36px 20px 22px;
    box-shadow: 0 6px 18px rgba(151, 6, 0, 0.12);
}

.verify-card::before,
.verify-card::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    height: 1px;
    background: #d8b35a;
    opacity: .55;
}

.verify-card::before {
    top: 6px;
}

.verify-card::after {
    bottom: 6px;
}

.verify-card-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #e13c2c 0%, #b1000e 100%);
    color: #ffe9a2;
    padding: 6px 20px 8px;
    border-radius: 0 0 10px 10px;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(176, 0, 14, 0.3);
    font-family: "SimSun", "STSong", serif;
}

.verify-card-ribbon-text {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 2px;
}

.verify-card-ribbon::before,
.verify-card-ribbon::after {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    background: #ffd480;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.verify-field {
    margin-top: 14px;
}

.verify-field-label {
    display: block;
    font-size: 14px;
    color: #5c0205;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: "SimSun", "STSong", "PingFang SC", serif;
}

.verify-required {
    color: #ca1414;
    margin-right: 4px;
}

.verify-field-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    font-size: 15px;
    color: #1a1a1a;
    background: #fff8ed;
    border: 1px solid #d8b35a;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
    transition: border-color .15s, box-shadow .15s;
    letter-spacing: .5px;
}

.verify-field-input::placeholder {
    color: #b29867;
}

.verify-field-input:focus {
    border-color: #b1000e;
    box-shadow: 0 0 0 3px rgba(202, 20, 20, 0.12);
    background: #fff;
}

.verify-error {
    margin-top: 12px;
    padding: 8px 12px;
    background: #fde8e8;
    border-left: 3px solid #ca1414;
    color: #ca1414;
    font-size: 13px;
    border-radius: 3px;
}

.verify-field-note {
    margin-top: 10px;
    padding: 8px 12px;
    background: #fff8e1;
    border-left: 3px solid #c9911d;
    color: #8a6f3d;
    font-size: 12px;
    line-height: 18px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.verify-submit {
    display: block;
    width: 100%;
    height: 46px;
    margin-top: 22px;
    background: linear-gradient(180deg, #e13c2c 0%, #b1000e 50%, #970600 100%);
    color: #ffe9a2;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    border: 1px solid #8a0006;
    border-radius: 6px;
    cursor: pointer;
    box-shadow:
        0 4px 10px rgba(151, 6, 0, 0.3),
        inset 0 1px 0 rgba(255, 222, 148, 0.3);
    font-family: "SimSun", "STSong", serif;
}

.verify-submit:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(151, 6, 0, 0.3);
}

.verify-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    margin-top: 12px;
    background: #fffaf0;
    color: #970600;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    border: 1px solid rgba(151, 6, 0, 0.45);
    border-radius: 6px;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.verify-logout:active {
    background: #fff1e0;
    border-color: rgba(151, 6, 0, 0.7);
    transform: translateY(1px);
}

.verify-agreement {
    margin-top: 14px;
    font-size: 11px;
    color: #8a6f3d;
    line-height: 16px;
    text-align: center;
}

.verify-agreement a {
    color: #b1000e;
    text-decoration: none;
}

/* --- Footer --- */
.verify-footer {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verify-footer-line {
    flex: 0 0 36px;
    height: 1px;
    background: linear-gradient(90deg, rgba(216,179,90,0) 0%, #d8b35a 50%, rgba(216,179,90,0) 100%);
}

.verify-footer-text {
    font-size: 11px;
    letter-spacing: 2px;
    color: #d8b35a;
    font-family: "SimSun", serif;
}

.verify-bottom-gesture {
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    z-index: 4;
}

/* ========== 个人中心 · 实名成功提示 ========== */
.profile-verified-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(180deg, #ffd480 0%, #e5b24e 100%);
    color: #5c0205;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 22px;
    box-shadow:
        0 6px 18px rgba(151, 6, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    z-index: 9999;
    transition: opacity .4s ease;
    font-family: "SimSun", "STSong", "PingFang SC", serif;
    white-space: nowrap;
}

.profile-verified-toast-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #b1000e;
    position: relative;
    flex-shrink: 0;
}

.profile-verified-toast-icon::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 8px;
    width: 4px;
    height: 8px;
    border: solid #ffd480;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ========= 我的证件（credentials.php）========= */

.page-credentials .verify-main {
    padding-bottom: 36px;
}

/* 顶部返回按钮 */
.cred-back {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 28px;
    padding: 0 12px 0 8px;
    background: rgba(255, 245, 215, 0.92);
    color: #970600;
    font-size: 12px;
    border-radius: 999px;
    border: 1px solid rgba(201, 164, 86, 0.6);
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.cred-back-arrow {
    width: 10px;
    height: 10px;
    border: solid #970600;
    border-width: 1.5px 0 0 1.5px;
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: 2px;
}

.cred-back-text {
    font-weight: 600;
    letter-spacing: 1px;
}

/* 证件卡片 */
.cred-card {
    position: relative;
    margin-top: 16px;
    padding: 16px;
    background:
        linear-gradient(180deg, #fffbea 0%, #faedcb 100%);
    border: 1px solid rgba(151, 6, 0, 0.3);
    border-radius: 14px;
    box-shadow:
        0 10px 24px rgba(122, 0, 4, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.cred-card::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(201, 164, 86, 0.55);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.cred-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(151, 6, 0, 0.3);
}

.cred-card-emblem {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
}

.cred-card-head-text {
    flex: 1;
    min-width: 0;
}

.cred-card-head-title {
    font-size: 16px;
    font-weight: 800;
    color: #970600;
    letter-spacing: 2px;
}

.cred-card-head-sub {
    margin-top: 2px;
    font-size: 9px;
    color: #8a6f3d;
    letter-spacing: 0.5px;
    line-height: 12px;
}

.cred-card-status {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(151, 6, 0, 0.1);
    color: #970600;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid rgba(151, 6, 0, 0.35);
    white-space: nowrap;
}

.cred-card-status--green {
    color: #137a3d;
    background: rgba(19, 122, 61, 0.1);
    border-color: rgba(19, 122, 61, 0.35);
}

.cred-card-status-check {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #970600;
    flex-shrink: 0;
}

.cred-card-status-check::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 5px;
    width: 2px;
    height: 4px;
    border: solid #ffffff;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.cred-card-status-check--green {
    background: #137a3d;
}

.cred-card-body {
    position: relative;
    z-index: 2;
    padding-top: 8px;
}

.cred-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted rgba(151, 6, 0, 0.18);
}

.cred-row:last-child {
    border-bottom: none;
}

.cred-label {
    flex: 0 0 84px;
    color: #8a6f3d;
    font-size: 13px;
    letter-spacing: 1px;
}

.cred-value {
    flex: 1;
    color: #2b1f0e;
    font-size: 14px;
    text-align: right;
    word-break: break-all;
    font-weight: 600;
}

.cred-value--mono {
    font-family: Menlo, Consolas, "SFMono-Regular", "Roboto Mono", monospace;
    color: #970600;
    letter-spacing: 1.5px;
}

.cred-value--green {
    color: #137a3d;
}

.cred-card-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
    font-size: 38px;
    font-weight: 900;
    color: rgba(151, 6, 0, 0.06);
    letter-spacing: 8px;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

.credentials-hint {
    margin-top: 20px;
    padding: 0 10px;
    font-size: 12px;
    color: #8a6f3d;
    text-align: center;
    line-height: 18px;
}

.credentials-hint a {
    color: #970600;
    font-weight: 600;
    text-decoration: none;
}

/* 查看证书按钮 */
.cred-card-actions {
    position: relative;
    z-index: 2;
    margin: 14px 16px 18px;
    display: flex;
    justify-content: center;
}

.cred-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, #d51616 0%, #970305 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(246, 210, 138, 0.55);
    box-shadow: 0 8px 18px rgba(151, 6, 0, 0.32),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cred-view-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(151, 6, 0, 0.32),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cred-view-btn-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: linear-gradient(135deg, #f6d28a 0%, #f0a93b 100%);
    position: relative;
    flex-shrink: 0;
}

.cred-view-btn-icon::before {
    content: "";
    position: absolute;
    inset: 3px 2px 5px 2px;
    background: rgba(151, 6, 0, 0.85);
    border-radius: 1px;
}

.cred-view-btn-icon::after {
    content: "★";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #f6d28a;
    font-size: 8px;
    line-height: 1;
}

/* 我的银行卡 */
.cred-card--bank {
    background: linear-gradient(180deg, #fff7e8 0%, #f4e2b6 100%);
}

.cred-card-status--muted {
    color: #8a6f3d;
    background: rgba(138, 111, 61, 0.12);
    border-color: rgba(138, 111, 61, 0.35);
}

.bank-visual {
    position: relative;
    z-index: 2;
    margin: 14px 0 6px;
    padding: 16px 16px 14px;
    border-radius: 12px;
    color: #fff7e0;
    background:
        radial-gradient(120% 160% at 0% 0%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(135deg, #b80a0a 0%, #8a0303 55%, #5a0202 100%);
    box-shadow:
        0 12px 22px rgba(122, 0, 4, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(246, 210, 138, 0.35);
    overflow: hidden;
}

.bank-visual::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 210, 138, 0.35) 0%, rgba(246, 210, 138, 0) 70%);
    pointer-events: none;
}

.bank-visual::after {
    content: "";
    position: absolute;
    left: -30px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.bank-visual-chip {
    width: 36px;
    height: 26px;
    border-radius: 5px;
    background: linear-gradient(135deg, #f6d28a 0%, #c9911d 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    position: relative;
}

.bank-visual-chip::before,
.bank-visual-chip::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    height: 1px;
    background: rgba(0, 0, 0, 0.25);
}

.bank-visual-chip::before { top: 9px; }
.bank-visual-chip::after  { top: 16px; }

.bank-visual-bank {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffe6a8;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.bank-visual-number {
    margin-top: 10px;
    font-family: Menlo, Consolas, "SFMono-Regular", "Roboto Mono", monospace;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.bank-visual-foot {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.bank-visual-foot-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255, 230, 168, 0.85);
}

.bank-visual-foot-value {
    margin-top: 2px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.bank-empty {
    padding: 24px 8px 14px;
    text-align: center;
}

.bank-empty-icon {
    width: 56px;
    height: 36px;
    margin: 0 auto 12px;
    border-radius: 6px;
    background: linear-gradient(135deg, #f6d28a 0%, #c9911d 100%);
    box-shadow: inset 0 0 0 1px rgba(151, 6, 0, 0.25);
    position: relative;
}

.bank-empty-icon::before {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    top: 8px;
    height: 4px;
    background: rgba(151, 6, 0, 0.55);
    border-radius: 1px;
}

.bank-empty-icon::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 24px;
    bottom: 6px;
    height: 3px;
    background: rgba(151, 6, 0, 0.45);
    border-radius: 1px;
}

.bank-empty-title {
    font-size: 15px;
    font-weight: 700;
    color: #970600;
    letter-spacing: 1px;
}

.bank-empty-tip {
    margin-top: 6px;
    font-size: 12px;
    color: #8a6f3d;
    letter-spacing: 0.5px;
}

/* 证书全屏预览 */
.cert-viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    flex-direction: column;
}

.cert-viewer[hidden] { display: none; }

.cert-viewer-bar {
    flex-shrink: 0;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.cert-viewer-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.cert-viewer-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-viewer-close:active { background: rgba(255, 255, 255, 0.2); }

.cert-viewer-scroll {
    flex: 1;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 12px 32px;
    text-align: center;
}

.cert-viewer-img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

/* ========================================================
   建档状态机（archive.php）
   ======================================================== */

.page-archive-form .archive-main {
    padding-bottom: 120px;
}

/* 通用主按钮 / 次按钮 */
.arc-primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    margin-top: 24px;
    background: linear-gradient(180deg, #e79998 0%, #d87d7b 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    position: relative;
    z-index: 2;
}

.arc-primary-btn:active {
    transform: translateY(1px);
    background: linear-gradient(180deg, #d87d7b 0%, #cc706e 100%);
}

.arc-primary-btn:disabled {
    opacity: 0.9;
    background: #e19d9b;
    color: #fff;
    cursor: not-allowed;
    box-shadow: none;
}

.arc-primary-btn--gold {
    background: linear-gradient(180deg, #f8d97a 0%, #c9a456 60%, #a38438 100%);
    color: #5a2d00;
    border-color: #a38438;
    box-shadow: 0 6px 14px rgba(151, 118, 36, 0.3);
}

.arc-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    margin-top: 12px;
    background: #fffaf0;
    color: #970600;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    border: 1px solid rgba(151, 6, 0, 0.45);
    border-radius: 8px;
    text-decoration: none;
}

.arc-inline-notice {
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 20px;
    border: 1px solid transparent;
}

.arc-inline-notice--warn {
    background: #fff2ea;
    color: #a42a0a;
    border-color: rgba(180, 40, 15, 0.35);
}

.arc-inline-notice--info {
    background: #fff8e4;
    color: #8a6f3d;
    border-color: rgba(180, 140, 60, 0.35);
}

/* ---------- 阶段 1：欢迎 ---------- */
.arc-stage--start {
    padding: 0 14px;
}

.arc-start-hero {
    margin-top: 20px;
    padding: 26px 16px 22px;
    background: linear-gradient(180deg, #fff9e9 0%, #fbefd1 100%);
    border: 1px solid rgba(151, 6, 0, 0.28);
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(122, 0, 4, 0.08);
}

.arc-start-emblem img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.arc-start-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #970600;
    letter-spacing: 3px;
}

.arc-start-subtitle {
    margin-top: 4px;
    font-size: 10px;
    color: #8a6f3d;
    letter-spacing: 1px;
}

.arc-start-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 14px 4px;
    background: #fff;
    border: 1px solid rgba(151, 6, 0, 0.15);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(122, 0, 4, 0.06);
}

.arc-start-step {
    flex: 0 0 auto;
    text-align: center;
    font-size: 11px;
    color: #8a6f3d;
}

.arc-start-step > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0 auto 4px;
    border-radius: 50%;
    background: linear-gradient(180deg, #e13c2c 0%, #970600 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.arc-start-step--gold > span {
    background: linear-gradient(180deg, #f8d97a 0%, #c9a456 100%);
    color: #5a2d00;
}

.arc-start-step-line {
    flex: 1;
    height: 1px;
    margin: 0 4px;
    background: repeating-linear-gradient(90deg, rgba(151, 6, 0, 0.35) 0 4px, transparent 4px 8px);
    position: relative;
    top: -8px;
}

/* ---------- 阶段 2：需要邀请 ---------- */
.arc-stage--invite {
    padding: 0 14px;
}

.arc-invite-hero {
    margin-top: 20px;
    padding: 22px 16px 20px;
    background: #fff;
    border: 1px solid rgba(151, 6, 0, 0.25);
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(122, 0, 4, 0.06);
}

.arc-invite-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffd580 0%, #e0a03a 100%);
    color: #5a2d00;
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.6);
}

.arc-invite-title {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #970600;
    letter-spacing: 1px;
}

.arc-invite-desc {
    margin-top: 8px;
    font-size: 13px;
    color: #6b5733;
    line-height: 20px;
}

.arc-invite-card {
    margin-top: 14px;
    padding: 16px;
    background: linear-gradient(180deg, #fff9e9 0%, #fbefd1 100%);
    border: 1px solid rgba(201, 164, 86, 0.65);
    border-radius: 12px;
}

.arc-invite-row {
    display: flex;
    align-items: center;
    padding: 6px 0;
}

.arc-invite-row--sub {
    border-top: 1px dashed rgba(151, 6, 0, 0.2);
    padding-top: 10px;
    margin-top: 6px;
}

.arc-invite-label {
    flex: 0 0 80px;
    color: #8a6f3d;
    font-size: 13px;
}

.arc-invite-code {
    flex: 1;
    color: #970600;
    font-family: Menlo, Consolas, "SFMono-Regular", monospace;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
}

.arc-invite-count {
    flex: 1;
    color: #137a3d;
    font-weight: 700;
}

.arc-invite-copy {
    flex: 0 0 auto;
    padding: 6px 14px;
    background: #970600;
    color: #ffe9a2;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
}

.arc-invite-row--link {
    padding-top: 10px;
    margin-top: 6px;
    border-top: 1px dashed rgba(151, 6, 0, 0.2);
}

.arc-invite-link {
    flex: 1;
    min-width: 0;
    color: #0a5fae;
    font-size: 12px;
    line-height: 18px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 8px;
}

.arc-invite-link:active {
    color: #082d6b;
}

/* ---------- 阶段 4：预览 + 签名 ---------- */
.arc-stage--review {
    padding: 0 14px;
}

.arc-review-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 14px;
    background: #fff4e5;
    color: #a42a0a;
    font-size: 13px;
    border: 1px solid rgba(180, 40, 15, 0.3);
    border-radius: 8px;
}

.arc-review-notice-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b1000e;
    flex-shrink: 0;
}

.arc-review-notice--success {
    background: #ecfdf3;
    color: #056b34;
    border-color: rgba(5, 107, 52, 0.28);
}

.arc-review-notice--success .arc-review-notice-dot {
    background: #14a35d;
}

.arc-sign-invite-card {
    margin-top: 18px;
    padding: 44px 14px 14px;
    background: #fff8ec;
    border: 1px solid rgba(184, 124, 14, 0.3);
    border-radius: 12px;
    position: relative;
}

.arc-sign-invite-card.arc-sign-invite-card--done {
    background: #ecfdf3;
    border-color: rgba(5, 107, 52, 0.3);
}

.arc-sign-invite-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.arc-sign-invite-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0a93b;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arc-sign-invite-card--done .arc-sign-invite-icon {
    background: #14a35d;
}

.arc-sign-invite-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    color: #4a3a17;
    line-height: 1.45;
}

.arc-sign-invite-text b {
    font-size: 14px;
    color: #8a4a07;
}

.arc-sign-invite-card--done .arc-sign-invite-text {
    color: #1f5635;
}

.arc-sign-invite-card--done .arc-sign-invite-text b {
    color: #056b34;
}

.arc-sign-invite-text em {
    font-style: normal;
    font-weight: 700;
    color: #b1000e;
}

.arc-sign-invite-card--done .arc-sign-invite-text em {
    color: #056b34;
}

.arc-invite-card.arc-invite-card--inline {
    margin-top: 4px;
    box-shadow: none;
    border: 1px dashed rgba(184, 124, 14, 0.35);
    background: rgba(255, 255, 255, 0.7);
}

.arc-sign-invite-card--done .arc-invite-card.arc-invite-card--inline {
    border-color: rgba(5, 107, 52, 0.32);
    background: rgba(255, 255, 255, 0.85);
}

/* ───── 建档/签名 双阶段邀请进度（建档1人 + 签名2人 分开显示） ───── */
.arc-sign-invite-card--dual {
    background: #fff8ec;
    border-color: rgba(151, 6, 0, 0.18);
}
.arc-invite-stage-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 2px 14px;
}
.arc-invite-stage {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(151, 6, 0, 0.18);
    border-radius: 12px;
    background: #fff;
}
.arc-invite-stage--current {
    border-color: rgba(151, 6, 0, 0.45);
    box-shadow: 0 2px 8px rgba(151, 6, 0, 0.08);
}
.arc-invite-stage--done {
    border-color: rgba(5, 107, 52, 0.35);
    background: #ecfdf3;
}
.arc-invite-stage-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #d2461d;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
}
.arc-invite-stage--done .arc-invite-stage-icon {
    background: #14a35d;
}
.arc-invite-stage-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.arc-invite-stage-text b {
    font-size: 14px;
    color: #970600;
    font-weight: 700;
}
.arc-invite-stage--done .arc-invite-stage-text b {
    color: #056b34;
}
.arc-invite-stage-text span {
    font-size: 12px;
    color: #6b6b6b;
}
.arc-invite-stage-text em {
    font-style: normal;
    color: #b32b1f;
    font-weight: 700;
}
.arc-invite-stage--done .arc-invite-stage-text span,
.arc-invite-stage--done .arc-invite-stage-text em {
    color: #056b34;
}

/* ───── 表单"确认建档"按钮加锁状态（邀请人数不足） ───── */
.archive-submit-btn.archive-submit-btn--locked {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%) !important;
    color: #fff !important;
    cursor: not-allowed;
    box-shadow: none !important;
}
.archive-submit-btn.archive-submit-btn--locked:hover,
.archive-submit-btn.archive-submit-btn--locked:active {
    transform: none !important;
    filter: none !important;
}

.arc-sign-trigger:disabled,
.arc-sign-trigger[aria-disabled="true"],
.arc-sign-trigger.arc-sign-trigger--locked {
    opacity: 0.62;
    filter: grayscale(0.35);
    background: repeating-linear-gradient(
        45deg,
        #fff7ec 0,
        #fff7ec 12px,
        #fff0d8 12px,
        #fff0d8 24px
    );
    border-color: rgba(184, 124, 14, 0.45);
}

.arc-sign-trigger.arc-sign-trigger--locked:hover {
    opacity: 0.78;
}

.arc-sign-trigger.arc-sign-trigger--locked .arc-sign-trigger-icon {
    color: #b87c0e;
}

.arc-review-card {
    margin-top: 14px;
    padding: 18px 14px 14px;
    background: #ffffff;
    border: 1px solid rgba(151, 6, 0, 0.2);
    border-radius: 10px;
    position: relative;
}

.arc-review-list {
    padding-top: 6px;
}

.arc-review-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted rgba(151, 6, 0, 0.15);
    font-size: 14px;
}

.arc-review-row:last-child {
    border-bottom: none;
}

.arc-review-label {
    flex: 0 0 88px;
    color: #8a6f3d;
}

.arc-review-value {
    flex: 1;
    color: #2b1f0e;
    font-weight: 600;
    text-align: right;
    word-break: break-all;
}

/* ---------- 阶段 4b：已签名 · 等待审核 ---------- */
.arc-stage--pending {
    padding: 0 14px;
}

.arc-pending-hero {
    margin-top: 16px;
    padding: 22px 18px 20px;
    background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
    border: 1px solid rgba(240, 169, 59, 0.4);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(180, 110, 20, 0.08);
}

.arc-pending-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    animation: arc-pending-pulse 2.4s ease-in-out infinite;
}

.arc-pending-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes arc-pending-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

.arc-pending-title {
    font-size: 17px;
    font-weight: 700;
    color: #b15a05;
    margin-bottom: 8px;
}

.arc-pending-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #5b4520;
}

.arc-pending-desc b {
    color: #c92020;
    font-weight: 700;
}

.arc-pending-meta {
    margin-top: 12px;
    font-size: 12px;
    color: #9b8155;
    letter-spacing: 0.4px;
}

.arc-pending-signature {
    padding: 8px;
    background: #fffdf6;
    border-radius: 8px;
    border: 1px dashed rgba(151, 6, 0, 0.25);
    text-align: center;
}

.arc-pending-signature img {
    max-width: 90%;
    max-height: 120px;
    object-fit: contain;
}

.arc-pending-tipbar {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.92);
    border-left: 3px solid #f0a93b;
    border-radius: 6px;
    font-size: 12.5px;
    color: #6b4f1c;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arc-pending-tipbar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f0a93b;
    flex-shrink: 0;
}

.arc-signature-card {
    margin-top: 14px;
    padding: 30px 16px 20px;
    background: #fff;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.arc-signature-card::after {
    content: '';
    position: absolute;
    top: 52px;
    left: 16px;
    right: 16px;
    bottom: 108px;
    border: 1px dashed #eeb4b4;
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

/* ---------- 签名触发器（点击进入全屏签名） ---------- */
.arc-sign-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 180px;
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    border: none;
    z-index: 2;
}

.arc-sign-trigger:active {
    background: #fff9e9;
    border-color: rgba(151, 6, 0, 0.75);
}

.arc-sign-trigger-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #9c4a4a;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    letter-spacing: 1px;
}

.arc-sign-trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f6d38b;
    color: #970600;
    font-size: 26px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 4px 10px rgba(151, 6, 0, 0.15);
}

.arc-sign-trigger-preview {
    display: block;
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    background: #fff;
}

.arc-sign-trigger-redo {
    margin-top: 8px;
    color: rgba(151, 6, 0, 0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
}

.arc-sign-trigger-empty[hidden],
.arc-sign-trigger-preview[hidden],
.arc-sign-trigger-redo[hidden] {
    display: none !important;
}

.arc-signature-tip-row {
    margin-top: 16px;
    margin-bottom: 6px;
    padding: 0 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #8a7b66;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ---------- 全屏签名 Modal ---------- */
.arc-body-lock {
    overflow: hidden;
}

.arc-sign-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    background: #f5ede1;
    touch-action: none;
}

.arc-sign-modal[hidden] {
    display: none;
}

.arc-sign-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    padding-top: calc(env(safe-area-inset-top, 0px) + 12px);
    background: linear-gradient(180deg, #b1000e 0%, #970600 100%);
    color: #ffe9a2;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 2px 8px rgba(151, 6, 0, 0.25);
}

.arc-sign-modal-close {
    width: 34px;
    height: 34px;
    padding: 0;
    background: transparent;
    color: #ffe9a2;
    border: 1px solid rgba(255, 233, 162, 0.7);
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arc-sign-modal-hint {
    padding: 10px 16px 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #8a6f3d;
    text-align: center;
}

.arc-sign-modal-canvas-wrap {
    flex: 1;
    position: relative;
    margin: 12px 16px;
    background: #fff;
    border: 1px dashed rgba(151, 6, 0, 0.55);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(122, 0, 4, 0.08);
}

.arc-sign-modal-canvas-wrap canvas {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
    cursor: crosshair;
}

.arc-sign-modal-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(151, 6, 0, 0.28);
    font-size: 22px;
    letter-spacing: 6px;
    font-weight: 700;
    pointer-events: none;
}

.arc-sign-modal-footer {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    background: #fff8ec;
    border-top: 1px solid rgba(151, 6, 0, 0.2);
}

.arc-sign-modal-clear,
.arc-sign-modal-confirm {
    flex: 1;
    height: 48px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.arc-sign-modal-clear {
    background: #fffaf0;
    color: #970600;
    border: 1px solid rgba(151, 6, 0, 0.5);
}

.arc-sign-modal-clear:active {
    background: #fff1e0;
}

.arc-sign-modal-confirm {
    background: linear-gradient(180deg, #e13c2c 0%, #970600 100%);
    color: #ffe9a2;
    box-shadow:
        0 4px 12px rgba(151, 6, 0, 0.3),
        inset 0 1px 0 rgba(255, 222, 148, 0.3);
}

.arc-sign-modal-confirm:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

/* 竖屏提示蒙层：默认隐藏，仅在签字弹窗打开 + 视口为竖屏时显示 */
.arc-sign-modal-rotate {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: rgba(245, 237, 225, 0.96);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}
.arc-sign-modal-rotate-card {
    max-width: 320px;
    background: #ffffff;
    border: 1px solid rgba(151, 6, 0, 0.2);
    border-radius: 12px;
    padding: 28px 22px;
    box-shadow: 0 12px 28px rgba(122, 0, 4, 0.15);
}
.arc-sign-modal-rotate-icon {
    margin: 0 auto 14px;
    width: 64px;
    height: 64px;
    animation: arc-sign-rotate-bounce 1.6s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes arc-sign-rotate-bounce {
    0%, 100% { transform: rotate(0deg); }
    45%      { transform: rotate(-90deg); }
    55%      { transform: rotate(-90deg); }
    100%     { transform: rotate(0deg); }
}
.arc-sign-modal-rotate-title {
    font-size: 18px;
    font-weight: 700;
    color: #970600;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.arc-sign-modal-rotate-text {
    font-size: 13px;
    line-height: 22px;
    color: #6f5b3a;
}

/* 竖屏时显示蒙层 */
@media (orientation: portrait) {
    .arc-sign-modal:not([hidden]) .arc-sign-modal-rotate {
        display: flex;
    }
}

/* 横屏 + 矮屏（典型手机横屏）：签字画布全屏铺满，仅保留浮层按钮（关闭 / 清除 / 完成） */
@media (orientation: landscape) and (max-height: 520px) {
    .arc-sign-modal {
        background: #ffffff;
    }
    /* 头部去除背景与高度，仅作为关闭按钮的占位容器 */
    .arc-sign-modal-header {
        position: static;
        padding: 0;
        height: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }
    .arc-sign-modal-title {
        display: none;
    }
    .arc-sign-modal-hint {
        display: none;
    }
    /* 画布无外边距、无边框，完全铺满 */
    .arc-sign-modal-canvas-wrap {
        flex: 1;
        margin: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    .arc-sign-modal-placeholder {
        font-size: 22px;
        letter-spacing: 6px;
    }
    /* 底栏改为浮层：透明背景，固定在画布右下角，不再占据布局高度 */
    .arc-sign-modal-footer {
        position: absolute;
        right: 14px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
        z-index: 6;
        padding: 0;
        background: transparent;
        border-top: none;
        gap: 10px;
        width: auto;
    }
    .arc-sign-modal-clear,
    .arc-sign-modal-confirm {
        flex: 0 0 auto;
        min-width: 92px;
        height: 38px;
        padding: 0 16px;
        font-size: 14px;
        letter-spacing: 2px;
        border-radius: 999px;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    }
    .arc-sign-modal-clear {
        background: rgba(255, 255, 255, 0.95);
    }
    /* 关闭按钮浮在画布右上角 */
    .arc-sign-modal-close {
        position: absolute;
        top: calc(env(safe-area-inset-top, 0px) + 10px);
        right: 14px;
        z-index: 6;
        width: 32px;
        height: 32px;
        font-size: 20px;
        background: rgba(255, 255, 255, 0.92);
        color: #970600;
        border: 1px solid rgba(151, 6, 0, 0.5);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    }
}

/* ---------- 阶段 5：完成 ---------- */
.arc-stage--done {
    padding: 0 14px 20px;
}

.arc-done-hero {
    margin-top: 24px;
    padding: 28px 16px 22px;
    background: linear-gradient(180deg, #fff9e9 0%, #fbefd1 100%);
    border: 1px solid rgba(201, 164, 86, 0.6);
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(122, 0, 4, 0.08);
    position: relative;
}

.arc-done-check {
    width: 72px;
    height: 72px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #e13c2c 0%, #970600 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(151, 6, 0, 0.28);
    position: relative;
}

.arc-done-check::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.arc-done-check-mark {
    display: block;
    width: 14px;
    height: 28px;
    border: solid #ffe9a2;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg) translate(-2px, -4px);
}

.arc-done-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #970600;
    letter-spacing: 3px;
}

.arc-done-subtitle {
    margin-top: 4px;
    font-size: 10px;
    color: #8a6f3d;
    letter-spacing: 1px;
}

.arc-done-fund-card {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(180deg, #970600 0%, #b1000e 100%);
    color: #ffe9a2;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(151, 6, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.arc-done-fund-card::before,
.arc-done-fund-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 130%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(255, 233, 162, 0.3) 0 6px, transparent 6px 12px);
    transform: translateY(-50%);
}

.arc-done-fund-card::before { top: 25%; }
.arc-done-fund-card::after  { top: 75%; }

.arc-done-fund-ribbon {
    position: relative;
    z-index: 1;
    font-size: 12px;
    letter-spacing: 4px;
    opacity: 0.85;
}

.arc-done-fund-label {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.8;
}

.arc-done-fund-value {
    position: relative;
    z-index: 1;
    margin-top: 4px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
}

.arc-done-fund-desc {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    font-size: 13px;
    line-height: 20px;
}

.arc-done-fund-desc strong {
    color: #fff;
    font-weight: 800;
    padding: 0 2px;
}

.arc-done-meta {
    margin-top: 16px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(151, 6, 0, 0.2);
    border-radius: 10px;
}

.arc-done-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted rgba(151, 6, 0, 0.15);
    font-size: 14px;
}

.arc-done-meta-row:last-child {
    border-bottom: none;
}

.arc-done-meta-row > span {
    color: #8a6f3d;
}

.arc-done-meta-row > b {
    color: #2b1f0e;
    font-weight: 600;
}

.arc-done-meta-green {
    color: #137a3d !important;
}

.arc-done-actions {
    margin-top: 16px;
}

/* ---------- 提示卡 ---------- */
.arc-tips-card {
    margin-top: 22px;
    padding: 14px 16px 18px;
    background: #fff;
    border: 1px solid rgba(151, 6, 0, 0.15);
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(122, 0, 4, 0.05);
}

.arc-tips-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #970600;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 4px;
}

.arc-tips-line {
    flex: 0 0 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(151, 6, 0, 0.6) 100%);
}

.arc-tips-line--reverse {
    background: linear-gradient(90deg, rgba(151, 6, 0, 0.6) 0%, transparent 100%);
}

.arc-tips-content {
    margin-top: 12px;
    color: #4a3a1c;
    font-size: 13px;
    line-height: 22px;
    text-align: justify;
}

.arc-tips-content p {
    margin: 0 0 8px;
    text-indent: 2em;
}

.arc-tips-content strong {
    color: #970600;
}

/* ---------- Overlay 过渡（信息正在录入中 / 正在上传）---------- */
.arc-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(18, 4, 4, 0.55);
    backdrop-filter: blur(2px);
}

.arc-overlay[hidden] { display: none; }

.arc-overlay-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 233, 162, 0.4);
    border-top-color: #ffe9a2;
    border-radius: 50%;
    animation: arc-spin 0.8s linear infinite;
}

@keyframes arc-spin {
    to { transform: rotate(360deg); }
}

.arc-overlay-text {
    margin-top: 16px;
    color: #ffe9a2;
    font-size: 15px;
    letter-spacing: 3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* ---------- Toast（录入成功 / 建档成功）---------- */
.arc-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 28px 24px 22px;
    background: rgba(20, 8, 8, 0.82);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    animation: arc-toast-cycle 3.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transition: opacity 0.4s ease;
}

@keyframes arc-toast-cycle {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    10%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    85%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.96); visibility: hidden; }
}

.arc-toast-check {
    display: inline-block;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    position: relative;
    animation: arc-toast-check-in 0.45s cubic-bezier(0.2, 1, 0.3, 1) 0.1s both;
}

@keyframes arc-toast-check-in {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    60% {
        transform: scale(1.15);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.arc-toast-check::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 22px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    transform: translate(-55%, -62%) rotate(45deg);
}

/* 底部导航遮挡：给 stage 留足距离 */
.arc-stage + .arc-tips-card,
.arc-stage--form,
.arc-stage--review,
.arc-stage--done {
    padding-bottom: 24px;
}

/* ─────────────── 每日签到页 ─────────────── */
.page-sign {
    background: #f6f7fb;
}

.phone--sign {
    position: relative;
    min-height: 100vh;
    padding-bottom: 0.3rem;
    background: linear-gradient(180deg, #b60f16 0%, #b60f16 1.34rem, #f6f7fb 1.34rem, #f6f7fb 100%);
    overflow: hidden;
}

.sign-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.16rem;
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.16), transparent 38%),
        radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.12), transparent 34%),
        linear-gradient(135deg, #c8161d 0%, #8f0710 100%);
    pointer-events: none;
    z-index: 0;
}

.sign-topbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.14rem 0.16rem 0.08rem;
    color: #fff;
}

.sign-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
}

.sign-back-icon {
    width: 0.08rem;
    height: 0.08rem;
    border-left: 0.02rem solid #fff;
    border-bottom: 0.02rem solid #fff;
    transform: rotate(45deg) translate(0.02rem, -0.02rem);
}

.sign-topbar-title {
    font-size: 0.18rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    color: #fff;
}

.sign-topbar-right {
    width: 0.32rem;
    height: 0.32rem;
}

.sign-main {
    position: relative;
    z-index: 2;
    padding: 0.04rem 0.14rem 0.28rem;
}

/* ─── 头部横幅 ─── */
.sign-hero {
    position: relative;
    margin-top: 0.08rem;
    padding: 0.2rem 0.18rem 0.16rem;
    border-radius: 0.2rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0.12rem 0.28rem rgba(34, 36, 50, 0.1);
    overflow: hidden;
}

.sign-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 0.01rem solid rgba(255, 255, 255, 0.8);
    border-radius: inherit;
    pointer-events: none;
}

.sign-hero-lights {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(200, 22, 29, 0.1), transparent 42%),
        radial-gradient(circle at 90% 16%, rgba(255, 186, 122, 0.16), transparent 44%);
    pointer-events: none;
}

.sign-hero-title {
    position: relative;
    text-align: center;
    font-size: 0.24rem;
    line-height: 0.32rem;
    font-weight: 700;
    color: #1f2430;
    letter-spacing: 0.02rem;
}

.sign-hero-subtitle {
    position: relative;
    text-align: center;
    margin-top: 0.04rem;
    font-size: 0.13rem;
    line-height: 0.18rem;
    color: #7c8291;
    letter-spacing: 0.01rem;
}

.sign-hero-stats {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.18rem;
    padding: 0.12rem 0.06rem;
    background: #f8f9fc;
    border-radius: 0.14rem;
    border: 0.01rem solid #eef0f5;
}

.sign-hero-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.02rem;
}

.sign-hero-stat-value {
    font-size: 0.2rem;
    line-height: 0.26rem;
    font-weight: 700;
    color: #b60f16;
    letter-spacing: 0.01rem;
}

.sign-hero-stat-label {
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: #8b92a1;
}

.sign-hero-stat-divider {
    width: 0.01rem;
    height: 0.26rem;
    background: #e5e8ef;
}

/* ─── 通用卡片 ─── */
.sign-card {
    margin-top: 0.14rem;
    padding: 0.16rem 0.14rem 0.16rem;
    border-radius: 0.2rem;
    background: #fff;
    border: 0.01rem solid #eef0f5;
    box-shadow: 0 0.08rem 0.24rem rgba(32, 38, 55, 0.06);
}

.sign-card-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 0.08rem;
    border-bottom: 0.01rem solid #f0f2f7;
    margin-bottom: 0.12rem;
}

.sign-card-title-main {
    position: relative;
    padding-left: 0.1rem;
    font-size: 0.16rem;
    font-weight: 700;
    color: #252a36;
    letter-spacing: 0.01rem;
}

.sign-card-title-main::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.035rem;
    width: 0.04rem;
    height: 0.14rem;
    border-radius: 0.02rem;
    background: #b60f16;
}

.sign-card-title-sub {
    font-size: 0.13rem;
    color: #8b92a1;
    font-weight: 600;
}

/* ─── 签到日历本 ─── */
.sign-calendar-book {
    position: relative;
    padding: 0.14rem 0.1rem 0.12rem;
    border-radius: 0.16rem;
    background: #fafbfe;
    border: 0.01rem solid #eef0f5;
}

.sign-calendar-rings {
    display: none;
}

.sign-calendar-rings span {
    display: none;
}

.sign-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.05rem;
    margin-bottom: 0.08rem;
}

.sign-weekdays span {
    text-align: center;
    font-size: 0.11rem;
    line-height: 0.18rem;
    font-weight: 700;
    color: #9aa1af;
}

.sign-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.05rem;
}

.sign-day {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0.4rem;
    padding: 0.04rem 0.02rem;
    border-radius: 0.12rem;
    background: #fff;
    border: 0.01rem solid transparent;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sign-day--blank {
    background: transparent;
    border-color: transparent;
}

.sign-day-num {
    font-size: 0.14rem;
    line-height: 0.18rem;
    font-weight: 700;
    color: #333946;
}

.sign-day-check {
    position: absolute;
    right: 0.04rem;
    bottom: 0.04rem;
    width: 0.1rem;
    height: 0.06rem;
    border-left: 0.02rem solid #fff;
    border-bottom: 0.02rem solid #fff;
    transform: rotate(-45deg);
}

/* 今日卡片 */
.sign-day--today {
    background: #fff;
    border-color: #b60f16;
    box-shadow: 0 0.04rem 0.12rem rgba(182, 15, 22, 0.12);
}

.sign-day--today .sign-day-num {
    color: #b60f16;
}

.sign-day-today-text {
    position: absolute;
    left: 50%;
    bottom: 0.02rem;
    transform: translateX(-50%);
    font-size: 0.09rem;
    line-height: 0.1rem;
    color: #b60f16;
    white-space: nowrap;
}

/* 已完成 */
.sign-day--done {
    background: #b60f16;
    border-color: #b60f16;
    box-shadow: 0 0.04rem 0.12rem rgba(182, 15, 22, 0.16);
}

.sign-day--done .sign-day-num {
    color: #fff;
}

.sign-day--past,
.sign-day--future {
    opacity: 0.58;
}

/* ─── 签到按钮 ─── */
.sign-submit-form {
    margin: 0.2rem 0 0.02rem;
    display: flex;
    justify-content: center;
}

.sign-submit-btn {
    width: 100%;
    max-width: 2.8rem;
    height: 0.46rem;
    border: none;
    border-radius: 1rem;
    background: #b60f16;
    color: #fff;
    font-size: 0.16rem;
    font-weight: 700;
    letter-spacing: 0.01rem;
    box-shadow: 0 0.08rem 0.18rem rgba(182, 15, 22, 0.22);
    cursor: pointer;
    font-family: inherit;
}

.sign-submit-btn.is-done {
    background: #eef0f5;
    color: #9aa1af;
    box-shadow: none;
    cursor: not-allowed;
}

/* ─── 收益格子 ─── */
.sign-reward-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.1rem;
}

.sign-reward-grid--single {
    grid-template-columns: 1fr;
}

.sign-reward-grid-item {
    padding: 0.12rem 0.08rem;
    border-radius: 0.14rem;
    background: #fafbfe;
    border: 0.01rem solid #eef0f5;
    text-align: center;
}

.sign-reward-grid-value {
    display: block;
    font-size: 0.22rem;
    line-height: 0.28rem;
    font-weight: 700;
    color: #b60f16;
}

.sign-reward-grid-label {
    display: block;
    margin-top: 0.02rem;
    font-size: 0.12rem;
    color: #8b92a1;
}

/* ─── 规则说明 ─── */
.sign-rules {
    padding-left: 0.2rem;
    margin: 0;
    font-size: 0.13rem;
    line-height: 0.2rem;
    color: #5f6675;
}

.sign-rules li {
    margin-bottom: 0.04rem;
}

.sign-rules-hl {
    color: #b60f16;
    font-weight: 600;
}

/* ─── Toast ─── */
.sign-toast {
    position: fixed;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    min-width: 2.4rem;
    max-width: 3rem;
    padding: 0.16rem 0.2rem;
    border-radius: 0.14rem;
    background: rgba(122, 7, 4, 0.92);
    color: #ffd48d;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.25);
    animation: sign-toast-in 0.28s ease-out;
    pointer-events: none;
}

.sign-toast.is-hide {
    animation: sign-toast-out 0.4s ease-out forwards;
}

.sign-toast-title {
    font-size: 0.17rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02rem;
}

.sign-toast-reward {
    margin-top: 0.06rem;
    font-size: 0.13rem;
    line-height: 0.18rem;
    color: #ffd48d;
}

.sign-toast-reward-hl {
    color: #ffed9b;
    font-weight: 700;
    font-size: 0.14rem;
}

@keyframes sign-toast-in {
    0%   { opacity: 0; transform: translate(-50%, -42%) scale(0.92); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes sign-toast-out {
    0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -58%) scale(0.94); }
}

/* ============================================================
 * 分享推广页 share.php
 * ============================================================ */
.page-share {
    background: #f6f7fb;
}

.phone--share {
    position: relative;
    min-height: 100vh;
    padding-bottom: 0.3rem;
    background: #f6f7fb;
}

.share-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 0.52rem;
    padding: 0 0.16rem;
    background: #ca1414;
    color: #fff;
}

.share-back,
.share-topbar-right {
    width: 0.32rem;
    height: 0.32rem;
}

.share-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
}

.share-back span {
    width: 0.08rem;
    height: 0.08rem;
    border-left: 0.02rem solid #fff;
    border-bottom: 0.02rem solid #fff;
    transform: rotate(45deg) translate(0.02rem, -0.02rem);
}

.share-topbar-title {
    font-size: 0.18rem;
    line-height: 0.24rem;
    font-weight: 700;
    letter-spacing: 0.02rem;
}

.share-main {
    padding: 0.14rem;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

/* Hero */
.share-hero {
    position: relative;
    border-radius: 0.18rem;
    overflow: hidden;
    padding: 0.2rem 0.18rem 0.18rem;
    color: #fff;
    background: linear-gradient(135deg, #d8171f 0%, #a6070d 100%);
    box-shadow: 0 0.08rem 0.22rem rgba(166, 7, 13, 0.28);
}

.share-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 14%, rgba(255, 215, 110, 0.28) 0%, rgba(255, 215, 110, 0) 55%),
        radial-gradient(circle at 12% 96%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.share-hero-inner {
    position: relative;
    z-index: 1;
}

.share-hero-title {
    font-size: 0.2rem;
    line-height: 0.28rem;
    font-weight: 700;
    letter-spacing: 0.01rem;
}

.share-hero-desc {
    margin-top: 0.06rem;
    font-size: 0.13rem;
    line-height: 0.2rem;
    opacity: 0.88;
}

.share-hero-stats {
    margin-top: 0.16rem;
    padding: 0.12rem 0.08rem;
    border-radius: 0.14rem;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(4px);
}

.share-hero-stat {
    flex: 1;
    text-align: center;
}

.share-hero-stat-value {
    font-size: 0.24rem;
    line-height: 0.3rem;
    font-weight: 700;
    color: #ffe9a8;
}

.share-hero-stat-label {
    margin-top: 0.02rem;
    font-size: 0.12rem;
    line-height: 0.16rem;
    opacity: 0.85;
}

.share-hero-stat-divider {
    width: 0.01rem;
    height: 0.28rem;
    background: rgba(255, 255, 255, 0.24);
}

/* 通用卡片 */
.share-card {
    padding: 0.16rem;
    border-radius: 0.16rem;
    background: #fff;
    box-shadow: 0 0.06rem 0.18rem rgba(32, 38, 55, 0.06);
}

.share-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.12rem;
}

.share-card-header h2 {
    margin: 0;
    font-size: 0.16rem;
    line-height: 0.22rem;
    font-weight: 700;
    color: #1f2330;
    position: relative;
    padding-left: 0.1rem;
}

.share-card-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.03rem;
    height: 0.14rem;
    background: linear-gradient(180deg, #d8171f 0%, #a6070d 100%);
    border-radius: 0.02rem;
}

.share-card-link {
    font-size: 0.13rem;
    line-height: 0.18rem;
    color: #ca1414;
    text-decoration: none;
    font-weight: 500;
}

.share-card-sub {
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: #8a8f9c;
}

/* 二维码 / 邀请码卡 */
.share-invite-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.share-invite-header {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.share-invite-logo {
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 0.1rem;
    object-fit: cover;
}

.share-invite-brand-title {
    font-size: 0.15rem;
    line-height: 0.2rem;
    font-weight: 700;
    color: #1f2330;
}

.share-invite-brand-sub {
    margin-top: 0.02rem;
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: #8a8f9c;
}

.share-qr-wrap {
    margin: 0.14rem auto 0;
    padding: 0.1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 0.14rem;
    background: #fff;
    border: 0.01rem dashed #ffcfd1;
    box-shadow: 0 0.04rem 0.14rem rgba(166, 7, 13, 0.08) inset;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-qr-canvas {
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.12rem;
}

.share-qr-canvas img,
.share-qr-canvas canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.share-invite-fields {
    margin-top: 0.14rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.share-invite-field-label {
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: #8a8f9c;
    margin-bottom: 0.06rem;
}

.share-invite-field-row {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.1rem 0.12rem;
    border-radius: 0.1rem;
    background: #fafbfe;
    border: 0.01rem solid #eceef5;
}

.share-invite-code {
    flex: 1;
    font-size: 0.18rem;
    line-height: 0.22rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
    color: #b00c12;
    font-family: 'DIN Alternate', 'SF Pro Display', system-ui, sans-serif;
}

.share-invite-link {
    flex: 1;
    font-size: 0.12rem;
    line-height: 0.18rem;
    color: #444a5a;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.share-ghost-btn {
    flex-shrink: 0;
    height: 0.28rem;
    padding: 0 0.12rem;
    border-radius: 0.14rem;
    background: #fff0f0;
    color: #ca1414;
    border: 0.01rem solid #f7cdcf;
    font-size: 0.12rem;
    font-weight: 500;
    cursor: pointer;
}

.share-ghost-btn:active {
    background: #ffe0e0;
}

.share-actions {
    margin-top: 0.14rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.1rem;
}

.share-btn {
    height: 0.44rem;
    border-radius: 0.22rem;
    border: none;
    font-size: 0.15rem;
    font-weight: 600;
    cursor: pointer;
}

.share-btn--outline {
    background: #fff;
    color: #ca1414;
    border: 0.01rem solid #ca1414;
}

.share-btn--solid {
    background: linear-gradient(135deg, #d8171f 0%, #a6070d 100%);
    color: #fff;
    box-shadow: 0 0.04rem 0.12rem rgba(166, 7, 13, 0.22);
}

.share-btn--solid:active {
    transform: translateY(0.01rem);
}

/* 邀请奖励列表 */
.share-reward-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.share-reward-item {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.1rem;
    border-radius: 0.12rem;
    background: #fafbfe;
    border: 0.01rem solid #eceef5;
}

.share-reward-item.is-reached {
    background: linear-gradient(135deg, #fff6e2 0%, #ffe9dc 100%);
    border-color: #f2c784;
}

.share-reward-cover {
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 0.1rem;
    object-fit: cover;
    background: #fff;
    flex-shrink: 0;
}

.share-reward-body {
    flex: 1;
    min-width: 0;
}

.share-reward-title {
    font-size: 0.14rem;
    line-height: 0.2rem;
    font-weight: 600;
    color: #1f2330;
}

.share-reward-desc {
    margin-top: 0.02rem;
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: #6d7385;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.share-reward-progress {
    margin-top: 0.06rem;
    display: flex;
    align-items: center;
    gap: 0.08rem;
}

.share-reward-progress-bar {
    flex: 1;
    height: 0.06rem;
    border-radius: 0.04rem;
    background: #eceef5;
    overflow: hidden;
}

.share-reward-progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #d8171f 0%, #ff6b3d 100%);
    border-radius: 0.04rem;
    transition: width 0.3s ease;
}

.share-reward-progress-text {
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: #8a8f9c;
    font-variant-numeric: tabular-nums;
}

.share-reward-status {
    flex-shrink: 0;
    padding: 0.04rem 0.1rem;
    border-radius: 0.12rem;
    background: #fff0f0;
    color: #ca1414;
    font-size: 0.12rem;
    line-height: 0.16rem;
    font-weight: 500;
}

.share-reward-status.is-reached {
    background: #ffe6b8;
    color: #8a4a00;
}

/* 推广三步走 */
.share-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.share-step {
    display: flex;
    align-items: flex-start;
    gap: 0.1rem;
    padding: 0.1rem;
    border-radius: 0.12rem;
    background: #fafbfe;
    border: 0.01rem solid #eceef5;
}

.share-step-no {
    flex-shrink: 0;
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #d8171f 0%, #a6070d 100%);
    color: #fff;
    font-size: 0.14rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.03rem 0.08rem rgba(166, 7, 13, 0.22);
}

.share-step-title {
    font-size: 0.14rem;
    line-height: 0.2rem;
    font-weight: 600;
    color: #1f2330;
}

.share-step-desc {
    margin-top: 0.03rem;
    font-size: 0.12rem;
    line-height: 0.18rem;
    color: #6d7385;
}

/* 邀请明细 */
.share-invitee-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.share-invitee {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.1rem 0;
    border-bottom: 0.01rem solid #f0f1f5;
}

.share-invitee:last-child {
    border-bottom: none;
}

.share-invitee-avatar {
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #fdd7b5 0%, #ffb186 100%);
    color: #9a4200;
    font-size: 0.12rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.share-invitee-body {
    flex: 1;
    min-width: 0;
}

.share-invitee-phone {
    font-size: 0.14rem;
    line-height: 0.18rem;
    color: #1f2330;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.share-invitee-time {
    margin-top: 0.02rem;
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: #8a8f9c;
}

.share-invitee-status {
    flex-shrink: 0;
    padding: 0.03rem 0.1rem;
    border-radius: 0.12rem;
    background: #f4f5f8;
    color: #8a8f9c;
    font-size: 0.12rem;
    line-height: 0.16rem;
    font-weight: 500;
}

.share-invitee-status.is-verified {
    background: #e7f8ec;
    color: #23823a;
}

/* 空状态 */
.share-empty {
    padding: 0.18rem 0;
    text-align: center;
}

.share-empty-title {
    font-size: 0.14rem;
    line-height: 0.2rem;
    color: #444a5a;
    font-weight: 600;
}

.share-empty-desc {
    margin-top: 0.04rem;
    font-size: 0.12rem;
    line-height: 0.18rem;
    color: #8a8f9c;
}

/* 底部提示 */
.share-tip {
    margin-top: 0.04rem;
    padding: 0 0.04rem;
    font-size: 0.11rem;
    line-height: 0.16rem;
    color: #a3a7b3;
    text-align: center;
}

/* Toast */
.share-toast {
    position: fixed;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%) scale(0.92);
    padding: 0.1rem 0.16rem;
    border-radius: 0.12rem;
    background: rgba(32, 38, 55, 0.88);
    color: #fff;
    font-size: 0.13rem;
    line-height: 0.18rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    max-width: 80vw;
    text-align: center;
}

.share-toast.is-show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


/* =========================================================
 * 资金明细 (balance_ledger) 扩展样式
 * ========================================================= */
.ledger-summary {
    display: flex;
    align-items: stretch;
    gap: 0.12rem;
    margin-top: 0.12rem;
    padding: 0.16rem 0.18rem;
    background: linear-gradient(135deg, #fff6f5 0%, #fff 60%);
    border: 0.33px solid rgba(202, 20, 20, 0.08);
    border-radius: 0.14rem;
    box-shadow: 0 0.04rem 0.12rem rgba(202, 20, 20, 0.06);
}

.ledger-summary-item {
    flex: 1;
    text-align: center;
}

.ledger-summary-label {
    font-size: 0.12rem;
    color: #8b92a1;
    line-height: 0.17rem;
}

.ledger-summary-value {
    margin-top: 0.04rem;
    font-size: 0.2rem;
    font-weight: 700;
    line-height: 0.24rem;
    font-variant-numeric: tabular-nums;
}

.ledger-summary-value--inc { color: #23823a; }
.ledger-summary-value--exp { color: #ca1414; }

.ledger-summary-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(139, 146, 161, 0.28), transparent);
}

.ledger-filter-chips {
    display: flex;
    gap: 0.08rem;
    padding: 0.06rem 0.02rem 0.1rem;
    flex-wrap: wrap;
}

.ledger-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.04rem 0.1rem;
    border-radius: 1rem;
    font-size: 0.12rem;
    line-height: 0.18rem;
    background: #f4f5f7;
    color: #5f6675;
    border: 0.33px solid transparent;
    text-decoration: none;
}

.ledger-chip.is-active {
    background: #fff1f1;
    color: #ca1414;
    border-color: rgba(202, 20, 20, 0.25);
    font-weight: 600;
}

.ledger-record {
    background: #fff;
    border: 0.33px solid rgba(0, 0, 0, 0.06);
    border-radius: 0.12rem;
    box-shadow: 0 0.02rem 0.06rem rgba(15, 23, 42, 0.04);
    padding: 0.14rem 0.14rem 0.12rem;
}

.ledger-tag {
    display: inline-block;
    padding: 0.01rem 0.08rem;
    margin-right: 0.06rem;
    border-radius: 0.06rem;
    font-size: 0.11rem;
    font-weight: 500;
    color: #ca1414;
    background: #fff1f1;
    vertical-align: 0.015rem;
}

.ledger-amount--inc { color: #23823a; }
.ledger-amount--exp { color: #ca1414; }

.ledger-remark {
    margin-top: 0.08rem;
    color: #5f6675;
    font-size: 0.12rem;
    line-height: 0.17rem;
}

.ledger-after {
    margin-top: 0.06rem;
    color: #8b92a1;
    font-size: 0.11rem;
    line-height: 0.16rem;
    font-variant-numeric: tabular-nums;
}

.ledger-footnote {
    margin: 0.12rem 0 0.04rem;
    color: #8b92a1;
    font-size: 0.11rem;
    text-align: center;
}

/* ---------- 基金页 - 顶部余额条 / 错误提示 ---------- */
.fund-alert {
    margin: 0.12rem 0.14rem 0;
    padding: 0.1rem 0.14rem;
    border-radius: 0.1rem;
    font-size: 0.13rem;
    line-height: 0.18rem;
    text-align: center;
}
.fund-alert--error {
    background: rgba(202, 20, 20, 0.08);
    color: #ca1414;
    border: 1px solid rgba(202, 20, 20, 0.2);
}
.fund-balance-bar {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    margin: 0.12rem 0.14rem 0.04rem;
    padding: 0.1rem 0.14rem;
    border-radius: 0.12rem;
    background: linear-gradient(135deg, #fff7e8, #fff2d3);
    border: 1px solid rgba(202, 20, 20, 0.12);
    font-size: 0.13rem;
    color: #6b3a00;
}
.fund-balance-bar-label { font-weight: 500; }
.fund-balance-bar-value {
    flex: 1;
    font-weight: 700;
    color: #ca1414;
    font-size: 0.16rem;
    font-variant-numeric: tabular-nums;
}
.fund-balance-bar-link {
    color: #ca1414;
    font-weight: 600;
    font-size: 0.13rem;
    text-decoration: none;
}

.fund-buy-form { display: contents; }

/* ---------- 我的资产 ---------- */
.my-assets-topbar-link {
    width: auto !important;
    min-width: 0.5rem;
    padding: 0 0.1rem;
    border-radius: 0.16rem;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.13rem;
    text-decoration: none;
    text-align: center;
    line-height: 0.32rem;
}

.my-assets-main {
    padding-bottom: 0.4rem;
}

.my-assets-overview {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0.18rem 0.18rem 0.16rem;
    border-radius: 0.16rem;
    background: linear-gradient(135deg, #ca1414 0%, #e83a2c 65%, #f56e3f 100%);
    color: #fff;
    box-shadow: 0 0.08rem 0.2rem rgba(202, 20, 20, 0.18);
}
.my-assets-overview-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.18), transparent 45%),
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}
.my-assets-overview-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.my-assets-overview-label {
    font-size: 0.13rem;
    color: rgba(255, 255, 255, 0.85);
}
.my-assets-overview-amount {
    position: relative;
    margin-top: 0.06rem;
    font-size: 0.32rem;
    font-weight: 700;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01rem;
}
.my-assets-overview-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.04rem;
    margin-top: 0.16rem;
    padding: 0.1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.my-assets-overview-item { text-align: center; }
.my-assets-overview-item-value {
    font-size: 0.16rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.my-assets-overview-item-label {
    margin-top: 0.04rem;
    font-size: 0.11rem;
    color: rgba(255, 255, 255, 0.8);
}
.my-assets-overview-foot {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.12rem;
    font-size: 0.12rem;
    color: rgba(255, 255, 255, 0.92);
}
.my-assets-overview-foot a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.02rem;
}

.my-assets-tabs {
    margin-top: 0.14rem;
}

.my-assets-empty {
    margin-top: 0.16rem;
    padding: 0.32rem 0.2rem;
    border-radius: 0.16rem;
    background: #fff;
    text-align: center;
    box-shadow: 0 0.04rem 0.12rem rgba(15, 23, 42, 0.04);
}
.my-assets-empty-icon {
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 auto 0.12rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe9c3, #ffd29a);
    display: flex;
    align-items: center;
    justify-content: center;
}
.my-assets-empty-icon img {
    width: 0.36rem;
    height: 0.36rem;
}
.my-assets-empty-title {
    font-size: 0.16rem;
    font-weight: 700;
    color: #1f2024;
}
.my-assets-empty-desc {
    margin-top: 0.06rem;
    font-size: 0.13rem;
    line-height: 0.2rem;
    color: #6b7280;
}
.my-assets-empty-btn {
    display: inline-block;
    margin-top: 0.18rem;
    padding: 0.1rem 0.28rem;
    border-radius: 0.22rem;
    background: linear-gradient(135deg, #ca1414, #e83a2c);
    color: #fff;
    font-size: 0.14rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0.04rem 0.1rem rgba(202, 20, 20, 0.25);
}

.my-assets-list {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    margin-top: 0.14rem;
}

.my-assets-card {
    padding: 0.14rem;
    border-radius: 0.16rem;
    background: #fff;
    box-shadow: 0 0.04rem 0.12rem rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}
.my-assets-card-head {
    display: flex;
    gap: 0.12rem;
    align-items: center;
}
.my-assets-card-cover {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 0.1rem;
    object-fit: cover;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fde2cf, #fdb992);
}
.my-assets-card-head-info { flex: 1; min-width: 0; }
.my-assets-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.06rem;
}
.my-assets-card-title {
    margin: 0;
    font-size: 0.15rem;
    font-weight: 700;
    color: #1f2024;
    line-height: 0.2rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.my-assets-status {
    display: inline-flex;
    align-items: center;
    height: 0.2rem;
    padding: 0 0.08rem;
    border-radius: 0.1rem;
    font-size: 0.11rem;
    font-weight: 600;
    flex-shrink: 0;
}
.my-assets-status--active {
    background: rgba(202, 20, 20, 0.1);
    color: #ca1414;
}
.my-assets-status--done {
    background: rgba(15, 23, 42, 0.06);
    color: #4b5563;
}
.my-assets-status--refunded {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}
.my-assets-card-sub {
    margin-top: 0.04rem;
    font-size: 0.11rem;
    color: #8b92a1;
}

.my-assets-card-meta {
    display: flex;
    align-items: stretch;
    padding: 0.1rem 0.04rem;
    border-radius: 0.1rem;
    background: #f6f7fb;
}
.my-assets-card-meta-item {
    flex: 1;
    text-align: center;
}
.my-assets-card-meta-label {
    font-size: 0.11rem;
    color: #6b7280;
}
.my-assets-card-meta-value {
    margin-top: 0.04rem;
    font-size: 0.14rem;
    font-weight: 700;
    color: #1f2024;
    font-variant-numeric: tabular-nums;
}
.my-assets-card-meta-value--accent { color: #ca1414; }
.my-assets-card-meta-divider {
    width: 1px;
    align-self: center;
    height: 0.28rem;
    background: rgba(15, 23, 42, 0.08);
}

.my-assets-card-progress {
    display: flex;
    flex-direction: column;
    gap: 0.06rem;
}
.my-assets-card-progress-bar {
    height: 0.06rem;
    border-radius: 0.04rem;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
}
.my-assets-card-progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ca1414, #f56e3f);
    border-radius: 0.04rem;
    transition: width .3s;
}
.my-assets-card-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.11rem;
    color: #6b7280;
}

.my-assets-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.1rem;
    border-top: 1px dashed rgba(15, 23, 42, 0.08);
    font-size: 0.12rem;
    color: #6b7280;
}
.my-assets-card-foot-stat {
    display: flex;
    align-items: baseline;
    gap: 0.06rem;
}
.my-assets-card-foot-stat b {
    font-size: 0.14rem;
    color: #1f2024;
    font-variant-numeric: tabular-nums;
}

.profile-card-link {
    margin-left: auto;
    color: #ca1414;
    font-size: 0.12rem;
    text-decoration: none;
    font-weight: 500;
}

/* ---------- 热门产品 ---------- */
.hot-topbar-link {
    width: auto !important;
    min-width: 0.5rem;
    padding: 0 0.1rem;
    border-radius: 0.16rem;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.13rem;
    text-decoration: none;
    text-align: center;
    line-height: 0.32rem;
}

.hot-products-main {
    padding: 0.14rem 0.14rem 0.6rem;
    background: #f6f7fb;
    min-height: calc(100vh - 0.52rem);
}

.hot-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 0.16rem;
    padding: 0.22rem 0.18rem 0.18rem;
    border-radius: 0.16rem;
    background: linear-gradient(135deg, #ca1414 0%, #e83a2c 70%, #f56e3f 100%);
    color: #fff;
    box-shadow: 0 0.08rem 0.18rem rgba(202, 20, 20, 0.18);
}
.hot-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.18), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(255, 235, 196, 0.14), transparent 60%);
    pointer-events: none;
}
.hot-hero-tag {
    position: relative;
    display: inline-block;
    padding: 0.03rem 0.1rem;
    border-radius: 0.1rem;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.11rem;
    letter-spacing: 0.01rem;
}
.hot-hero-title {
    position: relative;
    margin: 0.1rem 0 0.04rem;
    font-size: 0.22rem;
    font-weight: 700;
    line-height: 1.2;
}
.hot-hero-subtitle {
    position: relative;
    margin: 0;
    font-size: 0.12rem;
    line-height: 0.18rem;
    color: rgba(255, 255, 255, 0.86);
}
.hot-hero-stats {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0.16rem;
    padding: 0.1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    gap: 0.04rem;
}
.hot-hero-stat {
    flex: 1;
    text-align: center;
}
.hot-hero-stat-value {
    font-size: 0.2rem;
    font-weight: 700;
    line-height: 1;
}
.hot-hero-stat-value span {
    font-size: 0.12rem;
    font-weight: 500;
    margin-left: 0.02rem;
}
.hot-hero-stat-label {
    margin-top: 0.04rem;
    font-size: 0.11rem;
    color: rgba(255, 255, 255, 0.85);
}
.hot-hero-stat-divider {
    width: 1px;
    height: 0.2rem;
    background: rgba(255, 255, 255, 0.22);
}

.hot-list {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
}

.hot-card {
    background: #fff;
    border-radius: 0.16rem;
    overflow: hidden;
    box-shadow: 0 0.04rem 0.14rem rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
}

.hot-card-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: linear-gradient(135deg, #f5d6a4, #f0a76b);
}
.hot-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hot-card-rank {
    position: absolute;
    top: 0.08rem;
    left: 0.08rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 0.22rem;
    padding: 0 0.1rem;
    border-radius: 0.06rem 0.12rem 0.06rem 0.12rem;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.12rem;
    font-weight: 700;
    letter-spacing: 0.02rem;
    backdrop-filter: blur(4px);
}
.hot-card-rank--top {
    background: linear-gradient(135deg, #ffae31, #ff7236);
    box-shadow: 0 0.02rem 0.06rem rgba(255, 114, 54, 0.4);
}
.hot-card-tag {
    position: absolute;
    top: 0.08rem;
    right: 0.08rem;
    display: inline-flex;
    align-items: center;
    height: 0.22rem;
    padding: 0 0.1rem;
    border-radius: 0.04rem;
    background: linear-gradient(135deg, #ca1414, #e83a2c);
    color: #fff;
    font-size: 0.11rem;
    font-weight: 600;
    box-shadow: 0 0.02rem 0.06rem rgba(202, 20, 20, 0.3);
}

.hot-card-body {
    padding: 0.14rem 0.16rem 0.16rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.hot-card-prefix {
    display: inline-block;
    align-self: flex-start;
    padding: 0.02rem 0.08rem;
    border-radius: 0.04rem;
    background: rgba(202, 20, 20, 0.08);
    color: #ca1414;
    font-size: 0.11rem;
    line-height: 0.16rem;
    font-weight: 500;
}
.hot-card-title {
    margin: 0;
    font-size: 0.18rem;
    font-weight: 700;
    color: #1f2024;
    line-height: 0.24rem;
}

.hot-card-meta {
    display: flex;
    align-items: stretch;
    padding: 0.1rem;
    border-radius: 0.1rem;
    background: #f6f7fb;
    gap: 0.04rem;
}
.hot-card-meta-item {
    flex: 1;
    text-align: center;
}
.hot-card-meta-label {
    display: block;
    font-size: 0.11rem;
    color: #6b7280;
}
.hot-card-meta-value {
    display: block;
    margin-top: 0.04rem;
    font-size: 0.14rem;
    font-weight: 700;
    color: #1f2024;
    font-variant-numeric: tabular-nums;
}
.hot-card-meta-value--accent {
    color: #ca1414;
}

.hot-card-desc {
    margin: 0;
    font-size: 0.13rem;
    line-height: 0.2rem;
    color: #4b5563;
    text-align: justify;
}

.hot-card-actions {
    display: flex;
    gap: 0.1rem;
}
.hot-card-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 0.36rem;
    border-radius: 0.18rem;
    font-size: 0.13rem;
    font-weight: 600;
    text-decoration: none;
}
.hot-card-btn--ghost {
    border: 1px solid #ca1414;
    color: #ca1414;
    background: #fff;
}
.hot-card-btn--solid {
    background: linear-gradient(135deg, #ca1414, #e83a2c);
    color: #fff;
    box-shadow: 0 0.04rem 0.1rem rgba(202, 20, 20, 0.25);
}

.hot-footnote {
    margin-top: 0.2rem;
    font-size: 0.11rem;
    color: #8b92a1;
    text-align: center;
}

/* ---------- 项目介绍 ---------- */
.intro-main {
    padding: 0.14rem 0.14rem 0.6rem;
    background: #f4f1ec;
    min-height: calc(100vh - 0.52rem);
}

.intro-hero {
    position: relative;
    padding: 0.24rem 0.2rem 0.22rem;
    border-radius: 0.16rem;
    background: linear-gradient(180deg, #fff7ec 0%, #fff 100%);
    border: 1px solid rgba(202, 20, 20, 0.12);
    text-align: center;
    box-shadow: 0 0.04rem 0.12rem rgba(202, 20, 20, 0.06);
}
.intro-hero-emblem {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 auto 0.1rem;
    display: block;
    object-fit: contain;
}
.intro-hero-title {
    margin: 0;
    font-size: 0.26rem;
    line-height: 0.36rem;
    font-weight: 800;
    color: #ca1414;
    letter-spacing: 0.02rem;
}
.intro-hero-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
    margin: 0.1rem 0 0.12rem;
}
.intro-hero-deco span {
    width: 0.5rem;
    height: 1px;
    background: rgba(202, 20, 20, 0.35);
}
.intro-hero-deco i {
    width: 0.06rem;
    height: 0.06rem;
    border-radius: 50%;
    background: #ca1414;
    transform: rotate(45deg);
}
.intro-hero-desc {
    margin: 0;
    font-size: 0.16rem;
    line-height: 0.26rem;
    color: #333;
    font-weight: 500;
}
.intro-hero-desc b {
    color: #ca1414;
    font-size: 0.2rem;
    margin: 0 0.04rem;
    font-weight: 800;
}

.intro-toc {
    margin-top: 0.16rem;
    padding: 0.14rem 0.16rem;
    border-radius: 0.16rem;
    background: #fff;
    box-shadow: 0 0.04rem 0.12rem rgba(15, 23, 42, 0.05);
}
.intro-toc-title {
    position: relative;
    padding-left: 0.1rem;
    margin-bottom: 0.1rem;
    font-size: 0.14rem;
    font-weight: 700;
    color: #1f2024;
}
.intro-toc-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.04rem;
    height: 0.14rem;
    border-radius: 0.02rem;
    background: linear-gradient(180deg, #ca1414, #f56e3f);
}
.intro-toc-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.04rem;
}
.intro-toc-item {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.08rem 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: #1f2024;
}
.intro-toc-item:last-child { border-bottom: none; }
.intro-toc-no {
    flex-shrink: 0;
    width: 0.26rem;
    text-align: center;
    font-size: 0.13rem;
    font-weight: 700;
    color: #ca1414;
    font-variant-numeric: tabular-nums;
}
.intro-toc-name {
    flex: 1;
    font-size: 0.13rem;
    color: #1f2024;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.intro-list {
    margin-top: 0.16rem;
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
}

.intro-card {
    background: #fff;
    border-radius: 0.16rem;
    overflow: hidden;
    box-shadow: 0 0.04rem 0.14rem rgba(15, 23, 42, 0.06);
    scroll-margin-top: 0.6rem;
}

.intro-card-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
}
.intro-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.intro-card-cover-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.intro-card-cover-info {
    position: absolute;
    top: 0.12rem;
    left: 0.14rem;
    display: flex;
    align-items: center;
    gap: 0.08rem;
}
.intro-card-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 0.06rem;
    background: linear-gradient(135deg, #ffcf66, #f59e0b);
    color: #4a2a00;
    font-size: 0.14rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 0.02rem 0.06rem rgba(0, 0, 0, 0.18);
}
.intro-card-prefix {
    display: inline-flex;
    align-items: center;
    height: 0.22rem;
    padding: 0 0.08rem;
    border-radius: 0.04rem;
    background: rgba(255, 255, 255, 0.92);
    color: #ca1414;
    font-size: 0.11rem;
    font-weight: 600;
}
.intro-card-title-on-cover {
    position: absolute;
    left: 0.14rem;
    right: 0.14rem;
    bottom: 0.12rem;
    margin: 0;
    color: #fff;
    font-size: 0.2rem;
    font-weight: 700;
    line-height: 0.26rem;
    text-shadow: 0 0.02rem 0.06rem rgba(0, 0, 0, 0.4);
}

.intro-card-body {
    padding: 0.16rem 0.16rem 0.18rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.intro-card-section-title {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    font-size: 0.13rem;
    font-weight: 700;
    color: #1f2024;
    margin-top: 0.04rem;
}
.intro-card-section-bar {
    width: 0.04rem;
    height: 0.14rem;
    border-radius: 0.02rem;
    background: linear-gradient(180deg, #ca1414, #f56e3f);
}
.intro-card-desc {
    margin: 0;
    font-size: 0.13rem;
    line-height: 0.22rem;
    color: #4b5563;
    text-align: justify;
    text-indent: 2em;
}

.intro-card-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.06rem;
}
.intro-card-keyword {
    display: inline-flex;
    align-items: center;
    height: 0.22rem;
    padding: 0 0.1rem;
    border-radius: 0.04rem;
    background: rgba(202, 20, 20, 0.07);
    color: #ca1414;
    font-size: 0.12rem;
    font-weight: 500;
}

.intro-card-link {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 0.04rem;
    margin-top: 0.04rem;
    color: #ca1414;
    font-size: 0.13rem;
    font-weight: 600;
    text-decoration: none;
}
.intro-card-link-arrow {
    font-size: 0.16rem;
    line-height: 1;
}

.intro-footer {
    margin-top: 0.24rem;
    text-align: center;
}
.intro-footer-line {
    width: 0.4rem;
    height: 2px;
    margin: 0 auto 0.1rem;
    background: linear-gradient(90deg, #ca1414, #f56e3f);
    border-radius: 2px;
}
.intro-footer-text {
    font-size: 0.11rem;
    line-height: 0.18rem;
    color: #8b92a1;
}

/* ---------- 合作单位 ---------- */
.partners-main {
    padding: 0.14rem 0.14rem 0.6rem;
    background: #f4f1ec;
    min-height: calc(100vh - 0.52rem);
}

.partners-hero {
    position: relative;
    padding: 0.24rem 0.2rem 0.22rem;
    border-radius: 0.16rem;
    background: linear-gradient(180deg, #fff7ec 0%, #fff 100%);
    border: 1px solid rgba(202, 20, 20, 0.12);
    text-align: center;
    box-shadow: 0 0.04rem 0.12rem rgba(202, 20, 20, 0.06);
}
.partners-hero-emblem {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 auto 0.1rem;
    display: block;
    object-fit: contain;
}
.partners-hero-title {
    margin: 0;
    font-size: 0.26rem;
    line-height: 0.36rem;
    font-weight: 800;
    color: #ca1414;
    letter-spacing: 0.02rem;
}
.partners-hero-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
    margin: 0.1rem 0 0.12rem;
}
.partners-hero-deco span {
    width: 0.5rem;
    height: 1px;
    background: rgba(202, 20, 20, 0.35);
}
.partners-hero-deco i {
    width: 0.06rem;
    height: 0.06rem;
    border-radius: 50%;
    background: #ca1414;
    transform: rotate(45deg);
}
.partners-hero-desc {
    margin: 0;
    font-size: 0.16rem;
    line-height: 0.26rem;
    color: #333;
    font-weight: 500;
}
.partners-hero-desc b {
    color: #ca1414;
    font-size: 0.2rem;
    margin: 0 0.04rem;
    font-weight: 800;
}

.partners-list {
    margin-top: 0.16rem;
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
}

.partner-card {
    background: #fff;
    border-radius: 0.14rem;
    padding: 0.16rem;
    box-shadow: 0 0.04rem 0.12rem rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    border-left: 0.06rem solid #ca1414;
}

.partner-card-head {
    display: flex;
    gap: 0.12rem;
    align-items: center;
}

.partner-logo-box {
    flex-shrink: 0;
    width: 0.82rem;
    height: 0.64rem;
    border-radius: 0.1rem;
    background: #fff;
    border: 1px solid rgba(202, 20, 20, 0.12);
    box-shadow: 0 0.02rem 0.08rem rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.06rem;
    overflow: hidden;
}
.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.partner-seal {
    flex-shrink: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #fff;
    border: 0.02rem solid rgba(202, 20, 20, 0.18);
    box-shadow: 0 0.02rem 0.08rem rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.partner-symbol {
    position: relative;
    width: 0.38rem;
    height: 0.38rem;
    display: block;
}
.partner-symbol-main,
.partner-symbol-sub,
.partner-symbol::before,
.partner-symbol::after,
.partner-symbol-main::before,
.partner-symbol-main::after,
.partner-symbol-sub::before,
.partner-symbol-sub::after {
    content: '';
    position: absolute;
    display: block;
}

/* 农科院：参考绿色圆形、农业/植物元素，简化为麦穗幼苗 */
.partner-seal--agri {
    background: linear-gradient(180deg, #f2fff2, #fff);
    border-color: rgba(22, 163, 74, 0.28);
}
.partner-seal--agri .partner-symbol-main {
    left: 50%;
    bottom: 0.04rem;
    width: 0.04rem;
    height: 0.25rem;
    transform: translateX(-50%);
    border-radius: 0.04rem;
    background: #16a34a;
}
.partner-seal--agri .partner-symbol-main::before,
.partner-seal--agri .partner-symbol-main::after {
    width: 0.18rem;
    height: 0.1rem;
    border-radius: 0.18rem 0.18rem 0.02rem 0.18rem;
    background: #22c55e;
    top: 0.04rem;
}
.partner-seal--agri .partner-symbol-main::before {
    right: 0;
    transform: rotate(-34deg);
}
.partner-seal--agri .partner-symbol-main::after {
    left: 0;
    transform: rotate(214deg);
}
.partner-seal--agri .partner-symbol-sub {
    left: 50%;
    bottom: 0;
    width: 0.32rem;
    height: 0.08rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.16);
}

/* 工程院：参考新版红金工程院徽的山峰/工程线条，简化为金环红峰 */
.partner-seal--engineering {
    background: linear-gradient(180deg, #fff8e8, #fff);
    border-color: rgba(202, 20, 20, 0.28);
}
.partner-seal--engineering .partner-symbol {
    border: 0.03rem solid #d4a017;
    border-radius: 50%;
}
.partner-seal--engineering .partner-symbol-main {
    left: 0.06rem;
    right: 0.06rem;
    bottom: 0.1rem;
    height: 0.2rem;
    background: linear-gradient(135deg, transparent 0 22%, #ca1414 23% 45%, transparent 46% 54%, #ca1414 55% 78%, transparent 79%);
}
.partner-seal--engineering .partner-symbol-sub {
    left: 0.08rem;
    right: 0.08rem;
    bottom: 0.09rem;
    height: 0.03rem;
    border-radius: 0.03rem;
    background: #d4a017;
}

/* 航天科技：参考蓝色轨道与上升箭头，简化为轨道火箭 */
.partner-seal--aerospace {
    background: linear-gradient(180deg, #eef7ff, #fff);
    border-color: rgba(37, 99, 235, 0.28);
}
.partner-seal--aerospace .partner-symbol::before,
.partner-seal--aerospace .partner-symbol::after {
    left: 0.02rem;
    top: 0.12rem;
    width: 0.34rem;
    height: 0.14rem;
    border: 0.02rem solid #2563eb;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    transform: rotate(-24deg);
}
.partner-seal--aerospace .partner-symbol::after {
    transform: rotate(24deg);
    opacity: 0.45;
}
.partner-seal--aerospace .partner-symbol-main {
    left: 0.18rem;
    top: 0.04rem;
    width: 0.08rem;
    height: 0.26rem;
    border-radius: 0.08rem 0.08rem 0.02rem 0.02rem;
    background: #2563eb;
    transform: rotate(35deg);
}
.partner-seal--aerospace .partner-symbol-main::before {
    left: 0.01rem;
    top: -0.05rem;
    width: 0;
    height: 0;
    border-left: 0.03rem solid transparent;
    border-right: 0.03rem solid transparent;
    border-bottom: 0.07rem solid #2563eb;
}
.partner-seal--aerospace .partner-symbol-sub {
    right: 0.02rem;
    bottom: 0.06rem;
    width: 0.06rem;
    height: 0.06rem;
    border-radius: 50%;
    background: #f59e0b;
}

/* 中国石油：参考红黄“宝石花”，用径向花瓣表达 */
.partner-seal--petroleum {
    background: linear-gradient(180deg, #fff7ed, #fff);
    border-color: rgba(220, 38, 38, 0.28);
}
.partner-seal--petroleum .partner-symbol-main {
    inset: 0.02rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, #fff 0 18%, transparent 19%),
        conic-gradient(from 18deg, #dc2626 0 18deg, #facc15 18deg 36deg, #dc2626 36deg 54deg, #facc15 54deg 72deg, #dc2626 72deg 90deg, #facc15 90deg 108deg, #dc2626 108deg 126deg, #facc15 126deg 144deg, #dc2626 144deg 162deg, #facc15 162deg 180deg, #dc2626 180deg 198deg, #facc15 198deg 216deg, #dc2626 216deg 234deg, #facc15 234deg 252deg, #dc2626 252deg 270deg, #facc15 270deg 288deg, #dc2626 288deg 306deg, #facc15 306deg 324deg, #dc2626 324deg 342deg, #facc15 342deg 360deg);
    clip-path: polygon(50% 0%, 58% 27%, 85% 15%, 73% 42%, 100% 50%, 73% 58%, 85% 85%, 58% 73%, 50% 100%, 42% 73%, 15% 85%, 27% 58%, 0% 50%, 27% 42%, 15% 15%, 42% 27%);
}
.partner-seal--petroleum .partner-symbol-sub {
    left: 50%;
    top: 50%;
    width: 0.1rem;
    height: 0.1rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #dc2626;
    box-shadow: 0 0 0 0.03rem #fff;
}

/* 环科院：参考生态环保绿色/叶片/水滴元素，简化为叶滴 */
.partner-seal--environment {
    background: linear-gradient(180deg, #effdf5, #fff);
    border-color: rgba(5, 150, 105, 0.28);
}
.partner-seal--environment .partner-symbol-main {
    left: 0.05rem;
    bottom: 0.05rem;
    width: 0.24rem;
    height: 0.18rem;
    border-radius: 0.22rem 0.22rem 0.02rem 0.22rem;
    background: #16a34a;
    transform: rotate(-18deg);
}
.partner-seal--environment .partner-symbol-main::after {
    left: 0.06rem;
    top: 0.04rem;
    width: 0.16rem;
    height: 0.02rem;
    border-radius: 0.02rem;
    background: rgba(255, 255, 255, 0.75);
    transform: rotate(24deg);
}
.partner-seal--environment .partner-symbol-sub {
    right: 0.04rem;
    top: 0.02rem;
    width: 0.16rem;
    height: 0.22rem;
    border-radius: 0.16rem 0.16rem 0.16rem 0.02rem;
    background: #38bdf8;
    transform: rotate(38deg);
}

.partner-card-titles {
    flex: 1;
    min-width: 0;
}
.partner-card-no {
    font-size: 0.11rem;
    color: #ca1414;
    letter-spacing: 0.02rem;
    margin-bottom: 0.04rem;
}
.partner-card-name {
    margin: 0;
    font-size: 0.18rem;
    font-weight: 700;
    color: #1f2024;
    line-height: 0.24rem;
}
.partner-card-en {
    margin-top: 0.04rem;
    font-size: 0.11rem;
    color: #8b92a1;
    line-height: 0.16rem;
}

.partner-card-field {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    padding: 0.08rem 0.12rem;
    border-radius: 0.08rem;
    background: rgba(202, 20, 20, 0.06);
}
.partner-card-field-label {
    font-size: 0.12rem;
    color: #8b92a1;
    font-weight: 500;
}
.partner-card-field-value {
    flex: 1;
    font-size: 0.14rem;
    color: #ca1414;
    font-weight: 700;
}

.partner-card-role {
    font-size: 0.14rem;
    line-height: 0.22rem;
    color: #4b5563;
    text-align: justify;
    text-indent: 2em;
}

.partners-statement {
    position: relative;
    margin-top: 0.18rem;
    padding: 0.18rem 0.18rem 0.18rem 1.1rem;
    border-radius: 0.14rem;
    background: linear-gradient(135deg, #fff7ec 0%, #fff 100%);
    border: 1px dashed rgba(202, 20, 20, 0.4);
}
.partners-statement-stamp {
    position: absolute;
    left: 0.16rem;
    top: 50%;
    transform: translateY(-50%) rotate(-12deg);
    width: 0.78rem;
    height: 0.78rem;
    border-radius: 50%;
    border: 0.04rem solid #ca1414;
    color: #ca1414;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.9);
}
.partners-statement-stamp span {
    font-size: 0.18rem;
    letter-spacing: 0.04rem;
}
.partners-statement-stamp span + span {
    margin-top: 0.06rem;
}
.partners-statement-text h3 {
    margin: 0 0 0.06rem;
    font-size: 0.16rem;
    color: #ca1414;
    font-weight: 700;
}
.partners-statement-text p {
    margin: 0;
    font-size: 0.13rem;
    line-height: 0.2rem;
    color: #4b5563;
    text-align: justify;
}
.partners-statement-text strong {
    color: #ca1414;
    font-weight: 600;
}

.partners-footnote {
    margin-top: 0.18rem;
    text-align: center;
    font-size: 0.11rem;
    color: #8b92a1;
}

.partners-disclaimer {
    margin-top: 0.14rem;
    padding: 0.14rem 0.16rem;
    border-radius: 0.12rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.28);
}
.partners-disclaimer h3 {
    margin: 0 0 0.06rem;
    font-size: 0.14rem;
    line-height: 0.2rem;
    color: #ca1414;
    font-weight: 700;
}
.partners-disclaimer p {
    margin: 0;
    font-size: 0.12rem;
    line-height: 0.2rem;
    color: #6b7280;
    text-align: justify;
}

/* ---------- 组织架构 (Government/Official Style) ---------- */
.organization-main {
    padding: 0.12rem;
    background: #f0f2f5;
    min-height: calc(100vh - 0.52rem);
}

.organization-hero {
    padding: 0.24rem 0.16rem 0.2rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 0.04rem solid #d32f2f;
    text-align: center;
    margin-bottom: 0.12rem;
}
.organization-hero-emblem {
    width: 0.56rem;
    height: 0.56rem;
    margin: 0 auto 0.12rem;
    display: block;
    object-fit: contain;
}
.organization-hero-title {
    margin: 0;
    font-size: 0.24rem;
    line-height: 0.34rem;
    font-weight: bold;
    color: #d32f2f;
    letter-spacing: 0.02rem;
}
.organization-hero-deco {
    margin: 0.16rem 0;
    border-bottom: 2px solid #d32f2f;
    position: relative;
}
.organization-hero-deco::after {
    content: "★";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d32f2f;
    font-size: 0.16rem;
    background: #fff;
    padding: 0 0.1rem;
}
.organization-hero-deco span,
.organization-hero-deco i {
    display: none;
}
.organization-hero-desc {
    margin: 0;
    font-size: 0.16rem;
    line-height: 0.26rem;
    color: #333;
    font-weight: bold;
}

.organization-notice-card,
.organization-process {
    margin-top: 0.12rem;
    padding: 0.16rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0.02rem;
}
.organization-notice-head {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 0.12rem;
    margin-bottom: 0.16rem;
    text-align: center;
}
.organization-notice-kicker {
    display: none;
}
.organization-notice-head h2 {
    margin: 0 0 0.08rem;
    font-size: 0.18rem;
    line-height: 0.26rem;
    color: #000;
    font-weight: bold;
}
.organization-notice-badge {
    display: inline-block;
    font-size: 0.14rem;
    color: #666;
    font-family: "SimSun", "宋体", serif;
}
.organization-notice-image-wrap,
.organization-leaders-image-wrap {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 0.04rem;
    background: #fafafa;
}
.organization-leaders-image-wrap {
    margin-top: 0.16rem;
}
.organization-notice-image,
.organization-leaders-image {
    display: block;
    width: 100%;
    height: auto;
}
.organization-notice-tip {
    margin-top: 0.16rem;
    padding: 0.12rem;
    background: #fff8f8;
    border: 1px solid #f5c2c7;
    color: #d32f2f;
    font-size: 0.14rem;
    line-height: 0.22rem;
    border-radius: 0.02rem;
}

.organization-process h2 {
    margin: 0 0 0.16rem;
    font-size: 0.18rem;
    color: #000;
    border-left: 0.04rem solid #d32f2f;
    padding-left: 0.08rem;
    line-height: 1;
}
.organization-process-list {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    border-radius: 0.02rem;
}
.organization-process-item {
    display: flex;
    gap: 0.12rem;
    align-items: center;
    padding: 0.12rem;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}
.organization-process-item:last-child {
    border-bottom: none;
}
.organization-process-item > span {
    width: 0.28rem;
    height: 0.28rem;
    background: #f0f2f5;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.15rem;
    flex-shrink: 0;
    border: 1px solid #ccc;
}
.organization-process-item strong {
    display: block;
    color: #000;
    font-size: 0.15rem;
    line-height: 0.22rem;
}
.organization-process-item p {
    margin: 0.04rem 0 0;
    color: #666;
    font-size: 0.13rem;
    line-height: 0.2rem;
}
.organization-archive-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0.44rem;
    margin-top: 0.2rem;
    background: #d32f2f;
    color: #fff;
    font-size: 0.16rem;
    font-weight: bold;
    border-radius: 0.02rem;
    text-decoration: none;
    letter-spacing: 0.02rem;
    box-shadow: none;
}
.organization-archive-btn:active {
    background: #b71c1c;
}
.organization-notice-head div {
    width: 100%;
}
.organization-notice-badge {
    margin-top: 0.08rem;
}

/* ========= 电子版帮扶档案凭证 (archive completed) ========= */
.arc-stage--done {
    padding: 0.12rem 0.12rem 0.4rem;
    background: #f0f2f5;
}
.arc-done-banner {
    margin: 0 0 0.12rem;
    padding: 0.1rem 0.12rem;
    background: #fff7e6;
    border: 1px solid #f0d68b;
    border-radius: 0.04rem;
    color: #8a4b00;
    font-size: 0.13rem;
    text-align: center;
    font-weight: bold;
}
.arc-done-banner-check {
    display: inline-block;
    width: 0.18rem;
    height: 0.18rem;
    line-height: 0.18rem;
    text-align: center;
    background: #52c41a;
    color: #fff;
    border-radius: 50%;
    font-size: 0.12rem;
    margin-right: 0.04rem;
    vertical-align: -0.02rem;
}

/* 整张档案纸 */
.arc-doc {
    position: relative;
    background: #fff;
    border: 1px solid #d9d9d9;
    box-shadow: 0 0.04rem 0.18rem rgba(0, 0, 0, 0.08);
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.arc-doc-header {
    position: relative;
    padding: 0.18rem 0.16rem 0.14rem;
    background: #fff;
    text-align: center;
}
.arc-doc-header-emblem {
    display: block;
    width: 0.56rem;
    height: 0.56rem;
    margin: 0 auto 0.08rem;
    object-fit: contain;
}
.arc-doc-header-title {
    margin: 0;
    font-size: 0.28rem;
    line-height: 0.4rem;
    font-weight: bold;
    color: #d32f2f;
    letter-spacing: 0.08rem;
    text-indent: 0.08rem;
    font-family: "STSong", "SimSun", "宋体", "Source Han Serif SC", serif;
}
.arc-doc-header-rule {
    width: 100%;
    height: 0;
    margin-top: 0.08rem;
    border-top: 2px solid #d32f2f;
    border-bottom: 1px solid #d32f2f;
    padding-top: 0.03rem;
}
.arc-doc-no {
    font-family: "STKaiti", "Kaiti", "楷体", serif;
    font-size: 0.12rem;
    color: #000;
}
/* 无照片时：保留原来的右上角位置 */
.arc-doc-no--solo {
    position: absolute;
    top: 0.16rem;
    right: 0.12rem;
}
/* 有照片时：紧贴照片下方，以照片中心为基准，单行显示，不换行 */
.arc-doc-no--under-photo {
    position: absolute;
    top: calc(1.78rem + 0.92rem + 0.06rem);
    right: 0.53rem;                 /* 照片右边距 0.18 + 半宽 0.35 = 照片中心 */
    transform: translateX(50%);
    width: auto;
    text-align: center;
    white-space: nowrap;
    font-size: 0.105rem;
    line-height: 0.16rem;
    letter-spacing: 0.01rem;
    color: #333;
    z-index: 2;
}
.arc-doc-photo {
    position: absolute;
    top: 0.36rem;
    right: 0.14rem;
    width: 0.48rem;
    height: 0.62rem;
    border: 1.5px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-family: "STKaiti", "Kaiti", "楷体", serif;
    font-size: 0.12rem;
    background: #fafafa;
    letter-spacing: 0.04rem;
    writing-mode: vertical-rl;
}

.arc-doc-body {
    padding: 0.16rem 0.18rem 0.2rem;
}

.arc-doc-section {
    margin-bottom: 0.16rem;
}
.arc-doc-section-title {
    margin: 0 0 0.08rem;
    font-size: 0.15rem;
    font-weight: bold;
    color: #000;
    line-height: 1.4;
}
.arc-doc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.arc-doc-list li {
    font-size: 0.13rem;
    line-height: 0.24rem;
    color: #000;
    margin-bottom: 0.04rem;
    padding-left: 0.18rem;
    word-break: break-all;
}
.arc-doc-list li.arc-doc-sub {
    padding-left: 0.36rem;
    color: #333;
    font-size: 0.125rem;
}
.arc-doc-list li span {
    color: #000;
}
.arc-doc-list li em {
    font-style: normal;
    color: #000;
    border-bottom: 1px solid #999;
    padding: 0 0.04rem;
    display: inline-block;
    min-width: 0.6rem;
    line-height: 0.2rem;
}
.arc-doc-list li.arc-doc-sub em {
    border-bottom: none;
    color: #000;
    padding: 0;
}
.arc-doc-amount {
    color: #d32f2f !important;
    font-weight: bold;
    font-size: 0.15rem !important;
    border-bottom-color: #d32f2f !important;
}

/* 受助人 / 收款人姓名 —— 与正文同字号、不加粗，仅保持下划线区分 */
.arc-doc-list li em.arc-doc-name {
    font-weight: normal;
    font-size: 0.13rem;
    letter-spacing: 0;
    color: #1a1a1a;
    border-bottom-color: #888;
    padding: 0 0.04rem;
}

/* 签字区 + 印章 */
.arc-doc-sign-area {
    position: relative;
    margin-top: 0.5rem;
    padding-top: 0.34rem;
    border-top: 1px dashed #ccc;
}
.arc-doc-sign-row {
    display: flex;
    gap: 0.12rem;
    margin-bottom: 0.12rem;
}
.arc-doc-sign-row--single {
    justify-content: flex-start;
}
.arc-doc-sign-cell {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.arc-doc-sign-cell--date {
    flex: 0 0 60%;
    align-items: center;
}
.arc-doc-sign-line {
    width: 100%;
    height: 0.46rem;
    border-bottom: 1px solid #555;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 0.02rem;
}
.arc-doc-sign-line span {
    font-family: "Kaiti", "STKaiti", "楷体", serif;
    font-size: 0.2rem;
    color: #1a1a1a;
}
.arc-doc-sign-stamp {
    font-family: "Kaiti", "STKaiti", "楷体", serif;
    font-size: 0.14rem;
    font-weight: bold;
    color: #d32f2f;
    transform: rotate(-2deg);
}
.arc-doc-sign-img {
    max-height: 0.46rem;
    max-width: 100%;
    object-fit: contain;
    filter: contrast(1.6) brightness(0.9) drop-shadow(0 0 1px rgba(0,0,0,0.5));
}
.arc-doc-sign-name {
    font-family: "STKaiti", "Kaiti", "楷体", "KaiTi", serif;
    font-size: 0.34rem;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: 0.08rem;
    -webkit-text-stroke: 0.6px #000;
}
.arc-doc-sign-label {
    margin-top: 0.04rem;
    font-size: 0.12rem;
    color: #333;
}

.arc-doc-seal {
    position: absolute;
    right: 0.06rem;
    bottom: 0.32rem;
    width: 1.05rem;
    height: 1.05rem;
    object-fit: contain;
    pointer-events: none;
    opacity: 0.96;
    z-index: 2;
}
.arc-doc-seal--mof {
    right: auto;
    left: 0.06rem;
    bottom: 0.32rem;
    width: 1.05rem;
    height: 1.05rem;
    transform: rotate(-8deg);
    opacity: 0.92;
}

/* filled 阶段预览：受助人签字占位 + 印章占位（文本替代图章图片） */
.arc-doc-sign-placeholder {
    font-family: "Kaiti", "STKaiti", "楷体", serif;
    font-size: 0.13rem;
    color: #b6b6b6;
    letter-spacing: 0.02rem;
}
.arc-doc-seal-text {
    position: absolute;
    right: 0.1rem;
    bottom: 0.42rem;
    width: 1.05rem;
    height: 1.05rem;
    color: #c0392b;
    font-family: "STSong", "SimSun", "宋体", serif;
    font-size: 0.12rem;
    line-height: 0.18rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.06rem;
    opacity: 0.85;
    z-index: 2;
}

/* 底部按钮 */
.arc-stage--done .arc-done-actions {
    margin-top: 0.18rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

/* 电子档案 → 离屏 720px 渲染 + 图片输出 */
.arc-doc-stage {
    position: fixed;
    left: -10000px;
    top: 0;
    width: 720px;
    pointer-events: none;
    z-index: -1;
    background: #fff;
}
.arc-doc-stage .arc-doc {
    width: 720px;
    box-shadow: none;
    border: 1px solid #d9d9d9;
}

/* 720px A4 模板下 px 单位覆盖（让档案接近模板比例） */
.arc-doc-stage .arc-doc-header {
    padding: 26px 30px 18px;
}
.arc-doc-stage .arc-doc-header-emblem {
    width: 78px;
    height: 78px;
    margin: 0 auto 14px;
}
.arc-doc-stage .arc-doc-header-title {
    font-size: 46px;
    line-height: 60px;
    letter-spacing: 14px;
    text-indent: 14px;
}
.arc-doc-stage .arc-doc-header-rule {
    margin-top: 14px;
    border-top-width: 3px;
    padding-top: 4px;
}
.arc-doc-stage .arc-doc-no {
    font-size: 18px;
}
.arc-doc-stage .arc-doc-no--solo {
    top: 26px;
    right: 22px;
}
.arc-doc-stage .arc-doc-no--under-photo {
    top: calc(268px + 174px + 8px);
    right: 96px;                    /* 照片右边距 30 + 半宽 66 = 照片中心 */
    transform: translateX(50%);
    width: auto;
    white-space: nowrap;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1px;
}
.arc-doc-stage .arc-doc-body {
    padding: 26px 38px 32px;
}
.arc-doc-stage .arc-doc-section {
    margin-bottom: 22px;
}
.arc-doc-stage .arc-doc-section-title {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.3;
}
.arc-doc-stage .arc-doc-list li {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 2px;
    padding-left: 28px;
}
.arc-doc-stage .arc-doc-list li.arc-doc-sub {
    font-size: 17px;
    padding-left: 56px;
}
.arc-doc-stage .arc-doc-list li em {
    min-width: 110px;
    line-height: 28px;
    padding: 0 8px;
    border-bottom: 1px solid #888;
}
.arc-doc-stage .arc-doc-amount {
    font-size: 22px !important;
}
.arc-doc-stage .arc-doc-list li em.arc-doc-name {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0;
    padding: 0 6px;
}
.arc-doc-stage .arc-doc-sign-area {
    padding-top: 56px;
    margin-top: 80px;
}
.arc-doc-stage .arc-doc-sign-row {
    gap: 28px;
    margin-bottom: 16px;
}
.arc-doc-stage .arc-doc-sign-cell--date {
    flex: 0 0 60%;
}
.arc-doc-stage .arc-doc-sign-line {
    height: 70px;
    padding-bottom: 4px;
}
.arc-doc-stage .arc-doc-sign-stamp,
.arc-doc-stage .arc-doc-sign-line span {
    font-size: 28px;
}
.arc-doc-stage .arc-doc-sign-name {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 8px;
    -webkit-text-stroke: 1px #000;
}
.arc-doc-stage .arc-doc-sign-img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    filter: contrast(1.8) brightness(0.9) drop-shadow(0 0 1px rgba(0,0,0,0.5));
}
.arc-doc-stage .arc-doc-sign-label {
    margin-top: 8px;
    font-size: 17px;
}
.arc-doc-stage .arc-doc-seal {
    width: 160px;
    height: 160px;
    right: 18px;
    bottom: 50px;
}
.arc-doc-stage .arc-doc-seal--mof {
    right: auto;
    left: 18px;
    bottom: 50px;
    width: 160px;
    height: 160px;
    transform: rotate(-8deg);
    opacity: 0.9;
}
.arc-doc-stage .arc-doc-sign-placeholder {
    font-size: 22px;
    color: #b6b6b6;
    letter-spacing: 1px;
}
.arc-doc-stage .arc-doc-seal-text {
    width: 168px;
    height: 168px;
    right: 24px;
    bottom: 60px;
    font-size: 18px;
    line-height: 26px;
    padding: 12px;
}
.arc-doc-stage--fallback {
    position: static;
    left: auto;
    width: 100%;
    pointer-events: auto;
    z-index: auto;
}
.arc-doc-stage--fallback .arc-doc {
    width: 100%;
}

.arc-doc-image-loading {
    margin: 0;
    padding: 0.6rem 0.1rem;
    text-align: center;
    background: #fff;
    border: 1px dashed #ddd;
    color: #666;
    font-size: 0.13rem;
}
.arc-doc-image-spinner {
    width: 0.32rem;
    height: 0.32rem;
    margin: 0 auto 0.12rem;
    border: 0.03rem solid #f0d68b;
    border-top-color: #d32f2f;
    border-radius: 50%;
    animation: arc-doc-spin 0.9s linear infinite;
}
@keyframes arc-doc-spin {
    to { transform: rotate(360deg); }
}

.arc-doc-image-wrap {
    margin-top: 0;
    text-align: center;
}
.arc-doc-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #d9d9d9;
    box-shadow: 0 0.04rem 0.18rem rgba(0, 0, 0, 0.08);
    background: #fff;
    -webkit-touch-callout: default;
    touch-action: manipulation;
}
.arc-doc-image-tip {
    margin-top: 0.1rem;
    font-size: 0.12rem;
    color: #8a4b00;
    background: #fff7e6;
    border: 1px dashed #f0d68b;
    padding: 0.06rem 0.1rem;
    border-radius: 0.04rem;
    display: inline-block;
}

/* 保存档案到相册按钮 */
.arc-doc-save-icon {
    display: inline-block;
    margin-right: 0.06rem;
    font-size: 0.16rem;
    line-height: 1;
    transform: translateY(0.01rem);
}
.arc-doc-save-toast {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    max-width: 80%;
    padding: 0.14rem 0.18rem;
    background: rgba(0, 0, 0, 0.82);
    color: #fff;
    font-size: 0.14rem;
    line-height: 0.22rem;
    border-radius: 0.08rem;
    text-align: center;
    box-shadow: 0 0.06rem 0.18rem rgba(0, 0, 0, 0.25);
}

/* 建档表单 - 上传本人照片 */
.archive-photo-uploader {
    margin: 0 0.16rem 0.18rem;
    padding: 0.14rem 0.16rem;
    background: #fffbe6;
    border: 1px dashed #f0d68b;
    border-radius: 0.08rem;
    text-align: center;
}
.archive-photo-uploader-label {
    display: inline-block;
    cursor: pointer;
}
.archive-photo-uploader-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 0.96rem;
    height: 1.28rem;
    margin: 0 auto 0.08rem;
    border: 1.5px dashed #d32f2f;
    background: #fff;
    color: #d32f2f;
    overflow: hidden;
    position: relative;
}
.archive-photo-uploader-thumb[data-has-photo="1"] {
    border-style: solid;
}
.archive-photo-uploader-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.archive-photo-uploader-icon {
    font-size: 0.32rem;
    line-height: 1;
    margin-bottom: 0.06rem;
}
.archive-photo-uploader-hint {
    font-size: 0.12rem;
    color: #d32f2f;
}
.archive-photo-uploader-tip {
    font-size: 0.12rem;
    color: #8a4b00;
    line-height: 0.18rem;
}

/* 电子档案 - 真实照片：移到表头下方右侧，避免压住标题与档案编号 */
.arc-doc-photo--real {
    position: absolute;
    top: 1.78rem;
    right: 0.18rem;
    width: 0.7rem;
    height: 0.92rem;
    border: 1.5px solid #555;
    background: #fff;
    overflow: hidden;
    padding: 0;
    writing-mode: horizontal-tb;
    z-index: 2;
}
.arc-doc-photo--real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* 让出受助信息前几行的右侧空间，避免值文字被照片遮挡 */
.arc-doc-photo--real ~ .arc-doc-body .arc-doc-section:first-child .arc-doc-list li:nth-child(-n+4) {
    padding-right: 0.84rem;
}
.arc-doc-stage .arc-doc-photo--real {
    top: 268px;
    right: 30px;
    width: 132px;
    height: 174px;
    border-width: 2px;
}
.arc-doc-stage .arc-doc-photo--real ~ .arc-doc-body .arc-doc-section:first-child .arc-doc-list li:nth-child(-n+4) {
    padding-right: 158px;
}

/* ========= 档案修正按钮 / 横幅 ========= */
.arc-correct-banner {
    margin: 0.12rem 0 0.14rem;
    padding: 0.12rem 0.14rem;
    background: #fff7e6;
    border: 1px solid #f0d68b;
    border-left: 0.04rem solid #d97706;
    border-radius: 0.04rem;
    display: flex;
    gap: 0.1rem;
    align-items: flex-start;
}
.arc-correct-banner-icon {
    width: 0.22rem;
    height: 0.22rem;
    border-radius: 50%;
    background: #d97706;
    color: #fff;
    text-align: center;
    line-height: 0.22rem;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.14rem;
}
.arc-correct-banner-text {
    flex: 1;
    font-size: 0.13rem;
    line-height: 0.2rem;
    color: #5b3700;
}
.arc-correct-banner-text b {
    display: block;
    font-size: 0.15rem;
    color: #b75300;
    margin-bottom: 0.02rem;
}
.arc-correct-banner-cancel {
    display: inline-block;
    margin-top: 0.06rem;
    padding: 0;
    background: none;
    border: 0;
    color: #b75300;
    font-size: 0.13rem;
    line-height: 0.2rem;
    text-decoration: underline;
    cursor: pointer;
}
.arc-correct-banner-cancel:hover,
.arc-correct-banner-cancel:active {
    color: #8c3f00;
}

.arc-correct-card {
    margin-top: 0.16rem;
    padding: 0.14rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0.04rem;
}
.arc-correct-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.08rem;
    border-left: 0.04rem solid #d32f2f;
    padding-left: 0.08rem;
}
.arc-correct-card-title {
    font-size: 0.16rem;
    font-weight: bold;
    color: #000;
}
.arc-correct-card-times {
    font-size: 0.12rem;
    color: #666;
}
.arc-correct-card-times b {
    color: #d32f2f;
    font-size: 0.14rem;
    margin: 0 0.02rem;
}
.arc-correct-card-desc {
    font-size: 0.13rem;
    line-height: 0.2rem;
    color: #444;
    margin-bottom: 0.12rem;
}
.arc-correct-card-desc b {
    color: #d32f2f;
}
.arc-correct-form {
    margin: 0;
}
.arc-correct-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 0.42rem;
    background: #fff;
    border: 1.5px solid #d32f2f;
    color: #d32f2f;
    font-size: 0.15rem;
    font-weight: bold;
    border-radius: 0.04rem;
    cursor: pointer;
}
.arc-correct-btn:active {
    background: #fff5f5;
}
.arc-correct-btn-icon {
    margin-right: 0.06rem;
    font-size: 0.16rem;
}
.arc-correct-disabled {
    text-align: center;
    padding: 0.1rem;
    background: #f5f5f5;
    color: #999;
    font-size: 0.13rem;
    border-radius: 0.04rem;
}

/* ===== 新闻图片全屏预览 ===== */
.home-news-viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    flex-direction: column;
}
.home-news-viewer[hidden] { display: none !important; }
.home-news-viewer-bar {
    flex: 0 0 auto;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 12px;
    padding-top: env(safe-area-inset-top);
    background: rgba(0, 0, 0, 0.55);
}
.home-news-viewer-close {
    width: 36px;
    height: 36px;
    line-height: 32px;
    text-align: center;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}
.home-news-viewer-close:active { background: rgba(255, 255, 255, 0.22); }
.home-news-viewer-scroll {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    text-align: center;
}
.home-news-viewer-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* ========================================================
   支付方式选择弹窗（fund.php）
   ======================================================== */
.pay-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}
.pay-modal[hidden] { display: none; }
.pay-modal-mask {
    position: absolute;
    inset: 0;
    background: rgba(20, 8, 8, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.24s ease;
}
.pay-modal.is-open .pay-modal-mask { opacity: 1; }

.pay-modal-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(.2,.85,.4,1.05);
}
.pay-modal.is-open .pay-modal-card { transform: translateY(0); }

.pay-modal-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px 14px;
    background: linear-gradient(135deg, #c41212 0%, #8a0808 100%);
    color: #fff;
}
.pay-modal-header::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 3px;
    background: linear-gradient(90deg, #f6d28a 0%, #f0a93b 50%, #f6d28a 100%);
}
.pay-modal-emblem {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 222, 173, 0.45);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pay-modal-emblem img { width: 26px; height: 26px; object-fit: contain; }
.pay-modal-header-text { flex: 1; min-width: 0; }
.pay-modal-title { font-size: 16px; font-weight: 700; letter-spacing: 1px; }
.pay-modal-subtitle { margin-top: 2px; font-size: 11px; opacity: 0.85; letter-spacing: 0.5px; }
.pay-modal-close {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.12);
    border: none; border-radius: 50%;
    color: #fff; font-size: 20px; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}

.pay-modal-body { padding: 16px 18px 4px; }
.pay-modal-summary {
    background: linear-gradient(180deg, #fff7f5, #fff);
    border: 1px solid #f5d6d6;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
}
.pay-modal-summary-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 0;
    font-size: 13px; color: #555;
}
.pay-modal-summary-row strong { color: #222; font-weight: 600; font-size: 14px; }
.pay-modal-summary-row .pay-modal-amount { color: #c41212; font-size: 17px; font-weight: 700; }

.pay-modal-channels {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 14px;
}
.pay-channel {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.pay-channel:has(input:checked) {
    border-color: #c41212;
    background: rgba(196, 18, 18, 0.04);
}
.pay-channel input { position: absolute; opacity: 0; pointer-events: none; }
.pay-channel-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #f0f0f0;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 6px;
    box-sizing: border-box;
}
.pay-channel-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.pay-channel-name { flex: 1; font-size: 15px; color: #222; font-weight: 500; }
.pay-channel-tip {
    font-size: 11px; color: #c41212;
    background: rgba(196,18,18,0.08);
    padding: 2px 8px; border-radius: 10px;
}
.pay-channel:has(input:checked)::after {
    content: "✓";
    color: #c41212; font-weight: 700; font-size: 16px;
    margin-left: 4px;
}

.pay-modal-tip {
    margin: 0 0 14px;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

.pay-modal-actions {
    display: flex; gap: 10px;
    padding: 12px 18px calc(20px + env(safe-area-inset-bottom));
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}
.pay-modal-btn {
    flex: 1;
    height: 44px;
    border-radius: 24px;
    font-size: 15px; font-weight: 600;
    border: none; cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.pay-modal-btn--ghost { background: #fff; color: #555; border: 1px solid #ddd; }
.pay-modal-btn--ghost:active { background: #f5f5f5; }
.pay-modal-btn--primary {
    background: linear-gradient(135deg, #d51616 0%, #970305 100%);
    color: #fff;
    box-shadow: 0 6px 14px rgba(154, 8, 8, 0.32);
}
.pay-modal-btn--primary:active { transform: translateY(1px); }
.pay-modal-btn:disabled { opacity: 0.65; cursor: wait; }

/* ========================================================
   支付状态等待页（pay/feimao_return.php）
   ======================================================== */
.pay-status {
    min-height: 100vh;
    background: linear-gradient(180deg, #fef5ed 0%, #fff 60%);
    padding: 60px 24px 40px;
    box-sizing: border-box;
}
.pay-status-card {
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(154, 8, 8, 0.12);
    border: 1px solid rgba(196, 18, 18, 0.1);
    overflow: hidden;
}
.pay-status-head {
    padding: 28px 22px 18px;
    text-align: center;
    background: linear-gradient(135deg, #c41212, #8a0808);
    color: #fff;
}
.pay-status-icon {
    width: 56px; height: 56px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    border: 2px solid rgba(255, 222, 173, 0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
}
.pay-status-title { font-size: 20px; font-weight: 700; letter-spacing: 1px; }
.pay-status-sub   { margin-top: 4px; font-size: 12px; opacity: 0.85; }
.pay-status-body { padding: 22px; color: #333; font-size: 14px; line-height: 1.7; }
.pay-status-row {
    display: flex; justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}
.pay-status-row:last-child { border-bottom: none; }
.pay-status-row span:first-child { color: #888; }
.pay-status-row span:last-child  { color: #222; font-weight: 600; }
.pay-status-actions {
    display: flex; gap: 10px;
    padding: 0 22px 22px;
}
.pay-status-btn {
    flex: 1;
    height: 44px; line-height: 44px;
    text-align: center; text-decoration: none;
    border-radius: 24px; font-size: 15px; font-weight: 600;
}
.pay-status-btn--primary {
    background: linear-gradient(135deg, #d51616, #970305);
    color: #fff; box-shadow: 0 6px 14px rgba(154, 8, 8, 0.28);
}
.pay-status-btn--ghost { border: 1px solid #ddd; color: #555; background: #fff; }

/* ========================================================
   专题页：聚焦2026年中央一号文件 (news-2026-doc.php)
   仿农业农村部专题页政府版式，深红 + 金色装饰
   ======================================================== */
.page-zt { background: #f3eee6; }
.phone--zt {
    background: #faf6ee;
    min-height: 100vh;
    color: #2c1c1c;
    padding-bottom: 0;
}

/* ===== 政府版头部 ===== */
.zt-gov-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, #6e0606 0%, #520303 100%);
    color: #fbeec1;
    border-bottom: 1px solid rgba(255, 222, 173, 0.2);
}
.zt-gov-header-top {
    display: flex; align-items: center;
    padding: 14px 16px 12px;
    gap: 12px;
}
.zt-back {
    color: #fbeec1; text-decoration: none;
    font-size: 26px; line-height: 1;
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
}
.zt-gov-header-name {
    flex: 1;
    font-size: 15px; font-weight: 700; letter-spacing: 1px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
.zt-gov-header-en {
    font-size: 11px; opacity: 0.65; letter-spacing: 2px;
    border: 1px solid rgba(251, 238, 193, 0.3);
    padding: 2px 6px; border-radius: 3px;
}
.zt-gov-header-divider {
    height: 4px;
    background: linear-gradient(90deg,
        #fbeec1 0%, #f0c75a 25%, #d49b22 50%, #f0c75a 75%, #fbeec1 100%);
}

/* ===== 主视觉 hero ===== */
.zt-hero {
    position: relative;
    padding: 32px 24px 36px;
    background:
      radial-gradient(circle at 50% -20%, rgba(255, 222, 173, 0.18), transparent 60%),
      linear-gradient(160deg, #8a0808 0%, #5a0303 100%);
    color: #fbeec1;
    text-align: center;
    overflow: hidden;
}
.zt-hero::before, .zt-hero::after {
    content: ""; position: absolute; pointer-events: none;
    background: radial-gradient(circle, rgba(255, 222, 173, 0.18), transparent 70%);
    border-radius: 50%;
}
.zt-hero::before { width: 220px; height: 220px; top: -80px; left: -60px; }
.zt-hero::after  { width: 220px; height: 220px; bottom: -90px; right: -60px; }
.zt-hero-stars {
    position: absolute; inset: 0; pointer-events: none;
}
.zt-hero-stars span {
    position: absolute; width: 10px; height: 10px;
    background: #f0c75a;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.55;
}
.zt-hero-stars span:nth-child(1) { top: 18px; left: 12%; transform: scale(1.2); }
.zt-hero-stars span:nth-child(2) { top: 32px; right: 18%; transform: scale(0.9); }
.zt-hero-stars span:nth-child(3) { bottom: 24px; left: 22%; transform: scale(1.0); }
.zt-hero-stars span:nth-child(4) { bottom: 38px; right: 14%; transform: scale(1.3); }
.zt-hero-tag {
    display: inline-block;
    font-size: 11px; letter-spacing: 3px;
    padding: 4px 14px;
    border: 1px solid rgba(251, 238, 193, 0.45);
    border-radius: 20px;
    background: rgba(0,0,0,0.18);
    margin-bottom: 14px;
}
.zt-hero-title {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.25;
    margin: 0 0 8px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.45);
}
.zt-hero-year {
    font-size: 48px;
    color: #f0c75a;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 0 20px rgba(240, 199, 90, 0.3);
}
.zt-hero-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    opacity: 0.92;
}
.zt-hero-ribbon {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: 2px;
    color: #f0c75a;
    padding: 6px 18px;
    border-top: 1px solid rgba(251, 238, 193, 0.35);
    border-bottom: 1px solid rgba(251, 238, 193, 0.35);
}
.zt-hero-ribbon-dot {
    width: 5px; height: 5px;
    background: #f0c75a;
    transform: rotate(45deg);
}

/* ===== 通用 section ===== */
.zt-section { padding: 22px 16px 8px; }
.zt-section-head {
    display: flex; align-items: center; justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}
.zt-section-head-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, #c9a857, transparent);
    max-width: 90px;
}
.zt-section-head-title {
    font-size: 17px;
    font-weight: 700;
    color: #6e0606;
    letter-spacing: 4px;
    margin: 0;
    position: relative;
}
.zt-section-head-title::before, .zt-section-head-title::after {
    content: "◆";
    color: #c9a857;
    font-size: 8px;
    margin: 0 6px;
    vertical-align: middle;
}

/* ===== 主文件卡片 ===== */
.zt-main-doc-card {
    background:
      linear-gradient(180deg, #fff8e8 0%, #fff 50%);
    border: 1px solid #e8d5a8;
    border-radius: 12px;
    padding: 18px 16px 16px;
    position: relative;
    box-shadow: 0 4px 14px rgba(110, 6, 6, 0.08);
}
.zt-main-doc-card::before {
    content: "";
    position: absolute; top: 0; left: 16px; right: 16px;
    height: 3px;
    background: linear-gradient(90deg, #6e0606 0%, #c9a857 50%, #6e0606 100%);
    border-radius: 0 0 3px 3px;
}
.zt-main-doc-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px;
    color: #6e0606; font-weight: 700;
    background: rgba(110, 6, 6, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}
.zt-main-doc-emblem { width: 16px; height: 16px; }
.zt-main-doc-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.55;
    color: #2c1c1c;
    margin: 0 0 10px;
}
.zt-main-doc-sub {
    font-size: 13px;
    color: #5a4a3a;
    line-height: 1.85;
    margin: 0 0 12px;
    text-indent: 2em;
}
.zt-main-doc-meta {
    display: flex; justify-content: space-between;
    font-size: 11px;
    color: #8a7a6a;
    border-top: 1px dashed #e0d0a8;
    padding-top: 10px;
}

/* ===== 六大要点 ===== */
.zt-key-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.zt-key-item {
    background: #fff;
    border: 1px solid #ead0a8;
    border-left: 3px solid #c9a857;
    border-radius: 8px;
    padding: 12px 12px 12px 10px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 2px 6px rgba(110, 6, 6, 0.05);
}
.zt-key-num {
    width: 28px; height: 28px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #8a0808, #5a0303);
    color: #fbeec1;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
    box-shadow: 0 2px 4px rgba(110, 6, 6, 0.3);
}
.zt-key-text {
    font-size: 12.5px;
    color: #2c1c1c;
    line-height: 1.45;
    font-weight: 600;
}

/* ===== 重要解读 article 列表 ===== */
.zt-article-list {
    list-style: none; padding: 0; margin: 0;
}
.zt-article-item {
    background: #fff;
    border: 1px solid #ead0a8;
    border-radius: 10px;
    padding: 14px 14px 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(110, 6, 6, 0.05);
    position: relative;
}
.zt-article-item::before {
    content: "";
    position: absolute; left: 0; top: 14px;
    width: 4px; height: 22px;
    background: linear-gradient(180deg, #8a0808, #c9a857);
    border-radius: 0 2px 2px 0;
}
.zt-article-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: #2c1c1c;
    margin-bottom: 8px;
    padding-left: 4px;
}
.zt-article-lead {
    font-size: 12.5px;
    color: #6a5a4a;
    line-height: 1.75;
    margin: 0 0 10px;
    text-indent: 2em;
}
.zt-article-meta {
    display: flex; justify-content: space-between;
    font-size: 11px;
    color: #8a7a6a;
    border-top: 1px dashed #f0e0c0;
    padding-top: 8px;
}
.zt-article-more { color: #6e0606; font-weight: 600; }

/* ===== 视频报道 ===== */
.zt-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.zt-video-card {
    background: #fff;
    border: 1px solid #e8d5a8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(110, 6, 6, 0.05);
}
.zt-video-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.zt-video-poster--1 { background: linear-gradient(135deg, #8a0808 0%, #c9a857 100%); }
.zt-video-poster--2 { background: linear-gradient(135deg, #2c4a1c 0%, #6a8a3a 100%); }
.zt-video-poster--3 { background: linear-gradient(135deg, #1c3a4a 0%, #4a7a8a 100%); }
.zt-video-poster--4 { background: linear-gradient(135deg, #6e0606 0%, #8a3a3a 100%); }
.zt-video-play {
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.55);
    border: 2px solid rgba(255,255,255,0.85);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    padding-left: 3px;
}
.zt-video-tag {
    position: absolute; top: 6px; left: 6px;
    background: rgba(0,0,0,0.5);
    color: #fff; font-size: 10px;
    padding: 1px 6px; border-radius: 3px;
}
.zt-video-meta {
    padding: 8px 10px 10px;
}
.zt-video-title {
    font-size: 12.5px;
    line-height: 1.45;
    color: #2c1c1c;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
    min-height: 36px;
}
.zt-video-date { font-size: 10.5px; color: #8a7a6a; }

/* ===== 媒体报道 ===== */
.zt-media-list { list-style: none; padding: 0; margin: 0; }
.zt-media-item {
    display: flex; align-items: center;
    padding: 10px 4px;
    border-bottom: 1px dashed #e8d5a8;
    font-size: 13px;
    line-height: 1.5;
}
.zt-media-item:last-child { border-bottom: none; }
.zt-media-src {
    color: #6e0606;
    font-weight: 600;
    margin-right: 6px;
    flex-shrink: 0;
}
.zt-media-title {
    flex: 1;
    color: #2c1c1c;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.zt-media-date {
    color: #8a7a6a;
    font-size: 11px;
    margin-left: 8px;
    flex-shrink: 0;
}

/* ===== 学习贯彻动态 ===== */
.zt-dynamic-list { list-style: none; padding: 0; margin: 0; }
.zt-dynamic-item {
    display: flex; align-items: center;
    padding: 11px 4px;
    border-bottom: 1px dashed #e8d5a8;
    font-size: 13.5px;
}
.zt-dynamic-item:last-child { border-bottom: none; }
.zt-dynamic-bullet {
    width: 5px; height: 5px;
    background: #c9a857;
    transform: rotate(45deg);
    margin-right: 10px;
    flex-shrink: 0;
}
.zt-dynamic-title {
    flex: 1;
    color: #2c1c1c;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.zt-dynamic-date {
    color: #8a7a6a;
    font-size: 11px;
    margin-left: 8px;
    flex-shrink: 0;
}

/* ===== 历年文件 ===== */
.zt-history-list {
    background: #fff;
    border: 1px solid #ead0a8;
    border-radius: 10px;
    overflow: hidden;
}
.zt-history-item {
    display: flex; align-items: stretch;
    border-bottom: 1px solid #f0e0c0;
}
.zt-history-item:last-child { border-bottom: none; }
.zt-history-year {
    flex-shrink: 0;
    width: 56px;
    background: linear-gradient(180deg, #8a0808 0%, #5a0303 100%);
    color: #fbeec1;
    font-size: 14px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    letter-spacing: 1px;
}
.zt-history-item:first-child .zt-history-year {
    background: linear-gradient(180deg, #c9a857 0%, #8a6a17 100%);
    color: #fff;
}
.zt-history-item:first-child .zt-history-year::after {
    content: "新";
    position: absolute;
    margin-top: -28px; margin-left: 36px;
    background: #fff; color: #c9a857;
    font-size: 9px; padding: 1px 4px;
    border-radius: 3px;
    font-weight: 700;
    letter-spacing: 0;
}
.zt-history-title {
    flex: 1;
    padding: 12px 12px;
    font-size: 12.5px;
    line-height: 1.55;
    color: #2c1c1c;
}

/* ===== 政府版页脚 ===== */
.zt-gov-footer {
    margin-top: 28px;
    padding: 24px 16px 32px;
    background: linear-gradient(180deg, #5a0303 0%, #3c0202 100%);
    color: #f0d8a8;
    text-align: center;
    border-top: 3px solid #c9a857;
}
.zt-gov-footer-emblem {
    width: 48px; height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(251, 238, 193, 0.3);
    display: inline-flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.zt-gov-footer-emblem img { width: 32px; height: 32px; object-fit: contain; }
.zt-gov-footer-line {
    font-size: 12px;
    line-height: 1.85;
    letter-spacing: 0.5px;
}
.zt-gov-footer-line--strong { font-size: 13px; font-weight: 700; color: #fbeec1; }
.zt-gov-footer-line--small  { font-size: 11px; opacity: 0.7; }
.zt-gov-footer-links {
    margin: 14px 0 8px;
    font-size: 11px;
    opacity: 0.85;
}
.zt-gov-footer-links i {
    font-style: normal;
    margin: 0 6px;
    opacity: 0.5;
}
.zt-gov-footer-copyright {
    margin-top: 10px;
    font-size: 10.5px;
    opacity: 0.55;
    letter-spacing: 1px;
}

/* ===== 专题页 hero 配色变体 ===== */

/* 2025年发展成就 — 暗红+丰收金，主色更暖 */
.zt-hero--harvest {
    background:
      radial-gradient(circle at 50% -10%, rgba(255, 222, 130, 0.22), transparent 60%),
      linear-gradient(160deg, #8a0808 0%, #4a1414 50%, #6e3a08 100%);
}
.zt-hero--harvest .zt-hero-year {
    color: #ffd87a;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 0 22px rgba(255, 216, 122, 0.4);
}
.zt-hero--harvest .zt-hero-tag {
    background: rgba(110, 58, 8, 0.28);
}

/* 2026 全国两会 — 暗红基底 + 政协蓝点缀 */
.zt-hero--congress {
    background:
      radial-gradient(circle at 50% -10%, rgba(255, 222, 173, 0.2), transparent 60%),
      linear-gradient(160deg, #6e0606 0%, #3a0a2c 60%, #1a2454 100%);
}
.zt-hero--congress .zt-hero-year {
    color: #f8d56a;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 0 22px rgba(248, 213, 106, 0.35);
}
.zt-hero--congress .zt-hero-tag {
    background: rgba(26, 36, 84, 0.4);
    border-color: rgba(248, 213, 106, 0.5);
}
.zt-hero--congress .zt-hero-stars span { color: #f8d56a; background: #f8d56a; }

/* ========================================================
   专题页 · 阅读全文 / 评论 / 工具栏
   ======================================================== */

/* === 阅读全文展开收起 === */
.zt-article-full {
    display: none;
    margin: 0 0 10px;
    padding: 10px 12px;
    background: rgba(110, 6, 6, 0.04);
    border-left: 2px solid #c9a857;
    border-radius: 4px;
    font-size: 12.5px;
    color: #4a3a2a;
    line-height: 1.85;
    text-indent: 2em;
}
.zt-article-item.is-open .zt-article-full { display: block; }
.zt-article-item .zt-article-more { user-select: none; }
.zt-article-item.is-open .zt-article-more { color: #c9a857; }

/* === 评论区 === */
.zt-comment-section { padding-bottom: 16px; }
.zt-comment-stat {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 4px 12px;
    font-size: 12px; color: #6a5a4a;
}
.zt-comment-stat strong { color: #6e0606; font-weight: 700; }
.zt-comment-tip { font-size: 11px; opacity: 0.7; }
.zt-comment-list {
    list-style: none; padding: 0; margin: 0 0 14px;
    background: #fff;
    border: 1px solid #ead0a8;
    border-radius: 10px;
    overflow: hidden;
}
.zt-comment-item {
    display: flex; gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px dashed #f0e0c0;
}
.zt-comment-item:last-child { border-bottom: none; }
.zt-comment-avatar {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a0808, #5a0303);
    color: #fbeec1;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
}
.zt-comment-avatar--me {
    background: linear-gradient(135deg, #c9a857, #8a6a17);
    color: #fff;
}
.zt-comment-body { flex: 1; min-width: 0; }
.zt-comment-meta {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 4px;
}
.zt-comment-name {
    font-size: 13px; font-weight: 600; color: #2c1c1c;
}
.zt-comment-time {
    font-size: 10.5px; color: #8a7a6a;
}
.zt-comment-text {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.65;
    color: #2c1c1c;
    word-break: break-word;
}

.zt-comment-form {
    background: #fff;
    border: 1px solid #ead0a8;
    border-radius: 10px;
    padding: 10px 12px;
}
.zt-comment-form textarea {
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    font-size: 13px;
    font-family: inherit;
    color: #2c1c1c;
    background: transparent;
    padding: 4px 0;
    line-height: 1.6;
    box-sizing: border-box;
}
.zt-comment-form-row {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px dashed #f0e0c0;
    padding-top: 8px;
    margin-top: 4px;
}
.zt-comment-counter { font-size: 11px; color: #8a7a6a; }
.zt-comment-submit {
    background: linear-gradient(135deg, #8a0808, #5a0303);
    color: #fbeec1;
    border: none;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(110, 6, 6, 0.25);
}
.zt-comment-submit:active { transform: translateY(1px); }

/* === 底部工具栏 === */
.zt-toolbar-spacer { height: calc(60px + env(safe-area-inset-bottom)); }
.zt-toolbar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    background: rgba(255, 250, 240, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid #ead0a8;
    box-shadow: 0 -4px 14px rgba(110, 6, 6, 0.08);
    padding-bottom: env(safe-area-inset-bottom);
    /* 仿"phone"内嵌时居中 */
    max-width: 420px;
    margin: 0 auto;
}
.zt-toolbar-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 4px 8px;
    font-family: inherit;
    color: #6a5a4a;
    cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    transition: color 0.15s ease;
}
.zt-toolbar-btn:active { background: rgba(110, 6, 6, 0.04); }
.zt-toolbar-icon {
    font-size: 20px;
    line-height: 1;
    color: #6e0606;
}
.zt-toolbar-icon--fav { font-size: 22px; }
.zt-toolbar-label {
    font-size: 11px;
    letter-spacing: 1px;
}
.zt-toolbar-btn.is-on .zt-toolbar-icon,
.zt-toolbar-btn.is-on .zt-toolbar-label {
    color: #c9a857;
    font-weight: 700;
}

/* === Toast === */
.zt-toast {
    position: fixed;
    left: 50%; bottom: 90px;
    transform: translate(-50%, 8px);
    background: rgba(40, 16, 16, 0.92);
    color: #fbeec1;
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 22px;
    z-index: 200;
    opacity: 0;
    transition: opacity .22s ease, transform .22s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    pointer-events: none;
    max-width: 80%;
    text-align: center;
}
.zt-toast.is-show { opacity: 1; transform: translate(-50%, 0); }
.zt-toast[hidden] { display: none; }

/* ============================================================
 * 政策资讯详情页 (news.php)
 * 移动端 H5 (375 设计稿，1rem = 100px)
 * ============================================================ */
body.page-news {
    background: #f5f3f0;
    color: #1a1a1a;
}
.phone.news {
    width: 100%;
    min-height: 100vh;
    background: #f5f3f0;
    padding-bottom: 0.6rem;
    position: relative;
    overflow: hidden;
}
.news--theme-red  { --news-accent: #c0152b; --news-accent-soft: #fff3f2; --news-accent-deep: #8b0d1e; }
.news--theme-gold { --news-accent: #b8862e; --news-accent-soft: #fbf4e6; --news-accent-deep: #6b4d18; }

/* ---------- 顶部红色返回栏 ---------- */
.news-header {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 0.44rem;
    background: linear-gradient(180deg, var(--news-accent), var(--news-accent-deep));
    display: flex;
    align-items: center;
    padding: 0 0.12rem;
    box-shadow: 0 0.02rem 0.08rem rgba(0,0,0,0.12);
}
.news-back {
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.22rem;
    line-height: 0.28rem;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
}
.news-back:active { background: rgba(255,255,255,0.32); }
.news-header-title {
    flex: 1;
    text-align: center;
    color: #fff;
    font-size: 0.16rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    margin-right: 0.32rem;
}

/* ---------- 顶部 Banner ---------- */
.news-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}
.news-banner img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
}
.news-banner::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 0.7rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}
.news-banner-caption {
    position: absolute;
    left: 0.16rem;
    bottom: 0.3rem;
    right: 0.16rem;
    color: #fff;
    font-size: 0.14rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.08rem;
    z-index: 2;
    text-shadow: 0 0.01rem 0.04rem rgba(0,0,0,0.5);
}
.news-banner-tag {
    display: inline-block;
    padding: 0.02rem 0.08rem;
    background: var(--news-accent);
    color: #fff8e0;
    font-size: 0.11rem;
    font-weight: 600;
    border-radius: 0.04rem;
    letter-spacing: 0.02rem;
}

/* ---------- 主体 ---------- */
.news-main {
    position: relative;
    margin-top: -0.18rem;
    background: #f5f3f0;
    border-top-left-radius: 0.16rem;
    border-top-right-radius: 0.16rem;
    padding: 0.18rem 0.16rem 0.24rem;
    z-index: 2;
}

/* ---------- 标题区 ---------- */
.news-intro {
    background: #fff;
    border-radius: 0.1rem;
    padding: 0.18rem 0.16rem;
    box-shadow: 0 0.02rem 0.1rem rgba(0,0,0,0.04);
    border-left: 0.04rem solid var(--news-accent);
}
.news-title {
    font-size: 0.2rem;
    line-height: 0.3rem;
    color: #1a1a1a;
    font-weight: 700;
    word-break: break-word;
}
.news-subtitle {
    margin-top: 0.1rem;
    font-size: 0.13rem;
    line-height: 0.22rem;
    color: #555;
    font-weight: 500;
}
.news-meta {
    margin-top: 0.12rem;
    padding-top: 0.1rem;
    border-top: 0.005rem dashed #e6dcd0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #888;
    font-size: 0.12rem;
}
.news-meta-source {
    display: inline-flex;
    align-items: center;
    gap: 0.06rem;
}
.news-meta-dot {
    width: 0.06rem;
    height: 0.06rem;
    border-radius: 50%;
    background: var(--news-accent);
    display: inline-block;
}

/* ---------- 正文段落 ---------- */
.news-body { margin-top: 0.14rem; }
.news-section {
    background: #fff;
    border-radius: 0.1rem;
    padding: 0.14rem 0.14rem 0.16rem;
    margin-bottom: 0.12rem;
    box-shadow: 0 0.02rem 0.08rem rgba(0,0,0,0.04);
}
.news-section-head {
    display: flex;
    align-items: flex-start;
    gap: 0.08rem;
    margin-bottom: 0.1rem;
    padding-bottom: 0.08rem;
    border-bottom: 0.005rem solid #f0e8db;
}
.news-section-no {
    display: inline-block;
    min-width: 0.28rem;
    height: 0.22rem;
    line-height: 0.22rem;
    text-align: center;
    background: linear-gradient(135deg, var(--news-accent), var(--news-accent-deep));
    color: #fff8e0;
    font-size: 0.12rem;
    font-weight: 700;
    border-radius: 0.04rem;
    padding: 0 0.04rem;
    flex-shrink: 0;
    letter-spacing: 0.01rem;
}
.news-section-title {
    flex: 1;
    font-size: 0.16rem;
    line-height: 0.22rem;
    color: var(--news-accent-deep);
    font-weight: 700;
    word-break: break-word;
}
.news-section-sub {
    font-size: 0.13rem;
    color: #888;
    margin-bottom: 0.08rem;
    padding-left: 0.04rem;
    border-left: 0.02rem solid var(--news-accent);
}
.news-section-img {
    width: 100%;
    border-radius: 0.06rem;
    overflow: hidden;
    margin: 0.08rem 0 0.1rem;
    background: #eee;
}
.news-section-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.news-paragraph {
    font-size: 0.14rem;
    line-height: 0.24rem;
    color: #2c2c2c;
    text-indent: 2em;
    margin-top: 0.06rem;
    word-break: break-word;
}
.news-paragraph:first-of-type { margin-top: 0; }

/* ---------- 相关阅读 ---------- */
.news-related {
    margin-top: 0.18rem;
    background: #fff;
    border-radius: 0.1rem;
    padding: 0.14rem;
    box-shadow: 0 0.02rem 0.08rem rgba(0,0,0,0.04);
}
.news-related-title {
    font-size: 0.15rem;
    color: var(--news-accent-deep);
    font-weight: 700;
    margin-bottom: 0.1rem;
    padding-left: 0.08rem;
    border-left: 0.03rem solid var(--news-accent);
    line-height: 0.16rem;
}
.news-related-list {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}
.news-related-item {
    display: flex;
    gap: 0.1rem;
    padding: 0.08rem;
    border-radius: 0.06rem;
    background: var(--news-accent-soft);
    text-decoration: none;
    color: inherit;
}
.news-related-item:active { opacity: 0.8; }
.news-related-thumb {
    width: 0.96rem;
    height: 0.62rem;
    border-radius: 0.04rem;
    object-fit: cover;
    flex-shrink: 0;
    background: #ddd;
}
.news-related-text { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.news-related-topic {
    font-size: 0.11rem;
    color: var(--news-accent);
    font-weight: 600;
}
.news-related-name {
    font-size: 0.13rem;
    color: #2c2c2c;
    line-height: 0.18rem;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.04rem;
}

/* ---------- 上下篇 ---------- */
.news-pager {
    margin-top: 0.14rem;
    display: flex;
    gap: 0.08rem;
}
.news-pager-btn {
    flex: 1;
    background: #fff;
    border-radius: 0.08rem;
    padding: 0.1rem 0.1rem;
    display: flex;
    align-items: center;
    gap: 0.06rem;
    text-decoration: none;
    color: #555;
    font-size: 0.12rem;
    box-shadow: 0 0.02rem 0.06rem rgba(0,0,0,0.04);
    min-width: 0;
}
.news-pager-btn--next { justify-content: flex-end; text-align: right; }
.news-pager-btn--disabled { color: #aaa; justify-content: center; }
.news-pager-arrow { font-size: 0.18rem; color: var(--news-accent); font-weight: bold; flex-shrink: 0; }
.news-pager-text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.news-pager-btn--next .news-pager-text { align-items: flex-end; }
.news-pager-label { font-size: 0.11rem; color: #999; }
.news-pager-name {
    font-size: 0.13rem;
    color: var(--news-accent-deep);
    font-weight: 600;
    margin-top: 0.02rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* ---------- 回到顶部 ---------- */
.news-back-top {
    position: fixed;
    right: 0.16rem;
    bottom: 0.36rem;
    width: 0.4rem;
    height: 0.4rem;
    line-height: 0.4rem;
    border-radius: 50%;
    background: rgba(192,21,43,0.85);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 0.18rem;
    font-weight: bold;
    box-shadow: 0 0.04rem 0.16rem rgba(0,0,0,0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
    z-index: 50;
}
.news-back-top.is-show {
    opacity: 1;
    pointer-events: auto;
}
.news--theme-gold .news-back-top { background: rgba(184,134,46,0.9); }

@media screen and (min-width: 500px) {
    body.page-news { background: #222; }
    .phone.news {
        max-width: 3.75rem;
        margin: 0 auto;
        box-shadow: 0 0 0.3rem rgba(0,0,0,0.4);
    }
    .news-back-top { right: calc(50% - 1.7rem); }
}

/* ========================================================
 *  我的团队 - 分销奖励 5% / 2% / 1%
 * ======================================================== */
.team-reward-card {
    position: relative;
    overflow: hidden;
}
.team-reward-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0.04rem;
    background: linear-gradient(90deg, #e82619 0%, #ffb23f 50%, #e82619 100%);
}
.team-reward-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.08rem;
    margin-top: 0.08rem;
}
.team-reward-cell {
    position: relative;
    min-height: 0.92rem;
    padding: 0.12rem 0.08rem 0.1rem;
    border-radius: 0.12rem;
    background: linear-gradient(180deg, #fff7f5 0%, #fff 100%);
    border: 0.005rem solid #ffe0da;
    text-align: center;
    overflow: hidden;
}
.team-reward-cell::after {
    content: "";
    position: absolute;
    right: -0.16rem;
    bottom: -0.18rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(232, 38, 25, 0.08);
}
.team-reward-cell-label {
    position: relative;
    z-index: 1;
    font-size: 0.11rem;
    color: #7a5151;
}
.team-reward-cell-rate {
    position: relative;
    z-index: 1;
    margin-top: 0.04rem;
    font-size: 0.28rem;
    line-height: 1;
    color: #e82619;
    font-weight: 800;
    letter-spacing: -0.01rem;
}
.team-reward-cell-rate-unit {
    margin-left: 0.01rem;
    font-size: 0.13rem;
    font-weight: 700;
}
.team-reward-cell-earned {
    position: relative;
    z-index: 1;
    margin-top: 0.07rem;
    font-size: 0.1rem;
    line-height: 1.25;
    color: #9a7777;
}
.team-reward-cell--lv1 {
    background: linear-gradient(180deg, #fff0ec 0%, #fff 100%);
    border-color: #ffc9bf;
}
.team-reward-cell--lv1 .team-reward-cell-rate { color: #e82619; }
.team-reward-cell--lv2 .team-reward-cell-rate { color: #f08a24; }
.team-reward-cell--lv3 .team-reward-cell-rate { color: #c58b2a; }
.team-reward-tip {
    margin-top: 0.1rem;
    padding: 0.08rem 0.1rem;
    border-radius: 0.08rem;
    background: #fff7f5;
    color: #7a5151;
    font-size: 0.11rem;
    line-height: 1.55;
}
.team-overview-rate {
    display: inline-flex;
    align-items: center;
    margin-left: 0.06rem;
    padding: 0.01rem 0.06rem;
    border-radius: 0.08rem;
    background: rgba(232, 38, 25, 0.1);
    color: #e82619;
    font-size: 0.1rem;
    font-weight: 600;
    vertical-align: 0.01rem;
}
.team-overview-meta-earned {
    color: #c58b2a;
}

/* ========================================================
 *  我的团队 - 移动端排版优化
 * ======================================================== */
body.page-team {
    background: #f5f6fb;
}
.phone--team {
    min-height: 100vh;
    padding-bottom: 0.84rem;
    background: #f5f6fb;
}
.team-main {
    gap: 0.14rem;
    padding: 0.14rem 0.14rem 0.24rem;
}

.team-hero {
    padding: 0.18rem 0.16rem 0.16rem;
    border-radius: 0.2rem;
    box-shadow: 0 0.1rem 0.22rem rgba(166, 7, 13, 0.2);
}
.team-hero .share-hero-title {
    font-size: 0.19rem;
    line-height: 0.26rem;
}
.team-hero .share-hero-desc {
    font-size: 0.12rem;
    line-height: 0.18rem;
}
.team-hero-stats {
    padding: 0.1rem 0.04rem;
}
.team-hero-stats .share-hero-stat-value {
    font-size: 0.2rem;
    line-height: 0.26rem;
    white-space: nowrap;
}
.team-hero-stats .share-hero-stat-label {
    font-size: 0.105rem;
    line-height: 0.15rem;
    white-space: nowrap;
}

.team-reward-card,
.team-overview,
.team-list-card {
    border-radius: 0.18rem;
    box-shadow: 0 0.08rem 0.22rem rgba(35, 42, 68, 0.07);
}
.team-reward-card .share-card-header,
.team-overview .share-card-header,
.team-list-card .share-card-header {
    align-items: flex-start;
    gap: 0.1rem;
}
.team-reward-card .share-card-header h2,
.team-overview .share-card-header h2,
.team-list-card .share-card-header h2 {
    font-size: 0.17rem;
    line-height: 0.22rem;
}
.team-reward-card .share-card-sub {
    flex: 1 1 auto;
    text-align: right;
    font-size: 0.105rem;
    line-height: 0.16rem;
}

.team-reward-grid {
    gap: 0.07rem;
}
.team-reward-cell {
    min-height: 0.86rem;
    padding: 0.12rem 0.06rem 0.09rem;
    border-radius: 0.13rem;
}
.team-reward-cell-label {
    font-size: 0.11rem;
    font-weight: 600;
}
.team-reward-cell-rate {
    margin-top: 0.05rem;
    font-size: 0.29rem;
}
.team-reward-cell-earned {
    margin-top: 0.06rem;
    font-size: 0.1rem;
    white-space: nowrap;
}
.team-reward-tip {
    margin-top: 0.12rem;
    padding: 0.1rem 0.12rem;
    border-radius: 0.1rem;
    font-size: 0.115rem;
    color: #6d4c4c;
}

.team-overview-grid {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.team-overview-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.12rem;
    padding: 0.13rem 0.14rem;
    border: 0.005rem solid #ffe0da;
    border-radius: 0.14rem;
    background: linear-gradient(135deg, #fff9f7 0%, #ffffff 100%);
    box-shadow: 0 0.04rem 0.12rem rgba(232, 38, 25, 0.06);
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.team-overview-card:active {
    transform: scale(0.99);
    background: #fff4f1;
}
.team-overview-no {
    flex: 0 0 auto;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 0.16rem;
    background: linear-gradient(135deg, #e82619 0%, #b30a0a 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.05rem 0.12rem rgba(184, 14, 14, 0.28);
}
.team-overview-no-index {
    font-size: 0.16rem;
    line-height: 0.18rem;
    font-weight: 800;
}
.team-overview-no-label {
    margin-top: 0.02rem;
    font-size: 0.09rem;
    line-height: 0.11rem;
    opacity: 0.86;
}
.team-overview-body {
    flex: 1 1 auto;
    min-width: 0;
}
.team-overview-name {
    display: flex;
    align-items: center;
    gap: 0.06rem;
    font-size: 0.15rem;
    line-height: 0.2rem;
    font-weight: 700;
    color: #1f2330;
}
.team-overview-rate {
    margin-left: 0;
    padding: 0.015rem 0.07rem;
    font-size: 0.105rem;
    line-height: 0.16rem;
    white-space: nowrap;
}
.team-overview-desc {
    margin-top: 0.03rem;
    color: #858b99;
    font-size: 0.11rem;
    line-height: 0.16rem;
}
.team-overview-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.04rem;
    margin-top: 0.06rem;
    font-size: 0.115rem;
    line-height: 0.18rem;
}
.team-overview-meta-num {
    color: #e82619;
    font-size: 0.17rem;
    font-weight: 800;
}
.team-overview-meta-unit,
.team-overview-meta-sep {
    color: #9aa0aa;
}
.team-overview-meta-verified {
    color: #25a654;
}
.team-overview-meta-earned {
    color: #b78323;
}

.team-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.05rem;
    margin: 0.02rem 0 0.12rem;
    padding: 0.04rem;
    border-radius: 0.13rem;
    background: #fff6f4;
    border: 0.005rem solid #ffe5df;
}
.team-tab {
    height: 0.36rem;
    border: 0;
    border-radius: 0.1rem;
    background: transparent;
    color: #6b7280;
    font-size: 0.125rem;
    font-weight: 600;
}
.team-tab.is-active {
    background: linear-gradient(135deg, #e82619 0%, #b30a0a 100%);
    color: #fff;
    box-shadow: 0 0.04rem 0.1rem rgba(184, 14, 14, 0.24);
}
.team-tab-count {
    display: inline-block;
    min-width: 0.18rem;
    height: 0.18rem;
    margin-left: 0.03rem;
    padding: 0 0.05rem;
    border-radius: 0.09rem;
    background: rgba(232, 38, 25, 0.1);
    color: #e82619;
    font-size: 0.1rem;
    line-height: 0.18rem;
}
.team-tab.is-active .team-tab-count {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.team-panel[hidden] {
    display: none !important;
}
.team-invitee-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.team-invitee {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.12rem 0;
    border-bottom: 0.005rem solid #f1e5e3;
}
.team-invitee:last-child {
    border-bottom: 0;
}
.team-invitee-avatar {
    flex: 0 0 auto;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd7c9 0%, #ff9f72 100%);
    color: #9c3d11;
    font-size: 0.14rem;
    line-height: 0.42rem;
    text-align: center;
    font-weight: 800;
}
.team-invitee-body {
    flex: 1 1 auto;
    min-width: 0;
}
.team-invitee-line1 {
    display: flex;
    align-items: baseline;
    gap: 0.06rem;
    min-width: 0;
}
.team-invitee-name {
    max-width: 0.76rem;
    color: #1f2330;
    font-size: 0.14rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.team-invitee-phone {
    flex: 1 1 auto;
    min-width: 0;
    color: #1f2330;
    font-size: 0.14rem;
    letter-spacing: 0.002rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.team-invitee-line2 {
    margin-top: 0.04rem;
    color: #7d8490;
    font-size: 0.115rem;
    line-height: 0.16rem;
}
.team-invitee-status {
    flex: 0 0 auto;
    min-width: 0.58rem;
    height: 0.26rem;
    padding: 0 0.09rem;
    border-radius: 0.13rem;
    background: #f2f3f6;
    color: #8a8f9c;
    font-size: 0.12rem;
    line-height: 0.26rem;
    text-align: center;
    white-space: nowrap;
}
.team-invitee-status.is-verified {
    background: #e9faef;
    color: #23823a;
}
.team-empty {
    padding: 0.24rem 0.12rem;
    text-align: center;
}
.team-empty-btn {
    display: inline-block;
    margin-top: 0.12rem;
    padding: 0 0.18rem;
    height: 0.34rem;
    border-radius: 0.17rem;
    background: linear-gradient(135deg, #e82619 0%, #b30a0a 100%);
    color: #fff;
    font-size: 0.13rem;
    line-height: 0.34rem;
    text-decoration: none;
    box-shadow: 0 0.04rem 0.1rem rgba(184, 14, 14, 0.22);
}

/* ========================================================
 *  我的团队 - 政务企业风强化
 * ======================================================== */
body.page-team {
    background: #eef1f6;
}
.phone--team {
    background:
        linear-gradient(180deg, #f7f8fb 0%, #eef1f6 100%);
}
.team-main {
    gap: 0.12rem;
}
.team-hero {
    border-radius: 0.1rem;
    background:
        linear-gradient(135deg, rgba(132, 8, 12, 0.96) 0%, rgba(183, 12, 18, 0.96) 58%, rgba(111, 8, 16, 0.96) 100%),
        radial-gradient(circle at 86% 18%, rgba(255, 224, 160, 0.3) 0%, rgba(255, 224, 160, 0) 48%);
    box-shadow: 0 0.08rem 0.2rem rgba(57, 64, 86, 0.14);
}
.team-hero .share-hero-title {
    letter-spacing: 0.012rem;
}
.team-hero-stats {
    border: 0.005rem solid rgba(255, 255, 255, 0.22);
    border-radius: 0.08rem;
    background: rgba(255, 255, 255, 0.1);
}

.team-reward-card,
.team-overview,
.team-list-card {
    border-radius: 0.1rem;
    border: 0.005rem solid #e4e8f0;
    background: #fff;
    box-shadow: 0 0.06rem 0.18rem rgba(34, 42, 64, 0.06);
}
.team-reward-card::before {
    height: 0.03rem;
    background: linear-gradient(90deg, #9b0d14 0%, #c49342 52%, #9b0d14 100%);
}
.team-reward-card .share-card-header h2,
.team-overview .share-card-header h2,
.team-list-card .share-card-header h2 {
    color: #1e2738;
    font-size: 0.17rem;
}
.team-reward-card .share-card-header h2::before,
.team-overview .share-card-header h2::before,
.team-list-card .share-card-header h2::before {
    width: 0.035rem;
    height: 0.16rem;
    background: #b80f16;
    border-radius: 0.01rem;
}
.team-reward-card .share-card-sub,
.team-list-card .share-card-sub {
    color: #7b8494 !important;
}
.team-overview .share-card-link {
    color: #b80f16;
    font-weight: 600;
}

.team-reward-grid {
    gap: 0.08rem;
}
.team-reward-cell {
    border-radius: 0.06rem;
    border-color: #e8d9ce;
    background:
        linear-gradient(180deg, #fff 0%, #fbf6f2 100%);
    box-shadow: inset 0 0.01rem 0 rgba(255,255,255,0.9);
}
.team-reward-cell::after {
    right: -0.2rem;
    bottom: -0.22rem;
    background: rgba(180, 15, 22, 0.06);
}
.team-reward-cell-label {
    color: #4b5568;
    font-weight: 600;
}
.team-reward-cell-rate {
    color: #b80f16;
    font-family: Arial, Helvetica, sans-serif;
}
.team-reward-cell--lv1 .team-reward-cell-rate { color: #b80f16; }
.team-reward-cell--lv2 .team-reward-cell-rate { color: #b56f1f; }
.team-reward-cell--lv3 .team-reward-cell-rate { color: #8f6b2c; }
.team-reward-cell-earned {
    color: #6c7484;
}
.team-reward-tip {
    border: 0.005rem solid #efe5dd;
    border-radius: 0.06rem;
    background: #fbf7f3;
    color: #535c6b;
}

.team-overview-grid {
    gap: 0.09rem;
}
.team-overview-card {
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-color: #e2e6ee;
    border-radius: 0.08rem;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}
.team-overview-card:active {
    background: #f9fafc;
    transform: none;
}
.team-overview-no {
    width: 0.72rem;
    height: auto;
    min-height: 0.88rem;
    border-radius: 0;
    background:
        linear-gradient(180deg, #b80f16 0%, #8f0a10 100%);
    box-shadow: none;
}
.team-overview-no-index {
    font-size: 0.2rem;
    line-height: 0.22rem;
    letter-spacing: 0.005rem;
}
.team-overview-no-label {
    margin-top: 0.04rem;
    font-size: 0.1rem;
    letter-spacing: 0.01rem;
}
.team-overview-body {
    padding: 0.12rem 0.12rem 0.1rem;
}
.team-overview-name {
    color: #1e2738;
    font-size: 0.16rem;
}
.team-overview-rate {
    background: #fff0ef;
    border: 0.005rem solid #f4cecb;
    color: #b80f16;
    border-radius: 0.04rem;
}
.team-overview-desc {
    color: #7b8494;
}
.team-overview-meta {
    margin-top: 0.08rem;
    gap: 0.05rem;
}
.team-overview-meta-num {
    color: #b80f16;
    font-size: 0.18rem;
}
.team-overview-meta-verified {
    color: #14763b;
}
.team-overview-meta-earned {
    color: #9a6a1d;
}

.team-tabs {
    border-radius: 0.07rem;
    border-color: #e2e6ee;
    background: #f6f8fb;
}
.team-tab {
    border-radius: 0.05rem;
    color: #4b5568;
}
.team-tab.is-active {
    background: #b80f16;
    box-shadow: none;
}
.team-tab-count {
    background: #eef1f6;
    color: #7b8494;
}

.team-invitee {
    border-bottom-color: #e8ebf1;
}
.team-invitee-avatar {
    border-radius: 0.06rem;
    background: #f0e0d2;
    color: #8a4b14;
    box-shadow: inset 0 0 0 0.005rem #dfc5ae;
}
.team-invitee-name,
.team-invitee-phone {
    color: #1e2738;
}
.team-invitee-line2 {
    color: #7b8494;
}
.team-invitee-status {
    border-radius: 0.04rem;
    background: #f1f3f6;
    color: #687386;
}
.team-invitee-status.is-verified {
    background: #edf8f1;
    color: #14763b;
    box-shadow: inset 0 0 0 0.005rem rgba(20, 118, 59, 0.16);
}
.team-empty-btn {
    border-radius: 0.05rem;
    background: #b80f16;
    box-shadow: none;
}

/* ============================================================
 * 政企风格主题（藏蓝 / 深灰辅助）
 *  - 在保留原"中国红"主色的前提下，引入 政务蓝 / 藏蓝 / 浅金 / 深灰 作为辅助色
 *  - 适用：站点统一页脚、平台概况页、首页概况入口、首页新闻 Tab 等
 * ============================================================ */

:root {
    --gov-red:        #b80f16;
    --gov-red-dark:   #8b0a10;
    --gov-navy:       #0f2c5a;
    --gov-navy-soft:  #2a4d8c;
    --gov-gold:       #c9a55a;
    --gov-ink:        #2a2f3a;
    --gov-ink-2:      #4a5160;
    --gov-mute:       #8a93a6;
    --gov-line:       #e3e7ee;
    --gov-bg:         #f5f7fa;
    --gov-bg-soft:    #fafbfd;
}

/* ============================================================
 * 首页 - 平台概况入口卡片
 * ============================================================ */
.home-overview {
    margin: 0.16rem 0.12rem 0.08rem;
    padding: 0.14rem 0.14rem 0.12rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    border-radius: 0.06rem;
    box-shadow: 0 0 0 0.005rem var(--gov-line);
}
.home-overview-head {
    display: flex;
    align-items: center;
    gap: 0.06rem;
    margin-bottom: 0.08rem;
}
.home-overview-bar {
    width: 0.025rem;
    height: 0.13rem;
    background: var(--gov-red);
    border-radius: 0.01rem;
}
.home-overview-title {
    flex: 1;
    margin: 0;
    font-size: 0.15rem;
    line-height: 0.22rem;
    color: var(--gov-ink);
    font-weight: 700;
    letter-spacing: 0.005rem;
}
.home-overview-more {
    font-size: 0.11rem;
    color: var(--gov-navy);
    text-decoration: none;
    font-weight: 500;
}
.home-overview-desc {
    margin: 0 0 0.08rem;
    font-size: 0.115rem;
    line-height: 0.185rem;
    color: var(--gov-ink-2);
    text-align: justify;
}
.home-overview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.05rem;
}
.home-overview-tags > span {
    padding: 0.025rem 0.06rem;
    background: rgba(15, 44, 90, 0.06);
    color: var(--gov-navy);
    font-size: 0.105rem;
    border-radius: 0.02rem;
    line-height: 0.16rem;
}

/* ============================================================
 * 首页 - 政企版新闻区（Tab + 列表）
 * ============================================================ */
.home-news-section {
    margin: 0.04rem 0.12rem 0.06rem;
}
.home-news-tabs {
    display: flex;
    align-items: center;
    gap: 0.12rem;
    padding: 0 0.02rem 0.06rem;
    border-bottom: 0.005rem solid var(--gov-line);
    margin-bottom: 0.06rem;
}
.home-news-tab {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0.04rem 0;
    font-size: 0.13rem;
    line-height: 0.18rem;
    color: var(--gov-mute);
    font-weight: 500;
    position: relative;
    cursor: pointer;
}
.home-news-tab.is-active {
    color: var(--gov-ink);
    font-weight: 700;
}
.home-news-tab.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.07rem;
    transform: translateX(-50%);
    width: 0.16rem;
    height: 0.015rem;
    background: var(--gov-red);
    border-radius: 0.01rem;
}
.home-news-more {
    margin-left: auto;
    color: var(--gov-mute);
    font-size: 0.11rem;
    text-decoration: none;
}

.home-news .home-news-item--link {
    align-items: stretch;
    padding: 0.1rem 0;
    border-bottom: 0.005rem dashed var(--gov-line);
    gap: 0.1rem;
}
.home-news .home-news-item--link:last-child { border-bottom: 0; }

.home-news-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.04rem;
}
.home-news-tag {
    align-self: flex-start;
    padding: 0.01rem 0.05rem;
    background: rgba(184, 15, 22, 0.08);
    color: var(--gov-red);
    font-size: 0.1rem;
    line-height: 0.15rem;
    border-radius: 0.015rem;
}
.home-news-text .home-news-title {
    font-size: 0.125rem;
    line-height: 0.185rem;
    color: var(--gov-ink);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-news-date {
    font-size: 0.1rem;
    line-height: 0.14rem;
    color: var(--gov-mute);
}

/* ============================================================
 * 站点统一页脚 site-footer
 * ============================================================ */
.site-footer {
    background: #c41212;
    color: rgba(255, 255, 255, 0.92);
    padding: 0.16rem 0.14rem 0.12rem;
    margin-top: 0.18rem;
    font-size: 0.105rem;
    line-height: 0.17rem;
}
.site-footer a {
    color: #ffffff;
    text-decoration: none;
}
.site-footer a:active { opacity: 0.7; }

.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.14rem;
    padding-bottom: 0.12rem;
    border-bottom: 0.005rem solid rgba(255, 255, 255, 0.22);
    margin-bottom: 0.1rem;
}
.site-footer-col-title {
    color: #ffffff;
    font-size: 0.12rem;
    font-weight: 600;
    margin-bottom: 0.06rem;
    padding-left: 0.06rem;
    border-left: 0.015rem solid var(--gov-gold);
    line-height: 0.16rem;
}
.site-footer-col-line {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.105rem;
    line-height: 0.17rem;
}
.site-footer-col-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.04rem 0.1rem;
}
.site-footer-col-links a {
    color: #ffffff;
    font-size: 0.105rem;
    line-height: 0.18rem;
}

.site-footer-bar {
    display: flex;
    flex-direction: column;
    gap: 0.04rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.1rem;
    line-height: 0.16rem;
}
.site-footer-bar-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.04rem;
}
.site-footer-bar-line--mute { color: rgba(255, 255, 255, 0.7); }
.site-footer-bar-line--icp,
.site-footer-bar-line--icp .site-footer-sep {
    color: #ffffff;
    font-weight: 600;
}
.site-footer-sep {
    display: inline-block;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0.02rem;
}

.site-footer--compact {
    padding: 0.14rem 0.14rem calc(0.14rem + var(--bottom-nav-height, 0.49rem));
    margin-top: 0.12rem;
}
.site-footer--wide { padding-bottom: 0.16rem; }

/* ============================================================
 * 平台概况页 platform.php
 * ============================================================ */
.page-platform { background: var(--gov-bg); }
.platform-page {
    background: var(--gov-bg);
    padding-bottom: 0.2rem;
}
.platform-header {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 0.44rem;
    background: var(--gov-navy);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 0.12rem;
    box-shadow: 0 0.005rem 0 rgba(0, 0, 0, 0.06);
}
.platform-back {
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-align: center;
    line-height: 0.26rem;
    font-size: 0.18rem;
    text-decoration: none;
    flex-shrink: 0;
}
.platform-header-title {
    flex: 1;
    text-align: center;
    font-size: 0.16rem;
    font-weight: 600;
    letter-spacing: 0.01rem;
}
.platform-header-right {
    width: 0.28rem;
    height: 0.28rem;
}

.platform-hero {
    position: relative;
    padding: 0.22rem 0.16rem 0.2rem;
    background: linear-gradient(180deg, var(--gov-navy) 0%, #1c4078 100%);
    color: #ffffff;
    overflow: hidden;
}
.platform-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(201, 165, 90, 0.18), transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.06), transparent 50%);
    pointer-events: none;
}
.platform-hero-emblem {
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: var(--gov-gold);
    box-shadow: 0 0 0 0.02rem rgba(255, 255, 255, 0.2);
    margin-bottom: 0.1rem;
    position: relative;
}
.platform-hero-title {
    margin: 0 0 0.04rem;
    font-size: 0.2rem;
    line-height: 0.28rem;
    font-weight: 700;
    letter-spacing: 0.01rem;
    position: relative;
}
.platform-hero-en {
    font-size: 0.1rem;
    line-height: 0.16rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02rem;
    margin-bottom: 0.1rem;
    position: relative;
}
.platform-hero-desc {
    margin: 0 0 0.1rem;
    font-size: 0.12rem;
    line-height: 0.2rem;
    color: rgba(255, 255, 255, 0.86);
    text-align: justify;
    position: relative;
}
.platform-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.04rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.1rem;
    line-height: 0.16rem;
    position: relative;
}
.platform-hero-meta-sep {
    display: inline-block;
    width: 0.005rem;
    height: 0.1rem;
    background: rgba(255, 255, 255, 0.3);
}

.platform-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.005rem;
    background: var(--gov-line);
    margin-bottom: 0.1rem;
}
.platform-nav-item {
    background: #ffffff;
    color: var(--gov-ink);
    font-size: 0.12rem;
    line-height: 0.18rem;
    text-align: center;
    padding: 0.1rem 0;
    text-decoration: none;
    font-weight: 500;
}
.platform-nav-item:active { background: var(--gov-bg-soft); }

.platform-section {
    background: #fff;
    margin: 0 0.1rem 0.1rem;
    border-radius: 0.04rem;
    padding: 0.14rem;
    box-shadow: 0 0 0 0.005rem var(--gov-line);
}
.platform-section-head {
    display: flex;
    align-items: baseline;
    gap: 0.06rem;
    margin-bottom: 0.1rem;
    padding-bottom: 0.08rem;
    border-bottom: 0.005rem solid var(--gov-line);
}
.platform-section-bar {
    width: 0.025rem;
    height: 0.14rem;
    background: var(--gov-red);
    border-radius: 0.01rem;
    transform: translateY(0.02rem);
}
.platform-section-title {
    margin: 0;
    font-size: 0.16rem;
    line-height: 0.22rem;
    font-weight: 700;
    color: var(--gov-ink);
    letter-spacing: 0.005rem;
}
.platform-section-en {
    margin-left: auto;
    color: var(--gov-mute);
    font-size: 0.1rem;
    letter-spacing: 0.02rem;
}

/* 概况：卡片正文 */
.platform-card { color: var(--gov-ink-2); }
.platform-card p {
    margin: 0 0 0.08rem;
    font-size: 0.125rem;
    line-height: 0.2rem;
    text-align: justify;
}
.platform-keypoints {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.06rem 0.1rem;
    list-style: none;
    margin: 0.04rem 0 0;
    padding: 0;
}
.platform-keypoints li {
    display: flex;
    align-items: center;
    gap: 0.04rem;
    font-size: 0.115rem;
    line-height: 0.18rem;
    color: var(--gov-ink);
}
.platform-keypoint-dot {
    width: 0.04rem;
    height: 0.04rem;
    border-radius: 50%;
    background: var(--gov-red);
    flex-shrink: 0;
}

/* 服务事项 */
.platform-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.08rem;
}
.platform-service-card {
    background: var(--gov-bg-soft);
    border: 0.005rem solid var(--gov-line);
    border-radius: 0.04rem;
    padding: 0.1rem;
    position: relative;
}
.platform-service-no {
    color: var(--gov-navy);
    font-size: 0.13rem;
    font-weight: 700;
    letter-spacing: 0.005rem;
    margin-bottom: 0.04rem;
}
.platform-service-title {
    margin: 0 0 0.06rem;
    font-size: 0.13rem;
    line-height: 0.2rem;
    color: var(--gov-ink);
    font-weight: 600;
}
.platform-service-desc {
    margin: 0 0 0.06rem;
    font-size: 0.11rem;
    line-height: 0.17rem;
    color: var(--gov-ink-2);
    text-align: justify;
}
.platform-service-target {
    color: var(--gov-mute);
    font-size: 0.1rem;
    line-height: 0.16rem;
    padding-top: 0.06rem;
    border-top: 0.005rem dashed var(--gov-line);
}

/* 平台功能 */
.platform-fn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.06rem;
}
.platform-fn-item {
    background: var(--gov-bg-soft);
    border: 0.005rem solid var(--gov-line);
    border-radius: 0.04rem;
    padding: 0.08rem 0.04rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.04rem;
    color: var(--gov-ink);
    font-size: 0.115rem;
}
.platform-fn-no {
    color: var(--gov-navy);
    font-size: 0.1rem;
    font-weight: 700;
    letter-spacing: 0.01rem;
}
.platform-fn-desc {
    margin: 0.1rem 0 0;
    font-size: 0.115rem;
    line-height: 0.18rem;
    color: var(--gov-ink-2);
    text-align: justify;
}

/* 工作流程 */
.platform-flow {
    list-style: none;
    margin: 0;
    padding: 0;
}
.platform-flow-step {
    display: flex;
    gap: 0.1rem;
    padding: 0.08rem 0;
    border-bottom: 0.005rem dashed var(--gov-line);
}
.platform-flow-step:last-child { border-bottom: 0; }
.platform-flow-no {
    width: 0.26rem;
    height: 0.26rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gov-navy);
    color: #fff;
    font-size: 0.11rem;
    font-weight: 700;
    text-align: center;
    line-height: 0.26rem;
    letter-spacing: 0.005rem;
}
.platform-flow-text { flex: 1; min-width: 0; }
.platform-flow-name {
    color: var(--gov-ink);
    font-size: 0.13rem;
    font-weight: 600;
    line-height: 0.2rem;
}
.platform-flow-desc {
    margin-top: 0.02rem;
    color: var(--gov-ink-2);
    font-size: 0.11rem;
    line-height: 0.17rem;
}

/* 平台能力 */
.platform-strength-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.08rem;
}
.platform-strength-item {
    background: var(--gov-bg-soft);
    border: 0.005rem solid var(--gov-line);
    border-radius: 0.04rem;
    padding: 0.1rem;
}
.platform-strength-name {
    color: var(--gov-navy);
    font-size: 0.13rem;
    font-weight: 700;
    margin-bottom: 0.04rem;
    padding-left: 0.06rem;
    border-left: 0.015rem solid var(--gov-gold);
    line-height: 0.18rem;
}
.platform-strength-item p {
    margin: 0;
    color: var(--gov-ink-2);
    font-size: 0.11rem;
    line-height: 0.17rem;
}

/* 信息公开列表 */
.platform-disclosure-list {
    display: flex;
    flex-direction: column;
}
.platform-disclosure-item {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    padding: 0.1rem 0;
    border-bottom: 0.005rem dashed var(--gov-line);
    text-decoration: none;
    color: var(--gov-ink);
}
.platform-disclosure-item:last-child { border-bottom: 0; }
.platform-disclosure-tag {
    flex-shrink: 0;
    padding: 0.015rem 0.05rem;
    background: rgba(15, 44, 90, 0.08);
    color: var(--gov-navy);
    font-size: 0.1rem;
    line-height: 0.15rem;
    border-radius: 0.015rem;
}
.platform-disclosure-title {
    flex: 1;
    min-width: 0;
    font-size: 0.12rem;
    line-height: 0.18rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.platform-disclosure-date {
    flex-shrink: 0;
    color: var(--gov-mute);
    font-size: 0.1rem;
}

/* 联系方式 */
.platform-contact {
    border: 0.005rem solid var(--gov-line);
    border-radius: 0.04rem;
    overflow: hidden;
}
.platform-contact-row {
    display: flex;
    border-bottom: 0.005rem solid var(--gov-line);
    font-size: 0.115rem;
    line-height: 0.18rem;
}
.platform-contact-row:last-child { border-bottom: 0; }
.platform-contact-label {
    width: 0.7rem;
    flex-shrink: 0;
    background: var(--gov-bg-soft);
    color: var(--gov-mute);
    padding: 0.08rem 0.08rem;
    font-weight: 500;
}
.platform-contact-value {
    flex: 1;
    padding: 0.08rem 0.08rem;
    color: var(--gov-ink);
}

.platform-contact-actions {
    display: flex;
    gap: 0.08rem;
    margin-top: 0.12rem;
}
.platform-btn {
    flex: 1;
    text-align: center;
    height: 0.36rem;
    line-height: 0.36rem;
    border-radius: 0.04rem;
    font-size: 0.13rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01rem;
}
.platform-btn--primary {
    background: var(--gov-navy);
    color: #fff;
}
.platform-btn--ghost {
    background: #fff;
    color: var(--gov-navy);
    border: 0.005rem solid var(--gov-navy);
}
.platform-btn:active { opacity: 0.85; }

/* ========================================================
 * 首页 - 在线客服接口
 * ======================================================== */
.home-service-entry {
    position: fixed;
    right: 0.12rem;
    bottom: 1.08rem;
    z-index: 28;
    width: 0.62rem;
    height: 0.62rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #d71920 0%, #a8070d 100%);
    color: #fff;
    box-shadow: 0 0.06rem 0.16rem rgba(168, 7, 13, 0.34);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.home-service-entry-icon {
    width: 0.24rem;
    height: 0.24rem;
    line-height: 0.24rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    font-size: 0.16rem;
    font-weight: 800;
}
.home-service-entry-text {
    margin-top: 0.03rem;
    font-size: 0.1rem;
    line-height: 1;
    font-weight: 600;
}
@media (min-width: 480px) {
    .home-service-entry { right: calc(50% - 1.875rem + 0.12rem); }
}
.home-service-panel {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.home-service-panel[hidden] { display: none !important; }
.home-service-panel-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.home-service-panel.is-open .home-service-panel-mask { opacity: 1; }
.home-service-panel-card {
    position: relative;
    width: 100%;
    max-width: 3.75rem;
    padding: 0.18rem 0.16rem calc(0.16rem + env(safe-area-inset-bottom));
    border-top-left-radius: 0.18rem;
    border-top-right-radius: 0.18rem;
    background: #fff;
    box-shadow: 0 -0.08rem 0.24rem rgba(0, 0, 0, 0.18);
    transform: translateY(100%);
    transition: transform 0.22s ease;
}
.home-service-panel.is-open .home-service-panel-card { transform: translateY(0); }
.home-service-panel-close {
    position: absolute;
    right: 0.12rem;
    top: 0.1rem;
    width: 0.32rem;
    height: 0.32rem;
    border: none;
    background: transparent;
    color: #9aa0aa;
    font-size: 0.24rem;
    line-height: 0.32rem;
}
.home-service-panel-head {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding-right: 0.34rem;
    margin-bottom: 0.14rem;
}
.home-service-panel-logo { width: 0.38rem; height: 0.38rem; }
.home-service-panel-title {
    font-size: 0.17rem;
    line-height: 0.22rem;
    font-weight: 800;
    color: #1f2330;
}
.home-service-panel-sub {
    margin-top: 0.03rem;
    color: #7b8494;
    font-size: 0.115rem;
}
.home-service-panel-list { display: flex; flex-direction: column; gap: 0.1rem; }
.home-service-panel-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.12rem;
    border: 0.005rem solid #edf0f5;
    border-radius: 0.1rem;
    background: #f8fafc;
    text-align: left;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.home-service-panel-item-icon {
    flex: 0 0 auto;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: #b80f16;
    color: #fff;
    text-align: center;
    line-height: 0.3rem;
    font-weight: 800;
}
.home-service-panel-item-body { flex: 1 1 auto; min-width: 0; }
.home-service-panel-item-body strong {
    display: block;
    color: #1f2330;
    font-size: 0.14rem;
    line-height: 0.18rem;
}
.home-service-panel-item-body em {
    display: block;
    margin-top: 0.03rem;
    font-style: normal;
    color: #7b8494;
    font-size: 0.11rem;
    line-height: 0.15rem;
}
.home-service-panel-item-action {
    flex: 0 0 auto;
    min-width: 0.64rem;
    height: 0.3rem;
    padding: 0 0.1rem;
    border-radius: 0.15rem;
    background: linear-gradient(135deg, #d71920 0%, #a8070d 100%);
    color: #fff;
    font-size: 0.115rem;
    line-height: 0.3rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 0.03rem 0.08rem rgba(168, 7, 13, 0.18);
}
.home-service-panel-tip {
    min-height: 0.18rem;
    margin-top: 0.1rem;
    color: #23823a;
    font-size: 0.12rem;
    text-align: center;
}

/* 首页客服悬浮入口 - 官方客服横向样式覆盖 */
.home-service-entry {
    right: 0.08rem;
    bottom: 1.08rem;
    width: 1.06rem;
    height: 0.36rem;
    padding: 0 0.1rem 0 0.37rem;
    border-radius: 0.2rem;
    background: linear-gradient(90deg, #e60012 0%, #c90000 100%);
    box-shadow: 0 0.035rem 0.1rem rgba(181, 0, 0, 0.22);
    flex-direction: row;
    overflow: visible;
}
.home-service-entry-avatar {
    position: absolute;
    left: -0.04rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.43rem;
    height: 0.43rem;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 0.015rem 0.07rem rgba(201, 38, 20, 0.2);
    border: 0.025rem solid rgba(255, 255, 255, 0.9);
}
.home-service-entry-text {
    margin-top: 0;
    font-size: 0.125rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}
@media (min-width: 480px) {
    .home-service-entry { right: calc(50% - 1.875rem + 0.08rem); }
}

/* 个人中心 - 官方客服选项弹层 */
.profile-service-sheet,
.profile-service-detail {
    position: fixed;
    inset: 0;
    z-index: 10000;
}
.profile-service-sheet[hidden],
.profile-service-detail[hidden] {
    display: none;
}
.profile-service-sheet-mask,
.profile-service-detail-mask {
    position: absolute;
    inset: 0;
    background: rgba(18, 24, 38, 0.52);
    opacity: 0;
    transition: opacity 0.22s ease;
}
.profile-service-sheet.is-open .profile-service-sheet-mask,
.profile-service-detail.is-open .profile-service-detail-mask {
    opacity: 1;
}
.profile-service-sheet-panel {
    position: absolute;
    left: 0.12rem;
    right: 0.12rem;
    bottom: 0.12rem;
    padding: 0.16rem 0.12rem 0.1rem;
    border-radius: 0.18rem;
    background: #fff;
    box-shadow: 0 -0.08rem 0.24rem rgba(25, 31, 46, 0.16);
    transform: translateY(110%);
    transition: transform 0.22s ease;
}
.profile-service-sheet.is-open .profile-service-sheet-panel {
    transform: translateY(0);
}
.profile-service-sheet-head {
    padding: 0 0.04rem 0.1rem;
    text-align: center;
}
.profile-service-sheet-title {
    color: #1f2633;
    font-size: 0.17rem;
    line-height: 0.24rem;
    font-weight: 800;
}
.profile-service-sheet-sub {
    margin-top: 0.03rem;
    color: #7a8494;
    font-size: 0.12rem;
    line-height: 0.18rem;
}
.profile-service-sheet-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.profile-service-sheet-list li + li {
    margin-top: 0.08rem;
}
.profile-service-sheet-item {
    width: 100%;
    min-height: 0.64rem;
    padding: 0.1rem 0.1rem;
    border: 1px solid #edf0f5;
    border-radius: 0.14rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfe 100%);
    display: flex;
    align-items: center;
    gap: 0.1rem;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.profile-service-sheet-icon {
    flex: 0 0 auto;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 0.11rem;
    background: linear-gradient(180deg, #fff7f7 0%, #fff0f0 100%);
    border: 1px solid rgba(183, 24, 31, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}
.profile-service-sheet-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.profile-service-sheet-icon::after {
    content: "";
    position: absolute;
}
.profile-service-sheet-icon--svc::before {
    width: 0.2rem;
    height: 0.15rem;
    transform: translate(-50%, -58%);
    border: 0.022rem solid #b80f16;
    border-bottom: none;
    border-radius: 0.16rem 0.16rem 0 0;
}
.profile-service-sheet-icon--svc::after {
    left: 50%;
    top: 0.22rem;
    width: 0.24rem;
    height: 0.09rem;
    transform: translateX(-50%);
    border-left: 0.04rem solid #b80f16;
    border-right: 0.04rem solid #b80f16;
    border-radius: 0.06rem;
    background:
        linear-gradient(#b80f16, #b80f16) right 0.015rem bottom 0.01rem / 0.075rem 0.018rem no-repeat;
}
.profile-service-sheet-icon--leader {
    background: linear-gradient(180deg, #fffaf0 0%, #fff3dc 100%);
    border-color: rgba(166, 105, 16, 0.16);
}
.profile-service-sheet-icon--leader::before {
    width: 0.23rem;
    height: 0.18rem;
    transform: translate(-50%, -38%);
    border: 0.019rem solid #a66910;
    border-top: none;
    border-radius: 0.025rem;
    background:
        linear-gradient(#a66910, #a66910) 50% 0.045rem / 0.16rem 0.016rem no-repeat,
        linear-gradient(#a66910, #a66910) 0.05rem 0.08rem / 0.016rem 0.08rem no-repeat,
        linear-gradient(#a66910, #a66910) 50% 0.08rem / 0.016rem 0.08rem no-repeat,
        linear-gradient(#a66910, #a66910) 0.164rem 0.08rem / 0.016rem 0.08rem no-repeat;
}
.profile-service-sheet-icon--leader::after {
    left: 50%;
    top: 0.105rem;
    width: 0.21rem;
    height: 0.075rem;
    transform: translateX(-50%);
    background: #a66910;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.profile-service-sheet-icon--group {
    background: linear-gradient(180deg, #f1f7ff 0%, #e8f2ff 100%);
    border-color: rgba(19, 87, 154, 0.16);
}
.profile-service-sheet-icon--group::before {
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    background: #13579a;
    box-shadow:
        -0.095rem 0.025rem 0 -0.01rem #13579a,
        0.095rem 0.025rem 0 -0.01rem #13579a;
}
.profile-service-sheet-icon--group::after {
    left: 50%;
    top: 0.245rem;
    width: 0.23rem;
    height: 0.075rem;
    transform: translateX(-50%);
    border: 0.019rem solid #13579a;
    border-top-width: 0.022rem;
    border-bottom: none;
    border-radius: 0.14rem 0.14rem 0 0;
    box-shadow:
        -0.082rem 0.006rem 0 -0.022rem #13579a,
        0.082rem 0.006rem 0 -0.022rem #13579a;
}
.profile-service-sheet-body {
    flex: 1 1 auto;
    min-width: 0;
}
.profile-service-sheet-name {
    display: block;
    color: #1f2633;
    font-size: 0.145rem;
    line-height: 0.2rem;
    font-weight: 800;
}
.profile-service-sheet-desc {
    display: block;
    margin-top: 0.025rem;
    color: #7b8494;
    font-size: 0.115rem;
    line-height: 0.16rem;
}
.profile-service-sheet-arrow {
    flex: 0 0 auto;
    color: #a5adba;
    font-size: 0.2rem;
    line-height: 1;
}
.profile-service-sheet-cancel {
    width: 100%;
    height: 0.42rem;
    margin-top: 0.1rem;
    border: none;
    border-radius: 0.13rem;
    background: #f3f5f8;
    color: #4a5362;
    font-size: 0.14rem;
    font-weight: 700;
}
.profile-service-detail-card {
    position: absolute;
    left: 0.18rem;
    right: 0.18rem;
    top: 50%;
    padding: 0.18rem 0.16rem 0.16rem;
    border-radius: 0.18rem;
    background: #fff;
    box-shadow: 0 0.1rem 0.32rem rgba(22, 30, 48, 0.18);
    transform: translateY(-45%) scale(0.96);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}
.profile-service-detail.is-open .profile-service-detail-card {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}
.profile-service-detail-close {
    position: absolute;
    right: 0.12rem;
    top: 0.1rem;
    width: 0.28rem;
    height: 0.28rem;
    border: none;
    border-radius: 50%;
    background: #f3f5f8;
    color: #6f7785;
    font-size: 0.2rem;
    line-height: 0.26rem;
}
.profile-service-detail-header {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding-right: 0.28rem;
}
.profile-service-detail-avatar {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    object-fit: cover;
    border: 0.02rem solid #fff;
    box-shadow: 0 0.02rem 0.08rem rgba(215, 25, 32, 0.18);
}
.profile-service-detail-title {
    color: #1f2633;
    font-size: 0.17rem;
    line-height: 0.23rem;
    font-weight: 800;
}
.profile-service-detail-status {
    margin-top: 0.03rem;
    color: #23823a;
    font-size: 0.115rem;
    display: flex;
    align-items: center;
    gap: 0.04rem;
}
.profile-service-detail-dot {
    width: 0.07rem;
    height: 0.07rem;
    border-radius: 50%;
    background: #20b15a;
}
.profile-service-detail-body {
    margin-top: 0.14rem;
}
.profile-service-detail-tip {
    padding: 0.1rem 0.11rem;
    border-radius: 0.12rem;
    background: #fff7f2;
    color: #5d6572;
    font-size: 0.12rem;
    line-height: 0.18rem;
}
.profile-service-detail-info {
    margin: 0.12rem 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #eef1f5;
}
.profile-service-detail-info li {
    display: flex;
    justify-content: space-between;
    gap: 0.1rem;
    padding: 0.1rem 0;
    border-bottom: 1px solid #eef1f5;
}
.profile-service-detail-info-label {
    color: #7b8494;
    font-size: 0.12rem;
}
.profile-service-detail-info-value {
    color: #1f2633;
    font-size: 0.12rem;
    font-weight: 700;
    text-align: right;
}
.profile-service-detail-info-link {
    color: #b80f16;
    text-decoration: none;
}
.profile-service-detail-actions {
    display: flex;
    gap: 0.1rem;
    margin-top: 0.14rem;
}
.profile-service-detail-btn {
    flex: 1 1 0;
    height: 0.42rem;
    border-radius: 0.12rem;
    font-size: 0.135rem;
    font-weight: 800;
    text-align: center;
    line-height: 0.42rem;
    text-decoration: none;
}
.profile-service-detail-btn--ghost {
    border: 1px solid #d71920;
    background: #fff;
    color: #b80f16;
}
.profile-service-detail-btn--primary {
    border: 1px solid #d71920;
    background: linear-gradient(135deg, #d71920 0%, #a8070d 100%);
    color: #fff;
}
@media (min-width: 480px) {
    .profile-service-sheet-panel {
        left: calc(50% - 1.875rem + 0.12rem);
        right: calc(50% - 1.875rem + 0.12rem);
    }
    .profile-service-detail-card {
        left: calc(50% - 1.875rem + 0.18rem);
        right: calc(50% - 1.875rem + 0.18rem);
    }
}

/* 个人中心客服入口图标 - SVG 政企风统一修正 */
.profile-service-sheet-icon {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 0.12rem;
    overflow: hidden;
}
.profile-service-sheet-icon::before {
    left: 50%;
    top: 50%;
    width: 0.25rem;
    height: 0.25rem;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    box-shadow: none;
    clip-path: none;
}
.profile-service-sheet-icon::after {
    display: none;
}
.profile-service-sheet-icon--svc::before {
    background-image: url('../images/profile-service-platform.svg');
}
.profile-service-sheet-icon--leader::before {
    background-image: url('../images/profile-service-leader.svg');
}
.profile-service-sheet-icon--group::before {
    background-image: url('../images/profile-service-group.svg');
}

/* 个人中心客服入口图标 - 清理旧伪元素底色并精修比例 */
.profile-service-sheet-icon {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 0.13rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.profile-service-sheet-icon::before {
    content: "";
    position: static;
    display: block;
    width: 0.26rem;
    height: 0.26rem;
    transform: none;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    clip-path: none !important;
}
.profile-service-sheet-icon::after {
    content: none !important;
    display: none !important;
}
.profile-service-sheet-icon--svc {
    background: linear-gradient(180deg, #fff7f7 0%, #fff0f0 100%);
    border-color: rgba(184, 15, 22, 0.16);
}
.profile-service-sheet-icon--leader {
    background: linear-gradient(180deg, #fffaf1 0%, #fff3df 100%);
    border-color: rgba(166, 105, 16, 0.18);
}
.profile-service-sheet-icon--group {
    background: linear-gradient(180deg, #f3f8ff 0%, #eaf3ff 100%);
    border-color: rgba(19, 87, 154, 0.18);
}
.profile-service-sheet-icon--svc::before {
    background: transparent url('../images/profile-service-platform.svg') center / contain no-repeat !important;
}
.profile-service-sheet-icon--leader::before {
    background: transparent url('../images/profile-service-leader.svg') center / contain no-repeat !important;
}
.profile-service-sheet-icon--group::before {
    background: transparent url('../images/profile-service-group.svg') center / contain no-repeat !important;
}

/* 首页客服面板选项 - 政企风 SVG 图标 */
.home-service-panel-item-icon {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 0.12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    line-height: 1;
    background: linear-gradient(180deg, #fff7f7 0%, #fff0f0 100%);
    border: 1px solid rgba(184, 15, 22, 0.16);
}
.home-service-panel-item-icon::before {
    content: "";
    width: 0.25rem;
    height: 0.25rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.home-service-panel-item-icon--svc::before {
    background-image: url('../images/profile-service-platform.svg');
}
.home-service-panel-item-icon--leader {
    background: linear-gradient(180deg, #fffaf1 0%, #fff3df 100%);
    border-color: rgba(166, 105, 16, 0.18);
}
.home-service-panel-item-icon--leader::before {
    background-image: url('../images/profile-service-leader.svg');
}
.home-service-panel-item-icon--group {
    background: linear-gradient(180deg, #f3f8ff 0%, #eaf3ff 100%);
    border-color: rgba(19, 87, 154, 0.18);
}
.home-service-panel-item-icon--group::before {
    background-image: url('../images/profile-service-group.svg');
}

/* ========================================================
 * 在线客服页
 * ======================================================== */
.page-support {
    background: #b1000e;
}
.phone--support {
    min-height: 100vh;
    padding-top: calc(0.92rem + env(safe-area-inset-top));
    padding-bottom: 1.4rem;
    background: #f6f7fb;
}
.phone--support .support-main {
    padding-top: 0.1rem;
}

.support-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 25;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    min-height: 0.92rem;
    padding: 0.1rem 0.16rem;
    padding-top: calc(0.1rem + env(safe-area-inset-top));
    color: #fff;
    background: linear-gradient(135deg, #c4101c 0%, #9a060c 100%);
    box-shadow: 0 0.04rem 0.18rem rgba(70, 0, 5, 0.22);
}
.support-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.08rem;
    height: 0.08rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.06), transparent);
    pointer-events: none;
}
@media screen and (min-width: 500px) {
    .support-header {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 3.75rem;
    }
}
.support-back {
    position: relative;
    flex: 0 0 auto;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, transform .15s;
}
.support-back:active {
    background: rgba(255,255,255,0.32);
    transform: scale(0.92);
}
.support-back svg { display: block; }
.support-header-avatar {
    flex: 0 0 auto;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 0.02rem solid rgba(255,255,255,0.78);
    box-shadow: 0 0.04rem 0.1rem rgba(70, 0, 5, 0.25);
    background: #fff;
}
.support-header-info {
    flex: 1 1 auto;
    min-width: 0;
}
.support-header-title {
    font-size: 0.18rem;
    line-height: 0.24rem;
    font-weight: 800;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.support-header-status {
    margin-top: 0.04rem;
    display: flex;
    align-items: center;
    gap: 0.05rem;
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: rgba(255,255,255,0.82);
}
.support-header-dot {
    width: 0.07rem;
    height: 0.07rem;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0.03rem rgba(74, 222, 128, 0.32);
    animation: support-header-pulse 2s ease-in-out infinite;
}
@keyframes support-header-pulse {
    0%, 100% { box-shadow: 0 0 0 0.02rem rgba(74, 222, 128, 0.4); }
    50%      { box-shadow: 0 0 0 0.06rem rgba(74, 222, 128, 0); }
}
/* 兼容旧 H1/P 写法 */
.support-header h1 { font-size: 0.18rem; line-height: 0.24rem; font-weight: 800; }
.support-header p { font-size: 0.12rem; color: rgba(255,255,255,0.82); }
.support-main {
    padding: 0 0.14rem 0.2rem;
}
.support-service-card,
.support-form {
    border-radius: 0.16rem;
    background: #fff;
    box-shadow: 0 0.04rem 0.14rem rgba(25, 31, 46, 0.06);
}
.support-chat-flow {
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
}
.support-service-card {
    margin-top: -0.26rem;
    padding: 0.16rem;
    display: flex;
    align-items: center;
    gap: 0.12rem;
}
.support-service-avatar {
    width: 0.54rem;
    height: 0.54rem;
    border-radius: 50%;
    object-fit: cover;
    border: 0.025rem solid #fff;
    box-shadow: 0 0.02rem 0.1rem rgba(184, 15, 22, 0.16);
}
.support-service-title {
    color: #1f2633;
    font-size: 0.16rem;
    line-height: 0.22rem;
    font-weight: 800;
}
.support-service-status {
    margin-top: 0.04rem;
    color: #667085;
    font-size: 0.12rem;
    line-height: 0.17rem;
    display: flex;
    align-items: center;
    gap: 0.05rem;
}
.support-service-status span {
    width: 0.07rem;
    height: 0.07rem;
    border-radius: 50%;
    background: #20b15a;
}
.support-alert {
    margin-top: 0.12rem;
    padding: 0.1rem 0.12rem;
    border-radius: 0.12rem;
    font-size: 0.12rem;
    line-height: 0.18rem;
}
.support-alert--success {
    background: #edf9f1;
    color: #207a3a;
}
.support-alert--error {
    background: #fff1f1;
    color: #b80f16;
}
.support-chat-list {
    margin-top: 0.04rem;
    padding: 0.06rem 0.02rem 0.04rem;
}
.support-empty {
    margin: 0.4rem auto 0;
    padding: 0.18rem 0.16rem;
    border-radius: 0.14rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 0.04rem 0.14rem rgba(25, 31, 46, 0.05);
    text-align: center;
}
.support-empty-title {
    color: #1f2633;
    font-size: 0.14rem;
    font-weight: 800;
}
.support-empty-desc {
    margin-top: 0.05rem;
    color: #7b8494;
    font-size: 0.12rem;
    line-height: 0.18rem;
}
.support-msg + .support-msg {
    margin-top: 0.05rem;
}
.support-msg {
    display: flex;
    flex-direction: column;
}
.support-msg--user {
    align-items: flex-end;
}
.support-msg--admin {
    align-items: flex-start;
}
.support-msg-name {
    display: none;
}
.support-msg-bubble {
    max-width: 70%;
    padding: 0.05rem 0.1rem;
    border-radius: 0.07rem;
    font-size: 0.13rem;
    line-height: 0.18rem;
    word-break: break-word;
    box-shadow: 0 0.01rem 0.03rem rgba(18, 24, 38, 0.05);
}
.support-msg--user .support-msg-bubble {
    background: linear-gradient(135deg, #d71920 0%, #a8070d 100%);
    color: #fff;
    border-top-right-radius: 0.02rem;
}
.support-msg--admin .support-msg-bubble {
    background: #ffffff;
    color: #1f2633;
    border: 1px solid #ebeef3;
    border-top-left-radius: 0.02rem;
}
.support-msg-time {
    display: none;
    margin-top: 0.03rem;
    color: #a0a8b5;
    font-size: 0.1rem;
}
.support-time-divider {
    margin: 0.12rem 0 0.06rem;
    text-align: center;
}
.support-time-divider span {
    display: inline-block;
    padding: 0.02rem 0.08rem;
    border-radius: 0.06rem;
    background: rgba(0, 0, 0, 0.06);
    color: #8a94a6;
    font-size: 0.1rem;
    line-height: 0.16rem;
}
.support-form {
    margin: 0;
    padding: 0.1rem 0.12rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    border-radius: 0.16rem 0.16rem 0 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    box-shadow: 0 -0.04rem 0.16rem rgba(25, 31, 46, 0.08);
    padding-bottom: calc(0.1rem + env(safe-area-inset-bottom));
}
@media screen and (min-width: 500px) {
    .support-form {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 3.75rem;
    }
}
.support-form-label {
    display: none;
}
.support-form textarea {
    width: 100%;
    padding: 0.08rem 0.1rem;
    border: 1px solid #e5e8ef;
    border-radius: 0.12rem;
    resize: none;
    background: #fbfcfe;
    color: #1f2633;
    font-size: 0.13rem;
    line-height: 0.2rem;
    min-height: 0.4rem;
    max-height: 1.4rem;
    box-sizing: border-box;
    overflow-y: auto;
}
.support-form textarea:focus {
    outline: none;
    border-color: #d71920;
    background: #fff;
}
.support-submit {
    flex: 1;
    height: 0.44rem;
    border-radius: 0.13rem;
    background: linear-gradient(135deg, #d71920 0%, #a8070d 100%);
    color: #fff;
    font-size: 0.15rem;
    font-weight: 800;
    border: 0;
    cursor: pointer;
}

/* 在线客服消息实时追加时保持换行 */
.support-msg-bubble {
    white-space: pre-line;
}

/* 在线客服 - 提交区操作行 */
.support-form-actions {
    margin-top: 0.08rem;
    display: flex;
    align-items: center;
    gap: 0.08rem;
}
.support-form .support-submit {
    height: 0.4rem;
    border-radius: 0.12rem;
    font-size: 0.14rem;
}
.support-image-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.04rem;
    height: 0.4rem;
    padding: 0 0.12rem;
    border-radius: 0.12rem;
    background: #f3f4f6;
    color: #374151;
    border: 0;
    font-size: 0.13rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.support-image-btn:hover { background: #e5e7eb; color: #111827; }
.support-image-btn:disabled { opacity: .55; cursor: not-allowed; }
.support-image-status {
    flex: 0 1 auto;
    font-size: 0.12rem;
    color: #6b7280;
    max-width: 1.4rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.support-image-status[hidden] { display: none; }

/* 在线客服 - 图片消息气泡 */
.support-msg-bubble--image {
    padding: 0.04rem !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}
.support-msg-bubble--image a {
    display: inline-block;
    line-height: 0;
    border-radius: 0.1rem;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid #e8eaed;
    transition: opacity .15s;
}
.support-msg-bubble--image a:active { opacity: .85; }
.support-msg-bubble--image img {
    display: block;
    max-width: 2.2rem;
    max-height: 2.2rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 在线客服 - 新回复提示 */
.support-new-message-toast {
    position: fixed;
    left: 50%;
    bottom: 0.28rem;
    z-index: 10020;
    width: min(3.35rem, calc(100vw - 0.32rem));
    padding: 0.12rem 0.14rem;
    border-radius: 0.14rem;
    background: rgba(31, 38, 51, 0.94);
    color: #fff;
    box-shadow: 0 0.08rem 0.22rem rgba(18, 24, 38, 0.26);
    transform: translate(-50%, 0.18rem);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.support-new-message-toast.is-show {
    transform: translate(-50%, 0);
    opacity: 1;
}
.support-new-message-toast strong {
    display: block;
    font-size: 0.14rem;
    line-height: 0.2rem;
    font-weight: 800;
}
.support-new-message-toast span {
    display: block;
    margin-top: 0.02rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.12rem;
    line-height: 0.17rem;
}

/* 在线客服 - 消息删除/撤回操作 */
.support-msg--revoked .support-msg-bubble {
    background: #eef1f5;
    color: #8a94a6;
    font-style: normal;
}
.support-msg-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.08rem;
    margin-top: 0.05rem;
}
.support-msg-actions form {
    margin: 0;
}
.support-msg-actions button {
    height: 0.24rem;
    padding: 0 0.08rem;
    border-radius: 0.12rem;
    background: #f3f5f8;
    color: #6f7785;
    font-size: 0.11rem;
    line-height: 0.24rem;
}
.support-msg-actions form:last-child button {
    color: #b80f16;
    background: #fff1f1;
}

/* 在线客服 - 政企风消息操作优化 */
.support-msg--revoked .support-msg-bubble {
    border: 1px dashed #cbd3df;
    background: #f7f8fb;
    color: #7b8494;
}
.support-msg-actions {
    gap: 0.06rem;
    margin-top: 0.07rem;
    padding-right: 0.02rem;
}
.support-msg-actions button {
    height: 0.26rem;
    min-width: 0.46rem;
    padding: 0 0.1rem;
    border: 1px solid #d8dee8;
    border-radius: 0.05rem;
    background: #fff;
    color: #536172;
    font-size: 0.105rem;
    line-height: 0.24rem;
    font-weight: 600;
    box-shadow: 0 0.01rem 0.03rem rgba(18, 24, 38, 0.04);
}
.support-msg-actions button:active {
    background: #f6f8fb;
}
.support-msg-actions form:last-child button {
    border-color: #ead0d0;
    background: #fff;
    color: #9f1d24;
}
.support-msg-actions form:last-child button:active {
    background: #fff7f7;
}

/* 在线客服 - 长按/右键操作菜单 */
.support-msg-actions {
    display: none !important;
}
.support-msg[data-can-manage="1"] .support-msg-bubble {
    cursor: context-menu;
}
.support-message-menu {
    position: fixed;
    z-index: 10030;
    min-width: 1.12rem;
    padding: 0.06rem;
    border: 1px solid #d8dee8;
    border-radius: 0.08rem;
    background: #fff;
    box-shadow: 0 0.08rem 0.22rem rgba(18, 24, 38, 0.18);
}
.support-message-menu button {
    display: block;
    width: 100%;
    height: 0.34rem;
    padding: 0 0.1rem;
    border-radius: 0.06rem;
    color: #344054;
    font-size: 0.125rem;
    font-weight: 700;
    line-height: 0.34rem;
    text-align: left;
}
.support-message-menu button:hover,
.support-message-menu button:active {
    background: #f6f8fb;
}
.support-message-menu button[data-menu-action="delete"] {
    color: #9f1d24;
}

/* 首页官方客服 - 未读消息提示 */
.home-service-unread {
    position: absolute;
    right: -0.04rem;
    top: -0.08rem;
    min-width: 0.19rem;
    height: 0.19rem;
    padding: 0 0.045rem;
    border-radius: 0.1rem;
    border: 0.02rem solid #fff;
    background: #d71920;
    color: #fff;
    font-size: 0.1rem;
    line-height: 0.15rem;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 0.02rem 0.08rem rgba(168, 7, 13, 0.32);
}
.home-service-unread.is-show {
    animation: homeServiceUnreadPulse 1.6s ease-in-out infinite;
}
@keyframes homeServiceUnreadPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* 首页官方客服 - 醒目新消息提示增强 */
.home-service-entry.has-unread {
    box-shadow: 0 0.04rem 0.14rem rgba(215, 25, 32, 0.34), 0 0 0 0.035rem rgba(255, 226, 75, 0.5);
    animation: homeServiceEntryPulse 1.25s ease-in-out infinite;
}
.home-service-entry.has-unread .home-service-entry-avatar {
    box-shadow: 0 0.02rem 0.1rem rgba(215, 25, 32, 0.28), 0 0 0 0.035rem rgba(255, 223, 73, 0.72);
}
.home-service-unread {
    right: -0.07rem;
    top: -0.1rem;
    min-width: 0.23rem;
    height: 0.23rem;
    border-radius: 0.12rem;
    background: linear-gradient(135deg, #ff3b30 0%, #c40000 100%);
    font-size: 0.11rem;
    line-height: 0.19rem;
}
.home-service-new-tip {
    position: absolute;
    right: 0.08rem;
    top: -0.36rem;
    height: 0.26rem;
    padding: 0 0.11rem;
    border-radius: 0.13rem;
    background: linear-gradient(135deg, #fff4c7 0%, #ffd75a 100%);
    color: #8a1f08;
    font-size: 0.115rem;
    line-height: 0.26rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 0.03rem 0.1rem rgba(138, 31, 8, 0.22);
}
.home-service-new-tip::after {
    content: "";
    position: absolute;
    right: 0.18rem;
    bottom: -0.055rem;
    width: 0;
    height: 0;
    border-left: 0.055rem solid transparent;
    border-right: 0.055rem solid transparent;
    border-top: 0.06rem solid #ffd75a;
}
.home-service-new-tip.is-show {
    animation: homeServiceTipFloat 1.2s ease-in-out infinite;
}
@keyframes homeServiceEntryPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}
@keyframes homeServiceTipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-0.025rem); }
}


/* === Archive 起点按钮锁定（邀请未满）=== */
.arc-primary-btn.arc-primary-btn--locked {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%) !important;
    color: #fff !important;
    cursor: not-allowed;
    opacity: 0.92;
    box-shadow: 0 0.04rem 0.08rem rgba(0,0,0,0.15) inset, 0 0.06rem 0.16rem rgba(0,0,0,0.18);
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.10) 0,
            rgba(255,255,255,0.10) 0.06rem,
            transparent 0.06rem,
            transparent 0.18rem
        ),
        linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%) !important;
}
.arc-primary-btn.arc-primary-btn--locked:hover,
.arc-primary-btn.arc-primary-btn--locked:active {
    transform: none;
    filter: none;
}

/* ==========================================================================
 * APP 下载页 (app-download.php)
 * 设计稿: Figma node 147:4252  375 设计稿 → 1rem = 100px
 * ========================================================================== */

.page-poster {
    background: #8d0309;
}

.phone--poster {
    position: relative;
    background: #8d0309;
    min-height: 8.40rem;
    overflow: hidden;
    color: #fff;
    -webkit-tap-highlight-color: transparent;
}

.phone--poster .poster-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6.67rem;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* 背景底部渐变收尾到纯红色，让 CTA / Footer 落在干净的红底上 */
.phone--poster::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 5.40rem;
    height: 1.27rem;
    background: linear-gradient(180deg, rgba(141, 3, 9, 0) 0%, #8d0309 100%);
    z-index: 1;
    pointer-events: none;
}

/* 顶部 3 颗小星星：top 0.34rem 居中 */
.phone--poster .poster-top {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0.34rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.14rem;
}

.phone--poster .poster-stars {
    width: 0.43rem;
    height: 0.11rem;
    object-fit: contain;
}

.phone--poster .poster-emblem {
    width: 0.58rem;
    height: 0.58rem;
    object-fit: cover;
    border: 1px solid #fbe19b;
    border-radius: 0.08rem;
}

/* 主标题：top 1.33rem 居中 */
.phone--poster .poster-main {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 1.33rem;
    display: flex;
    justify-content: center;
}

.phone--poster .poster-title {
    width: 2.52rem;
    height: auto;
    object-fit: contain;
    user-select: none;
}

/* 公告条：top 5.08rem，宽 3.06rem 居中 */
.phone--poster .poster-ribbon {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 5.08rem;
    width: 3.06rem;
    transform: translateX(-50%);
}

.phone--poster .poster-ribbon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* CTA 区域：top 5.97rem 起 */
.phone--poster .poster-cta {
    position: absolute;
    z-index: 2;
    left: 0.12rem;
    right: 0.12rem;
    top: 5.97rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.16rem;
}

.phone--poster .poster-tagline {
    margin: 0;
    color: #fee8c3;
    font-size: 0.18rem;
    line-height: 0.22rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.phone--poster .poster-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.48rem;
    height: 0.44rem;
    border-radius: 1rem;
    background: linear-gradient(109.33deg, #ffecCD 7.9%, #f8bf63 99.86%);
    color: #910000;
    font-size: 0.16rem;
    line-height: 0.20rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0.04rem 0.10rem rgba(0, 0, 0, 0.18);
    transition: transform .15s ease, filter .15s ease;
}

.phone--poster .poster-download-btn:active {
    transform: translateY(0.01rem);
    filter: brightness(0.96);
}

.phone--poster .poster-stats {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.08rem;
    color: #fee8c3;
    font-size: 0.14rem;
    line-height: 0.21rem;
    font-weight: 400;
}

.phone--poster .poster-stats-divider {
    display: inline-block;
    width: 1px;
    height: 0.16rem;
    background: rgba(254, 232, 195, 0.6);
}

/* 底部安全提示：top 7.84rem 居中 */
.phone--poster .poster-footer {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 7.84rem;
    text-align: center;
    font-size: 0.12rem;
    line-height: 0.16rem;
    color: rgba(255, 255, 255, 0.85);
}

.phone--poster .poster-back {
    position: absolute;
    z-index: 5;
    left: 0.16rem;
    top: 0.16rem;
    width: 0.36rem;
    height: 0.36rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    text-decoration: none;
    font-size: 0.22rem;
    line-height: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.phone--poster .poster-back:active {
    background: rgba(0, 0, 0, 0.40);
}
