完善功能

This commit is contained in:
cjd
2026-02-07 22:55:07 +08:00
parent bf3a2e6971
commit ae7c009d28
111 changed files with 980 additions and 10111 deletions

View File

@@ -514,6 +514,52 @@ a {
color: var(--text-muted);
}
.ad-slot {
background: var(--surface);
border: 1px dashed var(--border);
border-radius: 16px;
padding: 16px;
margin: 20px 0 28px;
box-shadow: var(--shadow);
}
.ad-slot-title {
font-weight: 600;
margin-bottom: 10px;
}
.ad-list {
display: grid;
gap: 12px;
}
.ad-item {
display: grid;
grid-template-columns: auto 1fr;
gap: 12px;
padding: 12px;
background: var(--surface-muted);
border: 1px solid var(--border);
border-radius: 12px;
}
.ad-item img {
width: 72px;
height: 48px;
object-fit: cover;
border-radius: 8px;
}
.ad-item-title {
font-weight: 600;
margin-bottom: 4px;
}
.ad-item-desc {
font-size: 12px;
color: var(--text-muted);
}
.footer {
margin-top: auto;
padding: 20px 40px;