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
|
| .coupon {
| padding: 12px;
| }
| .couponCard {
| height: 80px;
| width: 100%;
| background: url(https://img.alicdn.com/imgextra/i4/751308485/O1CN01VMZg4N2CYBLp6CpYX_!!751308485.png) no-repeat 50%;
| background-size: 100% 100%;
| margin-bottom: 12px;
| padding: 12px 0 0 12px;
| display: flex;
| flex-direction: row;
| justify-content: space-between;
| align-items: center;
| color: #e7591a;
| }
| .title {
|
| font-size: 32rpx;
| font-weight: 600;
| }
| .condition {
| font-size: 24rpx;
| }
| .date {
| font-size: 24rpx;
| }
| .btn1 {
| background-color: #ec5f2a;
| color: white;
| border-radius: 30rpx;
| margin-right: 30rpx;
| font-size: 26rpx;
| padding: 4px 6px;
| width: 106rpx;
| text-align: center;
| }
| .btn2 {
| background-color: #ecae9a;
| color: #ec5f2a;
| border-radius: 30rpx;
| margin-right: 30rpx;
| font-size: 26rpx;
| padding: 4px 6px;
| width: 106rpx;
| text-align: center;
| }
|
|