style(components): 优惠券相关组件样式调整

- 调整了 CouponCard、CouponList 和 orderConfirm 组件中的字体大小、间距等样式
- 优化了标题、金额、条件等元素的视觉效果
- 统一了按钮和状态文本的样式
-调整了部分布局和对齐方式
This commit is contained in:
2025-08-11 18:25:26 +08:00
parent 6f76be4da4
commit 87b83b4d2c
4 changed files with 17 additions and 17 deletions

View File

@@ -89,7 +89,7 @@
border-bottom: 1px solid #f0f0f0;
&-title {
font-size: 14px;
font-size: 28rpx;
color: #666;
margin-bottom: 8px;
}
@@ -98,10 +98,10 @@
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 12px;
padding: 8rpx 12rpx;
background: #fff;
border-radius: 6px;
font-size: 14px;
border-radius: 6rpx;
font-size: 28rpx;
}
}
}

View File

@@ -458,7 +458,7 @@ const OrderConfirm = () => {
<View className="coupon-popup__content">
{selectedCoupon && (
<View className="coupon-popup__current">
<Text className="coupon-popup__current-title">使</Text>
<Text className="coupon-popup__current-title font-medium">使</Text>
<View className="coupon-popup__current-item">
<Text>{selectedCoupon.title} -{selectedCoupon.amount}</Text>
<Button size="small" onClick={handleCouponCancel}>使</Button>