
.benchmark-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.benchmark-suite-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #edf2f9;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.benchmark-suite-card:hover {
    border-color: #e0e7ff;
    background: #fefeff;
}
.suite-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #fbfdff;
    border-bottom: 1px solid var(--border-light);
}
.suite-icon {
    width: 48px;
    height: 48px;
    background: #f1f5fc;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #5b4bc4;
}
.suite-title {
    font-weight: 800;
    font-size: 18px;
    color: var(--text-title);
}
.suite-sub {
    font-size: 12px;
    color: var(--text-muted);
}
.benchmark-dual-row {
    padding: 8px 20px 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* 每个可点击的 bench-item */
.bench-item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 8px 12px;
    margin: -4px -4px;
    border-radius: 20px;
    transition: all 0.2s ease;
    justify-content: space-between;
    cursor: pointer;
}
.bench-item:hover {
    background: #f8fafd;
    transform: translateX(1px);
}
.bench-item:active {
    transform: scale(0.98);
    background: #f0eefb;
}
.bench-item-left {
    flex: 1;
}
.bench-item-right {
    display: flex;
    align-items: center;
    padding-left: 5px;
}
.bench-item-right i {
    font-size: 16px;
    color: #94a3b8;
}
.bench-item-right i:hover {
    color: var(--primary);
}
.bench-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}
.bench-type {
    font-weight: 700;
    font-size: 14px;
    color: #2d3e50;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bench-type-badge {
    font-size: 11px;
    background: #eef2ff;
    padding: 2px 12px;
    border-radius: 30px;
    color: #4f46e5;
}
.bench-score-value {
    font-family: monospace;
    font-size: 18px;
    font-weight: 800;
    color: #0f1825;
}
.bench-score-unit {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}
.progress-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.progress-bar-compact {
    flex: 1;
    height: 10px;
    background: #e9edf4;
    border-radius: 20px;
    overflow: hidden;
    min-width: 100px;
}
.progress-fill-compact {
    height: 100%;
    background: linear-gradient(90deg, #6c5ce7, #8f82f5);
    width: 0%;
    border-radius: 20px;
}
.bench-item-duohe .progress-fill-compact {
    background: #e67346;
}
.bench-item-danhe .progress-fill-compact {
    background: #62c597;
}
.percent-compact {
    font-size: 12px;
    font-weight: 600;
    color: #6c5ce7;
    background: #f0eefb;
    padding: 2px 12px;
    border-radius: 30px;
}
/* 可点击提示小图标 */
.click-icon {
    margin-left: 6px;
    font-size: 12px;
    color: #c8c8c8;
    opacity: 0.5;
}
.bench-item:hover .click-icon {
    opacity: 1;
    color: var(--primary);
}
@media (max-width: 768px) {
    .benchmark-dual-row {
        padding: 8px 10px 20px 10px;
    }
}

