This commit is contained in:
qsc
2026-08-04 00:17:25 +08:00
parent 4b6c86a32b
commit a4a01dc16d
138 changed files with 6328 additions and 8130 deletions
+64
View File
@@ -0,0 +1,64 @@
/* ====== 列表 ====== */
.list {
display: flex;
flex-direction: column;
gap: 14px;
}
/* 卡片 */
.card {
background: #ffffff;
border-radius: 12px;
padding: 16px 18px;
box-shadow: 0 4px 14px rgba(0,0,0,0.06);
display: flex;
align-items: center;
}
/* 时间 */
.time {
width: 70px;
text-align: center;
font-size: 26px;
font-weight: 700;
color: #2563eb;
flex-shrink: 0;
}
/* 内容 */
.content {
flex: 1;
padding: 0 16px;
}
.stage {
font-size: 22px;
font-weight: 700;
margin-bottom: 6px;
}
.meta {
font-size: 18px;
color: #666;
margin-bottom: 6px;
}
.desc {
font-size: 20px;
color: #444;
line-height: 1.5;
}
/* 图标 */
.icon {
width: 36px;
height: 36px;
border-radius: 8px;
background: #e5e7eb;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 700;
color: #374151;
}