1
litian
2024-03-05 e5ae1c7bfd86bfbf3376e54d6fa4c5390cf1a5a3
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
.wr-coupon {
  display: flex;
  background-image: url('https://cdn-we-retail.ym.tencent.com/miniapp/coupon/coupon-bg-nocorners.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 24rpx;
  overflow: hidden;
}
.theme-weak.wr-coupon {
  background-image: url('https://cdn-we-retail.ym.tencent.com/miniapp/coupon/coupon-bg-grey2.png');
}
 
.wr-coupon__left {
  width: 200rpx;
  height: 180rpx;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fa4126;
  overflow: hidden;
  position: relative;
}
.theme-weak .wr-coupon__left {
  color: #333;
}
 
.wr-coupon__left--value {
  font-size: 64rpx;
  line-height: 88rpx;
  font-weight: bold;
  font-family: 'DIN Alternate', cursive;
}
.wr-coupon__left--value-int {
  font-size: 48rpx;
  line-height: 88rpx;
}
.wr-coupon__left--value-decimal {
  font-size: 36rpx;
  line-height: 48rpx;
}
.wr-coupon__left--image {
  width: 128rpx;
  height: 128rpx;
  border-radius: 8px;
  margin-top: 30rpx;
}
.wr-coupon__left--unit {
  font-size: 24rpx;
  line-height: 32rpx;
}
.wr-coupon__left--desc {
  font-size: 24rpx;
  line-height: 32rpx;
  color: #fa4126;
}
 
.theme-weak .wr-coupon__left--desc {
  color: #333;
}
 
.wr-coupon__right {
  flex-grow: 1;
  padding: 0 20rpx;
  height: 180rpx;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.wr-coupon__right--title {
  display: flex;
  -webkit-display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #999999;
  font-size: 24rpx;
  flex: 1;
}
.wr-coupon__right--title .coupon-title {
  max-width: 320rpx;
  color: #333333;
  font-size: 28rpx;
  line-height: 40rpx;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}
.wr-coupon__right--title .coupon-time {
  margin-top: 16rpx;
  /* //   letter-spacing: -0.05em; */
}
.wr-coupon__right--title .coupon-desc {
  margin-top: 8rpx;
}
.wr-coupon__right--title .coupon-arrow {
  font-size: 22rpx;
}
.wr-coupon__right--oper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wr-coupon__mask {
  width: 702rpx;
  height: 182rpx;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  opacity: 0.5;
}
.wr-coupon__tag {
  position: absolute;
  top: 8px;
  right: -24rpx;
  text-align: center;
  width: 106rpx;
  height: 28rpx;
  opacity: 0.9;
  font-size: 20rpx;
  line-height: 28rpx;
  color: #fa4126;
  border: 0.5px solid #fa4126;
  box-sizing: border-box;
  transform: rotate(45deg);
}
.wr-coupon__seal {
  width: 128rpx;
  height: 128rpx;
  position: absolute;
  top: 0;
  right: 0;
  background-size: 100% 100%;
}
 
.wr-coupon__seal.seal-useless {
  background-image: url('https://cdn-we-retail.ym.tencent.com/miniapp/coupon/seal-used.png');
}
 
.wr-coupon__seal.seal-disabled {
  background-image: url('https://cdn-we-retail.ym.tencent.com/miniapp/coupon/coupon-expired.png');
}