/* ============================================
   index.html 独有样式
   包含：首页模块组件（指标卡、砍价卡、引导卡、双栏面板、右侧侧栏等）
   ============================================ */

/* ============================================
   字体层级（PC中文）- 从 index.html 内联样式提取
   ============================================ */
.h1-hero { 
    font-size: 36px; 
    font-weight: 700; 
    line-height: 1.2; 
}

.h2-module { 
    font-size: 18px; 
    font-weight: 600; 
    line-height: 1.2; 
}

.text-key-number { 
    font-size: 28px; 
    font-weight: 700; 
}

.hero-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 16px;
    color: var(--text-gray);
    font-size: 13px;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* ============================================
   指标卡 3 连 - 统一规格
   单卡尺寸：249×88px（三卡 + 16×2间距 = 780）
   ============================================ */
.metrics-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.metric-card {
    flex: 1;
    width: 249px;
    height: 88px;
    background: var(--bg-card);
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.metric-card-left {
    flex: 1;
    min-width: 0;
}

.metric-card-number {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.metric-card-value {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    font-family: "DIN Alternate", "Helvetica Neue", -apple-system, sans-serif;
}

.metric-card-value-text {
    font-size: 24px;
    font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    white-space: nowrap;
}

.metric-card-unit {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
}

.metric-card-label {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

.metric-card-trend {
    font-size: 12px;
    color: var(--status-success);
    margin-top: 2px;
}

.metric-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}

.metric-card-icon-red {
    background: #FFE8EC;
    color: var(--action-red);
}

.metric-card-icon-blue {
    background: #EAF3FF;
    color: var(--brand-blue);
}

.metric-card-icon-green {
    background: #E8F8EF;
    color: var(--status-success);
}

/* ============================================
   模块 A：进行中砍价卡 / 新手引导卡
   W=780px，H=152px
   ============================================ */
.active-bargain-card {
    width: 780px;
    min-height: 152px;
    background: var(--bg-card);
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.active-bargain-left {
    flex: 1;
    max-width: 520px;
}

.active-bargain-right {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.active-bargain-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.active-bargain-product {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 8px;
}

.active-bargain-progress-text {
    font-size: 16px;
    margin-bottom: 8px;
}

.active-bargain-progress-text .cut-amount {
    color: var(--brand-blue);
    font-weight: 700;
}

.active-bargain-progress-text .remain-amount {
    color: var(--action-red);
    font-weight: 700;
}

.active-bargain-progress-bar {
    height: 10px;
    background: #E9EDF3;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
}

.active-bargain-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-blue), #3B82F6);
    border-radius: 100px;
    transition: width 0.5s ease;
}

.active-bargain-progress-percent {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-gray);
}

.active-bargain-status {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    gap: 16px;
}

.active-bargain-btn {
    width: 200px;
    height: 40px;
}

.active-bargain-btn-secondary {
    width: 200px;
    height: 36px;
}

.active-bargain-link {
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
    cursor: pointer;
}

.active-bargain-link:hover {
    color: var(--brand-blue);
}

/* 左侧继续冲刺卡：任务中心小链接 */
.active-bargain-task-link {
    font-size: 13px;
    color: var(--text-gray);
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 8px 0;
    transition: color 0.15s;
}

.active-bargain-task-link:hover {
    color: var(--brand-blue);
}

/* 新手引导卡 */
.newbie-guide-card {
    width: 780px;
    min-height: 152px;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.newbie-guide-left {
    flex: 1;
}

.newbie-guide-right {
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newbie-guide-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.newbie-guide-desc {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 12px;
    line-height: 1.4;
}

.newbie-guide-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.newbie-guide-tag {
    padding: 4px 10px;
    background: var(--action-red-light);
    color: var(--action-red);
    font-size: 12px;
    border-radius: 4px;
}

.newbie-guide-tag.gold {
    background: var(--reward-gold-light);
    color: #8B6914;
}

.newbie-guide-tag.blue {
    background: var(--brand-blue-light);
    color: var(--brand-blue);
}

.newbie-guide-btns {
    display: flex;
    gap: 12px;
}

/* 迷你推荐卡 */
.mini-recommend-card {
    width: 240px;
    padding: 12px;
    background: white;
    border: 1px solid #E9EDF3;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
}

.mini-recommend-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mini-recommend-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.mini-recommend-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mini-recommend-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--action-red);
    margin-bottom: 4px;
}

.mini-recommend-meta {
    font-size: 11px;
    color: var(--text-gray);
}

/* ============================================
   模块 B：3步上手 + 加速技巧
   W=780px，H=132px
   ============================================ */
.quick-guide-card {
    width: 780px;
    min-height: 132px;
    background: var(--bg-card);
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.quick-guide-steps {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.quick-guide-step {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.quick-guide-step-icon {
    width: 36px;
    height: 36px;
    background: var(--brand-blue-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.quick-guide-step-content {
    flex: 1;
}

.quick-guide-step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.quick-guide-step-desc {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.4;
}

.quick-guide-tips {
    display: flex;
    gap: 16px;
    padding: 10px 12px;
    background: #FAFBFC;
    border-radius: 8px;
    position: relative;
}

.quick-guide-tip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-body);
}

.quick-guide-tip-icon {
    color: var(--status-success);
    font-weight: 600;
}

.quick-guide-link {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
}

.quick-guide-link:hover {
    color: var(--brand-blue);
}

/* ============================================
   模块 C：实时动态 + 今日热榜（双栏）
   外层：W=780px，H=156px
   子卡：W=382px，H=124px
   ============================================ */
.dual-panel-card {
    width: 780px;
    min-height: 156px;
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.dual-panel-item {
    flex: 1;
    width: 382px;
    min-height: 124px;
    background: var(--bg-card);
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.dual-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.dual-panel-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.dual-panel-link {
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
}

.dual-panel-link:hover {
    color: var(--brand-blue);
}

/* 实时动态列表 */
.live-feed-list {
    height: 112px;
    overflow: hidden;
    position: relative;
}

.live-feed-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    height: 28px;
    font-size: 13px;
    line-height: 28px;
    color: var(--text-body);
}

.live-feed-track {
    display: flex;
    flex-direction: column;
    animation: liveFeedScroll 16s linear infinite;
    will-change: transform;
}

.live-feed-list:hover .live-feed-track {
    animation-play-state: paused;
}

.live-feed-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-feed-time {
    color: var(--text-gray);
    font-size: 12px;
    white-space: nowrap;
}

@keyframes liveFeedScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.live-feed-name {
    color: var(--text-gray);
    flex-shrink: 0;
}

.live-feed-action {
    color: var(--text-body);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-feed-amount {
    color: var(--action-red);
    font-weight: 600;
}

/* 热榜列表 */
.hot-rank-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hot-rank-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 2px 0;
    cursor: pointer;
}

.hot-rank-item:hover {
    color: var(--brand-blue);
}

.hot-rank-num {
    width: 18px;
    height: 18px;
    background: var(--bg-section);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-gray);
    flex-shrink: 0;
}

.hot-rank-num.top-1 {
    background: var(--action-red);
    color: white;
}

.hot-rank-num.top-2 {
    background: var(--reward-gold);
    color: white;
}

.hot-rank-num.top-3 {
    background: var(--brand-blue);
    color: white;
}

.hot-rank-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-body);
}

.hot-rank-meta {
    font-size: 12px;
    color: var(--text-gray);
    flex-shrink: 0;
}

/* ============================================
   右侧复合侧栏（W=396px，Sticky）
   ============================================ */
.sidebar-container {
    width: 396px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
    /* 移除 sticky 和滚动限制，让右侧栏跟随页面自然滚动 */
}

/* RS1: 分享卡（唯一分享入口） */
.share-card {
    width: 100%;
    height: 449px;
    background: var(--bg-card);
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    flex-shrink: 0;
}

.share-card-header {
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #E9EDF3;
    margin-bottom: 12px;
    display: block;
}

.share-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    display: block;
}

.share-card-desc {
    font-size: 13px;
    color: var(--text-gray);
    display: block;
}

/* 二维码区域 - 200×200（index 专用） */
.share-card .qrcode-area {
    text-align: center;
    padding: 12px;
    background: var(--bg-section);
    border-radius: 8px;
    margin-bottom: 12px;
}

.share-card .qrcode-area .qrcode-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.share-card .qrcode-area .qrcode-wrap img,
.share-card .qrcode-area .qrcode-wrap canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.share-card .qrcode-area .qrcode-wrap .qrcode-box {
    width: 100%;
    height: 100%;
}

.share-card .qrcode-area .qrcode-tip {
    font-size: 13px;
    color: var(--text-gray);
}

/* 复制按钮组 */
.share-card .copy-btns-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.share-card .copy-btn-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    background: var(--bg-section);
    border: 1px solid #E9EDF3;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.15s;
}

