调整购物车样式

This commit is contained in:
唐明明
2023-10-10 10:59:56 +08:00
parent 51a04d53ce
commit 4faf065c96
16 changed files with 269 additions and 75 deletions

17
pages/store/store.wxss Normal file
View File

@@ -0,0 +1,17 @@
/* 内容 */
.content{ background: #f7f8f9; min-height: 100vh; }
/* 所在城市 */
.store-city{ background: white; padding: 0 30rpx; line-height: 90rpx; font-size: 30rpx; }
/* 选择自提门店 */
.store-title{ background: #f7f8f9; padding: 20rpx 30rpx; font-size: 28rpx; color: gray; }
/* 自提点 */
.store-list{ padding: 20rpx 0; background-color: white; }
.store-item{ padding: 20rpx 30rpx; position: relative; padding-right: 200rpx; }
.store-item::after{ position: absolute; right: 0; bottom: 0; left: 30rpx; height: 1rpx; background: #ddd; content: " "; }
.store-item:last-child::after{ display: none; }
.store-item-title{ font-weight: bold; line-height: 50rpx; font-size: 32rpx; }
.store-item-address{ font-size: 28rpx; color: gray; line-height: 40rpx; }
.store-item-km{ position: absolute; right: 30rpx; font-size: 26rpx; color: gray; top: 50%; line-height: 40rpx; margin-top: -20rpx; }