- 建立 Lucide 子集 iconfont(49 字形),全站 emoji 替换为 fc-icon 组件 - 重塑 Design Token(冷中性近黑底 + Volt 荧光绿 #B6F24E),消除硬编码颜色 - 首页登录后个性化:我的计划 / 我的收藏 / 今日推荐(纯前端复用现有 API) - 后端 DEFAULT_EMOJI→Lucide 名,PALETTE 对齐 Kinetic Dark 语义色板 - 修复 person-standing 缺失字形;14 个官方组合 seed emoji 全部映射到现有字形
33 lines
824 B
Plaintext
33 lines
824 B
Plaintext
.bn {
|
|
position: fixed;
|
|
left: 0; right: 0; bottom: 0;
|
|
display: flex;
|
|
background: rgba(20,26,22,0.92);
|
|
backdrop-filter: blur(12px);
|
|
border-top: 1rpx solid var(--line);
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
z-index: 60;
|
|
}
|
|
.bn__item {
|
|
position: relative;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 16rpx 0 14rpx;
|
|
color: var(--text-3);
|
|
}
|
|
.bn__item--active::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0; left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 48rpx; height: 4rpx;
|
|
border-radius: 999rpx;
|
|
background: linear-gradient(90deg, var(--gold), var(--gold-2));
|
|
}
|
|
.bn__item--active { color: var(--gold); }
|
|
.bn__emoji { line-height: 1; }
|
|
.bn__label { font-size: 22rpx; margin-top: 6rpx; }
|
|
.bn__item--active .bn__label { color: var(--gold-2); }
|