You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

169 lines
3.9 KiB
Plaintext

2 months ago
@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.wholeSales {
min-height: 100vh;
width: 100%;
background: #FFFFFF;
border-radius: 20rpx 20rpx 0rpx 0rpx;
}
.wholeSales .top {
height: 92rpx;
display: flex;
}
.wholeSales .top > text {
font-weight: 400;
font-size: 28rpx;
color: #AFAFAF;
margin: 32rpx 0 0 32rpx;
}
.wholeSales .top .openBtn {
width: 220rpx;
height: 56rpx;
background: #EDEEEF;
border-radius: 12rpx 12rpx 12rpx 12rpx;
display: flex;
justify-content: space-between;
padding: 8rpx 20rpx;
margin: 24rpx 0 12rpx 18rpx;
box-sizing: border-box;
font-weight: 600;
font-size: 28rpx;
color: #222222;
}
.wholeSales .body .item {
margin: 0 auto;
width: 676rpx;
height: 140rpx;
border-bottom: 2rpx solid rgba(0, 0, 0, 0.06);
display: flex;
flex-direction: column;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 24rpx;
padding-bottom: 28rpx;
box-sizing: border-box;
}
.wholeSales .body .item .type-price {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.wholeSales .body .item .type-price .ctype {
font-weight: 600;
font-size: 32rpx;
color: #222222;
width: 90rpx;
text-align-last: justify;
}
.wholeSales .body .item .type-price .price {
font-family: OPPOSans, OPPOSans;
font-weight: bold;
font-size: 32rpx;
color: #FF0000;
}
.wholeSales .body .item .type-price .price::before {
content: '¥';
font-size: 24rpx;
margin-right: 4rpx;
}
.wholeSales .body .item .bottom {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.wholeSales .body .item .bottom .bottom-text {
font-weight: 400;
font-size: 24rpx;
color: #AFAFAF;
margin-top: 34rpx;
}
2 months ago
.wholeSales .wholeSales-bottom {
position: fixed;
bottom: 0;
z-index: 100;
}
.wholeSales .tip {
width: 750rpx;
height: 72rpx;
background: #FFF7E8;
border-radius: 0rpx 0rpx 0rpx 0rpx;
border: 0rpx solid #FFF7E8;
font-weight: 400;
font-size: 28rpx;
color: #FF7D00;
justify-content: center;
padding: 16rpx 0 16rpx 32rpx;
box-sizing: border-box;
}
2 months ago
.wholeSales .inputBtnCon {
width: 100%;
height: 184rpx;
background: #FFFFFF;
display: flex;
justify-content: space-between;
padding: 0 36rpx;
}
.wholeSales .inputBtnCon .left {
height: 74rpx;
font-weight: 400;
font-size: 24rpx;
color: rgba(0, 0, 0, 0.3);
margin-top: 42rpx;
text-align-last: justify;
}
.wholeSales .inputBtnCon .left .allValue {
font-weight: 600;
font-size: 30rpx;
color: #222222;
}
.wholeSales .inputBtnCon .allPrice {
margin-top: 46rpx;
width: 148rpx;
height: 68rpx;
font-weight: 500;
font-size: 48rpx;
color: #FF2D46;
line-height: 67rpx;
text-align: right;
}
.wholeSales .inputBtnCon .allPrice::before {
content: '¥';
font-size: 24rpx;
margin-right: 4rpx;
}
.wholeSales .inputBtnCon .inputBtn {
width: 346rpx;
height: 92rpx;
background: linear-gradient(91deg, #43A1FF 0%, #2F80F9 100%), #FFFFFF;
border-radius: 24rpx;
font-weight: 500;
font-size: 28rpx;
color: #FFFFFF;
margin-top: 24rpx;
}