2026-04-03 02:40:34 +00:00
|
|
|
@home-primary: var(--app-primary-color, #6366f1);
|
2026-04-03 02:58:20 +00:00
|
|
|
@home-text-main: #0f172a; // ui-ux-pro-max slate-900
|
|
|
|
|
@home-text-gray: #475569; // ui-ux-pro-max slate-600
|
|
|
|
|
@home-bg: #f8fafc; // ui-ux-pro-max slate-50
|
2026-03-26 03:18:44 +00:00
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
.home-container {
|
2026-03-26 03:18:44 +00:00
|
|
|
position: relative;
|
2026-04-03 02:58:20 +00:00
|
|
|
min-height: calc(100vh - 160px);
|
2026-04-03 02:40:34 +00:00
|
|
|
padding: clamp(24px, 4vw, 40px) clamp(24px, 5vw, 60px);
|
2026-04-03 02:58:20 +00:00
|
|
|
background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
|
2026-04-03 02:40:34 +00:00
|
|
|
color: @home-text-main;
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
2026-04-03 02:58:20 +00:00
|
|
|
overflow-x: hidden; // 允许垂直滚动
|
|
|
|
|
margin: -24px;
|
2026-03-26 03:18:44 +00:00
|
|
|
z-index: 1;
|
2026-04-03 02:58:20 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-03-26 03:18:44 +00:00
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
.home-bg-visual {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
2026-04-03 02:58:20 +00:00
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
2026-04-03 02:40:34 +00:00
|
|
|
pointer-events: none;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-bg-sphere {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
2026-04-03 02:58:20 +00:00
|
|
|
left: clamp(50%, 70vw, 80%);
|
2026-04-03 02:40:34 +00:00
|
|
|
transform: translate(-50%, -50%);
|
2026-04-03 02:58:20 +00:00
|
|
|
width: clamp(500px, 70vw, 900px);
|
|
|
|
|
height: clamp(500px, 70vw, 900px);
|
2026-04-03 02:40:34 +00:00
|
|
|
border-radius: 50%;
|
2026-04-03 02:58:20 +00:00
|
|
|
background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(220, 230, 255, 0.4) 40%, transparent 70%);
|
2026-04-03 02:40:34 +00:00
|
|
|
box-shadow: inset 0 0 100px rgba(255,255,255,0.5);
|
|
|
|
|
filter: blur(20px);
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 30%;
|
|
|
|
|
left: 20%;
|
|
|
|
|
width: 60%;
|
|
|
|
|
height: 40%;
|
|
|
|
|
background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
|
|
|
|
|
filter: blur(40px);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
transform: rotate(-15deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-content-wrapper {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
max-width: 1400px;
|
2026-04-03 02:58:20 +00:00
|
|
|
width: 100%;
|
2026-04-03 02:40:34 +00:00
|
|
|
margin: 0 auto;
|
2026-04-03 02:58:20 +00:00
|
|
|
flex: 1; // 占满剩余高度
|
2026-04-03 02:40:34 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-03-26 03:18:44 +00:00
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
.home-hero {
|
2026-04-03 02:58:20 +00:00
|
|
|
margin-bottom: 56px;
|
|
|
|
|
padding-top: 32px;
|
2026-03-26 03:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
.home-title {
|
|
|
|
|
font-size: clamp(40px, 5vw, 64px) !important;
|
|
|
|
|
font-weight: 800 !important;
|
2026-04-03 02:58:20 +00:00
|
|
|
margin-bottom: 56px !important;
|
2026-04-03 02:40:34 +00:00
|
|
|
color: @home-text-main !important;
|
2026-04-03 02:58:20 +00:00
|
|
|
letter-spacing: -0.02em; // Tighter tracking
|
2026-03-26 03:18:44 +00:00
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
.home-title-accent {
|
2026-04-03 02:58:20 +00:00
|
|
|
background: linear-gradient(90deg, #4f46e5, #7c3aed, #2563eb); // Deeper, more elegant gradient
|
2026-04-03 02:40:34 +00:00
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
background-clip: text;
|
|
|
|
|
}
|
2026-03-26 09:42:29 +00:00
|
|
|
}
|
|
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
.home-quick-actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 64px;
|
|
|
|
|
flex-wrap: wrap;
|
2026-03-26 03:18:44 +00:00
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
gap: 32px;
|
|
|
|
|
}
|
2026-03-26 03:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
.home-action-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
max-width: 240px;
|
2026-03-26 03:18:44 +00:00
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
&:hover {
|
|
|
|
|
.home-action-icon-wrapper {
|
2026-04-03 02:58:20 +00:00
|
|
|
transform: translateY(-6px);
|
|
|
|
|
}
|
|
|
|
|
.home-action-icon {
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 10px 25px -5px rgba(0, 0, 0, 0.1),
|
|
|
|
|
0 8px 10px -6px rgba(0, 0, 0, 0.05),
|
|
|
|
|
inset 0 1px 0 rgba(255,255,255,1);
|
|
|
|
|
}
|
|
|
|
|
.home-action-icon-glow {
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
transform: translateY(14px) scale(0.9);
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
.home-action-title {
|
|
|
|
|
color: @home-primary !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--violet {
|
2026-04-03 02:58:20 +00:00
|
|
|
--action-color: #7c3aed;
|
|
|
|
|
--action-bg: rgba(124, 58, 237, 0.15);
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--cyan {
|
2026-04-03 02:58:20 +00:00
|
|
|
--action-color: #0284c7;
|
|
|
|
|
--action-bg: rgba(2, 132, 199, 0.15);
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-action-icon-wrapper {
|
|
|
|
|
position: relative;
|
2026-04-03 02:58:20 +00:00
|
|
|
width: 64px;
|
|
|
|
|
height: 64px;
|
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); // Springy bounce
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-action-icon {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2026-04-03 02:58:20 +00:00
|
|
|
font-size: 28px;
|
2026-04-03 02:40:34 +00:00
|
|
|
color: var(--action-color);
|
2026-04-03 02:58:20 +00:00
|
|
|
background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
|
2026-04-03 02:40:34 +00:00
|
|
|
border-radius: 20px;
|
2026-04-03 02:58:20 +00:00
|
|
|
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
|
|
|
// Apple-like nested shadow
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 4px 6px -1px rgba(0, 0, 0, 0.05),
|
|
|
|
|
0 2px 4px -2px rgba(0, 0, 0, 0.05),
|
|
|
|
|
inset 0 1px 0 rgba(255,255,255,1);
|
|
|
|
|
transition: box-shadow 0.4s ease;
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-action-icon-glow {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
2026-04-03 02:58:20 +00:00
|
|
|
transform: translate(-50%, -50%) translateY(8px) scale(0.8);
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2026-04-03 02:40:34 +00:00
|
|
|
background: var(--action-bg);
|
|
|
|
|
border-radius: 50%;
|
2026-04-03 02:58:20 +00:00
|
|
|
filter: blur(14px);
|
2026-04-03 02:40:34 +00:00
|
|
|
z-index: 1;
|
2026-04-03 02:58:20 +00:00
|
|
|
opacity: 0.5;
|
|
|
|
|
transition: all 0.4s ease;
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-action-title {
|
|
|
|
|
font-size: 20px !important;
|
|
|
|
|
font-weight: 700 !important;
|
|
|
|
|
margin-bottom: 12px !important;
|
|
|
|
|
color: @home-text-main !important;
|
|
|
|
|
transition: color 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-action-desc {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-action-line {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: @home-text-gray;
|
2026-04-03 02:58:20 +00:00
|
|
|
line-height: 1.6;
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-recent-section {
|
2026-04-03 02:58:20 +00:00
|
|
|
margin-top: auto;
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-section-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
|
font-size: 18px !important;
|
|
|
|
|
font-weight: 600 !important;
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
color: @home-text-gray !important;
|
|
|
|
|
}
|
2026-03-26 03:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
.home-view-all {
|
2026-04-03 02:58:20 +00:00
|
|
|
display: none;
|
2026-03-26 03:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
.home-recent-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
gap: 24px;
|
2026-03-26 03:18:44 +00:00
|
|
|
|
2026-04-03 02:40:34 +00:00
|
|
|
@media (max-width: 1024px) {
|
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
}
|
2026-03-26 03:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-recent-card {
|
2026-04-03 02:40:34 +00:00
|
|
|
display: flex;
|
2026-04-03 02:58:20 +00:00
|
|
|
background: rgba(255, 255, 255, 0.7); // Glassmorphism base
|
|
|
|
|
backdrop-filter: blur(20px);
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
padding: 16px;
|
2026-04-03 02:40:34 +00:00
|
|
|
cursor: pointer;
|
2026-04-03 02:58:20 +00:00
|
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
// Sophisticated inner and outer shadows
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 4px 6px -1px rgba(0, 0, 0, 0.02),
|
|
|
|
|
0 2px 4px -2px rgba(0, 0, 0, 0.02),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.6);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.8);
|
2026-04-03 02:40:34 +00:00
|
|
|
|
|
|
|
|
&:hover {
|
2026-04-03 02:58:20 +00:00
|
|
|
transform: translateY(-4px);
|
|
|
|
|
background: rgba(255, 255, 255, 0.95);
|
|
|
|
|
border-color: rgba(99, 102, 241, 0.15);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 20px 25px -5px rgba(0, 0, 0, 0.05),
|
|
|
|
|
0 8px 10px -6px rgba(0, 0, 0, 0.01),
|
|
|
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.8);
|
2026-04-03 02:40:34 +00:00
|
|
|
|
|
|
|
|
.home-recent-card-action {
|
|
|
|
|
color: @home-primary;
|
2026-04-03 02:58:20 +00:00
|
|
|
transform: translateX(0);
|
|
|
|
|
opacity: 1;
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-recent-card-thumbnail {
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 72px;
|
|
|
|
|
background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
|
2026-04-03 02:58:20 +00:00
|
|
|
border-radius: 10px;
|
2026-04-03 02:40:34 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
flex-shrink: 0;
|
2026-04-03 02:58:20 +00:00
|
|
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
2026-04-03 02:40:34 +00:00
|
|
|
|
|
|
|
|
.home-recent-card-play-icon {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
color: #fff;
|
2026-04-03 02:58:20 +00:00
|
|
|
opacity: 0.9;
|
|
|
|
|
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-recent-card-content {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex: 1;
|
2026-04-03 02:58:20 +00:00
|
|
|
min-width: 0;
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-recent-card-title {
|
|
|
|
|
font-size: 15px !important;
|
|
|
|
|
font-weight: 600 !important;
|
2026-04-03 02:58:20 +00:00
|
|
|
margin-bottom: 8px !important;
|
2026-04-03 02:40:34 +00:00
|
|
|
color: @home-text-main !important;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-recent-card-footer {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2026-04-03 02:58:20 +00:00
|
|
|
font-size: 13px;
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-recent-card-duration {
|
|
|
|
|
color: @home-text-gray;
|
2026-04-03 02:58:20 +00:00
|
|
|
font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
|
|
|
|
|
font-size: 12px;
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-recent-card-action {
|
2026-04-03 02:58:20 +00:00
|
|
|
color: transparent;
|
2026-04-03 02:40:34 +00:00
|
|
|
font-weight: 500;
|
2026-04-03 02:58:20 +00:00
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
transform: translateX(-4px);
|
|
|
|
|
opacity: 0;
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-recent-skeleton {
|
|
|
|
|
background: #ffffff;
|
2026-04-03 02:58:20 +00:00
|
|
|
border-radius: 16px;
|
2026-04-03 02:40:34 +00:00
|
|
|
padding: 16px;
|
|
|
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-empty-state {
|
|
|
|
|
padding: 40px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-container > * {
|
2026-04-03 02:58:20 +00:00
|
|
|
animation: homeFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
|
2026-04-03 02:40:34 +00:00
|
|
|
}
|
|
|
|
|
.home-bg-visual { animation-delay: 0s; }
|
|
|
|
|
.home-content-wrapper { animation-delay: 0.1s; }
|
|
|
|
|
|
|
|
|
|
@keyframes homeFadeUp {
|
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
2026-04-03 02:58:20 +00:00
|
|
|
transform: translateY(20px);
|
2026-03-26 09:42:29 +00:00
|
|
|
}
|
2026-04-03 02:40:34 +00:00
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
2026-03-26 09:42:29 +00:00
|
|
|
}
|
|
|
|
|
}
|