

        /* 主卡片容器 */
        .peizhi_ludashi_paofen {
            width: 100%;
            background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
            border-radius: 28px;
            padding: 18px 16px 20px 16px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
            transition: all 0.2s ease;
        }

        /* 双栏布局 */
        .peizhi_ludashi_paofen_dashboard {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* 左侧仪表区域 */
        .peizhi_ludashi_paofen_gauge_area {
            flex-shrink: 0;
            width: 160px;
            text-align: center;
        }

        .peizhi_ludashi_paofen_gauge_title {
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-bottom: 2px;
            letter-spacing: 0.5px;
        }

        .peizhi_ludashi_paofen_canvas_wrapper {
            display: flex;
            justify-content: center;
            margin-left: -8px;
        }

        .peizhi_ludashi_paofen_canvas {
            display: block;
            width: 160px;
            height: 160px;
        }

        /* 右侧指标列表 */
        .peizhi_ludashi_paofen_metrics_area {
            flex: 1;
            min-width: 180px;
        }

        .peizhi_ludashi_paofen_metric_item {
            margin-bottom: 12px;
        }

        .peizhi_ludashi_paofen_metric_header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 5px;
        }

        .peizhi_ludashi_paofen_metric_name {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .peizhi_ludashi_paofen_metric_score {
            font-size: 12px;
            color: #ffffff;
            font-weight: 600;
            background: rgba(0, 0, 0, 0.2);
            padding: 2px 8px;
            border-radius: 20px;
        }

        /* 原生进度条 */
        .peizhi_ludashi_paofen_progress_bg {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            height: 6px;
            width: 100%;
            overflow: hidden;
        }

        .peizhi_ludashi_paofen_progress_fill {
            background: #0dbb09;
            height: 100%;
            width: 0%;
            border-radius: 10px;
            transition: width 0.3s ease;
            box-shadow: 0 0 2px #0dbb09;
        }

        /* 功耗栏 */
        .peizhi_ludashi_paofen_tdp_section {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 8px 12px;
            border-radius: 40px;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            backdrop-filter: blur(2px);
        }


        .peizhi_ludashi_paofen_tdp_text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
        }

        .peizhi_ludashi_paofen_tdp_value {
            font-size: 16px;
            font-weight: bold;
            color: #ffffff;
            margin-left: 6px;
            margin-right: 4px;
        }

        .peizhi_ludashi_paofen_arrow_icon {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-left: 4px;
            transition: transform 0.2s;
        }

        /* 小屏适配 */
        @media (max-width: 450px) {
            .peizhi_ludashi_paofen_dashboard {
                flex-direction: column;
                align-items: center;
            }
            .peizhi_ludashi_paofen_gauge_area {
                width: auto;
                margin-bottom: 8px;
            }
            .peizhi_ludashi_paofen_canvas_wrapper {
                margin-left: 0;
            }
            .peizhi_ludashi_paofen_metrics_area {
                width: 100%;
            }
            .peizhi_ludashi_paofen {
                padding: 16px;
            }
        }
    