/* ============================================
   助力中心页面专用样式
   设计理念：进度游戏 + 可操作列表 + 奖励驱动
   ============================================ */

/* ============================================
   顶部提醒条
   ============================================ */
.reward-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 20px;
    background: linear-gradient(90deg, #FDF8ED 0%, #FFF7ED 100%);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 10px;
    margin-bottom: 16px;
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.2); }
    50% { box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.1); }
}

.reward-alert-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reward-alert-icon {
    font-size: 20px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.reward-alert-text {
    font-size: 14px;
    color: #8B6914;
}

.reward-alert-text strong {
    color: #E34D59;
    font-weight: 600;
}

.reward-alert-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #D4A853, #F0C674);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(212, 168, 83, 0.3);
}

.reward-alert-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.4);
}

/* ============================================
   左侧列表卡片
   ============================================ */
.support-card {
    background: white;
    border: 1px solid #E9EDF3;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

/* 筛选头部 */
.support-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #E9EDF3;
    background: #FAFBFC;
}

.support-tabs {
    display: flex;
    gap: 4px;
}

.support-tab {
    padding: 6px 14px;
    font-size: 13px;
    color: #666;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.support-tab:hover {
    background: white;
    color: #1E3A5F;
}

.support-tab.active {
    background: #1E3A5F;
    color: white;
}

.support-search {
    position: relative;
}

.support-search-input {
    width: 200px;
    height: 36px;
    padding: 0 36px 0 14px;
    border: 1px solid #E9EDF3;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.15s;
}

.support-search-input:focus {
    outline: none;
    border-color: #1E3A5F;
}

.support-search-input::placeholder {
    color: #BFBFBF;
}

.support-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #BFBFBF;
}

/* 统计条 */
.support-stats-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 20px;
    background: #F8F9FB;
    border-bottom: 1px solid #E9EDF3;
    font-size: 13px;
    color: #666;
}

.support-stat-item strong {
    color: #1E3A5F;
    font-weight: 600;
}

.support-stat-item.highlight strong {
    color: #E34D59;
}

/* 列表 */
.support-list {
    max-height: 560px;
    overflow-y: auto;
}

.support-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #F0F0F0;
    gap: 14px;
    transition: all 0.15s;
}

.support-item:hover {
    background: #FAFBFC;
}

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

.support-item-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E8F4FD;
    flex-shrink: 0;
}

.support-item-info {
    flex: 1;
    min-width: 0;
}

.support-item-title {
    font-size: 14px;
    color: #1A1A1A;
    font-weight: 500;
    margin-bottom: 4px;
}

.support-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #8C8C8C;
}

.support-item-dot {
    width: 3px;
    height: 3px;
    background: #D0D0D0;
    border-radius: 50%;
}

/* 助力结果 */
.support-item-result {
    text-align: center;
    min-width: 100px;
    padding: 0 16px;
    border-left: 1px solid #E9EDF3;
    border-right: 1px solid #E9EDF3;
}

.support-item-cut {
    font-size: 18px;
    font-weight: 700;
    color: #E34D59;
    font-family: "DIN Alternate", -apple-system, sans-serif;
}

.support-item-bonus {
    font-size: 11px;
    color: #52C41A;
    margin-top: 2px;
}

/* 奖励与操作 */
.support-item-action {
    text-align: right;
    min-width: 140px;
}

.support-item-reward {
    font-size: 15px;
    font-weight: 600;
    color: #52C41A;
    margin-bottom: 8px;
}

.support-item-reward.no-reward {
    color: #BFBFBF;
    font-weight: 400;
}

.support-item-btns {
    display: flex;
    gap: 6px;
}

