首页优化

This commit is contained in:
liu
2026-08-14 12:34:25 +08:00
parent b288502e0e
commit d1d8d7ab52
15 changed files with 950 additions and 260 deletions
+152 -19
View File
@@ -4,17 +4,62 @@
padding-bottom: calc(140rpx + env(safe-area-inset-bottom));
box-sizing: border-box;
// ===== 顶部搜索 =====
.home-search {
background: linear-gradient(135deg, #ee0a24, #ff4d4f);
padding: 16rpx 24rpx;
// ===== 自定义顶部导航栏 =====
.home-header {
background: linear-gradient(160deg, #d60410 0%, #ee0a24 55%, #ff4d4f 100%);
// 底部留白供轮播图上移叠放
padding-bottom: 88rpx;
&__bar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16rpx 32rpx 8rpx;
}
&__brand {
display: flex;
align-items: baseline;
}
&__title {
color: #ffffff;
font-size: 44rpx;
font-weight: 700;
letter-spacing: 4rpx;
}
&__slogan {
margin-left: 16rpx;
color: rgba(255, 255, 255, 0.75);
font-size: 22rpx;
letter-spacing: 2rpx;
}
&__notice {
width: 64rpx;
height: 64rpx;
border-radius: 50%;
background: rgba(255, 255, 255, 0.18);
display: flex;
align-items: center;
justify-content: center;
}
&__search {
padding: 8rpx 16rpx 0;
}
}
// ===== 轮播图 =====
.home-banner {
margin: 20rpx 24rpx 0;
// 上移叠在红色导航栏上,形成视觉连贯
margin: -72rpx 24rpx 0;
border-radius: 20rpx;
overflow: hidden;
box-shadow: 0 8rpx 24rpx rgba(238, 10, 36, 0.15);
position: relative;
z-index: 2;
&__swiper {
border-radius: 20rpx;
@@ -22,52 +67,127 @@
&__image {
width: 100%;
height: 320rpx;
height: 300rpx;
display: block;
}
&__placeholder {
width: 100%;
height: 320rpx;
background: linear-gradient(135deg, #ff9a9e, #ff4d4f);
height: 300rpx;
background: linear-gradient(135deg, #ff8a5c, #ff4d4f);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
&__placeholder-text {
&__placeholder-title {
color: #fff;
font-size: 40rpx;
font-weight: 600;
font-size: 44rpx;
font-weight: 700;
letter-spacing: 8rpx;
}
&__placeholder-sub {
margin-top: 16rpx;
color: rgba(255, 255, 255, 0.85);
font-size: 24rpx;
letter-spacing: 2rpx;
}
}
// ===== 导航菜单 =====
// ===== 宫格导航 =====
.home-menu {
margin: 20rpx 24rpx 0;
background: #fff;
border-radius: 20rpx;
padding: 20rpx 0 8rpx;
padding: 28rpx 0 16rpx;
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.04);
}
.menu-icon {
width: 84rpx;
height: 84rpx;
border-radius: 24rpx;
width: 88rpx;
height: 88rpx;
border-radius: 28rpx;
display: flex;
align-items: center;
justify-content: center;
&__image {
width: 88rpx;
height: 88rpx;
display: block;
}
&__text {
color: #fff;
font-size: 36rpx;
font-size: 38rpx;
font-weight: 600;
}
}
// ===== 促销推荐卡片 =====
.home-promo {
margin: 20rpx 24rpx 0;
}
.promo-card {
position: relative;
height: 180rpx;
border-radius: 20rpx;
overflow: hidden;
margin-bottom: 16rpx;
&:last-child {
margin-bottom: 0;
}
&__bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
&__mask {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, rgba(160, 4, 16, 0.82) 0%, rgba(238, 10, 36, 0.45) 55%, rgba(238, 10, 36, 0) 100%);
}
&__content {
position: absolute;
left: 32rpx;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
z-index: 2;
}
&__title {
color: #ffffff;
font-size: 38rpx;
font-weight: 700;
letter-spacing: 2rpx;
text-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.25);
}
&__sub {
margin-top: 10rpx;
color: rgba(255, 255, 255, 0.9);
font-size: 24rpx;
letter-spacing: 1rpx;
}
}
// ===== 推荐商品 =====
.home-recommend {
margin: 20rpx 24rpx 0;
margin: 28rpx 24rpx 0;
&__header {
display: flex;
@@ -76,6 +196,19 @@
padding: 8rpx 8rpx 20rpx;
}
&__title-wrap {
display: flex;
align-items: center;
}
&__title-bar {
width: 8rpx;
height: 30rpx;
border-radius: 4rpx;
background: linear-gradient(180deg, #ee0a24, #ff6034);
margin-right: 14rpx;
}
&__title {
font-size: 32rpx;
font-weight: 600;
@@ -178,7 +311,7 @@
width: 52rpx;
height: 52rpx;
border-radius: 50%;
background: #ee0a24;
background: linear-gradient(135deg, #ee0a24, #ff6034);
display: flex;
align-items: center;
justify-content: center;