This commit is contained in:
cjw
2026-02-16 15:59:25 +08:00
parent 3ca72f6ea0
commit bc33278e47
4 changed files with 196 additions and 63 deletions
+45
View File
@@ -173,6 +173,51 @@ body {
gap: 12px;
}
.key-info-categories {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 20px;
}
.category-section {
background: #f8f9fa;
border-radius: 10px;
padding: 20px;
border-left: 4px solid #3498db;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.category-section:nth-child(1) {
border-left-color: #e74c3c;
}
.category-section:nth-child(2) {
border-left-color: #27ae60;
}
.category-section:nth-child(3) {
border-left-color: #f39c12;
}
.category-title {
font-size: 1.2em;
font-weight: bold;
margin-bottom: 15px;
color: #2c3e50;
display: flex;
align-items: center;
gap: 8px;
padding-bottom: 10px;
border-bottom: 2px solid rgba(0,0,0,0.1);
}
.category-content {
display: flex;
flex-direction: column;
gap: 12px;
}
.data-item {
background: white;
padding: 20px;