
.view_duibi_container{
    padding: 15px 32px;
    background: #ffffff;
}
        /* ========== 新增对比模块 ========== */
        .compare-module {
            background: var(--surface);
            padding: 24px 28px;
            margin-top: 28px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-card);
        }
        .compare-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 20px;
        }
        .compare-header h3 {
            font-size: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .compare-select-area {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }
        .compare-btn {
            background: #373737;
            color: white;
            border: none;
            border-radius: 48px;
            padding: 7px 18px;
            font-weight: 500;
            font-size: 13px;
            cursor: pointer;
            transition: 0.2s;
        }

        .mode-nav {
            margin-bottom: 20px;
        }
        .mode-ul {
            display: flex;
            flex-direction: row;
            gap: 16px;
            background: #f1f5f9;
            padding: 6px;
            border-radius: 60px;
        }
        .mode-li {
            flex: 1;
            text-align: center;
            padding: 5px 0;
            border-radius: 40px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            background: transparent;
            color: #475569;
        }
        .mode-li.active {
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }



        .tab-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            border-bottom: 0;
            padding: 14px;
            justify-content: center;
        }
        .tab-btn {
            background: transparent;
            border: none;
            padding: 5px 14px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #475569;
            font-family: inherit;
        }


        .tab-btn:hover {
            background: #eef2ff;
        }
        .tab-btn.active {
            background:#373737;
            color: white;
            box-shadow: 0 4px 10px rgba(108, 92, 231, 0.2);
        }
        .metric-row {
            background: transparent;
            padding: 6px 0 8px 0;
        }
        .dual-progress {
            display: flex;
            flex-direction: column;
            gap: 2px;
            max-width: 100%;
        }
        .progress-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #ffffff;
            border-radius: 20px;
            transition: all 0.2s;
        }

        .progress-item:hover {
            background: #fafaff;
            transform: translateX(2px);
        }
        .progress-cpu-name {
            font-size: 12px;
            font-weight: 600;
            width: 100px;
            text-align: right;
            color: #1e293b;
            line-height: 1.2;
        }
        .progress-bg {
            background: #e9eef3;
            border-radius: 10px;
            height: 28px;
            overflow: hidden;
            flex: 1;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
        }
        .progress-fill {
            height: 100%;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 12px;
            color: white;
            font-weight: 600;
            font-size: 12px;
            width: 0%;
            transition: width 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1), background 0.2s ease;
            min-width: 50px;
        }
        /* 单核模式下的进度条渐变色（由JS控制类，但保留默认样式） */
        .mode-single .progress-fill {
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
            background: #62c597;
        }
        /* 多核模式下的进度条渐变色 */
        .mode-multi .progress-fill {
            background: linear-gradient(90deg, #f59e0b, #f97316);
            background: #e67346;
        }
        .mode-single .progress-item.active-item .progress-fill {
            background: #e67346;
        }
        .mode-multi .progress-item.active-item .progress-fill {
            background: #62c597;
        }
        
        .score-num {
            text-align: right;
            font-size: 13px;
            font-weight: 700;
            color: #0f172a;
            background: #f8fafc;
            padding: 5px 12px;
            border-radius: 40px;
            min-width: 85px;
        }
        .cpu-group {
            display: none;
            animation: fadeIn 0.25s ease;
        }
        .cpu-group.active-group {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(5px);}
            to { opacity: 1; transform: translateY(0);}
        }
        @media (max-width: 750px) {
            .nbox_box { padding: 16px 16px 20px; }
            .progress-cpu-name { width: 125px; font-size: 12px; white-space: normal; }
            .score-num { min-width: 72px; font-size: 11px; padding: 4px 8px; }
            .progress-fill { font-size: 11px; padding-right: 8px; }
            .tab-btn { padding: 6px 14px; font-size: 12px; }
            .mode-li { font-size: 14px; padding: 5px 0; }
            .a_title { font-size: 22px; }
            .compare-btn{display: none;}
        }
        @media (max-width: 600px) {
            .view_duibi_container{
                padding: 20px;
            }
            .progress-item { gap: 6px; }
            .progress-cpu-name { width: 70px; }
            .progress-bg { min-width: 160px; }
            .score-num { margin-left: auto; }
            .tab-bar {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                margin: 20px 0;
                border-bottom: none;
                padding-bottom: 0;
                margin-top: 0px;
            }
            .tab-btn {
                text-align: center;
            }
            .dual-progress {
                gap: 4px;
            }
            
        }
        .sp-search-input{
            padding: 7px 10px;
        }
    