@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .inner-box { padding: 20rpx 20rpx 140rpx; } .inner-box .goods-list { margin-top: 20rpx; padding: 0 30rpx; background-color: #FFFFFF; border-radius: 16rpx; } .inner-box .goods-list .item { padding: 30rpx 0; border-bottom: 1px solid #EDEEEF; display: flex; align-items: center; } .inner-box .goods-list .item .img-box { width: 160rpx; height: 160rpx; margin-right: 30rpx; } .inner-box .goods-list .item .img-box image { width: 100%; height: 100%; } .inner-box .goods-list .item .info-box { width: calc(100% - 190rpx); height: 160rpx; display: flex; flex-direction: column; justify-content: space-between; } .inner-box .goods-list .item .info-box .name-box { font-size: 28rpx; font-family: PingFang SC; font-weight: 500; color: #111111; line-height: 40rpx; } .inner-box .goods-list .item .info-box .name-box .tag { display: inline-block; padding: 0 6rpx; height: 30rpx; background: linear-gradient(90deg, #2BC7B9 0%, #2BC7A4 100%); border-radius: 4rpx; margin-right: 10rpx; font-size: 22rpx; font-family: PingFang SC; font-weight: bold; color: #FFFFFF; line-height: 30rpx; float: left; margin-top: 7rpx; } .inner-box .goods-list .item .info-box .spec { margin-top: 10rpx; font-size: 24rpx; font-family: PingFang SC; font-weight: 500; color: #999999; line-height: 1; } .inner-box .goods-list .item .info-box .price-num { display: flex; align-items: center; justify-content: space-between; } .inner-box .goods-list .item .info-box .price-num .price { display: flex; align-items: flex-end; } .inner-box .goods-list .item .info-box .price-num .price .unit { font-size: 24rpx; font-family: PingFang SC; font-weight: 500; color: #111111; line-height: 1.2; margin-right: 4rpx; } .inner-box .goods-list .item .info-box .price-num .price .num { font-size: 32rpx; font-family: PingFang SC; font-weight: 500; color: #111111; line-height: 1; } .inner-box .goods-list .item .info-box .price-num .num { font-size: 24rpx; font-family: PingFang SC; font-weight: 500; color: #999999; line-height: 1; } .inner-box .goods-list .sub-total { height: 88rpx; display: flex; align-items: center; justify-content: flex-end; } .inner-box .goods-list .sub-total .label { font-size: 24rpx; font-family: PingFang SC; font-weight: 500; color: #999999; } .inner-box .goods-list .sub-total .price { display: flex; align-items: flex-end; } .inner-box .goods-list .sub-total .price .unit { font-size: 24rpx; font-family: PingFang SC; font-weight: 500; color: #FF6633; line-height: 1.2; margin-right: 4rpx; } .inner-box .goods-list .sub-total .price .num { font-size: 32rpx; font-family: PingFang SC; font-weight: bold; color: #FF6633; line-height: 1; } .inner-box .points { height: 88rpx; padding: 0 30rpx; background: #FFFFFF; border-radius: 16rpx; display: flex; align-items: center; justify-content: space-between; } .inner-box .points .left { display: flex; align-items: center; } .inner-box .points .left image { width: 28rpx; height: 28rpx; margin-right: 20rpx; } .inner-box .points .left .text { font-size: 28rpx; font-family: PingFang SC; font-weight: 500; color: #666666; } .inner-box .points .right { display: flex; align-items: center; } .inner-box .points .right .text { font-size: 28rpx; font-family: PingFang SC; font-weight: 500; color: #111111; } .inner-box .points .right image { margin-left: 15rpx; width: 14rpx; height: 24rpx; } .inner-box .remarks { height: 88rpx; padding: 0 30rpx; background: #FFFFFF; border-radius: 16rpx; margin-top: 20rpx; display: flex; align-items: center; } .inner-box .remarks input { width: 100%; font-size: 28rpx; font-family: PingFang SC; font-weight: 500; color: #000000; } .inner-box .remarks .input { font-size: 28rpx; font-family: PingFang SC; font-weight: 500; color: #999999; } .btn-foot { box-sizing: border-box; width: 100%; height: 121rpx; background: #FFFFFF; display: flex; align-items: center; justify-content: flex-end; position: fixed; left: 0; bottom: 0; z-index: 99; } .btn-foot .right { display: flex; align-items: center; } .btn-foot .right .total { display: flex; align-items: flex-end; margin-right: 15rpx; } .btn-foot .right .total .label { font-size: 26rpx; font-family: PingFang SC; font-weight: 500; color: #999999; line-height: 1.5; } .btn-foot .right .total .price { display: flex; align-items: flex-end; } .btn-foot .right .total .price .unit { font-size: 26rpx; font-family: PingFang SC; font-weight: bold; color: #FF6633; line-height: 1.2; margin-right: 10rpx; } .btn-foot .right .total .price .num { font-size: 32rpx; font-family: PingFang SC; font-weight: bold; color: #FF6633; line-height: 1; } .btn-foot .right .btn { margin-right: 15rpx; padding: 20rpx 30rpx; text-align: center; font-size: 30rpx; font-family: PingFang SC; font-weight: bold; color: #FFFFFF; background: #2BC7B9; border-radius: 44rpx; } .coupon.data-v-72138f4a { height: 100%; } /*优惠券列表公共*/ .coupon-list .item.data-v-72138f4a { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; height: 170rpx; margin-bottom: 16rpx; } .coupon-list .item .money.data-v-72138f4a { background-size: 100% 100%; width: 240rpx; height: 100%; color: #fff; font-size: 36rpx; font-weight: bold; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; } .coupon-list .item .money .img.data-v-72138f4a { position: absolute; width: 240rpx; height: 100%; color: #fff; } .coupon-list .item .money .num.data-v-72138f4a { font-size: 60rpx; } .coupon-list .item .money .pic-num.data-v-72138f4a { font-size: 20rpx; z-index: 99; } .coupon-list .item .text.data-v-72138f4a { width: 450rpx; padding: 0 17rpx 0 24rpx; background-color: #fff; box-sizing: border-box; } .coupon-list .item .text .condition.data-v-72138f4a { font-size: 30rpx; color: #282828; height: 93rpx; line-height: 93rpx; border-bottom: 1px solid #f0f0f0; } .coupon-list .item .text .data.data-v-72138f4a { font-size: 20rpx; color: #999; height: 76rpx; } .coupon-list .item .text .data .bnt.data-v-72138f4a { width: 136rpx; height: 44rpx; border-radius: 22rpx; font-size: 22rpx; color: #fff; text-align: center; line-height: 44rpx; background-color: red; } .coupon-list .item .text .data .bnt.gray.data-v-72138f4a { background-color: #ccc; } .message-box.data-v-72138f4a { box-sizing: border-box; width: 693rpx; height: 84rpx; background: #F3FFFD; border: 1px solid #C7E9E5; box-shadow: 0px 4rpx 12rpx 0px rgba(90, 203, 138, 0.16); border-radius: 16rpx; position: fixed; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); bottom: 128rpx; z-index: 99; display: flex; align-items: center; justify-content: space-between; padding: 0 20rpx 0 30rpx; } .message-box .left.data-v-72138f4a { width: 80%; display: flex; align-items: center; } .message-box .left image.data-v-72138f4a { width: 24rpx; height: 24rpx; margin-right: 18rpx; } .message-box .left .text.data-v-72138f4a { width: 90%; font-size: 28rpx; font-family: PingFang SC; font-weight: 500; color: #2BC7B9; } .message-box .btn.data-v-72138f4a { width: 100rpx; height: 48rpx; line-height: 48rpx; text-align: center; font-size: 24rpx; font-family: PingFang SC; font-weight: 500; color: #FFFFFF; border: 1px solid #D2E6FF; background: linear-gradient(135deg, #2BC7B9 0%, #60CDC3 100%); border-radius: 24rpx; margin-left: 30rpx; }