
/* 卡片通用 */
.compare-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 28px;
    border: 1px solid #eef2f8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bench-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 5px 16px;
    border-radius: 60px;
    margin-left: -10px;
    margin-right: -10px;
}
.bench-group label {
    font-size: 13px;
    font-weight: 500;
    color: #5b6e8c;
}
.bench-select {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    padding: 8px 16px;
    font-size: 13px;
    outline: none;
    cursor: pointer;
}

/* 进度条行 */
.metric-row {
}
.metric-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #2d3e50;
}
.dual-progress {
    flex-direction: column;
    gap: 16px;
}
.progress-item {
    flex: 1;
}
.progress-cpu-name {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}
.progress-bg {
    background: #e2e8f0;
    border-radius: 60px;
    height: 30px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: white;
    font-weight: 700;
    font-size: 13px;
    width: 0%;
    transition: width 0.3s;
}
.fill-score {
    background: linear-gradient(90deg, #6c5ce7, #8b74ff);
}
.fill-duohe {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}
.score-num {
    margin-top: 6px;
    text-align: right;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}
.pk_xingneng_row{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (max-width: 780px) {
    .bench-group {
        justify-content: space-between;
    }
}
@media (min-width: 780px) {
    .progress-item{
        display: flex;
        align-items: center;
        margin-top: 8px;
    }
    .progress-bg {
        flex: 1;
    }
    .progress-cpu-name {
        width: 100px;
        text-align: right;
        padding-right: 12px;
        margin-bottom: 0;
    }
    .score-num {
        margin-top: 0;
        width: 100px;
        text-align: left;
        padding-left: 12px;
    }
}

