Files
ChowBox/miniapp/pages/index/index.wxss

86 lines
1.6 KiB
Plaintext
Raw Permalink Normal View History

/*
* 首页 · 盲盒大厅
* 空间节奏32 → 48 → 48 → 64
*/
.home {
padding: var(--space-lg) var(--space-lg);
min-height: 100vh;
}
/* ── 顶部 ── */
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--space-xl);
}
.greeting {
font-size: var(--text-body);
font-weight: 500;
color: var(--color-text-secondary);
}
.location-badge {
display: flex;
align-items: center;
font-size: var(--text-body-sm);
color: var(--color-primary);
padding: var(--space-xs) var(--space-sm);
background: var(--color-primary-pale);
border-radius: var(--radius-full);
}
.location-badge:active {
opacity: 0.7;
}
/* ── 主视觉 ── */
.hero {
text-align: center;
margin-bottom: var(--space-xl);
}
.hero-emoji {
display: inline-block;
font-size: 88rpx;
margin-bottom: var(--space-sm);
animation: hero-float 3s ease-in-out infinite;
}
@keyframes hero-float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10rpx); }
}
.hero-title {
font-size: 44rpx;
font-weight: 700;
color: var(--color-text);
letter-spacing: 2rpx;
margin-bottom: var(--space-xs);
}
.hero-subtitle {
font-size: var(--text-subtitle);
color: var(--color-primary);
font-weight: 500;
}
/* ── 卡片列表 ── */
.modes {
display: flex;
flex-direction: column;
gap: var(--space-md);
margin-bottom: var(--space-xl);
}
/* ── 每日一言 ── */
.daily-tip {
text-align: center;
font-size: var(--text-body-sm);
color: var(--color-text-muted);
padding: var(--space-lg) 0;
}