Files
2026-09-04 22:38:16 +08:00

65 lines
1009 B
CSS

/* ====== 列表 ====== */
.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: 30px;
font-weight: 700;
color: #2563eb;
flex-shrink: 0;
}
/* 内容 */
.content {
flex: 1;
padding: 0 16px;
}
.stage {
font-size: 25px;
font-weight: 700;
margin-bottom: 6px;
}
.meta {
font-size: 20px;
color: #666;
margin-bottom: 6px;
}
.desc {
font-size: 22px;
color: var(--jx3-text-secondary);
line-height: 1.5;
}
/* 图标 */
.icon {
width: 36px;
height: 36px;
border-radius: 8px;
background: rgba(114, 169, 213, 0.16);
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 700;
color: var(--jx3-blue);
}