|
|
|
|
@charset "UTF-8";
|
|
|
|
|
/**
|
|
|
|
|
* 这里是uni-app内置的常用样式变量
|
|
|
|
|
*
|
|
|
|
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
|
|
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
/**
|
|
|
|
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
|
|
|
*
|
|
|
|
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
|
|
|
*/
|
|
|
|
|
/* 颜色变量 */
|
|
|
|
|
/* 行为相关颜色 */
|
|
|
|
|
/* 文字基本颜色 */
|
|
|
|
|
/* 背景颜色 */
|
|
|
|
|
/* 边框颜色 */
|
|
|
|
|
/* 尺寸变量 */
|
|
|
|
|
/* 文字尺寸 */
|
|
|
|
|
/* 图片尺寸 */
|
|
|
|
|
/* Border Radius */
|
|
|
|
|
/* 水平间距 */
|
|
|
|
|
/* 垂直间距 */
|
|
|
|
|
/* 透明度 */
|
|
|
|
|
/* 文章场景相关 */
|
|
|
|
|
.complete-body {
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
min-height: 70vh;
|
|
|
|
|
background: #F5F5F5;
|
|
|
|
|
padding-bottom: 200rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .tips {
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
background: #FFFAEE;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding-top: 15rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .item {
|
|
|
|
|
width: 678rpx;
|
|
|
|
|
height: 180rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
margin: 24rpx 36rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 24rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .item .item-left {
|
|
|
|
|
width: 120rpx;
|
|
|
|
|
height: 120rpx;
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .item .item-left > image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .item .item-right .item-num {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: rgba(0, 0, 0, 0.6);
|
|
|
|
|
line-height: 39rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .item .item-right .item-con {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #000000;
|
|
|
|
|
line-height: 45rpx;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .item .item-right .item-price {
|
|
|
|
|
width: 490rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: rgba(0, 0, 0, 0.3);
|
|
|
|
|
line-height: 34rpx;
|
|
|
|
|
text-align: right;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .item .item-right .item-price > text {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 40rpx;
|
|
|
|
|
color: #000000;
|
|
|
|
|
line-height: 56rpx;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .item .item-right .item-price > text::before {
|
|
|
|
|
content: '¥';
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
margin-right: 6rpx;
|
|
|
|
|
margin-left: 8rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .item .item-right > image {
|
|
|
|
|
width: 32rpx;
|
|
|
|
|
height: 32rpx;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 24rpx;
|
|
|
|
|
top: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .add-btn {
|
|
|
|
|
margin-left: 36rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .add-btn .btn-bgColor {
|
|
|
|
|
width: 678rpx;
|
|
|
|
|
height: 92rpx;
|
|
|
|
|
border-radius: 24rpx;
|
|
|
|
|
padding: 2rpx;
|
|
|
|
|
background-image: linear-gradient(91deg, #43a1ff, #2f80f9);
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 5;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .add-btn .btn-bgColor > image {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 36rpx;
|
|
|
|
|
height: 36rpx;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
left: 260rpx;
|
|
|
|
|
top: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-body .add-btn .btn-bgColor > button {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
border-radius: 24rpx;
|
|
|
|
|
background: #F5F5F5;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #2388FF;
|
|
|
|
|
line-height: 39rpx;
|
|
|
|
|
padding-left: 60rpx;
|
|
|
|
|
padding-top: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-bottom {
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 184rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
padding: 24rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
.complete-bottom .bottom-left {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: rgba(0, 0, 0, 0.3);
|
|
|
|
|
text-align-last: justify;
|
|
|
|
|
}
|
|
|
|
|
.complete-bottom .bottom-left > view {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
.complete-bottom .bottom-left > view > text {
|
|
|
|
|
color: #000000;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-bottom .bottom-price {
|
|
|
|
|
font-family: PingFang SC, PingFang SC;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 48rpx;
|
|
|
|
|
color: #FF2D46;
|
|
|
|
|
line-height: 67rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-bottom .bottom-price::before {
|
|
|
|
|
content: '¥';
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
margin-right: 6rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-bottom .bottom-btn {
|
|
|
|
|
width: 346rpx;
|
|
|
|
|
height: 92rpx;
|
|
|
|
|
background: linear-gradient(91deg, #43A1FF 0%, #2F80F9 100%), #FFFFFF;
|
|
|
|
|
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
line-height: 39rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding-top: 26rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup {
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height: 89vh;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
padding: 32rpx 36rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup > image {
|
|
|
|
|
width: 48rpx;
|
|
|
|
|
height: 48rpx;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 36rpx;
|
|
|
|
|
top: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-title {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #000000;
|
|
|
|
|
line-height: 45rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-tips {
|
|
|
|
|
width: 678rpx;
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
background: #FFFAEE;
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
padding: 14rpx 24rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .popup-item-title {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #000000;
|
|
|
|
|
line-height: 39rpx;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
margin-top: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .popup-item-title.img {
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
margin-bottom: 12rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .popup-item-box {
|
|
|
|
|
width: 678rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .box-con {
|
|
|
|
|
width: 332rpx;
|
|
|
|
|
height: 120rpx;
|
|
|
|
|
background: #F8F8F8;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
padding-top: 20rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .box-con .box-left {
|
|
|
|
|
width: 110rpx;
|
|
|
|
|
height: 80rpx;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .box-con .box-left > image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .box-con .box-right {
|
|
|
|
|
width: 184rpx;
|
|
|
|
|
height: 70rpx;
|
|
|
|
|
margin-top: 6rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .box-con .box-right .name {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .box-con .box-right .type {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 22rpx;
|
|
|
|
|
color: rgba(34, 34, 34, 0.6);
|
|
|
|
|
line-height: 31rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .box-con.act {
|
|
|
|
|
z-index: 15;
|
|
|
|
|
background: rgba(35, 136, 255, 0.1);
|
|
|
|
|
border: 2rpx solid #2388FF;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .type-item {
|
|
|
|
|
width: 332rpx;
|
|
|
|
|
height: 72rpx;
|
|
|
|
|
background: #F8F8F8;
|
|
|
|
|
border-radius: 8rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #000000;
|
|
|
|
|
line-height: 39rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding-top: 16rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
margin-bottom: 14rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .type-item.act {
|
|
|
|
|
z-index: 15;
|
|
|
|
|
background: rgba(35, 136, 255, 0.1);
|
|
|
|
|
border: 2rpx solid #2388FF;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .item-addition {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #999999;
|
|
|
|
|
line-height: 34rpx;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .image-box {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: left;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .image-box .image-item {
|
|
|
|
|
width: 226rpx;
|
|
|
|
|
height: 226rpx;
|
|
|
|
|
background: #F3F4F5;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-right: 12rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .image-box .image-item > image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
z-index: 5;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .image-box .image-item .image-tip {
|
|
|
|
|
width: 100rpx;
|
|
|
|
|
height: 38rpx;
|
|
|
|
|
background: rgba(0, 0, 0, 0.6);
|
|
|
|
|
border-radius: 0rpx 0rpx 8rpx 0rpx;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 22rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
line-height: 31rpx;
|
|
|
|
|
text-align: left;
|
|
|
|
|
padding: 4rpx 12rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .image-box .image-item .image-tip .tip-icon {
|
|
|
|
|
width: 24rpx;
|
|
|
|
|
height: 24rpx;
|
|
|
|
|
margin-right: 8rpx;
|
|
|
|
|
margin-top: 4rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .image-box .image-item .image-bottom {
|
|
|
|
|
width: 226rpx;
|
|
|
|
|
height: 38rpx;
|
|
|
|
|
background: rgba(0, 0, 0, 0.6);
|
|
|
|
|
border-radius: 0rpx 0rpx 8rpx 0rpx;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 22rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
line-height: 31rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-item .image-box .image-item .image-add {
|
|
|
|
|
margin-top: 90rpx;
|
|
|
|
|
width: 48rpx;
|
|
|
|
|
height: 48rpx;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-btn {
|
|
|
|
|
height: 160rpx;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background-color: #FFF;
|
|
|
|
|
}
|
|
|
|
|
.complete-popup .popup-btn .input-btn {
|
|
|
|
|
width: 678rpx;
|
|
|
|
|
height: 92rpx;
|
|
|
|
|
background: linear-gradient(91deg, #43A1FF 0%, #2F80F9 100%), #FFFFFF;
|
|
|
|
|
border-radius: 24rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
line-height: 39rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 26rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
.tips-img {
|
|
|
|
|
width: 86rpx;
|
|
|
|
|
height: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
.tips-text {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #F0A941;
|
|
|
|
|
line-height: 34rpx;
|
|
|
|
|
margin-left: 12rpx;
|
|
|
|
|
}
|
|
|
|
|
|