4e5f7a9a
liuqimichale
多笔缴纳费用
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
.out-btn{
position: absolute;
right: 10px;
bottom:10px;
}
.outpay-btn{
position: absolute;
right: 10px;
bottom:10px;
width: 70px;
height: 25px;
margin-top: 20px;
color: #FFF;
font-size: 12px;
text-align: center;
line-height: 25px;
background: url(../img/arrears-bg.png) no-repeat;
background-size: 70px 25px;
}
|
d68fc748
liuqimichale
多笔缴纳费用
|
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
.tab-wrap{
display: flex;
margin-bottom: 4px;
height: 30px;
line-height: 30px;
background: #fff;
text-align: center;
}
.tab-wrap >li{
flex: 1;
}
.tab-wrap >li span{
height: 30px;
display: inline-block;
padding: 0 15px;
}
.tab-wrap >li.active span{
color: #0474D7;
position: relative;
border-bottom: 4px solid #0474D7;
}
.tab-main{
margin-bottom: 67px;
overflow-y: auto;
}
.pay-wrap{
background: #fff;
padding-left: 15px;
border-top:1px solid #e1e1e1;
cursor: pointer;
}
.pay-header{
height: 30px;
line-height: 30px;
border-bottom: 1px solid #e1e1e1;
display: flex;
justify-content: space-between;
}
.pay-header span:last-child {
color: #D40202;
margin-right: 15px;
}
.pay-body{
padding: 10px 0;
position: relative;
}
.pay-money{
position: absolute;
top:50%;
right: 15px;
transform: translateY(-50%);
color: #333;
}
.arrears-wrap{
display: none;
}
.allMoneyWrap{
padding-left: 15px;
height: 27px;
background: #FAF6EA;
color: #333;
}
.allMoneyWrap span{
/*margin-left: 15px;*/
color: #D40202;
}
.arrears-list{
position: fixed;
top: 60px;
left: 0;
bottom: 67px; /*距离底部的距离为底部盒子的高度,自己也可以设置*/
overflow-y: scroll;
width: 100%;
height: auto;
-webkit-overflow-scrolling: touch; /*这句是为了滑动更顺畅*/
}
.arrears-list>li{
padding-left: 40px;
margin-bottom: 11px;
border-top:1px solid #e1e1e1;
background: #fff url("../img/arrearsCheck.png") no-repeat 9px center;
cursor: pointer;
}
.arrears-list>li.active{
padding-left: 40px;
margin-bottom: 11px;
border-top:1px solid #e1e1e1;
background: #fff url("../img/arrearsChecked.png") no-repeat 9px center;
cursor: pointer;
}
.arrears-header{
height: 30px;
line-height: 30px;
border-bottom:1px solid #e1e1e1;
display: flex;
justify-content: space-between;
}
.arrears-header span:last-child{
color: #D40202;
margin-right: 15px;
}
.arrears-body{
padding: 10px 0;
position: relative;
}
.arrears-money{
position: absolute;
top:50%;
right: 15px;
transform: translateY(-50%);
color: #333;
}
.arrears-statistics{
height: 67px;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background: #efeff4;
}
.statistics-title{
height: 32px;
line-height: 32px;
padding-left: 15px;
background: #E6FAFA;
color: #333;
}
.statistics-title span{
color:#D20000 ;
}
.statistics-opr{
height: 35px;
line-height: 35px;
display: flex;
justify-content: space-between;
}
.opr-btn{
padding: 0 10px;
color: #fff;
background: #0260B8;
cursor: pointer;
}
.check-btn{
padding-left: 40px;
background: url("../img/arrearsCheck.png") no-repeat 9px center;
cursor: pointer;
}
.check-btn.checkedActive{
background: url("../img/arrearsChecked.png") no-repeat 9px center;
}
|