@charset "UTF-8";
|
/**
|
* 这里是uni-app内置的常用样式变量
|
*
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
*
|
*/
|
/**
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
*
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
*/
|
/* 颜色变量 */
|
/* 行为相关颜色 */
|
/* 文字基本颜色 */
|
/* 背景颜色 */
|
/* 边框颜色 */
|
/* 尺寸变量 */
|
/* 文字尺寸 */
|
/* 图片尺寸 */
|
/* Border Radius */
|
/* 水平间距 */
|
/* 垂直间距 */
|
/* 透明度 */
|
/* 文章场景相关 */
|
/* start--主题色--start */
|
/* end--主题色--end */
|
.order-list .order-head .state-text {
|
padding: 4rpx 8rpx;
|
margin-right: 10rpx;
|
border-radius: 4rpx;
|
background: #e2231a;
|
color: #ffffff;
|
}
|
.order-list .item {
|
margin-top: 30rpx;
|
padding: 30rpx;
|
background: #ffffff;
|
}
|
.order-list .product-list,
|
.order-list .one-product {
|
padding: 20rpx 0;
|
height: 160rpx;
|
}
|
.one-product .pro-info {
|
padding: 0 30rpx;
|
display: -webkit-box;
|
overflow: hidden;
|
-webkit-line-clamp: 2;
|
-webkit-box-orient: vertical;
|
font-size: 28rpx;
|
color: #666666;
|
}
|
.order-list .cover,
|
.order-list .cover image {
|
width: 160rpx;
|
height: 160rpx;
|
}
|
.order-list .total-count {
|
padding-left: 20rpx;
|
display: flex;
|
flex-direction: column;
|
justify-content: center;
|
align-items: flex-end;
|
}
|
.total-count .count {
|
padding-top: 10rpx;
|
color: #666;
|
font-size: 28rpx;
|
}
|
.product-list .total-count {
|
position: absolute;
|
top: 0;
|
right: 0;
|
bottom: 0;
|
background: rgba(255, 255, 255, 0.9);
|
}
|
.product-list .total-count .left-shadow {
|
position: absolute;
|
top: 0;
|
bottom: 0;
|
left: -24rpx;
|
width: 24rpx;
|
overflow: hidden;
|
}
|
.product-list .total-count .left-shadow::after {
|
position: absolute;
|
top: 0;
|
bottom: 0;
|
width: 24rpx;
|
right: -12rpx;
|
display: block;
|
content: '';
|
background-image: radial-gradient(rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 80%);
|
}
|
.order-list .order-bts {
|
display: flex;
|
justify-content: flex-end;
|
align-items: center;
|
}
|
.order-list .order-bts button {
|
margin: 0;
|
padding: 0 30rpx;
|
height: 60rpx;
|
line-height: 60rpx;
|
margin-left: 20rpx;
|
border-radius: 30rpx;
|
font-size: 24rpx;
|
border: 1px solid #cccccc;
|
white-space: nowrap;
|
background: #ffffff;
|
}
|
.order-list .order-bts button::after {
|
display: none;
|
}
|
.order-list .order-bts button.btn-border-red {
|
border: 1px solid #e2231a;
|
font-size: 24rpx;
|
color: #e2231a;
|
}
|
.order-list .order-bts button.btn-red {
|
background: #e2231a;
|
border: 1px solid #e2231a;
|
font-size: 24rpx;
|
color: #ffffff;
|
}
|
.buy-checkout {
|
width: 100%;
|
}
|
.buy-checkout .item {
|
min-height: 50rpx;
|
line-height: 50rpx;
|
padding: 20rpx;
|
display: flex;
|
justify-content: space-between;
|
font-size: 28rpx;
|
}
|
.buy-checkout .iconfont.icon-weixin {
|
color: #04be01;
|
font-size: 50rpx;
|
}
|
.buy-checkout .iconfont.icon-yue {
|
color: #f0de7c;
|
font-size: 50rpx;
|
}
|
.buy-checkout .item.active .iconfont.icon-xuanze {
|
color: #04be01;
|
}
|
.item-dianpu {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
padding-bottom: 30rpx;
|
font-size: 24rpx;
|
line-height: 30rpx;
|
}
|
.item-d-l {
|
display: flex;
|
}
|
.icon-dianpu1 {
|
margin-right: 30rpx;
|
}
|