* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 15px;
}

/* 新的布局结构 */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 15px;
    align-items: start;
}

/* 左侧列 */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 中间列 */
.middle-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 右侧列 */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Logo Banner样式 */
.logo-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.logo-text-group {
    flex: 1;
}

.logo-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 4px 0;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

/* 移除旧的header样式 */
header {
    display: none;
}

.logo {
    display: none;
}

.logo-text {
    display: none;
}

.section {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 6px;
}

/* 快速配置按钮 */
.quick-config {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.btn-quick-config {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-quick-config:hover {
    background: #667eea;
    color: white;
}

.btn-quick-config:active {
    transform: scale(0.98);
}

/* 可折叠配置组 */
.config-group {
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0;
}

.config-group summary {
    cursor: pointer;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    user-select: none;
    transition: background 0.2s;
}

.config-group summary:hover {
    background: #e9ecef;
}

.config-group[open] summary {
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 12px;
}

.config-group label {
    margin: 0 12px 10px 12px;
}

.config-group label:last-child {
    margin-bottom: 12px;
}

/* 采样参数区域高亮 */
.config-group-highlighted {
    border-color: #667eea;
    background: #f8f9ff;
}

.config-group-highlighted summary {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    color: #667eea;
}

.form-group {
    margin-bottom: 15px;
}

.form-group h3 {
    font-size: 13px;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    color: #666;
}

input[type="text"],
input[type="number"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 3px;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

input[type="range"] {
    width: 100%;
    margin-top: 3px;
}

textarea {
    resize: vertical;
    min-height: 70px;
}

.btn-primary,
.btn-secondary {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 8px;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

.btn-copy {
    padding: 4px 12px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    background: #667eea;
    color: white;
    margin-left: 10px;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: #5568d3;
}

.result-box {
    margin-top: 8px;
}

.result-item {
    margin-bottom: 15px;
}

.result-item h3 {
    font-size: 13px;
    margin-bottom: 6px;
    color: #667eea;
}

/* 统计信息网格布局 */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.token-stats,
.performance-stats {
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
}

.token-stats {
    background: #f0f4ff;
    border-left: 3px solid #667eea;
}

.performance-stats {
    background: #f0fff4;
    border-left: 3px solid #48bb78;
}

.result-text {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 4px;
    border-left: 4px solid #667eea;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 13px;
    line-height: 1.8;
}

.reasoning-text {
    background: #fffbf0;
    padding: 12px;
    border-radius: 4px;
    border-left: 4px solid #ffa726;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    max-height: 400px;
    overflow-y: auto;
}

.raw-json {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 12px;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 11px;
    max-height: 350px;
    overflow-y: auto;
}

details summary {
    cursor: pointer;
    padding: 6px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
}

details[open] summary {
    margin-bottom: 8px;
}

#loading-indicator {
    text-align: center;
    padding: 40px;
    color: #667eea;
    font-size: 16px;
}

.error-box {
    background: #ffebee;
    border-left: 4px solid #f44336;
    padding: 15px;
    border-radius: 4px;
    color: #c62828;
    font-size: 14px;
}

@media (max-width: 1400px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}

/* KaTeX 数学公式样式优化 */
.result-text .katex,
.reasoning-text .katex {
    font-size: 1.1em;
}

.result-text .katex-display,
.reasoning-text .katex-display {
    margin: 1em 0;
    overflow-x: auto;
    overflow-y: hidden;
}

/* 行内公式 */
.result-text .katex,
.reasoning-text .katex {
    max-width: 100%;
}

/* 模板按钮样式 */
.template-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.template-actions button {
    flex: 1;
    margin-right: 0;
}

/* optgroup 样式优化 */
select optgroup {
    font-weight: bold;
    color: #667eea;
}

select option {
    font-weight: normal;
    color: #333;
}

/* ==================== Benchmark 功能样式 ==================== */

/* Tab 切换 */
.tab-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: #667eea;
}

.tab-btn.active {
    border-bottom-color: #667eea;
    color: #667eea;
    font-weight: bold;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Benchmark 布局 */
.benchmark-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: start;
}

.benchmark-config-section,
.benchmark-result-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benchmark-config-section h2,
.benchmark-result-section h2,
.batch-config-section h2,
.batch-result-section h2 {
    margin-bottom: 20px;
    color: #667eea;
    font-size: 20px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.benchmark-config-section h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

.batch-config-section h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

.config-group {
    margin-bottom: 20px;
}

.config-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
}

.config-group input[type="number"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 5px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.info-text {
    color: #666;
    font-size: 14px;
    font-style: italic;
    margin: 0;
}

.benchmark-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Benchmark 结果区 */
.benchmark-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.benchmark-box h3 {
    margin-bottom: 12px;
    color: #667eea;
    font-size: 16px;
}

.benchmark-box h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
    font-weight: bold;
}

/* 进度条 */
.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.progress-bar-container {
    width: 100%;
    height: 30px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 13px;
}

.time-info {
    font-size: 14px;
    color: #666;
}

.time-info span {
    font-weight: bold;
    color: #333;
}

/* 统计表格 */
.stats-table,
.info-table,
.metrics-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 14px;
}

.stats-table td,
.info-table td,
.metrics-table td,
.metrics-table th {
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
}

.stats-table tr:nth-child(even),
.info-table tr:nth-child(even) {
    background: #f5f5f5;
}

.stats-table td:first-child,
.info-table td:first-child {
    font-weight: 500;
    color: #555;
    width: 60%;
}

.stats-table td:last-child,
.info-table td:last-child {
    font-weight: bold;
    color: #333;
    text-align: right;
}

.metrics-table thead {
    background: #667eea;
    color: white;
    font-weight: bold;
}

.metrics-table thead th {
    text-align: center;
}

.metrics-table tbody td {
    text-align: center;
}

.metrics-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #555;
}

