feat(miniprogram): 温润东方风全面 UI 重设计

73 文件变更,覆盖全部 40 个页面 SCSS + TabBar 图标 + 组件样式。
统一赤陶主色 #C4623A + 暖米背景 + 衬线标题字体 + 12px 圆角体系。
This commit is contained in:
iven
2026-04-28 00:19:52 +08:00
parent fbb28e655d
commit 50eae8b809
97 changed files with 7633 additions and 2373 deletions

View File

@@ -1,16 +1,16 @@
@import '../../styles/variables.scss';
@import '../../styles/mixins.scss';
.mall-page {
min-height: 100vh;
background: $bg;
padding-bottom: 40px;
padding-bottom: calc(120px + env(safe-area-inset-bottom));
}
/* ===== 积分余额卡片 ===== */
/* ─── 积分余额卡片 ─── */
.mall-header {
background: linear-gradient(135deg, $pri 0%, $pri-d 100%);
padding: 32px;
padding-top: 48px;
padding: 48px 32px 36px;
}
.points-card {
@@ -20,7 +20,7 @@
padding: 32px;
}
.points-card-top {
.points-top {
display: flex;
justify-content: space-between;
align-items: center;
@@ -36,9 +36,13 @@
background: rgba(255, 255, 255, 0.25);
border: 1px solid rgba(255, 255, 255, 0.4);
padding: 10px 28px;
border-radius: 32px;
border-radius: $r-pill;
transition: all 0.2s;
&:active {
opacity: 0.8;
}
&.checked {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.2);
@@ -47,8 +51,8 @@
.checkin-btn-text {
font-size: 24px;
color: white;
font-weight: bold;
color: #fff;
font-weight: 600;
}
.checkin-btn.checked .checkin-btn-text {
@@ -56,12 +60,14 @@
}
.points-balance {
@include serif-number;
font-size: 72px;
font-weight: bold;
color: white;
color: #fff;
display: block;
margin-bottom: 8px;
letter-spacing: 2px;
line-height: 1;
}
.points-streak {
@@ -70,12 +76,10 @@
display: block;
}
/* ===== 商品类型切换 ===== */
/* ─── 商品类型切换 ─── */
.type-tabs {
display: flex;
gap: 0;
padding: 20px 24px 0;
background: transparent;
}
.type-tab {
@@ -103,15 +107,15 @@
&.active {
color: $pri;
font-weight: bold;
font-weight: 600;
}
}
/* ===== 商品网格 ===== */
/* ─── 商品网格 ─── */
.product-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
gap: 16px;
padding: 20px 24px;
}
@@ -119,19 +123,32 @@
background: $card;
border-radius: $r;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
box-shadow: $shadow-sm;
&:active {
opacity: 0.7;
}
}
.product-image {
width: 100%;
height: 240px;
display: flex;
align-items: center;
justify-content: center;
height: 200px;
@include flex-center;
&.type-physical { background: $pri-l; }
&.type-service { background: $acc-l; }
&.type-privilege { background: $wrn-l; }
}
.product-image-icon {
font-size: 64px;
.product-image-char {
font-family: 'Georgia', 'Times New Roman', serif;
font-size: 56px;
font-weight: bold;
color: $pri;
line-height: 1;
.type-service & { color: $acc; }
.type-privilege & { color: $wrn; }
}
.product-info {
@@ -140,7 +157,7 @@
.product-name {
font-size: 26px;
font-weight: bold;
font-weight: 600;
color: $tx;
display: block;
margin-bottom: 12px;
@@ -161,11 +178,15 @@
gap: 4px;
}
.product-points-icon {
.product-points-char {
font-family: 'Georgia', 'Times New Roman', serif;
font-size: 22px;
font-weight: bold;
color: $wrn;
}
.product-points-value {
@include serif-number;
font-size: 28px;
font-weight: bold;
color: $wrn;
@@ -174,15 +195,69 @@
.product-stock {
font-size: 20px;
padding: 2px 10px;
border-radius: 8px;
border-radius: $r-sm;
&.out {
color: $tx3;
background: $bd-l;
@include tag($bd-l, $tx3);
}
&.low {
color: $dan;
background: $dan-l;
@include tag($dan-l, $dan);
}
}
/* ─── 空状态 ─── */
.mall-empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 160px 40px;
}
.empty-icon {
width: 120px;
height: 120px;
border-radius: 50%;
background: $pri-l;
@include flex-center;
margin-bottom: 32px;
}
.empty-char {
font-family: 'Georgia', 'Times New Roman', serif;
font-size: 52px;
font-weight: bold;
color: $pri;
line-height: 1;
}
.empty-title {
font-size: 32px;
font-weight: 600;
color: $tx;
margin-bottom: 12px;
}
.empty-hint {
font-size: 26px;
color: $tx3;
text-align: center;
margin-bottom: 24px;
}
.empty-action {
background: $pri;
border-radius: $r;
padding: 16px 48px;
&:active {
opacity: 0.85;
}
}
.empty-action-text {
font-size: 28px;
color: #fff;
font-weight: 600;
}