.share-card .copy-btn-item:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

/* 进度条小卡 H=84px */
.progress-card {
    padding: 14px;
    background: var(--action-red-light);
    border-radius: 8px;
    margin-bottom: 16px;
    min-height: 84px;
}

.progress-card-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.progress-card-cut {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-blue);
}

.progress-card-remain {
    font-size: 15px;
    font-weight: 600;
    color: var(--action-red);
}

.progress-card-bar {
    height: 8px;
    background: white;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-card-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-blue), #3B82F6);
    border-radius: 100px;
    transition: width 0.5s;
}

.progress-card-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-gray);
}

/* 示例进度卡（灰色调） */
.progress-card-preview {
    background: var(--bg-section);
}

.progress-card-preview .progress-card-bar {
    background: #E9EDF3;
}

.progress-card-preview .progress-card-cut {
    color: var(--text-body);
}

/* R2: 冲刺加速卡 H=176px */
.boost-card {
    width: 100%;
    min-height: 176px;
    background: var(--bg-card);
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    flex-shrink: 0;
}

.boost-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.boost-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.boost-card-link {
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
}

.boost-card-link:hover {
    color: var(--brand-blue);
}

.boost-task-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.boost-task-item {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 12px;
    background: var(--bg-section);
    border-radius: 8px;
}