/* 结果操作按钮 */
.result-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* 错误提示框 */
.error-box {
    white-space: pre-line; /* 保留换行符 */
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .benchmark-layout,
    .batch-layout,
    .eval-layout {
        grid-template-columns: 1fr;
    }
}

/* ==================== End of Benchmark 功能样式 ==================== */

/* ==================== 批量测试功能样式 ==================== */

/* 子Tab容器 */
.sub-tab-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-left: 10px;
}

.sub-tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 15px;
    color: #666;
    transition: all 0.3s;
}

.sub-tab-btn:hover {
    color: #667eea;
}

.sub-tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
    font-weight: 600;
}

/* 子Tab面板 */
.sub-tab-panel {
    display: none;
}

.sub-tab-panel.active {
    display: block;
}

/* 能力测评布局 */
.eval-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: start;
    padding: 0 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.eval-config-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}

.eval-result-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 评测结果卡片 */
.result-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.score-large {
    font-size: 48px;
    font-weight: bold;
    color: #ffd700;
}

/* 结果区块 */
.result-section {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 6px;
}

.result-section h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #374151;
    font-size: 16px;
}

/* 子维度分析 - 限制高度，添加滚动 */
#single-eval-subdimensions,
#comp-eval-dimension-table {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: white;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.subdimension-item,
.difficulty-item,
.error-pattern-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: white;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.subdimension-item:hover,
.difficulty-item:hover,
.error-pattern-item:hover {
    background: #f3f4f6;
}

.subdimension-item .score,
.difficulty-item .score {
    font-weight: bold;
    color: #667eea;
    font-size: 16px;
}

.subdimension-item .count,
.difficulty-item .count,
.error-pattern-item .count {
    color: #6b7280;
    font-size: 14px;
}

/* 操作按钮组 */
.result-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* 批量测试布局 */
.batch-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    min-height: 500px;
}

.batch-config-section,
.batch-result-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow-y: auto;
    max-height: 80vh;
}

/* 配置列表 */
.config-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.config-list li {
    padding: 8px 12px;
    background: #f5f7fa;
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 14px;
}

.config-list li strong {
    color: #667eea;
}

/* 汇总表格 */
.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 13px;
}

.summary-table th {
    background: #667eea;
    color: white;
    padding: 10px 8px;
    text-align: center;
    font-weight: 600;
}

.summary-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.summary-table tbody tr:hover {
    background: #f5f7fa;
}

/* 成功率颜色 */
.summary-table td.success-high {
    color: #10b981;
    font-weight: bold;
}

.summary-table td.success-medium {
    color: #f59e0b;
    font-weight: bold;
}

.summary-table td.success-low {
    color: #ef4444;
    font-weight: bold;
}

