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

104 lines
1.8 KiB

5 years ago
/* pages/order/coupon/index.wxss */
page {
background: #f6f6f6;
}
6 months ago
.coupon-item-box{
width: 700rpx;
margin: 26rpx auto;
background: white;
border-radius: 7rpx;
box-sizing: border-box;
padding:0 26rpx;
}
5 years ago
.coupon-item {
6 months ago
width: 100%;
5 years ago
display: flex;
align-items: center;
justify-content: space-between;
6 months ago
position: relative;
5 years ago
height: 136rpx;
}
.coupon-item .money {
color: #D62828;
font-size: 67rpx;
6 months ago
width: 147rpx;
5 years ago
text-align: center;
font-weight: 500;
flex-shrink: 0;
}
2 years ago
.coupon-item .money1 {
color: #D62828;
font-size: 47rpx;
width: 187rpx;
text-align: center;
font-weight: 500;
flex-shrink: 0;
}
5 years ago
.coupon-item .money::before {
content: '¥';
font-size: 30rpx;
}
2 years ago
.coupon-item .money1::after {
content: '折';
font-size: 30rpx;
}
5 years ago
.coupon-info {
flex: 1;
margin-right: 20rpx;
color: #000;
font-size: 31rpx;
}
.couon-date {
color: #666;
font-size: 24rpx;
}
.coupon-item .iconfont {
font-size: 47rpx;
color: #333;
}
.coupon-item .iconfont.icon-gou {
color: #D62828;
}
.coupon-item.disable,.coupon-item.disable .money,.coupon-item.disable .coupon-info,.coupon-item.disable .iconfont,.coupon-item.disable .coupon-info .couon-date {
color: #999 !important;
}
.coupon-item.disable {
background: #ECECEC;
}
.btn {
margin: 25rpx;
line-height: 73rpx;
background: #D62828;
border-radius: 37rpx;
color: #fff;
font-size: 36rpx;
font-weight: 500;
text-align: center;
6 months ago
}
.no-reason{
width: 100%;
border-top: 1px dashed #e0e0e0;
padding: 20rpx 0;
color: #666;
font-size: 24rpx;
box-sizing: border-box;
6 months ago
}
.cover-no-use{
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100;
opacity: 0.5;
background: white;
}
.coupon-title{
padding: 26rpx 26rpx 0;
width: 100%;
box-sizing: border-box;
5 years ago
}