1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
| .coupon-container {
|
|
|
| .coupont-item.expired {
| filter: grayscale(100%);
| .img-has {
| display: unset;
| }
| }
|
| .coupont-item {
| height: 360rpx;
| margin-top: 20rpx;
| position: relative;
| .img-has {
| display: none;
| position: absolute;
| right: -20rpx;
| top: 20rpx;
| background-image: url('../../../static/images/customer/coupon/coupon-has.png');
| background-size: 100% 100%;
| width: 264rpx;
| height: 264rpx;
| }
|
| .tip {
| position: absolute;
| top: 210rpx;
| // min-height: 136rpx;
| background: #EBEBEB;
| z-index: 1;
| padding: 18rpx 30rpx;
| padding-top: 40rpx;
| left: 18rpx;
| right: 18rpx;
| font-size: 24rpx;
| color: #333333;
| }
|
| .container {
| z-index: 2;
| background-image: url('../../../static/images/customer/coupon/coupon-bg1.png');
| // width: 722rpx;
| padding: 16rpx 16rpx 16rpx 0rpx;
| height: 220rpx;
| position: relative;
|
| .info-price {
| width: 180rpx;
| padding-top: 40rpx;
| margin-left: 30rpx;
| margin-right: 50rpx;
|
| .price1 {
| font-weight: 600;
| font-size: 56rpx;
| color: #FFFFFF;
| line-height: 80rpx;
| text-align: center;
| }
|
| .price2 {
| font-weight: 400;
| font-size: 28rpx;
| color: #FFFFFF;
| line-height: 40rpx;
| text-align: center;
| }
| }
|
| .info {
| padding-top: 40rpx;
|
| .title {
| font-weight: 600;
| font-size: 36rpx;
| color: #333333;
| line-height: 50rpx;
| text-align: left;
|
| }
|
| .time {
| font-weight: 400;
| font-size: 28rpx;
| color: #666666;
| line-height: 40rpx;
| text-align: left;
| margin-top: 40rpx;
|
| }
| }
|
| }
|
| }
|
| }
|
|