2024-02-27 17:58:38 +08:00
|
|
|
.couponView {
|
|
|
|
margin: 24rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.couponView .item {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
2024-03-05 15:04:23 +08:00
|
|
|
padding: 20rpx 0;
|
2024-02-27 17:58:38 +08:00
|
|
|
border-top: 1px solid rgb(126, 126, 126, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.couponView .item:first-of-type {
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.couponView .item .imgView {
|
|
|
|
position: relative;
|
2024-03-05 15:04:23 +08:00
|
|
|
width: 257rpx;
|
|
|
|
height: 222rpx;
|
2024-02-27 17:58:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.couponView .item .imgView .img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.couponView .item .imgView .timeView {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.couponView .item .imgView .timeView .title {
|
|
|
|
font-size: 46rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.couponView .item .imgView .timeView .type {
|
|
|
|
font-size: 26rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.couponView .item .contentView {
|
|
|
|
flex: 1;
|
|
|
|
margin: 0 20rpx;
|
|
|
|
color: gray;
|
2024-03-05 15:04:23 +08:00
|
|
|
word-break: break-all;
|
2024-02-27 17:58:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.couponView .item .contentView .title {
|
|
|
|
font-size: 26rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2024-03-05 15:04:23 +08:00
|
|
|
.couponView .item .contentView .platform {
|
2024-02-27 17:58:38 +08:00
|
|
|
margin-top: 20rpx;
|
|
|
|
font-size: 24rpx;
|
|
|
|
opacity: 0.6;
|
2024-03-05 15:04:23 +08:00
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
}
|
|
|
|
|
|
|
|
.couponView .item .contentView .validityTime {
|
|
|
|
margin-top: 20rpx;
|
|
|
|
font-size: 22rpx;
|
|
|
|
opacity: 0.6;
|
2024-02-27 17:58:38 +08:00
|
|
|
}
|
|
|
|
|