feat: 整体页面优化,删除无用svg

This commit is contained in:
Blizzard
2026-02-14 08:32:47 +08:00
parent daea00ca60
commit cbbe82ef63
59 changed files with 1265 additions and 342 deletions
+98
View File
@@ -0,0 +1,98 @@
.favorites-page {
background: #F4F6F0;
height: 100vh;
padding: 24rpx;
box-sizing: border-box;
display: flex;
flex-direction: column;
overflow: hidden;
}
.category-filter {
display: flex;
gap: 16rpx;
margin-bottom: 24rpx;
}
.filter-chip {
padding: 12rpx 32rpx;
background: #fff;
border: 2rpx solid transparent;
border-radius: 40rpx;
font-size: 26rpx;
color: #6B7280;
transition: all 0.2s;
font-weight: 500;
}
.filter-chip.active {
background: #333;
color: #fff;
font-weight: 600;
box-shadow: 0 4rpx 12rpx rgba(0,0,0,0.1);
}
.fav-scroll {
flex: 1;
height: 0;
width: 100%;
}
.fav-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20rpx;
}
.fav-card {
background: white;
border-radius: 20rpx;
overflow: hidden;
box-shadow: 0 4rpx 12rpx rgba(0,0,0,0.03);
display: flex;
flex-direction: column;
}
.fav-img {
background: #f0f0f0;
}
.fav-info {
padding: 16rpx 20rpx;
}
.fav-name {
display: block;
font-size: 28rpx;
font-weight: 600;
color: #1F2937;
margin-bottom: 8rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.fav-meta-row {
display: flex;
align-items: center;
gap: 8rpx;
}
.fav-type {
font-size: 22rpx;
color: #9CA3AF;
}
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 120rpx 0;
}
.empty-text {
font-size: 28rpx;
color: #9CA3AF;
margin-top: 16rpx;
}