85 lines
1.6 KiB
CSS
85 lines
1.6 KiB
CSS
.meta {
|
|
margin-bottom: 24px;
|
|
color: #7a7f99;
|
|
font-size: 16px;
|
|
text-align: center;
|
|
}
|
|
|
|
.section {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.section-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin: 0 0 12px 0;
|
|
color: #222;
|
|
font-size: 24px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.section-title::before {
|
|
content: "";
|
|
display: block;
|
|
width: 5px;
|
|
height: 30px;
|
|
background: #2f74d0;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.cards {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 14px;
|
|
}
|
|
|
|
.card {
|
|
display: grid;
|
|
grid-template-columns: 54px minmax(0, 1fr);
|
|
gap: 12px;
|
|
background: white;
|
|
border-radius: 12px;
|
|
padding: 14px;
|
|
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 8px;
|
|
object-fit: cover;
|
|
background: #f1f2f6;
|
|
}
|
|
|
|
.head {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.name {
|
|
color: #222;
|
|
font-size: 18px;
|
|
font-weight: 800;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
.tag {
|
|
color: #5d6680;
|
|
background: #eef2f8;
|
|
border-radius: 999px;
|
|
padding: 2px 8px;
|
|
font-size: 13px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.desc {
|
|
color: #333;
|
|
font-size: 15px;
|
|
line-height: 1.55;
|
|
word-break: break-word;
|
|
}
|