/* 引用统一基础样式 */
/* 用户中心页面特有的主容器样式 */
.main-container {
    /* 用户中心特有的背景 */
    
    
    /* background: url('../images/user-center-bg.png') no-repeat center center, linear-gradient(180deg, #ffe8d6 0%, #fef7f0 50%, #faf8f5 100%);
    background-size: cover, 100% 100%; */
    /* background-image: url('../images/ptbcz/ptbcz-bg.png'); */ /* 已在 user-center.html 中使用 __TMPL__ 引用 */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;


    padding: 0 1.33rem;
    /* 用户中心特有的滚动行为 */
    overflow-y: auto;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling: touch;
    height:calc(100vh - 4.15rem);
    min-height:auto;
}
.main-container::-webkit-scrollbar{width:0.5rem}
.main-container::-webkit-scrollbar-track{background:#f1f1f1;border-radius:0.25rem}
.main-container::-webkit-scrollbar-thumb{background:#c1c1c1;border-radius:0.25rem}
.main-container::-webkit-scrollbar-thumb:hover{background:#a8a8a8}

.bottom-nav {
    max-width: 500px;
}

/* 头部用户信息区域 */
.header {
    position: relative;
    margin-bottom: 1.66rem;
    padding-top: 0.83rem;
}

.header-actions {
    position: absolute;
    top: 0.83rem;
    right: 0;
    display: flex;
    z-index: var(--z-index-overlay);
}

.action-btn {
    width: 2.66rem;
    height: 2.66rem;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.action-btn:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.message-icon {
    width: 1.66rem;
    height: 1.66rem;
    display: block;
}

.settings-icon {
    width: 1.83rem;
    height: 1.66rem;
    display: block;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1.33rem;
    margin-top: 2.5rem;
}

.avatar {
    width: 4.15rem;
    height: 4.15rem;
    border-radius: 50%;
    overflow: hidden;
    border: 0.083rem solid #fff;
    box-shadow: 0 0.17rem 0.66rem rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    /* 用默认 logo 作底图：img 还没下载完时背景已有 logo，加载好后 img 覆盖上去，
       避免空白→图片的闪烁；onerror 兜底也不会再露出破图。 */
    background: #fff center/cover no-repeat url('../../../../mobilepublic/assets/images/logoo.png');
}

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

.user-details {
    flex: 1;
    min-width: 0;
}

.username {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.2;
}

.account-id {
    font-size: 1.25rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.3;
}

/* 平台币钱包卡片 */
.balance-card-section {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

.balance-card {
    position: relative;
    width: 100%;
    border-radius: 1.33rem;
    overflow: visible;
    color: var(--text-color-secondary, #666);
    z-index: 15; /* 高于 balance-icon (z-index: 10) 以覆盖图标 */
}

.balance-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 16px);
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    z-index: 1;
    margin-right: 16px;
}

.balance-card-content {
    position: relative;
    z-index: 2;
    padding: 16px 0px 10px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.balance-header {
    display: flex;
    align-items: center;
    gap: 5px;
}

.balance-title {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

.balance-title-icon {
    width: 17px;
    height: 17px;
}

.balance-amount-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 10px 0;
}

.balance-amount {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    margin-bottom: 4px;
}

.details-link {
    background-color: #ffffff;
    color: var(--accent-color, #ff6b35);
    font-size: 13px;
    font-weight: 500;
    padding: 2px 5px;
    border-radius: 8px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 4px;
}

.balance-details {
    display: flex;
    gap: 4px;
    margin-top: auto;
}

.balance-detail-tag {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    backdrop-filter: blur(10px);
}

.recharge-button-content {
    position: absolute;
    top: 8px;
    right: 0px;
    width: 100px;
    height: 60px;
    z-index: var(--z-index-overlay);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    background-image: url('../images/recharge-button-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.recharge-text-main {
    color: #333333;
    font-size: 12px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.2;
}

.recharge-text-promo {
    color: #ff6b35;
    font-size: 12px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.2;
}

.balance-icon {
    position: absolute;
    top: 60px; /* 8px (recharge-button-content top) + 60px (recharge-button-content height) - 8px = 60px */
    right: 0px; /* 与 recharge-button-content 右对齐 (right: -10px) */
    width: 24px;
    height: 19px;
    z-index: var(--z-index-overlay); /* 现在可以与 balance-card (z-index: 3) 在同一层级比较 */
}

.balance-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 功能图标网格 */
.features-section {
    border-radius: 8px;
    padding: 15px 0;
    box-shadow: 0px 0px 13px rgba(126, 167, 249, 0.2);
    width: 100%;
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 24px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 4px;
    border-radius: 12px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.feature-icon-wrapper {
    position: relative;
    width: 37px;
    height: 37px;
}

.feature-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color-primary, #333);
    text-align: center;
}

/* 功能图标统一样式 */
.feature-icon {
    width: var(--feature-icon-size);
    height: var(--feature-icon-size);
}

/* 推广横幅图片统一样式 */
.promo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 推广横幅 */
.promo-banner-section {
    position: relative;
    width: 100%;
    aspect-ratio: 345 / 164;
    border-radius: 20px;
    overflow: hidden;
    /* margin-bottom: 20px; */
    margin-bottom: 80px;
}

.promo-banner-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== 邀请好礼卡（替换 promo 图片，暧昧夜色质感） ===== */
.invite-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    background: linear-gradient(150deg, #3a1430 0%, #2a0f24 52%, #1a0a18 100%);
    box-shadow: 0 14px 30px rgba(28, 8, 26, 0.4);
    transition: transform 0.25s ease;
}

.invite-card:active {
    transform: scale(0.985);
}

/* 渐变描边 */
.invite-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 130, 160, 0.6), rgba(255, 255, 255, 0.04) 45%, rgba(255, 99, 132, 0.25));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}

/* 右侧人物图 */
.invite-photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
    z-index: 0;
    pointer-events: none;
    /* 与图片同色的占位底，消除加载瞬间空白 */
    background: linear-gradient(150deg, #5a1f47 0%, #3a1230 60%, #24102a 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, #000 42%);
            mask: linear-gradient(to right, transparent 0%, #000 42%);
}

.invite-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 16%;
}

/* 文案压暗蒙版（保证左侧文字可读） */
.invite-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(100deg, #1c0a18 0%, #1c0a18 28%, rgba(28, 10, 24, 0.72) 48%, rgba(28, 10, 24, 0.15) 66%, transparent 80%);
}

/* 流光扫过 */
.invite-shine {
    position: absolute;
    top: 0;
    left: -60%;
    width: 42%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 1;
    animation: invite-shine 5s ease-in-out infinite;
}

.invite-card-main {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 215px;
    text-shadow: 0 1px 6px rgba(10, 4, 12, 0.7);
}

.invite-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(255, 99, 132, 0.16);
    border: 1px solid rgba(255, 130, 160, 0.4);
    color: #ffb3c4;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.invite-tag::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff6384;
    box-shadow: 0 0 7px #ff6384;
    animation: invite-blink 1.6s ease-in-out infinite;
}

.invite-card-title {
    margin: 8px 0 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.invite-card-title b {
    background: linear-gradient(90deg, #ffc2cf, #ff6384);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.invite-card-desc {
    margin: 6px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.invite-card-desc b {
    color: #ffb3c4;
    font-weight: 700;
}

/* 数据行 */
.invite-proof {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    margin-top: 10px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.62);
    white-space: nowrap;
}

.invite-proof b {
    color: #ff8ba6;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* 叠放头像 */
.invite-avatars {
    display: inline-flex;
    flex-shrink: 0;
}

.invite-avatars i {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid #2a0f24;
    margin-left: -6px;
}

.invite-avatars i:first-child {
    margin-left: 0;
}

.invite-avatars i:nth-child(1) { background: linear-gradient(135deg, #ff9ec4, #ff4d94); }
.invite-avatars i:nth-child(2) { background: linear-gradient(135deg, #c89bff, #8a4af0); }
.invite-avatars i:nth-child(3) { background: linear-gradient(135deg, #ffd36b, #f9a932); }

.invite-card-cta {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a9c, #ff3d6e);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(255, 61, 110, 0.5);
    text-shadow: none;
}

.invite-card-cta svg {
    width: 14px;
    height: 14px;
    animation: invite-heart-beat 1.8s ease-in-out infinite;
}

@keyframes invite-shine {
    0% { left: -60%; }
    55%, 100% { left: 135%; }
}

@keyframes invite-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes invite-heart-beat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.12); }
    30% { transform: scale(1); }
    45% { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .invite-shine,
    .invite-tag::before,
    .invite-card-cta svg {
        animation: none;
    }
}

.promo-banner-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.promo-logo {
    position: absolute;
    top: 10px;
    left: 11px;
    width: 60.28px;
    height: 20.64px;
    text-decoration: none;
}

.promo-logo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.promo-text {
    position: absolute;
    top: 72px;
    left: 12px;
    width: 198px;
}

.promo-text p {
    margin: 0;
    font-family: var(--font-family-special);
    font-size: 17px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0px 0px 3px #422013;
}

.promo-button {
    position: absolute;
    top: 118px;
    left: 12px;
    width: 117px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.promo-button-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.promo-button-text {
    position: relative;
    z-index: 2;
    font-family: var(--font-family-button);
    font-weight: 700;
    font-size: 16.5px;
    color: #ffffff;
    text-shadow: 1.4px 0.3px 1.5px #632c04;
}

/* 底部导航栏样式已移至 base.css */

/* 响应式设计 - 横屏适配 */
@media screen and (orientation: landscape) {
    /* .main-container 样式已移至 base.css */
    
    .features-grid {
        /* Keep 4 columns even in landscape */
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    
    .feature-item {
        padding: 8px 4px;
    }
    
    
    .balance-amount {
        font-size: 28px;
    }
    
    .promo-banner {
        padding: 24px;
        min-height: 100px;
    }
    
    .banner-image {
        width: 100px;
        height: 100px;
    }

    /* .bottom-nav 样式已移至 base.css */
}

/* 响应式设计 - 大屏设备 */
/* .main-container 和 .bottom-nav 样式已移至 base.css */

/* 响应式设计 - 小屏设备 */
@media screen and (max-width: 375px) {
    /* .main-container 样式已移至 base.css */
    
    .features-grid {
        gap: 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon img {
        width: 20px;
        height: 20px;
    }
    
    .balance-amount {
        font-size: 28px;
    }
}

/* 移动端特定优化 */
@media screen and (max-height: 667px) {
    /* .main-container 样式已移至 base.css */
    
    .header {
        margin-bottom: 16px;
    }
    
    .balance-card-section {
        margin-bottom: 20px;
    }
    
    .features-section {
        margin-bottom: 20px;
    }
    
    .promo-banner-section {
        /* margin-bottom: 16px; */
        margin-bottom: 80px;
    }
}

/* 超小屏幕优化 */
@media screen and (max-height: 568px) {
    /* .main-container 样式已移至 base.css */
    
    .balance-amount {
        font-size: 32px;
    }
    
    .features-grid {
        row-gap: 20px;
    }
    
    .feature-item {
        padding: 8px 4px;
    }
}

/* 移除动画效果，消除页面刷新时的闪烁现象 */

/* 触摸反馈 */
.feature-item:active,
.action-btn:active,
.details-btn:active,
.banner-btn:active {
    transform: scale(0.95);
}

/* 滚动优化和安全区域适配已移至 base.css */

/* 从 user-center.html 迁移的内联样式 */

/* 登出按钮样式 */
.user_logout {
    position: absolute;
    right: 1.3rem;
    top: 3.5rem;
    width: 5rem;
    height: 1.6rem;
    color: #2196F3;
    padding: 2px 5px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    user-select: none;
}

/* 提示点样式 */
.tip_dot {
    position: absolute;
    top: 0;
    right: 0px;
    width: 8px;
    height: 8px;
    background-color: #FF0000;
    border-radius: 50%;
    display: none;
}

/* 消息按钮专用角标样式 */
.message-btn .tip_dot {
    top: 0.3rem;
    right: 0.3rem;
    z-index: 10;
}

/* ============================================================
   会员标签 —— 会员炫酷版 / 非会员落差版
   ============================================================ */
.user_vip_status {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    padding: 3px 12px 3px 6px;
    width: fit-content;
    position: relative;
    overflow: hidden;
    /* 会员：金橙渐变 + 流光 + 立体阴影 */
    background: linear-gradient(135deg, #FFE7A8 0%, #FFC764 30%, #FFAA2E 60%, #FF7A18 100%);
    background-size: 200% 200%;
    box-shadow:
        0 2px 8px rgba(255, 138, 30, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    animation: vipGradientShift 3s ease-in-out infinite;
}

/* 流光扫光（仅会员） */
.user_vip_status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.7) 50%,
        transparent 100%);
    transform: skewX(-25deg);
    animation: vipShine 2.6s infinite;
    pointer-events: none;
}

/* SVG 皇冠图标容器 */
.user_vip_status_icon {
    display: inline-flex;
    width: 22px;
    height: 18px;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
}
.user_vip_status_icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* 皇冠图标投影（fill 通过 SVG attr 直接指定渐变） */
.user_vip_status svg { filter: drop-shadow(0 1px 1.5px rgba(120, 60, 0, 0.35)); }

/* 标签文字 */
.user_vip_status_lb {
    color: #6A2A00;
    font-family: "Alibaba PuHuiTi";
    font-size: 13px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

/* ---------- 非会员：落差感（灰银 + 静态 + 暗示去开通） ---------- */
.user_vip_status--free {
    background: linear-gradient(135deg, #F2F4F7 0%, #DDE1E8 100%);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    animation: none;
    opacity: 0.95;
}
.user_vip_status--free::before { display: none; }

.user_vip_status--free svg { filter: none; }

.user_vip_status--free .user_vip_status_lb {
    color: #6B7280;
    text-shadow: none;
    font-weight: 700;
}

.user_vip_status_arrow {
    position: relative;
    z-index: 1;
    color: #9BA3AE;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin-left: -2px;
}

@keyframes vipGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes vipShine {
    0%   { left: -75%; }
    60%  { left: 125%; }
    100% { left: 125%; }
}

/* ============================================================
   会员状态卡（普通/会员 演示切换）—— 仅前端预览
   ============================================================ */
.ucv-demo { margin: 0 0 14px; }

/* 卡片通用 */
.ucv-card { border-radius: 16px; padding: 14px; }
.ucv-card-top { display: flex; align-items: flex-start; gap: 10px; }
.ucv-card-ico {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ucv-card-main { flex: 1; min-width: 0; }
.ucv-card-title { font-size: 15px; font-weight: 700; }
.ucv-card-desc { margin-top: 4px; font-size: 11.5px; line-height: 1.4; }
.ucv-card-btn {
    flex-shrink: 0; padding: 5px 12px; border-radius: 999px;
    font-size: 12.5px; font-weight: 700; text-decoration: none !important; white-space: nowrap;
}
.ucv-stats { display: flex; gap: 8px; margin-top: 14px; }
.ucv-stat {
    flex: 1; border-radius: 10px; padding: 9px 6px; text-align: center;
    display: flex; flex-direction: column; gap: 5px;
}
.ucv-stat-label { font-size: 11px; }
.ucv-stat-val { font-size: 16px; font-weight: 800; }
.ucv-stat-val .ucv-dim { font-weight: 600; opacity: 0.6; font-size: 12px; }
.ucv-infinity { letter-spacing: 1px; }
.ucv-benefits {
    display: flex; gap: 6px; margin-top: 12px; padding-top: 12px;
    border-top: 1px dashed rgba(0, 0, 0, 0.12);
}
.ucv-benefit {
    flex: 1; min-width: 0; text-align: center; font-size: 10.5px; line-height: 1.3;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.ucv-benefit i { font-size: 16px; font-style: normal; }

/* 普通用户卡：橙色 */
.ucv-card-free { background: linear-gradient(135deg, #ffe7c2 0%, #ffd49a 100%); border: 1px solid #f5c98a; }
.ucv-card-free .ucv-card-ico { background: #fff; color: #ff8a1f; }
.ucv-card-free .ucv-card-title { color: #7c4a00; }
.ucv-card-free .ucv-card-desc { color: #9a6b1f; }
.ucv-card-free .ucv-card-btn { background: linear-gradient(90deg, #ff7a18, #ff5a00); color: #fff !important; }
.ucv-card-free .ucv-stat { background: rgba(255, 255, 255, 0.6); }
.ucv-card-free .ucv-stat-label { color: #9a6b1f; }
.ucv-card-free .ucv-stat-val { color: #7c4a00; }
.ucv-card-free .ucv-benefits { border-top-color: rgba(124, 74, 0, 0.18); }
.ucv-card-free .ucv-benefit { color: #9a6b1f; }

/* 会员卡：金棕色 */
.ucv-card-member { background: linear-gradient(135deg, #6e4421 0%, #4f3015 100%); border: 1px solid #8a5a2e; }
.ucv-card-member .ucv-card-ico { background: rgba(255, 255, 255, 0.14); }
.ucv-card-member .ucv-card-title { color: #ffe9c2; }
.ucv-card-member .ucv-card-desc { color: #d9b890; }
.ucv-card-member .ucv-card-btn { background: rgba(255, 255, 255, 0.92); color: #7c4a00 !important; }
.ucv-card-member .ucv-stat { background: rgba(255, 255, 255, 0.1); }
.ucv-card-member .ucv-stat-label { color: #d9b890; }
.ucv-card-member .ucv-stat-val { color: #fff7ec; }
.ucv-card-member .ucv-infinity { color: #ffd66b; }
.ucv-card-member .ucv-benefits { border-top-color: rgba(255, 255, 255, 0.15); }
.ucv-card-member .ucv-benefit { color: #d9b890; }

/* 普通/会员 显隐切换 */
.ucv-card-member { display: none; }
.ucv-demo.is-member .ucv-card-free { display: none; }
.ucv-demo.is-member .ucv-card-member { display: block; }

