a0ea960eb8
- Replaced Ant Design Card/Layout with V21-compliant components - Updated Header, MainLayout to V21 sticky top navigation - Redesigned WorkspaceList, ProjectAssets, ProjectResults, ProjectTitles, ProjectVoices, ProjectGeneration with V21 card/grid system - Added V21 color scheme, typography, spacing, pill badges, vertical/video cards - Updated Login page and Plans subscription page to V21 design - CSS-only styling without Ant Design overrides where possible
104 lines
1.7 KiB
CSS
104 lines
1.7 KiB
CSS
/* V21 成片库 */
|
|
.xx-project-results {
|
|
}
|
|
|
|
.xx-vertical-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 16px;
|
|
}
|
|
|
|
.xx-vertical-grid.compact {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
|
.xx-vertical-grid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
.xx-vertical-grid.compact {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.xx-vertical-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.xx-vertical-grid.compact {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
.xx-vertical-card {
|
|
border: 1px solid #e2e8f0;
|
|
background: white;
|
|
border-radius: 24px;
|
|
padding: 12px;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.xx-vertical-card:hover {
|
|
border-color: #4f46e5;
|
|
box-shadow: 0 12px 36px rgba(79, 70, 229, 0.12);
|
|
}
|
|
|
|
.xx-vertical-thumb {
|
|
aspect-ratio: 9 / 16;
|
|
border-radius: 18px;
|
|
background: linear-gradient(135deg, #0ea5e9, #312e81);
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: grid;
|
|
place-items: center;
|
|
color: white;
|
|
margin-bottom: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.xx-vertical-thumb.orange {
|
|
background: linear-gradient(135deg, #f97316, #ef4444);
|
|
}
|
|
|
|
.xx-vertical-thumb.gray {
|
|
background: linear-gradient(135deg, #64748b, #334155);
|
|
}
|
|
|
|
.xx-vertical-thumb.green {
|
|
background: linear-gradient(135deg, #10b981, #0284c7);
|
|
}
|
|
|
|
.xx-vertical-thumb video {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.xx-vertical-thumb img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.xx-vertical-card b {
|
|
display: block;
|
|
color: #0f172a;
|
|
font-weight: 850;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.xx-vertical-card p {
|
|
margin: 5px 0 0;
|
|
color: #64748b;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.assist-actions {
|
|
display: grid;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|