
/* 卡片通用 */
.compare-card {
    background: white;
    border-radius: 8px;
    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: 8px;
}
.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 {
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #e2e8f0;
    padding: 8px 0;
}
.progress-item:last-child {
    border-bottom: none;
}


.progress-cpu-name {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.2;
    width: 70px;
    text-align: right;
    padding-right: 12px;
    margin-bottom: 0;
}
.progress-bg {
    background: #e2e8f0;
    border-radius: 25px;
    height: 30px;
    overflow: hidden;
    flex: 1;
}
.progress-fill {
    height: 100%;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    color: white;
    font-weight: 500;
    font-size: 13px;
    width: 0%;
    transition: width 0.3s;
    min-width: 60px;
    font-size: 12px;
}
.fill-danhe {
    background: #62c597;
}
.fill-duohe {
    background: #e67346;
}
.score-num {
    margin-top: 6px;
    text-align: right;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-top: 0;
    width: 60px;
    text-align: right;
    padding-left: 12px;
}
.pk_xingneng_row{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.metric-row{
    background: #f8fafc;
    border-radius: 9px;
    padding: 10px 12px;
}
.range-text{
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
}

.xn-score{
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    line-height: 13px;
}
.xn-score-unit{
    font-size: 8px;
    color: #94a3b8;
    font-weight: 500;
    line-height: 10px;
}



@media@media (max-width: 780px) {
    .bench-group {
        justify-content: space-between;
    }
}


