65 lines
962 B
CSS
65 lines
962 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: 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;
|
|
}
|