.support-item-btn {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.support-item-btn.primary {
    background: #E8F4FD;
    color: #1E3A5F;
    border: none;
}

.support-item-btn.primary:hover {
    background: #D0E8FC;
}

.support-item-btn.ghost {
    background: transparent;
    color: #666;
    border: 1px solid #E9EDF3;
}

.support-item-btn.ghost:hover {
    border-color: #1E3A5F;
    color: #1E3A5F;
}

/* 空状态 */
.support-empty {
    text-align: center;
    padding: 60px 20px;
}

.support-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.support-empty-title {
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.support-empty-desc {
    font-size: 13px;
    color: #8C8C8C;
    margin-bottom: 20px;
}

/* ============================================
   右侧助力进度卡
   ============================================ */
.progress-card {
    background: white;
    border: 1px solid #E9EDF3;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

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

.progress-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
}

.progress-card-week {
    font-size: 12px;
    color: #8C8C8C;
    padding: 4px 10px;
    background: #F8F9FB;
    border-radius: 100px;
}

/* 大数字 */
.progress-big-num {
    text-align: center;
    margin-bottom: 20px;
}

.progress-big-value {
    font-size: 56px;
    font-weight: 700;
    color: #1E3A5F;
    font-family: "DIN Alternate", -apple-system, sans-serif;
    line-height: 1;
}

.progress-big-unit {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    margin-left: 4px;
}

.progress-big-label {
    font-size: 13px;
    color: #8C8C8C;
    margin-top: 4px;
}

/* 连击提示 */
.streak-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFF1F2 100%);
    border-radius: 100px;
    margin-top: 12px;
}

.streak-icon {
    font-size: 16px;
}

.streak-text {
    font-size: 12px;
    color: #E34D59;
    font-weight: 500;
}

.streak-bonus {
    font-size: 11px;
    color: #D4A853;
    background: white;
    padding: 2px 8px;
    border-radius: 100px;
}

/* 进度条 */
.progress-track {
    position: relative;
    margin-bottom: 24px;
}

.progress-bar-wrap {
    height: 12px;
    background: #F0F2F5;
    border-radius: 100px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1E3A5F, #3B82F6);
    border-radius: 100px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
}

/* 档位刻度 */
.progress-tiers {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0 4px;
}

.progress-tier {
    text-align: center;
    position: relative;
}

.progress-tier::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: #E0E0E0;
}

.progress-tier.reached::before {
    background: #1E3A5F;
}

.progress-tier.current::before {
    background: #E34D59;
}

.progress-tier-num {
    font-size: 11px;
    color: #BFBFBF;
    font-weight: 500;
}

.progress-tier.reached .progress-tier-num {
    color: #1E3A5F;
}

.progress-tier.current .progress-tier-num {
    color: #E34D59;
    font-weight: 600;
}

.progress-tier-reward {
    font-size: 10px;
    color: #8C8C8C;
    margin-top: 2px;
}

.progress-tier.reached .progress-tier-reward {
    color: #52C41A;
}

/* 关键提示文案 */
.progress-tip {
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFF1F2 100%);
    border-radius: 10px;
    margin-bottom: 16px;
}

.progress-tip-text {
    font-size: 14px;
    color: #333;
}

.progress-tip-text strong {
    color: #E34D59;
    font-weight: 600;
}

.progress-tip-highlight {
    color: #D4A853;
    font-weight: 600;
}

/* 按钮 */
.progress-btn {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #E34D59, #C73845);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(227, 77, 89, 0.3);
}

.progress-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 77, 89, 0.4);
}

.progress-btn.claim {
    background: linear-gradient(135deg, #52C41A, #389E0D);
    box-shadow: 0 4px 12px rgba(82, 196, 26, 0.3);
    animation: claimPulse 2s ease-in-out infinite;
}

@keyframes claimPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.progress-btn.claim:hover {
    box-shadow: 0 6px 20px rgba(82, 196, 26, 0.4);
}

/* 底部链接 */
.progress-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 14px;
}

.progress-link {
    font-size: 12px;
    color: #8C8C8C;
    text-decoration: none;
    transition: all 0.15s;
}

.progress-link:hover {
    color: #1E3A5F;
}

/* ============================================
   今日奖励卡
   ============================================ */
.reward-card {
    background: white;
    border: 1px solid #E9EDF3;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

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

.reward-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
}

.reward-card-badge {
    padding: 2px 8px;
    background: #FFF1F2;
    color: #E34D59;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
}

