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.

71 lines
1.3 KiB

5 years ago
/* pages/order/coupon/index.wxss */
page {
background: #f6f6f6;
}
.coupon-item {
display: flex;
align-items: center;
justify-content: space-between;
margin: 26rpx;
background: white;
border-radius: 7rpx;
height: 136rpx;
padding-right: 27rpx;
}
.coupon-item .money {
color: #D62828;
font-size: 67rpx;
width: 187rpx;
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;
}