        * { margin: 0; padding: 0; box-sizing: border-box; }
        html {
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #092041;
        }
        body {
            --dashboard-scale: 1;
            --dashboard-scale-x: 1;
            --dashboard-scale-y: 1;
            --dashboard-left: 0px;
            --dashboard-top: 0px;
            position: absolute;
            left: var(--dashboard-left);
            top: var(--dashboard-top);
            width: 1920px; height: 1080px; min-height: 1080px; overflow: hidden;
            background: #092041;
            font-family: 'Microsoft YaHei', 'Orbitron', sans-serif;
            color: #FFFFFF;
            transform: scale(var(--dashboard-scale));
            transform-origin: top left;
        }
        body.embedded { width: 1920px; min-width: 0; min-height: 1080px; height: 1080px; }
        /* 背景网格 */
        body::before {
            content: ''; position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(79,168,213,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(79,168,213,0.03) 1px, transparent 1px);
            background-size: 50px 50px; pointer-events: none; z-index: 0;
        }

        /* === 顶部标题栏 === */
        .header {
            height: 80px; position: relative; z-index: 10;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(180deg, rgba(0,30,60,0.8) 0%, transparent 100%);
        }
        .header-left { position: absolute; left: 30px; top: 50%; transform: translateY(-50%); font-size: 18px; color: #A8C4D8; }
        .header-left .time { font-family: 'Orbitron'; font-size: 22px; color: #448CF1; }
        .header-right { position: absolute; right: 30px; top: 50%; transform: translateY(-50%); font-size: 18px; color: #A8C4D8; display: flex; align-items: center; gap: 12px; }
        .header-title {
            font-size: 36px; font-weight: 900; color: #FFFFFF;
            text-shadow: 0 0 20px rgba(79,168,213,0.5), 0 0 40px rgba(79,168,213,0.3);
            letter-spacing: 4px;
        }
        .header-line {
            position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, #4FA8D5, transparent);
        }

        /* === 顶部导航与筛选栏 === */
        .top-toolbar {
            height: 66px;
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 0 24px;
            background:
                linear-gradient(90deg, rgba(0, 34, 66, 0.68), rgba(0, 72, 110, 0.28), rgba(0, 34, 66, 0.68)),
                rgba(6, 20, 36, 0.72);
            border-bottom: 1px solid rgba(79, 168, 213, 0.22);
            box-shadow: inset 0 1px 0 rgba(160, 238, 255, 0.08), 0 10px 28px rgba(0, 0, 0, 0.18);
        }
        .top-toolbar::before {
            content: '';
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(79, 168, 213, 0.8), transparent);
            pointer-events: none;
        }
        .toolbar-left {
            min-width: 560px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            z-index: 2;
        }
        .toolbar-actions {
            min-width: 260px;
            height: 44px;
            display: none;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
            position: relative;
            z-index: 2;
        }
        .toolbar-actions.active {
            display: flex;
        }
        .tab-bar {
            height: 54px; display: flex; align-items: center; justify-content: center; gap: 10px;
            position: absolute; z-index: 3;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            padding: 4px;
            border: 1px solid rgba(79, 168, 213, 0.36);
            border-radius: 8px;
            background:
                linear-gradient(180deg, rgba(7, 30, 54, 0.92), rgba(5, 18, 34, 0.78));
            box-shadow: inset 0 0 22px rgba(79, 168, 213, 0.08), 0 0 26px rgba(0, 136, 255, 0.14);
        }
        .tab-bar::before {
            content: '';
            position: absolute;
            left: 12px;
            right: 12px;
            top: -1px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(120, 236, 255, 0.86), transparent);
            pointer-events: none;
        }
        .tab-item {
            min-width: 152px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 28px; font-size: 18px; color: #8FB4CC; cursor: pointer;
            border: 1px solid transparent; transition: .25s; font-weight: 700;
            border-radius: 6px;
            letter-spacing: 0;
            position: relative;
        }
        .tab-item:hover { color: #CFE8F0; border-color: rgba(79, 168, 213, 0.22); }
        .tab-item.active {
            color: #FFFFFF;
            border-color: rgba(79, 168, 213, 0.82);
            background:
                linear-gradient(180deg, rgba(79, 168, 213, 0.32), rgba(0, 118, 190, 0.2)),
                rgba(0, 80, 140, 0.22);
            box-shadow: inset 0 0 18px rgba(79, 168, 213, 0.2), 0 0 22px rgba(0, 136, 255, 0.24);
            text-shadow: 0 0 12px rgba(79,168,213,0.72);
        }
        .tab-item.active::after {
            content: '';
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 3px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #4FA8D5, transparent);
            border-radius: 2px;
        }

        /* === 筛选栏 === */
        .filter-bar {
            height: 44px; display: none; align-items: center; padding: 0; gap: 12px;
            position: relative; z-index: 1;
        }
        .filter-bar.active {
            display: flex;
        }
        .filter-select {
            min-width: 150px;
            height: 40px;
            background: rgba(0,40,80,0.68); border: 1px solid rgba(79,168,213,0.42); border-radius: 4px;
            color: #FFFFFF; padding: 5px 28px 5px 12px; font-size: 18px; outline: none; cursor: pointer;
            box-shadow: inset 0 0 12px rgba(79, 168, 213, 0.06);
        }
        .filter-select option { background: #122E44; }
        .refresh-btn {
            display: flex; align-items: center; gap: 6px;
            height: 40px;
            background: rgba(93,190,138,0.12); border: 1px solid rgba(93,190,138,0.42);
            border-radius: 4px; padding: 5px 14px; color: #5DBE8A; font-size: 18px; cursor: pointer;
            box-shadow: inset 0 0 12px rgba(93,190,138,0.06);
        }
        .refresh-dot {
            width: 8px; height: 8px; background: #5DBE8A; border-radius: 50%;
            animation: breath 2s infinite;
        }
        @keyframes breath { 0%,100%{opacity:1;box-shadow:0 0 6px #5DBE8A} 50%{opacity:.4;box-shadow:0 0 12px #5DBE8A} }
        .fullscreen-btn {
            height: 40px;
            background: rgba(79,168,213,0.12); border: 1px solid rgba(79,168,213,0.44);
            border-radius: 4px; padding: 5px 14px; color: #4FA8D5; font-size: 18px; cursor: pointer;
            box-shadow: inset 0 0 12px rgba(79,168,213,0.07);
        }
        .refresh-btn:hover,
        .fullscreen-btn:hover,
        .filter-select:hover {
            border-color: rgba(125, 235, 255, 0.76);
            box-shadow: inset 0 0 14px rgba(79,168,213,0.12), 0 0 14px rgba(0,136,255,0.14);
        }

        /* === 主体区域 === */
        .main-body {
            display: flex; gap: 12px; padding: 0 16px 12px; height: calc(1080px - 80px - 66px);
            position: relative; z-index: 5;
        }

        /* === 面板通用样式 === */
        .panel {
            background: rgba(16,36,56,0.85); border: 1px solid rgba(79,168,213,0.3);
            border-radius: 4px; position: relative; overflow: hidden;
        }
        /* 四角L型装饰 */
        .panel::before, .panel::after {
            content: ''; position: absolute; width: 12px; height: 12px;
            border-color: #4FA8D5; border-style: solid;
        }
        .panel::before { top: 0; left: 0; border-width: 1px 0 0 1px; }
        .panel::after { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
        .panel-title {
            height: 44px; flex-shrink: 0; display: flex; align-items: center; gap: 8px; padding: 0 12px;
            border-bottom: 1px solid rgba(79,168,213,0.2);
            background: linear-gradient(90deg, rgba(79,168,213,0.08), transparent);
        }
        .panel-title .bar { width: 4px; height: 20px; background: #4FA8D5; border-radius: 2px; box-shadow: 0 0 8px #4FA8D5; }
        .panel-title .text { font-size: 18px; font-weight: 700; color: #FFFFFF; }
        .panel-title .deco { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(79,168,213,0.4), transparent); }

        /* === 左面板 === */
        .left-panel { width: 380px; display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

        /* 区域A：统计 */
        .stat-list { padding: 10px 16px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 6px; }
        .stat-row { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; min-height: 32px; }
        .compact-stats .stat-row { min-height: 24px; padding: 0; }
        .stat-row .label { font-size: 18px; color: #D8ECF5; }
        .stat-row .num { text-align: right; font-family: 'Orbitron'; font-size: 18px; font-weight: 700; color: #FFFFFF; }
        .stat-row .unit { font-size: 13px; color: #7A9DB8; margin-left: 4px; }
        .stat-row .bar-wrap { display: flex; align-items: center; gap: 8px; }
        .mini-bar { width: 80px; height: 6px; background: rgba(79,168,213,0.15); border-radius: 3px; overflow: hidden; }
        .mini-bar-fill { height: 100%; background: linear-gradient(90deg, #448CF1, #3A7FBF); border-radius: 3px; }
        /* Tab2 使用的样式 */
        .stat-row .stat-label { flex: 1; font-size: 18px; color: #D8ECF5; }
        .stat-row .stat-val { min-width: 86px; text-align: right; font-family: 'Orbitron'; font-size: 18px; font-weight: 700; color: #FFFFFF; }
        .stat-row .stat-unit { text-align: right; font-size: 13px; color: #7A9DB8; margin-left: 4px; }

        /* 北京视图补能设施Tab内容字号增大 */
        #bj-facility-charge-content .stat-label,
        #bj-facility-swap-content .stat-label { font-size: 20px; }
        #bj-facility-charge-content .stat-val,
        #bj-facility-swap-content .stat-val { font-size: 20px; }
        #bj-facility-charge-content .stat-unit,
        #bj-facility-swap-content .stat-unit { font-size: 14px; }
        /* 换电Tab(7行)行高微调填满空间 */
        #bj-facility-swap-content .stat-row { min-height: 36px; }
        .stat-row .mini-bar-wrap { width: 80px; height: 6px; background: rgba(79,168,213,0.15); border-radius: 3px; overflow: hidden; display: flex; align-items: center; margin: 0 6px; }
        .stat-row .mini-bar-wrap .mini-bar { height: 100%; background: linear-gradient(90deg, #448CF1, #3A7FBF); border-radius: 3px; width: 0; }

        /* 区域B/C图表 */
        .chart-panel { flex: 1; display: flex; flex-direction: column; }
        .chart-panel .chart-body { flex: 1; min-height: 0; }

        /* === 中间地图 === */
        .center-panel { flex: 1; display: flex; flex-direction: column; }
        .map-container { flex: 1; min-height: 0; }
        .route-map-legend {
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), inset 0 0 16px rgba(79,168,213,0.06);
        }
        .route-map-controls {
            position: absolute;
            right: 24px;
            bottom: 70px;
            z-index: 12;
            display: none;
            gap: 8px;
        }
        .route-map-controls button {
            width: 34px;
            height: 34px;
            border: 1px solid rgba(79, 168, 213, 0.36);
            border-radius: 4px;
            color: #D8ECF5;
            background: rgba(8, 16, 28, 0.82);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), inset 0 0 14px rgba(79, 168, 213, 0.08);
            font-size: 20px;
            line-height: 30px;
            cursor: pointer;
        }
        .route-map-controls button:hover {
            border-color: rgba(79, 168, 213, 0.72);
            color: #4FA8D5;
        }
        .sa-site-map {
            position: absolute;
            inset: 0;
            overflow: hidden;
            background: #082239;
        }
        .sa-site-map::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(180deg, rgba(5, 18, 34, 0.06), rgba(5, 18, 34, 0.18)),
                radial-gradient(circle at 50% 50%, rgba(79, 168, 213, 0.08), transparent 48%);
        }
        .sa-site-map__image {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: fill;
            object-position: center;
        }
        .sa-site-map__marker {
            position: absolute;
            z-index: 3;
            width: 24px;
            height: 24px;
            border: 4px solid #FFFFFF;
            border-radius: 50%;
            background: #00AEEF;
            box-shadow: 0 6px 14px rgba(0, 68, 118, 0.32);
            transform: translate(-50%, -50%);
        }
        .sa-site-map__marker::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #FFFFFF;
            transform: translate(-50%, -50%);
        }
        .sa-site-map__label {
            position: absolute;
            z-index: 4;
            transform: translateY(-50%);
            padding: 5px 9px;
            border: 1px solid rgba(0, 174, 239, 0.72);
            border-radius: 4px;
            color: #00AEEF;
            background: rgba(235, 248, 255, 0.9);
            box-shadow: 0 8px 18px rgba(0, 68, 118, 0.18);
            font-size: 15px;
            font-weight: 700;
            line-height: 1;
            white-space: nowrap;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
        }
        .sa-site-marker--majuqiao { left: 51.6%; top: 24.8%; }
        .sa-site-label--majuqiao { left: 53.1%; top: 24.8%; }
        .sa-site-marker--doudian { left: 36.4%; top: 23.6%; }
        .sa-site-label--doudian { left: 37.9%; top: 23.6%; }
        .sa-site-marker--lanzhoubei { left: 48.5%; top: 42%; }
        .sa-site-label--lanzhoubei { left: 50%; top: 42%; }
        .sa-site-marker--wuwei { left: 58%; top: 38%; }
        .sa-site-label--wuwei { left: 59.5%; top: 38%; }
        .service-area-tip {
            position: fixed;
            top: 148px;
            left: 50%;
            z-index: 1500;
            width: min(420px, calc(100vw - 24px));
            transform: translateX(-50%);
            padding: 18px 20px 20px;
            border: 1px solid rgba(0, 190, 230, 0.76);
            border-radius: 8px;
            background:
                linear-gradient(135deg, rgba(6, 30, 54, 0.96), rgba(8, 25, 45, 0.94)),
                rgba(8, 25, 45, 0.96);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), inset 0 0 28px rgba(79, 168, 213, 0.08);
            color: #FFFFFF;
            overflow: hidden;
        }
        .service-area-tip::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(79, 168, 213, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(79, 168, 213, 0.03) 1px, transparent 1px),
                radial-gradient(circle at 72% 48%, rgba(0, 148, 255, 0.14), transparent 34%);
            background-size: 28px 28px, 28px 28px, auto;
            pointer-events: none;
        }
        .service-area-tip::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(16, 227, 255, 0.16);
            border-radius: 8px;
            pointer-events: none;
        }
        .service-area-tip > * {
            position: relative;
            z-index: 1;
        }
        .service-area-tip--anchored {
            transform: none;
        }
        .service-area-tip__close {
            position: absolute;
            top: 9px;
            right: 9px;
            z-index: 2;
            width: 24px;
            height: 24px;
            border: 1px solid rgba(79, 168, 213, 0.22);
            border-radius: 3px;
            color: rgba(216, 240, 255, 0.78);
            background: rgba(255,255,255,0.03);
            cursor: pointer;
            font-size: 16px;
            line-height: 20px;
        }
        .service-area-tip__close:hover {
            color: #FFFFFF;
            border-color: rgba(79, 168, 213, 0.72);
            background: rgba(79, 168, 213, 0.08);
        }
        .service-area-tip__title {
            padding-right: 30px;
            color: #FFFFFF;
            font-size: 22px;
            font-weight: 900;
            line-height: 1.25;
            letter-spacing: 0;
        }
        .service-area-tip__divider {
            height: 1px;
            margin: 12px 0 14px;
            background: linear-gradient(90deg, rgba(79, 168, 213, 0.86), rgba(79, 168, 213, 0.36), transparent);
        }
        .service-area-tip__section-title {
            margin-bottom: 8px;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 900;
            line-height: 1.2;
        }
        .service-area-tip__section-title--swap {
            margin-top: 12px;
            color: #FFFFFF;
        }
        .service-area-tip__metrics {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .service-area-tip__metric {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 16px;
            min-height: 24px;
            color: #FFFFFF;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.4;
        }
        .service-area-tip__value {
            min-width: 32px;
            color: #FFFFFF;
            font-family: 'Orbitron', 'Microsoft YaHei', sans-serif;
            font-size: 18px;
            font-weight: 900;
            line-height: 1;
            text-align: right;
        }
        .service-area-tip__value--accent {
            color: #E08050;
        }
        .service-area-tip__enter {
            width: 100%;
            height: 44px;
            margin-top: 16px;
            border: 0;
            border-radius: 7px;
            color: #FFFFFF;
            background: linear-gradient(90deg, #168DFF 0%, #08D8F7 100%);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 10px 22px rgba(0, 128, 255, 0.18);
            cursor: pointer;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0;
        }
        .service-area-tip__enter:hover {
            background: linear-gradient(90deg, #2498FF 0%, #16E2FF 100%);
        }

        /* === 右面板占位 === */
        .right-panel { width: 380px; display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
        .placeholder-panel { flex: 1; display: flex; align-items: center; justify-content: center; }
        .placeholder-panel .ph-text { font-size: 14px; color: #7A9DB8; opacity: 0.5; }
        .sa-toggle { background: transparent; border: 1px solid rgba(79,168,213,0.3); color: #7A9DB8; font-size: 12px; padding: 2px 8px; border-radius: 3px; cursor: pointer; white-space: nowrap; }
        .sa-toggle.active { background: rgba(79,168,213,0.15); border-color: #4FA8D5; color: #4FA8D5; }

        /* === 面板内Tab切换（选中态底部青色发光条） === */
        .sub-tab-bar {
            display: flex; align-items: stretch;
            padding: 0 12px; height: 36px; flex-shrink: 0;
            border-bottom: 1px solid rgba(79,168,213,0.12);
        }
        .panel-sub-tab {
            background: transparent; border: none; border-bottom: 2px solid transparent;
            color: rgba(122,157,184,0.6); font-size: 18px; padding: 2px 0;
            cursor: pointer; white-space: nowrap; transition: .25s; font-family: inherit;
            flex: 1; text-align: center; font-weight: 700; display: flex; align-items: center; justify-content: center;
        }
        .panel-sub-tab.active {
            color: #4FA8D5; border-bottom: 2px solid #4FA8D5;
        }

        /* === 金色KPI数字 === */
        .kpi-gold {
            font-family: 'Orbitron'; font-size: 26px; font-weight: 900;
            color: #D4B04A;
            line-height: 1.2;
        }

        /* === Tab内容平滑过渡 === */
        .facility-content { transition: opacity .3s ease; }

        /* === 全生命周期详情弹窗 === */
        .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); z-index: 1000; display: none; align-items: center; justify-content: center; }
        .modal-overlay.show { display: flex; }
        .modal-container { width: 1300px; height: 720px; background: linear-gradient(135deg, #092041 0%, #0B2548 100%); border: 2px solid rgba(79,168,213,0.5); border-radius: 12px; position: relative; box-shadow: 0 0 40px rgba(79,168,213,0.3); animation: scaleIn 0.3s ease; }
        @keyframes scaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        .modal-header { height: 60px; background: rgba(79,168,213,0.1); border-bottom: 1px solid rgba(79,168,213,0.3); display: flex; align-items: center; justify-content: center; position: relative; border-radius: 10px 10px 0 0; }
        .modal-title { font-size: 28px; font-weight: bold; color: #4FA8D5; letter-spacing: 2px; }
        .modal-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; cursor: pointer; font-size: 26px; color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; border-radius: 4px; }
        .modal-close:hover { color: #4FA8D5; background: rgba(79,168,213,0.1); }
        .modal-content { padding: 24px 32px; display: grid; grid-template-columns: 1fr 1fr 320px; gap: 24px; height: calc(100% - 60px); overflow: hidden; }
        .info-column { display: flex; flex-direction: column; gap: 14px; overflow: hidden; justify-content: space-between; }
        .info-column-title { color: #4FA8D5; font-size: 20px; font-weight: bold; margin-bottom: 2px; padding-bottom: 4px; border-bottom: 1px solid rgba(79,168,213,0.2); }
        .info-item { display: flex; align-items: center; padding: 16px 14px; background: rgba(79,168,213,0.05); border-left: 3px solid rgba(79,168,213,0.3); border-radius: 4px; }
        .info-label { color: #D8ECF5; font-size: 18px; min-width: 110px; }
        .info-value { color: #FFFFFF; font-size: 19px; font-weight: 500; }
        .info-value.highlight { color: #448CF1; font-size: 22px; font-family: 'Orbitron', sans-serif; }
        .info-value.status-active { color: #5DBE8A; font-weight: bold; }
        .info-value.warning { color: #D4B04A; }
        /* 右栏图片 */
        .image-column { display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
        .image-item { position: relative; flex: 1; border-radius: 8px; overflow: hidden; border: 1px solid rgba(79,168,213,0.3); min-height: 0; background: rgba(0,50,80,0.4); }
        .device-image { width: 100%; height: 100%; object-fit: cover; display: block; }
        .play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; background: rgba(79,168,213,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; cursor: pointer; transition: transform 0.2s; }
        .play-icon:hover { transform: translate(-50%, -50%) scale(1.15); box-shadow: 0 0 12px rgba(79,168,213,0.6); }

        /* 页面资源加载遮罩 */
        .dashboard-loading {
            position: absolute;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            background:
                radial-gradient(ellipse at center, rgba(12, 48, 78, 0.72) 0%, rgba(6, 18, 36, 0.92) 70%),
                rgba(6, 18, 36, 0.88);
            backdrop-filter: blur(2px);
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }
        .dashboard-loading.is-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .dashboard-loading__panel {
            min-width: 320px;
            padding: 28px 36px;
            text-align: center;
            border: 1px solid rgba(79, 168, 213, 0.35);
            border-radius: 8px;
            background: rgba(10, 32, 54, 0.92);
            box-shadow: 0 0 28px rgba(68, 140, 241, 0.18), inset 0 0 18px rgba(79, 168, 213, 0.08);
        }
        .dashboard-loading__spinner {
            width: 46px;
            height: 46px;
            margin: 0 auto 16px;
            border-radius: 50%;
            border: 3px solid rgba(79, 168, 213, 0.22);
            border-top-color: #4FA8D5;
            border-right-color: #448CF1;
            animation: dashboardSpin 0.85s linear infinite;
        }
        .dashboard-loading__title {
            font-size: 20px;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .dashboard-loading__text {
            font-size: 14px;
            color: #A8C4D8;
        }
        .map-loading {
            position: absolute;
            inset: 0;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;
            background: rgba(8, 24, 42, 0.55);
            color: #D8ECF5;
            font-size: 14px;
            pointer-events: none;
        }
        .map-loading__spinner {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid rgba(79, 168, 213, 0.25);
            border-top-color: #4FA8D5;
            animation: dashboardSpin 0.8s linear infinite;
        }
        @keyframes dashboardSpin {
            to { transform: rotate(360deg); }
        }

        /* 脉冲动画 */
        @keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:0.5} }
        /* 淡入动画 */
        @keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
        /* 金色数字 */
        .num-gold { font-family:'Orbitron'; font-size:36px; font-weight:900; color:#D4B04A; text-shadow:0 0 12px rgba(212,176,74,0.5); line-height:1.2; }
        /* 绿色数字 */
        .num-green { font-family:'Orbitron'; font-size:28px; font-weight:700; color:#7FE8B0; line-height:1.2; }
        /* 青色数字 */
        .num-cyan { font-family:'Orbitron'; font-weight:700; color:#448CF1; line-height:1.2; }
        /* 实时动态列表 */
        .live-item { display:flex; align-items:center; gap:6px; padding:8px 12px; font-size:16px; color:#A8C4D8; border-bottom:1px solid rgba(79,168,213,0.08); white-space:nowrap; overflow:hidden; }
        .live-item .time { font-family:'Orbitron'; color:#D8ECF5; font-size:15px; flex-shrink:0; }
        .live-item .plate { color:#4FA8D5; font-weight:700; flex-shrink:0; }
        .live-item .action { color:#A8C4D8; flex:1; text-align:left; }
        .live-item .detail { color:#D4B04A; font-size:15px; flex-shrink:0; }
        .live-item.charge .icon { color:#4FA8D5; }
        .live-item.swap .icon { color:#D4B04A; }
        .live-feed-inner { width: 100%; }
        .live-item-new { animation: liveItemIn .35s ease; }
        #bj-live-list .live-item,
        #bj-live-list .live-item span { font-size: 16px !important; }
        #bj-live-list .live-item span:first-child { font-size: 18px !important; }
        .large-list-table { font-size: 16px !important; }
        .large-list-table th,
        .large-list-table td { font-size: 16px !important; }
        .alert-list-item { font-size: 16px; }
        .alert-list-item .alert-icon { font-size: 16px !important; }
        .alert-list-item .alert-time { font-size: 15px !important; }
        .alert-list-item .alert-text { font-size: 16px !important; line-height: 1.5 !important; }
        @keyframes liveItemIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
