        /* 图表卡片样式 */
        .chart-card {
            background: #fff;
            border-radius: 16px;
            border: 1px solid #e5e7eb;
            padding: 20px;
            margin-top: 24px;
        }
        .chart-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }
        .chart-card-title {
            font-size: 16px;
            font-weight: 700;
            color: #1f2937;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .chart-tabs {
            display: flex;
            gap: 8px;
        }
        .chart-tab {
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            background: #f3f4f6;
            color: #6b7280;
        }
        .chart-tab.active {
            background: #facc15;
            color: #000;
        }
        .chart-tab:hover:not(.active) {
            background: #e5e7eb;
        }
        .chart-container {
            position: relative;
            height: 280px;
        }

        /* 移动端余额卡片隐藏 */
        @media (max-width: 768px) {
            .jw-balance-card {
                display: none !important;
            }
        }
        
        /* 状态标签样式 - 与订单页面保持一致 */
        .status-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .status-pending,
        .status-submit_order {
            background: #fef3c7;
            color: #92400e;
        }

        .status-confirmed,
        .status-confirm_order,
        .status-paid {
            background: #dbeafe;
            color: #1e40af;
        }

        .status-processing,
        .status-preparing {
            background: #cce5ff;
            color: #004085;
        }

        .status-shipping,
        .status-delivery {
            background: #fff3e0;
            color: #e65100;
        }
        
        .status-completed,
        .status-complete {
            background: #d1fae5;
            color: #065f46;
        }
        
        .status-cancelled {
            background: #fee2e2;
            color: #991b1b;
        }
