| 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
 | | .hr { |  |   height: 159rpx; |  |   border: 1rpx solid #eee; |  |   float: left; |  |   margin-left: 20rpx; |  |   margin-top: 15rpx; |  | } |  |   |  | .active { |  |   border-bottom: 6rpx solid #00c085; |  |   color: #00c085; |  |   font-size: 30rpx; |  | } |  |   |  | .coupons-tabs { |  |   display: flex; |  |   font-size: 26rpx; |  |   color: #999; |  |   line-height: 60rpx; |  |   padding-top: 15rpx; |  |   width: 90%; |  |   margin: auto; |  | } |  |   |  | .coupons-container { |  |   position: relative; |  | } |  |   |  | .no-counpon { |  |   text-align: center; |  |   font-size: 30rpx; |  | } |  |   |  | .qsy{ |  |   |  | font-size: 24rpx; |  | color: #fff; |  | width: 120rpx; |  | height: 24px; |  | margin-top: 40rpx; |  | background: #00c085; |  | display: inline-block; |  | line-height: 24px; |  | border-radius: 3rpx; |  | } |  |   |  |   |  |   |  | .no-text { |  |   color: #060606; |  |   margin-bottom: 30rpx; |  |   display: flex; |  |   justify-content: center |  | } |  |   |  | .wait-active { |  |   color: #969696; |  | } |  |   |  | .no-counpon image { |  |   width: 226rpx; |  |   height: 200rpx; |  |   margin: 200rpx 0 109rpx 0; |  | } |  |   |  | .coupons-invalid { |  |   background-image: url("http://file.micromall.xczhyf.cn/wxxcx/image/50.png"); |  |   background-size: 100% 100%; |  |   width: 676rpx; |  |   height: 190rpx; |  |   margin-top: 10rpx; |  |   display: flex; |  | } |  |   |  | .invalid { |  |   font-size: 22rpx; |  |   text-align: center; |  |   margin-top: 30rpx; |  |   margin-right: 30rpx; |  |   width: 110rpx; |  |   height: 38rpx; |  |   line-height: 38rpx; |  |   color: #999; |  | } |  |   |  | .main { |  |   padding-bottom: 20rpx; |  | } |  |   |  | .coupons-tabs>view { |  |   text-align: center; |  |   font-size: 26rpx; |  |   width: 33.3%; |  | } |  | .coupons-invalid  .content-time{color: #999} |  | .coupons-invalid  .coupons-explain{ |  |   font-size: 24rpx; |  |   color: #999; |  |   width: 24rpx; |  |   padding-top: 52rpx; |  |   padding-left:20rpx; |  |   float:left; |  | } |  | .coupons-invalid .money-info{ |  |   color: #999; |  | } |  | .coupons-invalid .money-num{ |  |   color: #999; |  | } |  | .coupons-invalid .content-title{ |  |   color: #999; |  | } |  | .hide{ |  |   display: none |  | } | 
 |