/* 建议列表 */
.recommendations-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.recommendations-list li {
    padding: 10px 15px;
    background: #fef3c7;
    margin-bottom: 8px;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    font-size: 14px;
    color: #78350f;
}

.recommendations-list li::before {
    content: "• ";
    font-weight: bold;
    margin-right: 5px;
}

/* 表格包装器（支持横向滚动） */
.table-wrapper {
    overflow-x: auto;
    margin: 15px 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .batch-layout {
        grid-template-columns: 1fr;
    }
}

/* ==================== End of 批量测试功能样式 ====================*/

/* ==================== Evaluation 能力测评样式 ==================== */

/* 维度选择器 */
.dimension-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-label:hover, .checkbox-label:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-label span, .checkbox-label span {
    font-size: 14px;
    color: #374151;
}

/* 题目数量选择器 */
.sample-size-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

/* 评测模式选择器 */
.mode-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mode-label {
    flex: 1;
    min-width: 200px;
}

.mode-card {
    padding: 15px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.mode-label input[type="radio"]:checked + .mode-card {
    background: #eff6ff;
    border-color: #3b82f6;
}

.mode-card h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #1f2937;
}

.mode-card p {
    margin: 5px 0;
    font-size: 13px;
    color: #6b7280;
}

.mode-time {
    font-weight: bold;
    color: #3b82f6 !important;
}

.mode-recommended {
    background: #fef3c7;
    border-color: #f59e0b;
}

.mode-label input[type="radio"]:checked + .mode-recommended {
    background: #fef3c7;
    border-color: #f59e0b;
}

/* 维度复选框 */
.dimension-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.quick-select-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

/* 结果卡片 */
.result-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.result-card h3 {
    margin: 0;
    font-size: 18px;
}

.score-large {
    font-size: 48px;
    font-weight: bold;
    display: block;
    margin: 10px 0;
}

/* 结果区块 */
.result-section {
    margin-bottom: 25px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
}

.result-section h4 {
    margin: 0 0 15px 0;
    color: #1f2937;
    font-size: 16px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
}

/* 子维度项 */
.subdimension-item,
.difficulty-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border-left: 4px solid #3b82f6;
}

.subdimension-item span:first-child,
.difficulty-item span:first-child {
    font-weight: 500;
    color: #374151;
}

.subdimension-item .score,
.difficulty-item .score {
    font-size: 18px;
    font-weight: bold;
    color: #3b82f6;
}

.subdimension-item .count,
.difficulty-item .count {
    font-size: 13px;
    color: #6b7280;
}

/* 错误模式项 */
.error-pattern-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    border-left: 4px solid #ef4444;
}

.error-pattern-item .count {
    font-weight: bold;
    color: #ef4444;
}

/* 典型错题 */
.typical-error-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #f59e0b;
}

.typical-error-item h5 {
    margin: 0 0 10px 0;
    color: #f59e0b;
    font-size: 14px;
}

.typical-error-item p {
    margin: 8px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #374151;
}

.typical-error-item strong {
    color: #1f2937;
}

/* 雷达图容器 */
.radar-chart-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 优劣势分析 */
.strengths-weaknesses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.strengths-weaknesses h5 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: bold;
}

.strengths-weaknesses ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strengths-weaknesses li {
    padding: 8px 12px;
    background: white;
    margin-bottom: 6px;
    border-radius: 6px;
    font-size: 13px;
    border-left: 3px solid #10b981;
}

.strengths-weaknesses div:last-child li {
    border-left-color: #f59e0b;
}

/* 结果表格 */
.result-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.result-table th {
    background: #f3f4f6;
    padding: 12px;
    text-align: left;
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
}

.result-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.result-table td.score {
    font-weight: bold;
    font-size: 16px;
    color: #3b82f6;
}

.result-table tbody tr:hover {
    background: #f9fafb;
}

/* 进度统计信息 */
.progress-stats {
    margin-top: 15px;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 6px;
}

.progress-stats p {
    margin: 8px 0;
    font-size: 14px;
    color: #374151;
}

.progress-stats span {
    font-weight: bold;
    color: #3b82f6;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .mode-selector {
        flex-direction: column;
    }

    .dimension-checkboxes {
        grid-template-columns: 1fr;
    }

    .strengths-weaknesses {
        grid-template-columns: 1fr;
    }
}

/* ==================== End of Evaluation 样式 ====================*/