.reward-items {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.reward-item {
    flex: 1;
    padding: 14px;
    background: #F8F9FB;
    border-radius: 10px;
    text-align: center;
}

.reward-item-value {
    font-size: 24px;
    font-weight: 700;
    color: #E34D59;
    font-family: "DIN Alternate", -apple-system, sans-serif;
}

.reward-item-value.gold {
    color: #D4A853;
}

.reward-item-label {
    font-size: 11px;
    color: #8C8C8C;
    margin-top: 4px;
}

.reward-item-status {
    font-size: 10px;
    color: #52C41A;
    margin-top: 4px;
}

.reward-btns {
    display: flex;
    gap: 10px;
}

.reward-btn {
    flex: 1;
    height: 40px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

.reward-btn.primary {
    background: linear-gradient(135deg, #52C41A, #389E0D);
    color: white;
    border: none;
}

.reward-btn.primary:hover {
    box-shadow: 0 4px 12px rgba(82, 196, 26, 0.3);
}

.reward-btn.secondary {
    background: white;
    color: #D4A853;
    border: 1px solid #D4A853;
}

.reward-btn.secondary:hover {
    background: #FDF8ED;
}

/* ============================================
   成就徽章卡
   ============================================ */
.achievement-card {
    background: linear-gradient(135deg, #1E3A5F 0%, #2D4A6F 100%);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.achievement-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.achievement-badge {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #D4A853, #F0C674);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.4);
}

.achievement-info {
    flex: 1;
}

.achievement-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.achievement-name {
    font-size: 18px;
    font-weight: 600;
    color: #F0C674;
}

.achievement-progress {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.achievement-progress strong {
    color: #F0C674;
}

.achievement-next {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.achievement-next strong {
    color: white;
}

/* ============================================
   规则折叠
   ============================================ */
.rules-collapse {
    background: white;
    border: 1px solid #E9EDF3;
    border-radius: 10px;
    overflow: hidden;
}

.rules-collapse-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.15s;
}

.rules-collapse-header:hover {
    background: #FAFBFC;
}

.rules-collapse-title {
    font-size: 13px;
    font-weight: 500;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rules-collapse-icon {
    font-size: 12px;
    color: #8C8C8C;
    transition: transform 0.2s;
}

.rules-collapse.open .rules-collapse-icon {
    transform: rotate(180deg);
}

.rules-collapse-content {
    display: none;
    padding: 0 16px 14px;
    font-size: 12px;
    color: #666;
    line-height: 2;
}

.rules-collapse.open .rules-collapse-content {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   快捷入口
   ============================================ */
.quick-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.quick-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px;
    background: white;
    border: 1px solid #E9EDF3;
    border-radius: 10px;
    font-size: 13px;
    color: #4A4A4A;
    text-decoration: none;
    transition: all 0.15s;
}

.quick-action-btn:hover {
    border-color: #1E3A5F;
    color: #1E3A5F;
    background: #F0F7FF;
}

/* ============================================
   进度弹窗
   ============================================ */
.progress-modal-content {
    max-width: 400px;
}

.progress-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #F0F0F0;
}

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

.progress-detail-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-detail-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #E8F4FD;
}

.progress-detail-name {
    font-size: 13px;
    color: #1A1A1A;
}

.progress-detail-time {
    font-size: 11px;
    color: #8C8C8C;
}

.progress-detail-cut {
    font-size: 14px;
    font-weight: 600;
    color: #E34D59;
}

/* ============================================
   157 - 助力记录页布局与列表视觉优化
   ============================================ */
.support-history-page .container {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0 28px;
}

.support-history-page .row {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.support-history-page .col-8 {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
}

.support-history-page .col-4 {
    flex: 0 0 360px;
    width: 360px;
    display: flex;
}

.sticky-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.support-card {
    width: 100%;
    min-height: 720px;
    display: flex;
    flex-direction: column;
}

.support-filter-bar {
    padding: 22px 28px;
    background: #fff;
}

.support-tabs {
    gap: 18px;
}

.support-tab {
    height: 44px;
    padding: 0 24px;
    border-radius: 8px;
    color: #4B5563;
    font-size: 16px;
    font-weight: 600;
}

.support-tab.active {
    background: #1E3A5F;
    box-shadow: 0 8px 18px rgba(30, 58, 95, 0.16);
}

.support-search-input {
    width: 260px;
    height: 44px;
    padding-left: 18px;
    border-radius: 10px;
    font-size: 14px;
}

.support-search-icon {
    right: 16px;
}

.support-stats-bar {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 22px 28px;
    background: #fff;
    border-bottom: 1px solid #E9EDF3;
}

.support-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.support-stat-divider {
    width: 1px;
    height: 40px;
    background: #DCE3EC;
}

.support-stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.stat-week-icon {
    background: #EEF6FF;
}

.stat-cut-icon {
    background: #F3EEFF;
}

.stat-reward-icon {
    background: #FFF2E5;
}

.support-stat-copy {
    min-width: 0;
}

.support-stat-label {
    font-size: 14px;
    color: #667085;
    font-weight: 600;
    line-height: 18px;
}

.support-stat-value {
    margin-top: 4px;
    color: #0F172A;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.support-stat-value strong {
    color: #17407A;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
}

.support-stat-item.highlight .support-stat-value strong {
    color: #E34D59;
}

.support-list {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.support-list::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.support-item {
    margin: 0 18px;
    padding: 18px 18px;
    border-bottom: 1px solid #EEF2F7;
    gap: 16px;
}

.support-item:hover {
    background: #F8FBFF;
    border-radius: 12px;
}

.support-item-avatar {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E3A5F;
    background: linear-gradient(135deg, #EAF5FF 0%, #E0F2FE 100%);
    border: 1px solid #CFE7FF;
    font-size: 18px;
    font-weight: 700;
}

.support-item-info {
    flex: 1 1 auto;
}

.support-item-title {
    margin-bottom: 8px;
    font-size: 16px;
    color: #101828;
    font-weight: 700;
    line-height: 22px;
}

.support-item-meta {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    line-height: 20px;
}

.support-item-server {
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.support-item-status.ongoing {
    color: #16A34A;
    font-weight: 600;
}

.support-item-status.completed {
    color: #64748B;
    font-weight: 600;
}

.support-item-result {
    width: 128px;
    min-width: 128px;
    padding: 0 18px;
}

.support-item-cut {
    font-size: 22px;
    line-height: 26px;
    font-variant-numeric: tabular-nums;
}

.support-item-cut-label {
    margin-top: 4px;
    color: #94A3B8;
    font-size: 12px;
}

.support-item-action {
    width: 152px;
    min-width: 152px;
}

.support-item-reward {
    height: 22px;
    margin-bottom: 10px;
    color: #16A34A;
    font-size: 15px;
    line-height: 22px;
}

.support-item-reward.no-reward {
    color: #B8C0CC;
    font-weight: 600;
}

.support-item-btns {
    justify-content: flex-end;
}

.support-item-btn {
    height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.support-item-btn.primary {
    background: #EAF5FF;
    color: #17407A;
}

.support-item-btn.ghost {
    background: #fff;
    color: #64748B;
}

.progress-card,
.reward-card {
    padding: 16px;
    margin-bottom: 12px;
}

.progress-card-header,
.reward-card-header {
    margin-bottom: 12px;
}

.progress-big-num {
    margin-bottom: 14px;
}

.progress-big-value {
    font-size: 44px;
}

.streak-badge {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.progress-track {
    margin-bottom: 16px;
}

.progress-tip {
    padding: 12px;
    margin-bottom: 12px;
}

.progress-btn {
    height: 42px;
}

.reward-items {
    margin-bottom: 12px;
}

.reward-item {
    padding: 10px;
}

.reward-item-value {
    font-size: 20px;
}

.achievement-card {
    padding: 18px;
    margin-bottom: 16px;
}

.achievement-header {
    margin-bottom: 12px;
}

.achievement-badge {
    width: 52px;
    height: 52px;
}

.achievement-next {
    margin-top: 10px;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
    margin-bottom: 0;
}

.quick-action-btn {
    min-width: 0;
    height: 58px;
    padding: 0 8px;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: #1F2937;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

button.quick-action-btn {
    font-family: inherit;
}

.quick-action-btn span {
    font-size: 18px;
}

.quick-action-btn:hover {
    transform: translateY(-1px);
    background: #F8FBFF;
}

.support-rules-modal-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-rules-modal-list div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: #F8FAFC;
    border-radius: 8px;
}

.support-rules-modal-list strong {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #1E3A5F;
    color: #fff;
    font-size: 12px;
}

.support-rules-modal-list span {
    color: #475569;
    font-size: 13px;
    line-height: 22px;
}

@media (max-width: 1240px) {
    .support-history-page .container {
        width: 100%;
        padding: 16px;
    }

    .support-history-page .col-4 {
        flex-basis: 340px;
        width: 340px;
    }

    .support-filter-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .support-search,
    .support-search-input {
        width: 100%;
    }
}

/* ============================================
   158 - 助力记录页筛选、统计、快捷入口和列表紧凑优化
   ============================================ */
.support-filter-bar {
    align-items: center;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 18px 22px;
}

.support-tabs {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.support-tab {
    flex: 0 0 auto;
    min-width: 64px;
    height: 38px;
    padding: 0 14px;
    font-size: 14px;
    line-height: 38px;
    letter-spacing: 0;
    white-space: nowrap;
}

.support-tab[data-filter="reward"] {
    min-width: 78px;
}

.support-tab[data-filter="big"] {
    min-width: 88px;
}

.support-search {
    flex: 0 0 230px;
    min-width: 0;
}

.support-search-input {
    width: 100%;
    height: 38px;
    font-size: 13px;
}

.support-stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding: 24px 28px 22px;
}

.support-stat-divider {
    display: none;
}

.support-stat-item {
    justify-content: center;
    gap: 12px;
}

.support-stat-icon,
.stat-week-icon,
.stat-cut-icon,
.stat-reward-icon {
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    box-shadow: none;
    font-size: 30px;
    line-height: 1;
}

.support-stat-label {
    font-size: 14px;
    line-height: 18px;
}

.support-stat-value {
    margin-top: 3px;
    font-size: 19px;
    line-height: 24px;
}

.support-stat-value strong {
    font-size: 22px;
}

.achievement-card {
    margin-bottom: 6px;
}

.quick-actions {
    margin-top: 0;
    margin-bottom: 0;
}

.quick-action-btn {
    height: 52px;
    gap: 5px;
    font-size: 13px;
}

.quick-action-btn span {
    font-size: 19px;
}

.support-list {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    padding: 6px 0 8px;
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #C7D2E1 transparent;
}

.support-list::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.support-list::-webkit-scrollbar-track {
    background: transparent;
}

.support-list::-webkit-scrollbar-thumb {
    border: 2px solid #fff;
    border-radius: 8px;
    background: #C7D2E1;
}

.support-item {
    min-height: 76px;
    margin: 0 14px;
    padding: 10px 14px;
    gap: 12px;
}

.support-item-avatar {
    width: 42px;
    height: 42px;
    font-size: 16px;
}

.support-item-title {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 20px;
}

.support-item-meta {
    gap: 5px;
    font-size: 12px;
    line-height: 18px;
}

.support-item-server {
    max-width: 250px;
}

.support-item-result {
    width: 112px;
    min-width: 112px;
    padding: 0 12px;
}

.support-item-cut {
    font-size: 19px;
    line-height: 22px;
}

.support-item-cut-label {
    margin-top: 2px;
    font-size: 11px;
}

.support-item-action {
    width: 132px;
    min-width: 132px;
}

.support-item-reward {
    height: 18px;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 18px;
}

.support-item-btns {
    gap: 4px;
}

.support-item-btn {
    height: 30px;
    padding: 0 10px;
    font-size: 11px;
}

@media (max-width: 1240px) {
    .support-filter-bar {
        align-items: center;
        flex-direction: row;
        gap: 12px;
    }

    .support-tabs {
        gap: 8px;
    }

    .support-tab {
        min-width: 58px;
        padding: 0 10px;
        font-size: 13px;
    }

    .support-tab[data-filter="reward"] {
        min-width: 70px;
    }

    .support-tab[data-filter="big"] {
        min-width: 78px;
    }

    .support-search {
        flex-basis: 210px;
        width: auto;
    }

    .support-search-input {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .support-filter-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .support-tabs {
        width: 100%;
        gap: 6px;
    }

    .support-tab,
    .support-tab[data-filter="reward"],
    .support-tab[data-filter="big"] {
        flex: 1 1 0;
        min-width: 0;
        padding: 0 4px;
        font-size: 12px;
    }

    .support-search {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* ============================================
   159 - 助力记录空状态图片
   ============================================ */
.support-empty {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 20px;
}

.support-empty-icon {
    width: 156px;
    height: 156px;
    object-fit: contain;
    margin-bottom: 18px;
    opacity: 1;
}

.support-empty-title {
    color: #111827;
    font-size: 24px;
    line-height: 32px;
    font-weight: 800;
}

.support-empty-desc {
    color: #64748B;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.support-empty .btn {
    min-width: 280px;
    height: 58px;
    padding: 0 34px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
    font-size: 18px;
    line-height: 58px;
    font-weight: 800;
}