.boost-task-name {
    flex: 1;
    font-size: 13px;
    color: var(--text-body);
}

.boost-task-reward {
    padding: 3px 8px;
    background: #FEF3C7;
    color: #92400E;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    margin-right: 12px;
}

.boost-task-btn {
    padding: 6px 14px;
    border: 1px solid var(--border-default);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-body);
    background: white;
    cursor: pointer;
    transition: all 0.15s;
}

.boost-task-btn:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.boost-task-btn.primary {
    background: var(--action-red);
    border-color: var(--action-red);
    color: white;
}

.boost-task-btn.primary:hover {
    background: var(--action-red-dark);
}

/* 底部主按钮 */
.share-card .sidebar-main-btn {
    width: 100%;
    height: 44px;
    font-size: 15px;
    font-weight: 600;
}

/* 状态提示条 */
.share-card .action-tip-bar {
    padding: 10px 12px;
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    border-radius: 8px;
    margin-top: -8px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #92400E;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 底部链接区 */
.share-card .sidebar-footer {
    text-align: center;
    padding-top: 10px;
}

.share-card .sidebar-footer-link {
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
}

.share-card .sidebar-footer-link:hover {
    color: var(--brand-blue);
}

.share-card .sidebar-footer-tip {
    font-size: 12px;
    color: var(--text-gray);
}

/* ============================================
   轻量状态提示条（替代进度条，避免重复）
   ============================================ */
.status-hint-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--action-red-light) 0%, #FFF5F5 100%);
    border: 1px solid rgba(227, 77, 89, 0.15);
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 13px;
}

.status-hint-remain {
    color: var(--action-red);
    font-weight: 600;
}

.status-hint-sep {
    color: var(--text-light);
}

.status-hint-time {
    color: var(--text-gray);
    font-weight: 500;
}

/* ============================================
   RS3: 信任与兜底卡（轻量，不重复内容）
   ============================================ */
.trust-card {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    flex-shrink: 0;
}

/* 一行三点式背书 */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-body);
    background: var(--bg-section);
    padding: 4px 10px;
    border-radius: 4px;
}

/* 社交证明（轻量数字） */
.social-proof {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    padding: 10px 0;
    border-top: 1px solid #E9EDF3;
    border-bottom: 1px solid #E9EDF3;
    margin-bottom: 12px;
}

.social-proof strong {
    color: var(--action-red);
    font-weight: 600;
}

/* 两个小入口 */
.trust-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.trust-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.15s;
}

.trust-link:hover {
    color: var(--brand-blue);
}

.trust-link-sep {
    color: var(--border-default);
}

/* ============================================
   RS3: 今日助力额度卡（W 396 × H 100）
   ============================================ */
.quota-card {
    width: 100%;
    min-height: 140px;
    background: var(--bg-card);
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    flex-shrink: 0;
}

.quota-card-header {
    margin-bottom: 12px;
}

.quota-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.quota-card-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 10px 0;
}

.quota-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.quota-metric-label {
    font-size: 12px;
    color: var(--text-gray);
}

.quota-metric-value {
    font-size: 20px;
    color: var(--text-body);
    font-family: "DIN Alternate", "Helvetica Neue", -apple-system, sans-serif;
}

.quota-metric-value strong {
    font-size: 26px;
    font-weight: 700;
    color: var(--brand-blue);
}

.quota-metric-divider {
    width: 1px;
    height: 36px;
    background: #E9EDF3;
}

.quota-card-tip {
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
    padding-top: 8px;
    border-top: 1px dashed #E9EDF3;
}

/* ============================================
   RS4: 最快路径小贴士卡（W 396 × H 104）
   ============================================ */
.tips-card {
    width: 100%;
    height: 104px;
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF9E7 100%);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.08);
    flex-shrink: 0;
}

.tips-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tips-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #92400E;
}

.tips-card-link {
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.15s;
}

.tips-card-link:hover {
    color: var(--brand-blue);
}

.tips-card-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tips-card-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-body);
}

.tips-item-num {
    width: 18px;
    height: 18px;
    background: #F59E0B;
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tips-item-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tips-item-tag {
    font-size: 11px;
    color: #059669;
    background: #D1FAE5;
    padding: 1px 6px;
    border-radius: 3px;
}

.tips-item-reward {
    font-size: 11px;
    color: var(--action-red);
    font-weight: 500;
}

/* ============================================
   RS5: 风控/公平说明卡（W 396 × H 92）
   ============================================ */
.fairness-card {
    width: 100%;
    height: 92px;
    background: var(--bg-card);
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    flex-shrink: 0;
}

.fairness-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.fairness-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.fairness-card-link {
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.15s;
}

.fairness-card-link:hover {
    color: var(--brand-blue);
}

.fairness-card-content {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-section);
    border-radius: 8px;
}

.fairness-icon {
    width: 18px;
    height: 18px;
    background: var(--status-success);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fairness-text {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.4;
}
