This commit is contained in:
Leo
2026-01-16 18:49:42 +08:00
parent 2cc538120f
commit f2867bfed4

View File

@@ -920,12 +920,6 @@ export default {
.letter-nav .el-button-group { .letter-nav .el-button-group {
flex-wrap: wrap; flex-wrap: wrap;
} }
.letter-nav .el-button {
padding: 5px 8px;
font-size: 11px;
min-width: 28px;
}
} }
@media (max-width: 360px) { @media (max-width: 360px) {
@@ -1206,34 +1200,39 @@ export default {
.usage-statistics-section { .usage-statistics-section {
background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%); background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
border: 1px solid #e1e8ff; border: 1px solid #e1e8ff;
border-radius: 12px; border-radius: 10px;
padding: 16px; padding: 12px;
margin-bottom: 24px; margin-bottom: 20px;
}
.usage-statistics-section .form-label {
font-size: 13px;
margin-bottom: 8px;
} }
.usage-stats-grid { .usage-stats-grid {
display: grid; display: grid;
grid-template-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr);
gap: 12px; gap: 8px;
} }
.usage-stat-item { .usage-stat-item {
text-align: center; text-align: center;
background: #fff; background: #fff;
padding: 12px 8px; padding: 8px 6px;
border-radius: 8px; border-radius: 6px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
} }
.usage-stat-number { .usage-stat-number {
font-size: 20px; font-size: 18px;
font-weight: 700; font-weight: 700;
color: #409eff; color: #409eff;
margin-bottom: 4px; margin-bottom: 2px;
} }
.usage-stat-label { .usage-stat-label {
font-size: 12px; font-size: 11px;
color: #909399; color: #909399;
font-weight: 500; font-weight: 500;
} }
@@ -1315,21 +1314,31 @@ export default {
/* 响应式适配 */ /* 响应式适配 */
@media (max-width: 480px) { @media (max-width: 480px) {
.usage-statistics-section {
padding: 10px;
margin-bottom: 16px;
}
.usage-statistics-section .form-label {
font-size: 12px;
margin-bottom: 6px;
}
.usage-stats-grid { .usage-stats-grid {
grid-template-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr);
gap: 8px; gap: 6px;
} }
.usage-stat-item { .usage-stat-item {
padding: 10px 6px; padding: 8px 4px;
} }
.usage-stat-number { .usage-stat-number {
font-size: 18px; font-size: 16px;
} }
.usage-stat-label { .usage-stat-label {
font-size: 11px; font-size: 10px;
} }
.history-item-header { .history-item-header {