add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
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
@charset "UTF-8";
/* 页面左右间距 */
/* 文字尺寸 */
/*文字颜色*/
/* 边框颜色 */
/* 图片加载中颜色 */
/* 行为相关颜色 */
.coupon-item {
  width: 100%;
  height: auto;
  display: table;
  border-radius: 10rpx;
  padding: 0 20rpx;
  margin-top: 22rpx;
  border: 1px solid #eeeeee;
  position: relative;
}
.coupon-item .coupon-money {
  width: 465rpx;
  height: auto;
  display: table;
  float: left;
  padding: 26rpx 0;
  border-style: none dotted none none;
  border-color: #eeeeee;
}
.coupon-item .coupon-money .nick {
  width: 100%;
  height: 50rpx;
  line-height: 30rpx;
  font-size: 24rpx;
  color: #999999;
}
.coupon-item .coupon-money .tit {
  width: 100%;
  height: 50rpx;
  line-height: 50rpx;
  font-size: 24rpx;
  color: #999999;
}
.coupon-item .coupon-money .demand {
  width: 100%;
  height: 30rpx;
  line-height: 30rpx;
  font-size: 24rpx;
  color: #999999;
}
.coupon-item .coupon-money .layof {
  width: 100%;
  height: 48rpx;
  line-height: 30rpx;
  font-size: 44rpx;
  color: #ff9000;
  font-weight: bold;
}
.coupon-item .coupon-money .end_time {
  width: 100%;
  height: 30rpx;
  line-height: 30rpx;
  font-size: 24rpx;
  color: #999999;
}
.coupon-item .get-btn {
  width: 146rpx;
  height: 52rpx;
  line-height: 50rpx;
  position: absolute;
  top: 50%;
  right: 26rpx;
  margin-top: -26rpx;
  text-align: center;
  border-radius: 60rpx;
  color: #ff9000;
  border: 1px solid #ff9000;
  font-size: 24rpx;
  float: right;
}
.coupon-item:after {
  width: 40rpx;
  height: 20rpx;
  position: absolute;
  left: 460rpx;
  top: -1px;
  border-radius: 0 0 40rpx 40rpx;
  content: "";
  display: block;
  background: #FFF;
  border: 1px solid #eeeeee;
  border-top: 0px;
}
.coupon-item:before {
  width: 40rpx;
  height: 20rpx;
  position: absolute;
  left: 460rpx;
  bottom: -1px;
  border-radius: 40rpx 40rpx 0 0;
  content: "";
  display: block;
  background: #FFF;
  border: 1px solid #eeeeee;
  border-bottom: 0px;
}