123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- /**
- * 这里是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 .address-box {
- box-sizing: border-box;
- min-height: 171rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- background-image: url(../../static/images/address_bg.png);
- background-repeat: no-repeat;
- background-size: 100% 30rpx;
- background-position: left bottom;
- padding: 38rpx 30rpx 36rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .inner-box .address-box .left {
- width: 92%;
- }
- .inner-box .address-box .left .name-box {
- display: flex;
- align-items: center;
- }
- .inner-box .address-box .left .name-box .text {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #111111;
- line-height: 1;
- }
- .inner-box .address-box .left .name-box .text.name {
- margin-right: 30rpx;
- }
- .inner-box .address-box .left .address {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- line-height: 42rpx;
- text-align: left;
- margin-top: 23rpx;
- }
- .inner-box .address-box .arrow-box {
- width: 12rpx;
- height: 23rpx;
- display: flex;
- align-items: cenetr;
- justify-content: cenetr;
- }
- .inner-box .address-box .arrow-box image {
- width: 100%;
- height: 100%;
- }
- .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, #66b2ef 0%, #0bb3f2 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;
- margin-top: 20rpx;
- 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;
- padding: 16rpx 30rpx 16rpx 60rpx;
- 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: 36rpx;
- }
- .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: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FF6633;
- line-height: 1.2;
- margin-right: 10rpx;
- }
- .btn-foot .right .total .price .num {
- font-size: 50rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FF6633;
- line-height: 1;
- }
- .btn-foot .right .btn {
- width: 200rpx;
- height: 88rpx;
- line-height: 88rpx;
- text-align: center;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- background: #0bb3f2;
- border-radius: 44rpx;
- }
- .coupon.data-v-365fa217 {
- height: 100%;
- }
- /*优惠券列表公共*/
- .coupon-list .item.data-v-365fa217 {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 170rpx;
- margin-bottom: 16rpx;
- }
- .coupon-list .item .money.data-v-365fa217 {
- 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-365fa217 {
- position: absolute;
- width: 240rpx;
- height: 100%;
- color: #fff;
- }
- .coupon-list .item .money .num.data-v-365fa217 {
- font-size: 60rpx;
- }
- .coupon-list .item .money .pic-num.data-v-365fa217 {
- font-size: 20rpx;
- z-index: 99;
- }
- .coupon-list .item .text.data-v-365fa217 {
- width: 450rpx;
- padding: 0 17rpx 0 24rpx;
- background-color: #fff;
- box-sizing: border-box;
- }
- .coupon-list .item .text .condition.data-v-365fa217 {
- font-size: 30rpx;
- color: #282828;
- height: 93rpx;
- line-height: 93rpx;
- border-bottom: 1px solid #f0f0f0;
- }
- .coupon-list .item .text .data.data-v-365fa217 {
- font-size: 20rpx;
- color: #999;
- height: 76rpx;
- }
- .coupon-list .item .text .data .bnt.data-v-365fa217 {
- 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-365fa217 {
- background-color: #ccc;
- }
|