/* Extracted from index.html. Do not change business logic here. */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background: #f0f2f5; color: #303133; }

        #app { display: flex; height: 100vh; overflow: hidden; }

        

        .sidebar { width: 200px; background: #304156; color: #fff; display: flex; flex-direction: column; flex-shrink: 0; }

        .logo { padding: 20px; text-align: center; font-size: 16px; font-weight: 600; border-bottom: 1px solid #435b71; }

        .menu { flex: 1; padding: 10px; overflow-y: auto; }

        .menu-item { padding: 12px 15px; cursor: pointer; margin-bottom: 4px; border-radius: 4px; font-size: 14px; transition: all 0.2s ease; display: flex; align-items: center; }

        .menu-item:hover { background: #435b71; transform: translateX(2px); }

        .menu-item.active { background: #409EFF; color: #fff; box-shadow: 0 2px 8px rgba(64, 158, 255, 0.3); }

        .menu-item.active:hover { transform: translateX(0); }

        .menu-item .icon { font-size: 16px; width: 24px; text-align: center; display: inline-flex; justify-content: center; align-items: center; flex-shrink: 0; margin-right: 10px; }

        .menu-item span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

        

        .main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }

        .header { padding: 0 20px; background: #fff; border-bottom: 1px solid #ebeef5; display: flex; justify-content: space-between; align-items: center; height: 50px; flex-shrink: 0; }

        .header-title { font-size: 16px; font-weight: 600; color: #303133; }

        .header-user { display: flex; align-items: center; gap: 15px; }

        .header-user span { font-size: 14px; color: #606266; }

        .content { flex: 1; padding: 20px; overflow-y: auto; background: #f5f7fa; }

        

        .card { background: #fff; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); padding: 24px; margin-bottom: 20px; transition: box-shadow 0.3s ease; }

        .card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

        .card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #ebeef5; }

        .card-header-title { font-size: 16px; font-weight: 600; color: #303133; }

        .card-header-extra { font-size: 14px; }

        

        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }

        .stat-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); padding: 24px; text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }

        .stat-card:hover { transform: translateY(-4px); box-shadow: 0 6px 16px rgba(0,0,0,0.12); }

        .stat-value { font-size: 32px; font-weight: 700; margin-bottom: 8px; }

        .stat-value.success { color: #67c23a; }

        .stat-value.error { color: #f56c6c; }

        .stat-value.warning { color: #e6a23c; }

        .stat-value.info { color: #409EFF; }

        .stat-label { color: #909399; font-size: 14px; }

        

        .btn { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; font-weight: 500; transition: all 0.2s ease; outline: none; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }

        .btn:hover { opacity: 0.9; }

        .btn:active { transform: scale(0.98); }

        .btn-primary { background: #409EFF; color: #fff; }

        .btn-primary:hover { background: #66b1ff; }

        .btn-success { background: #67c23a; color: #fff; }

        .btn-success:hover { background: #85ce61; }

        .btn-danger { background: #f56c6c; color: #fff; }

        .btn-danger:hover { background: #f78989; }

        .btn-text { background: none; color: #409EFF; padding: 4px 8px; }

        .btn-text:hover { background: #ecf5ff; }

        .btn:disabled { opacity: 0.5; cursor: not-allowed; }

        

        .form-group { margin-bottom: 18px; }

        .form-label { display: block; margin-bottom: 6px; font-weight: 500; color: #606266; font-size: 14px; }

        .form-input { width: 100%; padding: 10px 15px; border: 1px solid #dcdfe6; border-radius: 4px; font-size: 14px; transition: border-color 0.2s ease, box-shadow 0.2s ease; outline: none; }

        .form-input:focus { border-color: #409EFF; box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.1); }

        .form-textarea { width: 100%; padding: 10px 15px; border: 1px solid #dcdfe6; border-radius: 4px; font-size: 14px; min-height: 120px; resize: vertical; transition: border-color 0.2s ease, box-shadow 0.2s ease; outline: none; }

        .form-textarea:focus { border-color: #409EFF; box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.1); }

        .form-select { width: 100%; padding: 10px 15px; border: 1px solid #dcdfe6; border-radius: 4px; font-size: 14px; transition: border-color 0.2s ease, box-shadow 0.2s ease; outline: none; cursor: pointer; }

        .form-select:focus { border-color: #409EFF; box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.1); }

        .usdt-create-order-btn { height: 40px; margin-bottom: 18px; white-space: nowrap; }

        

        #captchaImg svg { width: 100%; height: 100%; display: block; }

        .table-wrapper { overflow-x: auto; border-radius: 8px; border: 1px solid #ebeef5; }

        .table { width: 100%; border-collapse: collapse; background: #fff; }

        .table th, .table td { border-bottom: 1px solid #ebeef5; padding: 14px 24px; text-align: left; font-size: 14px; }

        .table th { background: #fafafa; font-weight: 600; color: #606266; white-space: nowrap; }

        .table td { color: #303133; }

        .table tr:hover { background: #f5f7fa; }

        .table tr:last-child td { border-bottom: none; }

        .table .ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }

        

        .tag { display: inline-flex; align-items: center; padding: 2px 10px; border-radius: 4px; font-size: 12px; font-weight: 500; white-space: nowrap; }

        .tag-success { background: #e8f5e9; color: #67c23a; }

        .tag-warning { background: #fff3e0; color: #e6a23c; }

        .tag-danger { background: #fef0f0; color: #f56c6c; }

        .tag-info { background: #ecf5ff; color: #409EFF; }

        .tag-primary { background: #ecf5ff; color: #409EFF; }

        

        .pagination { display: flex; justify-content: flex-end; align-items: center; margin-top: 20px; gap: 8px; }

        .pagination span { font-size: 14px; color: #606266; }

        .pagination button { padding: 6px 12px; border: 1px solid #dcdfe6; background: #fff; cursor: pointer; border-radius: 4px; font-size: 14px; transition: all 0.2s ease; }

        .pagination button:hover:not(:disabled) { border-color: #409EFF; color: #409EFF; }

        .pagination button.active { background: #409EFF; color: #fff; border-color: #409EFF; }

        .pagination button:disabled { opacity: 0.5; cursor: not-allowed; }

        

        .modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); justify-content: center; align-items: center; z-index: 1000; backdrop-filter: blur(2px); }

        .modal-overlay.show { display: flex; animation: fadeIn 0.2s ease; }

        .modal { background: #fff; border-radius: 8px; width: 400px; max-width: 95%; max-height: none; overflow: visible; animation: slideUp 0.25s ease; position: relative; z-index: 1001; }

        .modal-header { padding: 16px 20px; border-bottom: 1px solid #ebeef5; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 16px; }

        .modal-header-close { width: 24px; height: 24px; line-height: 24px; text-align: center; cursor: pointer; border-radius: 4px; transition: background 0.2s ease; }

        .modal-header-close:hover { background: #f5f7fa; }

        .modal-body { padding: 20px; overflow-y: visible; }

        .modal-footer { padding: 16px 20px; border-top: 1px solid #ebeef5; display: flex; justify-content: flex-end; gap: 10px; }

        

        .alert { padding: 12px 16px; border-radius: 4px; margin-bottom: 16px; font-size: 14px; }

        .alert-warning { background: #fffbe6; color: #e6a23c; border-left: 4px solid #e6a23c; }

        .alert-info { background: #ecf5ff; color: #409EFF; border-left: 4px solid #409EFF; }

        

        .checkbox { width: 16px; height: 16px; cursor: pointer; margin-right: 8px; }

        .date-picker { padding: 10px 15px; border: 1px solid #dcdfe6; border-radius: 4px; font-size: 14px; cursor: pointer; }

        .date-picker:focus { border-color: #409EFF; outline: none; }

        

        .dropdown { position: relative; display: inline-block; }

        .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid #ebeef5; border-radius: 4px; box-shadow: 0 2px 12px rgba(0,0,0,0.1); z-index: 100; min-width: 160px; margin-top: 4px; overflow: hidden; }

        .dropdown:hover .dropdown-menu { display: block; }

        .dropdown-item { padding: 10px 15px; cursor: pointer; font-size: 14px; transition: background 0.2s ease; white-space: nowrap; }

        .dropdown-item:hover { background: #f5f7fa; }

        

        .input-number { width: 100px; padding: 10px 15px; border: 1px solid #dcdfe6; border-radius: 4px; font-size: 14px; text-align: center; }

        

        .loading { color: #909399; }

        .loading-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid #f0f0f0; border-top-color: #409EFF; border-radius: 50%; animation: spin 0.6s linear infinite; }

        .usdt-order-loading-overlay {
            position: fixed;
            inset: 0;
            z-index: 5300;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            background: rgba(15, 23, 42, 0.42);
            backdrop-filter: blur(3px);
        }
        .usdt-order-loading-card {
            width: 360px;
            max-width: calc(100vw - 32px);
            padding: 22px 24px 20px;
            background: #fff;
            border: 1px solid #e8edf5;
            border-radius: 12px;
            box-shadow: 0 18px 50px rgba(31, 45, 61, 0.2);
            animation: niceDialogPop 0.16s ease;
        }
        .usdt-order-loading-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #303133;
            font-size: 16px;
            font-weight: 700;
        }
        .usdt-order-loading-message {
            margin-top: 12px;
            color: #606266;
            text-align: center;
            font-size: 13px;
            line-height: 1.6;
        }
        .usdt-order-loading-progress {
            height: 8px;
            margin-top: 18px;
            overflow: hidden;
            background: #edf2f7;
            border-radius: 999px;
        }
        .usdt-order-loading-progress-bar {
            width: 32%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, #409EFF, #67c23a);
            animation: usdtOrderProgress 1.25s ease-in-out infinite;
        }
        .usdt-order-loading-tip {
            margin-top: 10px;
            color: #909399;
            text-align: center;
            font-size: 12px;
        }
        @keyframes usdtOrderProgress {
            0% { transform: translateX(-130%); }
            50% { transform: translateX(150%); }
            100% { transform: translateX(330%); }
        }

        



        .nice-dialog-overlay {
            position: fixed;
            inset: 0;
            z-index: 5000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px;
            background: rgba(15, 23, 42, 0.46);
            backdrop-filter: blur(4px);
            animation: fadeIn 0.18s ease;
        }
        .nice-dialog {
            width: 430px;
            max-width: 96vw;
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 24px 70px rgba(0,0,0,0.25);
            animation: niceDialogPop 0.18s ease;
        }
        .nice-dialog-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 18px;
            border-bottom: 1px solid #ebeef5;
            background: linear-gradient(180deg, #ffffff, #f8fbff);
        }
        .nice-dialog-title {
            font-size: 16px;
            font-weight: 700;
            color: #303133;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nice-dialog-title i { color: #409EFF; }
        .nice-dialog-close {
            width: 28px;
            height: 28px;
            border: none;
            background: transparent;
            border-radius: 8px;
            cursor: pointer;
            color: #909399;
            font-size: 20px;
            line-height: 28px;
        }
        .nice-dialog-close:hover { background: #f2f6fc; color: #606266; }
        .nice-dialog-body { padding: 20px 20px 8px; }
        .nice-dialog-message {
            color: #4b5563;
            font-size: 14px;
            line-height: 1.8;
            white-space: pre-wrap;
            word-break: break-word;
        }
        .nice-dialog-input {
            width: 100%;
            margin-top: 14px;
            padding: 11px 12px;
            border: 1px solid #dcdfe6;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.15s ease;
        }
        .nice-dialog-input:focus {
            outline: none;
            border-color: #409EFF;
            box-shadow: 0 0 0 3px rgba(64,158,255,0.12);
        }
        .nice-dialog-footer {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            padding: 16px 20px 20px;
        }
        @keyframes niceDialogPop {
            from { opacity: 0; transform: translateY(10px) scale(0.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

        @keyframes toastIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }

        @keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(100%); } }

        .usdt-payment-overlay {
            position: fixed;
            inset: 0;
            z-index: 5200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px;
            background: rgba(15, 23, 42, 0.48);
            backdrop-filter: blur(3px);
            overflow-y: auto;
        }
        .usdt-payment-modal {
            width: 470px;
            max-width: 94vw;
            max-height: 92vh;
            overflow-y: auto;
            background: #fff;
            border: 1px solid #e8edf5;
            border-radius: 12px;
            box-shadow: 0 18px 50px rgba(31, 45, 61, 0.22);
            animation: niceDialogPop 0.16s ease;
        }
        .usdt-payment-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding: 12px 16px;
            border-bottom: 1px solid #ebeef5;
            background: #f8fbff;
            color: #303133;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: .2px;
        }
        .usdt-payment-header .usdt-logo {
            display: inline-flex;
            width: 24px;
            height: 24px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #16a085;
            color: #fff;
            font-size: 15px;
            font-weight: 800;
        }
        .usdt-payment-close {
            position: absolute;
            right: 10px;
            top: 8px;
            width: 28px;
            height: 28px;
            border: none;
            border-radius: 6px;
            background: transparent;
            color: #909399;
            cursor: pointer;
            font-size: 20px;
        }
        .usdt-payment-close:hover { background: #f2f6fc; color: #606266; }
        .usdt-payment-amount {
            padding: 16px 14px 12px;
            text-align: center;
            font-size: 17px;
            font-weight: 600;
            border-bottom: 1px dashed #dcdfe6;
        }
        .usdt-payment-amount strong { color: #f56c6c; font-size: 27px; margin: 0 4px; }
        .usdt-payment-amount em { color: #20bf6b; font-style: normal; }
        .usdt-payment-qr {
            min-height: 172px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 12px 6px;
        }
        .usdt-payment-qr canvas,
        .usdt-payment-qr img {
            width: 164px !important;
            height: 164px !important;
            padding: 6px;
            box-sizing: content-box;
            background: #fff;
            border: 1px solid #e8edf5;
            border-radius: 10px;
            box-shadow: 0 3px 12px rgba(31, 45, 61, 0.08);
        }
        .usdt-payment-address {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 2px 16px 12px;
            padding: 10px 12px;
            border: 1px dashed #dcdfe6;
            border-radius: 9px;
            word-break: break-all;
            line-height: 1.45;
            color: #1683d8;
            font-size: 12px;
        }
        .usdt-payment-address span { flex: 1; }
        .usdt-payment-notice {
            margin: 0 16px 12px;
            padding: 10px 12px;
            border: 1px dashed #dcdfe6;
            border-radius: 9px;
            text-align: center;
            line-height: 1.55;
            color: #1683d8;
            font-size: 12px;
        }
        .usdt-payment-notice strong { color: #f56c6c; font-size: 14px; }
        .usdt-payment-countdown {
            padding: 7px 12px 11px;
            text-align: center;
            color: #303133;
            font-size: 14px;
            font-weight: 700;
        }
        .usdt-payment-countdown span {
            display: inline-block;
            min-width: 25px;
            margin: 0 2px;
            padding: 2px 5px;
            border-radius: 4px;
            background: #20bf6b;
            color: #fff;
        }
        .usdt-payment-meta {
            padding: 10px 14px 2px;
            border-top: 1px solid #ebeef5;
            color: #606266;
            font-size: 12px;
            line-height: 1.7;
        }
        .usdt-payment-meta-row { display: flex; justify-content: space-between; gap: 12px; }
        .usdt-payment-meta-row span:last-child { color: #303133; text-align: right; word-break: break-all; }
        .usdt-payment-footer {
            display: flex;
            justify-content: center;
            gap: 7px;
            padding: 10px 14px 14px;
        }
        .usdt-payment-footer .btn {
            padding: 7px 11px;
            border-radius: 5px;
            font-size: 12px;
        }
        @media (max-width: 560px) {
            .usdt-payment-modal { max-width: 100vw; border-radius: 10px; }
            .usdt-payment-amount { font-size: 16px; }
            .usdt-payment-amount strong { font-size: 24px; }
            .usdt-payment-address, .usdt-payment-notice { margin-left: 12px; margin-right: 12px; }
            .usdt-payment-footer { flex-wrap: wrap; }
        }

    

    .status-tab.active {

        background: #409EFF !important;

        color: #fff !important;

    }

    .status-tab:hover:not(.active) {

        opacity: 0.8;

    }

    .maintenance-modal {

        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);

        border: 2px solid #e94560;

        border-radius: 16px;

        width: 480px;

        max-width: 95%;

        padding: 40px 32px;

        text-align: center;

        color: #fff;

        box-shadow: 0 0 60px rgba(233, 69, 96, 0.4), 0 20px 60px rgba(0,0,0,0.5);

        animation: maintenanceGlow 2s ease-in-out infinite alternate;

    }

    @keyframes maintenanceGlow {

        from { box-shadow: 0 0 40px rgba(233, 69, 96, 0.3), 0 20px 60px rgba(0,0,0,0.5); }

        to { box-shadow: 0 0 70px rgba(233, 69, 96, 0.6), 0 20px 60px rgba(0,0,0,0.5); }

    }

    .maintenance-icon {

        font-size: 64px;

        margin-bottom: 20px;

        animation: maintenanceSpin 3s linear infinite;

    }

    @keyframes maintenanceSpin {

        0% { transform: rotate(0deg); }

        100% { transform: rotate(360deg); }

    }

    .maintenance-title {

        font-size: 24px;

        font-weight: 700;

        margin-bottom: 12px;

        background: linear-gradient(90deg, #e94560, #f39c12);

        -webkit-background-clip: text;

        -webkit-text-fill-color: transparent;

        background-clip: text;

    }

    .maintenance-msg {

        font-size: 15px;

        line-height: 1.8;

        color: #a0aec0;

        white-space: pre-wrap;

        margin-bottom: 24px;

    }

    .maintenance-btn {

        background: linear-gradient(135deg, #e94560, #f39c12);

        border: none;

        color: #fff;

        padding: 12px 40px;

        border-radius: 8px;

        font-size: 15px;

        font-weight: 600;

        cursor: pointer;

        transition: all 0.3s;

    }

    .maintenance-btn:hover {

        transform: translateY(-2px);

        box-shadow: 0 8px 20px rgba(233, 69, 96, 0.4);

    }

    .form-textarea {

        width: 100%;

        min-height: 100px;

        padding: 10px 12px;

        border: 1px solid #dcdfe6;

        border-radius: 6px;

        font-size: 14px;

        resize: vertical;

        box-sizing: border-box;

        font-family: inherit;

    }

    .form-textarea:focus {

        outline: none;

        border-color: #409eff;

    }

    .switch-wrapper {

        display: flex;

        align-items: center;

        gap: 12px;

    }

    .switch {

        position: relative;

        width: 50px;

        height: 26px;

        background: #dcdfe6;

        border-radius: 13px;

        cursor: pointer;

        transition: background 0.3s;

    }

    .switch.active {

        background: #e94560;

    }

    .switch::after {

        content: '';

        position: absolute;

        top: 3px;

        left: 3px;

        width: 20px;

        height: 20px;

        background: #fff;

        border-radius: 50%;

        transition: left 0.3s;

    }

    .switch.active::after {

        left: 27px;

    }

/* 首页图形化工作台 */
.home-workbench { display: grid; grid-template-columns: minmax(520px, 1.05fr) minmax(420px, 0.95fr); gap: 20px; align-items: start; margin-bottom: 20px; }
.home-left-column, .home-right-column { min-width: 0; }
.home-workbench .card { margin-bottom: 0; }
.home-redeem-card { margin-top: 20px !important; }
.home-dashboard-card { min-height: 100%; }
.dashboard-section-title { font-size: 13px; color: #606266; font-weight: 700; margin: 4px 0 12px; display: flex; align-items: center; gap: 8px; }
.dashboard-section-title::before { content: ''; width: 4px; height: 14px; background: #409EFF; border-radius: 4px; display: inline-block; }
.dashboard-money-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 14px; }
.dashboard-money-card { border-radius: 10px; padding: 14px 16px; background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%); border: 1px solid #ebeef5; position: relative; overflow: hidden; }
.dashboard-money-card::after { content: ''; position: absolute; right: -18px; top: -18px; width: 58px; height: 58px; border-radius: 50%; opacity: 0.12; background: currentColor; }
.dashboard-money-card span { display: block; font-size: 12px; color: #909399; margin-bottom: 8px; }
.dashboard-money-card strong { display: block; font-size: 22px; line-height: 1; font-weight: 800; color: currentColor; }
.dashboard-money-card.info { color: #409EFF; }
.dashboard-money-card.warning { color: #e6a23c; }
.dashboard-money-card.success { color: #67c23a; }
.dashboard-money-card.error { color: #f56c6c; }
.dashboard-chart-row { display: grid; grid-template-columns: 170px 1fr; gap: 18px; align-items: center; margin-bottom: 18px; }
.dashboard-donut { width: 150px; height: 150px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: conic-gradient(var(--color) calc(var(--value) * 1%), #eef2f7 0); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03); margin: 0 auto; position: relative; }
.dashboard-donut::before { content: ''; position: absolute; width: 108px; height: 108px; border-radius: 50%; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.dashboard-donut-center { position: relative; z-index: 1; text-align: center; }
.dashboard-donut-center strong { display: block; font-size: 24px; color: #303133; line-height: 1; margin-bottom: 8px; }
.dashboard-donut-center span { font-size: 12px; color: #909399; }
.dashboard-bars { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.dashboard-bars.compact { gap: 8px; margin-bottom: 18px; }
.dashboard-bar-top { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #606266; margin-bottom: 5px; gap: 10px; }
.dashboard-bar-top strong { color: #303133; font-size: 13px; white-space: nowrap; }
.dashboard-bar-track { height: 8px; background: #eef2f7; border-radius: 999px; overflow: hidden; }
.dashboard-bar-fill { height: 100%; border-radius: 999px; transition: width 0.35s ease; }
.dashboard-bar-fill.info { background: linear-gradient(90deg, #409EFF, #66b1ff); }
.dashboard-bar-fill.primary { background: linear-gradient(90deg, #7b61ff, #a18cff); }
.dashboard-bar-fill.success { background: linear-gradient(90deg, #67c23a, #95d475); }
.dashboard-bar-fill.warning { background: linear-gradient(90deg, #e6a23c, #f3c06b); }
.dashboard-bar-fill.error { background: linear-gradient(90deg, #f56c6c, #fa9a9a); }
.dashboard-mini-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px; }
.dashboard-mini-grid.runtime { margin-bottom: 12px; }
.dashboard-mini-card { border: 1px solid #ebeef5; background: #fbfcff; border-radius: 10px; padding: 12px 10px; text-align: center; }
.dashboard-mini-card strong { display: block; font-size: 22px; line-height: 1; font-weight: 800; margin-bottom: 8px; color: currentColor; }
.dashboard-mini-card span { display: block; font-size: 12px; color: #909399; white-space: nowrap; }
.dashboard-mini-card.info { color: #409EFF; }
.dashboard-mini-card.primary { color: #7b61ff; }
.dashboard-mini-card.success { color: #67c23a; }
.dashboard-mini-card.warning { color: #e6a23c; }
.dashboard-mini-card.error { color: #f56c6c; }
@media (max-width: 1280px) { .home-workbench { grid-template-columns: 1fr; } .home-workbench .card { margin-bottom: 20px; } .home-redeem-card { margin-top: 0 !important; } }
@media (max-width: 768px) { .dashboard-chart-row { grid-template-columns: 1fr; } .dashboard-money-grid, .dashboard-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* 首页卡片验证输入增强 */
.card-input-stats { margin-top: 10px; padding: 12px; background: #f8fbff; border: 1px solid #e4edf8; border-radius: 8px; }
.card-check-stat-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.card-check-pill { display: inline-flex; align-items: center; gap: 4px; padding: 5px 9px; border-radius: 999px; font-size: 12px; border: 1px solid transparent; background: #fff; }
.card-check-pill b { font-size: 13px; }
.card-check-pill.info { color: #409EFF; border-color: #d9ecff; background: #ecf5ff; }
.card-check-pill.success { color: #67c23a; border-color: #e1f3d8; background: #f0f9eb; }
.card-check-pill.warning { color: #e6a23c; border-color: #faecd8; background: #fdf6ec; }
.card-check-pill.error { color: #f56c6c; border-color: #fde2e2; background: #fef0f0; }
.card-check-pill.primary { color: #7b61ff; border-color: #e5e0ff; background: #f4f1ff; }
.card-check-cost-row { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: #606266; margin-bottom: 8px; }
.card-check-cost-row b { color: #303133; }
.card-check-cost-row b.ok { color: #67c23a; }
.card-check-cost-row b.bad { color: #f56c6c; }
.card-check-tips { display: flex; flex-wrap: wrap; gap: 8px; min-height: 18px; }
.card-check-tip { font-size: 12px; line-height: 1.5; }
.card-check-tip.muted { color: #909399; }
.card-check-tip.warning { color: #e6a23c; }
.card-check-tip.error { color: #f56c6c; }

