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
| page{
| background-color: #fbf8f8;
| font-size: 26upx;
| }
|
| .bankItem{
| background-color: #ffffff;
| padding: 30upx 30upx 0 30upx;
| margin-bottom: 30upx;
| position: relative;
| }
| .bank-v{
| margin-bottom: 20upx;
| }
| .bank-v text{
| margin-right: 20upx;
| }
| .bank-c {
| border-top: 1px solid #eeeeee;
| text-align: right;
| height: 70upx;
| position: relative;
| }
| .bank-c-main{
| display: flex;
| position: absolute;
| right: 0;
| }
| .bank-c image{
| width: 34upx;
| height: 34upx;
| margin-right: 10upx;
| }
| .bank-c view{
| height: 70upx;
| display: flex;
| align-items: center;
| }
| .bank-c-c{
| margin-left: 80upx;
| }
| .bank-df{
| position: absolute;
| left: 0;
| }
| .rgt{
| width: 44upx;
| height: 44upx;
| position: absolute;
| right: 30upx;
| top: 22%;
| }
|
| .bankBtn{
| width: 100%;
| position: fixed;
| left: 0;
| bottom: 0;
| z-index: 99;
| height: 90upx;
| background-color: #37AA25;
| color: #ffffff;
| letter-spacing: 10upx;
| display: flex;
| justify-content: center;
| align-items: center;
| font-weight: 700;
| font-size: 28upx;
| }
|
|