/**
 * 5G健康 V5.0 H5生产版 - 页面样式
 * 大厂风格：留白呼吸、信息层级、柔和质感
 */

/* ========== TabBar导航 ========== */
.tabbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 414px;
    height: var(--tabbar-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 0.5px solid var(--border-light);
    z-index: var(--z-fixed);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.tabbar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 10px;
    padding: 4px 0;
    transition: all var(--transition-fast);
}

.tabbar-item.active {
    color: var(--primary);
}

.tabbar-icon {
    font-size: 22px;
    margin-bottom: 1px;
    transition: transform var(--transition-fast);
}

.tabbar-item.active .tabbar-icon {
    transform: scale(1.08);
}

.tabbar-text {
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* ========== 首页样式 ========== */
.home-header {
    padding: 20px var(--space-lg) 16px;
    background: var(--primary);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.home-header::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.home-header::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.home-header-title {
    font-size: var(--font-xl);
    font-weight: 600;
    margin-bottom: 4px;
}

.home-header-subtitle {
    font-size: var(--font-sm);
    opacity: 0.85;
    letter-spacing: 0.5px;
}

/* ========== 轮播图 ========== */
.swiper {
    position: relative;
    height: 160px;
    overflow: hidden;
    margin: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.swiper-slides {
    display: flex;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.swiper-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: #fff;
}

.swiper-slide-content h3 {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: 2px;
}

.swiper-slide-content p {
    font-size: var(--font-xs);
    opacity: 0.9;
}

.swiper-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.swiper-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.swiper-dot.active {
    background: #fff;
    width: 16px;
    border-radius: 3px;
}

/* ========== 官方介绍模块 ========== */
.official-intro {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    margin: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.official-intro .logo {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 16px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.official-intro h2 {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.official-intro p {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

.five-dimensions {
    display: flex;
    justify-content: space-around;
    gap: 0;
    margin-top: var(--space-xl);
    flex-wrap: nowrap;
}

.dimension-item {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.dimension-item .icon {
    width: 48px;
    height: 48px;
    background: var(--primary-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 6px;
}

.dimension-item span {
    font-size: var(--font-xs);
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========== 体验营模块 ========== */
.camp-banner {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin: var(--space-md);
    box-shadow: var(--shadow-md);
}

.camp-banner .camp-info,
.camp-banner .camp-badge,
.camp-banner .camp-buttons {
    position: relative;
    z-index: 1;
}

.camp-banner::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.camp-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.camp-info h3 {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.camp-info .price {
    font-size: var(--font-xxxl);
    font-weight: 600;
}

.camp-info .price small {
    font-size: var(--font-sm);
    opacity: 0.8;
}

.camp-location-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-sm);
    font-size: var(--font-sm);
    opacity: 0.9;
}

.camp-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition-fast);
}

.camp-nav-btn:active {
    background: rgba(255, 255, 255, 0.35);
}

.camp-info .location {
    font-size: var(--font-sm);
    opacity: 0.85;
    margin-top: var(--space-xs);
}

.camp-tags {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.camp-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: var(--font-xs);
}

.camp-tag.highlight {
    background: var(--accent);
}

.camp-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.camp-buttons button {
    flex: 1;
    padding: 11px;
    border-radius: var(--radius-full);
    border: none;
    font-size: var(--font-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-camp-primary {
    background: #fff;
    color: var(--primary);
}

.btn-camp-primary:active {
    opacity: 0.9;
}

.btn-camp-secondary {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* ========== 套餐卡片 ========== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    padding: var(--space-md);
}

.package-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all var(--transition-normal);
}

.package-card:active {
    transform: scale(0.98);
}

.package-card.featured {
    border: 1.5px solid var(--primary);
    background: var(--bg-white);
    box-shadow: var(--shadow-glow);
}

.package-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    white-space: nowrap;
}

.package-card h4 {
    font-size: var(--font-md);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.package-card .package-price {
    font-size: var(--font-xxl);
    color: var(--primary);
    font-weight: 600;
}

.package-card .package-price small {
    font-size: var(--font-xs);
    color: var(--text-light);
    font-weight: normal;
}

.package-card .package-desc {
    font-size: var(--font-xs);
    color: var(--text-light);
    margin-top: var(--space-xs);
}

/* ========== 服务站卡片 ========== */
.franchise-card {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    color: #fff;
    margin: var(--space-md);
    box-shadow: var(--shadow-md);
}

.franchise-card.volunteer {
    background: var(--primary);
}

.franchise-card h4 {
    font-size: var(--font-md);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.franchise-card .price {
    font-size: var(--font-xxl);
    font-weight: 600;
}

.franchise-card .price small {
    font-size: var(--font-sm);
    opacity: 0.8;
}

.franchise-card .desc {
    font-size: var(--font-sm);
    opacity: 0.9;
    margin-top: var(--space-sm);
}

.franchise-card .benefits {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.franchise-card .benefit-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: var(--font-xs);
}

/* ========== 健康Tab样式 ========== */
.health-header {
    background: var(--primary);
    padding: var(--space-xl) var(--space-lg);
    color: #fff;
}

.health-score {
    text-align: center;
    padding: var(--space-lg) 0;
}

.health-score-value {
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
}

.health-score-label {
    font-size: var(--font-sm);
    opacity: 0.9;
    margin-top: var(--space-sm);
}

.health-tabs {
    display: flex;
    gap: var(--space-sm);
    margin: var(--space-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.health-tab {
    padding: 7px 16px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-light);
}

.health-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ========== 指标曲线区域 ========== */
.indicator-chart {
    height: 200px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin: var(--space-md);
    padding: var(--space-lg);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.indicator-chart-title {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.indicator-chart-canvas {
    width: 100%;
    height: 150px;
}

/* ========== 打卡区域 ========== */
.checkin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    padding: var(--space-md);
}

.checkin-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.checkin-item.completed {
    background: rgba(82, 196, 26, 0.05);
    border: 1px solid rgba(82, 196, 26, 0.15);
}

.checkin-item.completed::after {
    content: '✓';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: var(--success);
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkin-icon {
    font-size: 26px;
    margin-bottom: var(--space-xs);
}

.checkin-label {
    font-size: var(--font-xs);
    color: var(--text-primary);
    font-weight: 500;
}

.checkin-status {
    font-size: 10px;
    color: var(--text-light);
    margin-top: 2px;
}

/* ========== 喝水记录 ========== */
.water-tracker {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin: var(--space-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.water-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.water-title {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--text-primary);
}

.water-progress {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.water-cup {
    width: 100%;
    height: 160px;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.water-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.water-cups {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.water-cup-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.water-cup-btn.filled {
    background: var(--primary-bg);
    color: var(--primary);
}

.water-cup-btn:active {
    transform: scale(0.92);
}

/* ========== 个人中心样式 ========== */
.user-header {
    background: var(--primary);
    padding: var(--space-xl) var(--space-lg) 24px;
    color: #fff;
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    object-fit: cover;
}

.user-avatar-fallback {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.user-details { flex: 1; }

.user-name {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: 4px;
}

.user-phone {
    font-size: var(--font-sm);
    opacity: 0.8;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.user-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.user-tag {
    background: rgba(255, 255, 255, 0.18);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
}

/* ========== 额度卡片 ========== */
.credit-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    margin: -12px var(--space-md) var(--space-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.credit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.credit-title {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--text-primary);
}

.credit-value {
    font-size: var(--font-xxxl);
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--space-xs);
}

.credit-unit {
    font-size: var(--font-sm);
    color: var(--text-light);
    text-align: center;
}

.credit-desc {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    text-align: center;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px dashed var(--border-color);
}

/* ========== 钱包样式 ========== */
.wallet-card {
    background: var(--primary);
    border-radius: var(--radius-xl);
    margin: var(--space-md);
    padding: var(--space-xl);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.wallet-balance {
    font-size: 32px;
    font-weight: 600;
}

.wallet-label {
    font-size: var(--font-sm);
    opacity: 0.85;
    margin-bottom: var(--space-lg);
}

.wallet-actions {
    display: flex;
    gap: var(--space-md);
}

.wallet-btn {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-full);
    text-align: center;
    font-size: var(--font-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.wallet-btn:active {
    background: rgba(255, 255, 255, 0.28);
}

/* ========== 订单列表 ========== */
.order-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin: var(--space-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.order-no { font-size: var(--font-sm); color: var(--text-light); }
.order-status { font-size: var(--font-sm); font-weight: 500; }
.order-status.pending { color: var(--warning); }
.order-status.paid { color: var(--success); }
.order-status.completed { color: var(--primary); }

.order-product { display: flex; gap: var(--space-md); }

.order-product-img {
    width: 64px;
    height: 64px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    object-fit: cover;
}

.order-product-info { flex: 1; }
.order-product-name { font-size: var(--font-md); font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-xs); }
.order-product-desc { font-size: var(--font-sm); color: var(--text-light); }

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.order-price { font-size: var(--font-lg); font-weight: 600; color: var(--primary); }

/* ========== 兑换券样式 ========== */
.coupon-card {
    background: var(--primary);
    border-radius: var(--radius-xl);
    margin: var(--space-md);
    padding: var(--space-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.coupon-card::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.coupon-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-lg); }
.coupon-name { font-size: var(--font-lg); font-weight: 600; }
.coupon-count { font-size: var(--font-xxxl); font-weight: 600; }
.coupon-count small { font-size: var(--font-sm); }
.coupon-footer { display: flex; justify-content: space-between; align-items: center; }
.coupon-expire { font-size: var(--font-xs); opacity: 0.85; }

/* ========== 体验营报名表单 ========== */
.signup-form { padding: var(--space-md); }

.signup-form .form-input {
    background: var(--bg-gray);
    border: 1px solid var(--border-light);
}

.form-select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 16px;
    color: var(--text-primary);
    background: var(--bg-white);
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
    height: 48px;
    min-height: 48px;
    cursor: pointer;
    box-sizing: border-box;
    line-height: normal;
}

/* iOS Safari 选择器弹窗修复 */
.form-select::-ms-expand {
    display: block;
}
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 139, 219, 0.08);
    outline: none;
}

/* ========== 支付页面 ========== */
.payment-methods {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin: var(--space-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.payment-method {
    display: flex;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.payment-method:last-child { border-bottom: none; }

.payment-method.selected {
    background: var(--primary-bg);
}

.payment-method-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: var(--space-md);
}

.payment-method-name { flex: 1; font-size: var(--font-md); color: var(--text-primary); }

.payment-method-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    transition: all var(--transition-fast);
}

.payment-method.selected .payment-method-check {
    background: var(--primary);
    border-color: var(--primary);
}

/* ========== 支付成功页 ========== */
.pay-success {
    text-align: center;
    padding: var(--space-xxxl) var(--space-lg);
}

.pay-success-icon {
    width: 72px;
    height: 72px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: 36px;
    color: #fff;
}

.pay-success-title { font-size: var(--font-xxl); font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-sm); }
.pay-success-desc { font-size: var(--font-md); color: var(--text-secondary); margin-bottom: var(--space-xxl); }

.pay-success-rewards {
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.reward-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-light);
}

.reward-item:last-child { border-bottom: none; }

.reward-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.reward-info { flex: 1; }
.reward-title { font-size: var(--font-md); font-weight: 600; color: var(--text-primary); }
.reward-desc { font-size: var(--font-sm); color: var(--text-light); }

/* ========== 分享海报样式 ========== */
.poster-preview {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    margin: var(--space-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.poster-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: var(--font-md);
}

.poster-actions { display: flex; gap: var(--space-md); }

/* ========== 实名认证 ========== */
.auth-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    margin: var(--space-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.auth-status { text-align: center; padding: var(--space-xl); }

.auth-status-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto var(--space-lg);
}

.auth-status-icon.verified { background: rgba(82, 196, 26, 0.08); color: var(--success); }
.auth-status-icon.pending { background: rgba(250, 173, 20, 0.08); color: var(--warning); }

.auth-status-title { font-size: var(--font-lg); font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-sm); }
.auth-status-desc { font-size: var(--font-sm); color: var(--text-secondary); }

/* ========== 设置页面 ========== */
.settings-section {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin: var(--space-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.settings-item {
    display: flex;
    align-items: center;
    padding: 15px var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition-fast);
}

.settings-item:last-child { border-bottom: none; }

.settings-item:active { background: var(--bg-gray); }

.settings-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-right: var(--space-md);
}

.settings-name { flex: 1; font-size: var(--font-md); color: var(--text-primary); }
.settings-arrow { color: var(--text-light); font-size: 13px; }

/* ========== 股权信息 ========== */
.equity-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: var(--radius-xl);
    margin: var(--space-md);
    padding: var(--space-xl);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.equity-title { font-size: var(--font-md); font-weight: 600; margin-bottom: var(--space-lg); }
.equity-value { font-size: 32px; font-weight: 600; margin-bottom: var(--space-xs); }
.equity-label { font-size: var(--font-sm); opacity: 0.9; }

.equity-note {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-top: var(--space-lg);
    font-size: var(--font-sm);
}

/* ========== 渠道专属套餐 ========== */
.channel-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin: var(--space-md);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.channel-banner h3 { font-size: var(--font-lg); font-weight: 600; margin-bottom: var(--space-sm); }
.channel-banner p { font-size: var(--font-sm); opacity: 0.9; }

/* ========== 客户端集采套餐 ========== */
.bulk-package {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin: var(--space-md);
    padding: var(--space-lg);
    border: 1.5px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.bulk-package-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-md); }
.bulk-package-title { font-size: var(--font-md); font-weight: 600; color: var(--primary); }

.bulk-package-count {
    background: var(--primary);
    color: #fff;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
}

.bulk-package-price { font-size: var(--font-xxxl); font-weight: 600; color: var(--primary); margin-bottom: var(--space-sm); }
.bulk-package-price small { font-size: var(--font-sm); color: var(--text-light); }
.bulk-package-desc { font-size: var(--font-sm); color: var(--text-secondary); }

/* ========== 问卷选项样式增强 ========== */
.survey-option {
    display: flex; align-items: center; gap: 12px; padding: 14px 16px;
    background: var(--bg-white); border-radius: 12px; cursor: pointer;
    margin-bottom: 10px; transition: all 0.2s; border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.survey-option.selected { border-color: var(--primary); background: var(--primary-bg); }
.survey-option-key {
    width: 28px; height: 28px; border-radius: 50%; background: var(--bg-gray);
    color: var(--text-secondary); display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600; flex-shrink: 0; transition: all 0.2s;
}
.survey-option.selected .survey-option-key { background: var(--primary); color: #fff; }
.survey-option-text { flex: 1; font-size: 15px; color: var(--text-primary); }
.survey-option-check { color: var(--primary); font-size: 16px; font-weight: bold; }
.survey-option.selected .survey-option-check::after { content: '✓'; }

.survey-sort-item.dragging { opacity: 0.5; }

.credit-popup {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.78); color: #fff; padding: 28px 36px;
    border-radius: 16px; text-align: center; z-index: 9999;
    animation: popIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@keyframes popIn {
    0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
