61 lines
912 B
Plaintext
61 lines
912 B
Plaintext
/* components/discountCoupon/index.wxss */
|
|
|
|
.wrapper {
|
|
padding: 24rpx;
|
|
border-radius: 16rpx;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.top {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
border-bottom: 1rpx dashed #ccc;
|
|
padding-bottom: 30rpx;
|
|
}
|
|
|
|
.top .right {
|
|
color: #fa541c;
|
|
}
|
|
|
|
.price {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
margin-bottom: 14rpx;
|
|
}
|
|
|
|
.typeText {
|
|
font-weight: 700;
|
|
font-size: 36rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.time {
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.price {
|
|
font-size: 44rpx;
|
|
line-height: 44rpx;
|
|
}
|
|
|
|
.limit {
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.bottom {
|
|
margin-top: 20rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.bottom .left {
|
|
flex: 1;
|
|
max-width: calc(100vw - 60rpx - 250rpx);
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
font-size: 30rpx;
|
|
color: rgba(0, 0, 0, 0.7)
|
|
}
|