card-mini/pages/mine/product/coupon/couponlist.wxss

94 lines
1.8 KiB
Plaintext
Raw Normal View History

/* pages/mine/product/coupon/couponlist.wxss */
page {
background: #f2f2f2;
}
.right-box {
width: 100%;
position: relative;
2021-08-05 14:34:05 +08:00
min-height: 140rpx;
flex: 3;
display: flex;
align-items: center;
justify-content: center;
2021-08-05 15:15:41 +08:00
border-radius: 0rpx 10rpx 10rpx 0rpx;
flex-direction: column;
2021-08-05 14:34:05 +08:00
padding: 10rpx;
2021-08-05 15:15:41 +08:00
background-image: radial-gradient(circle at left top, #f2f2f2, #f2f2f2 10rpx, transparent 11rpx),
radial-gradient(circle at left bottom, #f2f2f2, #f2f2f2 10rpx, transparent 11rpx);
background-color: #E6B980;
2021-08-05 14:34:05 +08:00
}
.left-box {
width: 100%;
flex: 7;
position: relative;
min-height: 140rpx;
display: flex;
align-items: flex-start;
flex-direction: column;
2021-08-05 15:15:41 +08:00
justify-content: space-between;
padding: 10rpx 15rpx;
position: relative;
border-radius: 10rpx 0rpx 0rpx 10rpx;
background-image: radial-gradient(circle at right top, #f2f2f2, #f2f2f2 10rpx, transparent 11rpx),
radial-gradient(circle at right bottom, #f2f2f2, #f2f2f2 10rpx, transparent 11rpx);
background-color: #ffffff;
}
.price {
color: #ffffff;
2021-08-05 14:34:05 +08:00
font-size: 48rpx;
}
.price-icon {
color: #ffffff;
font-size: 28rpx;
}
.price-term {
2021-08-05 14:34:05 +08:00
font-size: 24rpx;
color: #ffffff;
}
2021-08-05 14:34:05 +08:00
.btn-box {
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-end;
2021-08-05 14:34:05 +08:00
padding: 10rpx 20rpx;
}
.btn {
padding: 10rpx 40rpx;
2021-08-05 14:34:05 +08:00
}
2021-08-05 15:15:41 +08:00
.coupon-name {
2021-08-05 14:34:05 +08:00
font-size: 32rpx;
font-weight: bold;
color: black;
2021-08-05 15:15:41 +08:00
flex: 1;
2021-08-05 14:34:05 +08:00
}
2021-08-05 15:15:41 +08:00
.coupon-desc {
2021-08-05 14:34:05 +08:00
font-size: 24rpx;
color: #797979;
}
2021-08-05 15:15:41 +08:00
.coupon-type-yellow {
2021-08-05 14:34:05 +08:00
font-size: 24rpx;
color: #ffffff;
background: #ff9800;
padding: 0rpx 10rpx;
border-radius: 5rpx;
}
2021-08-05 15:15:41 +08:00
.coupon-type-blue {
2021-08-05 14:34:05 +08:00
font-size: 24rpx;
color: #ffffff;
background: #0471ff;
padding: 0rpx 10rpx;
border-radius: 5rpx;
}