_pay.css
1.1 KB
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
.pay-page {
padding: 40px 20px 0;
.payapp-list {
visibility: hidden;
}
.box.bytouch {
background-color:#eee;
}
.box {
border: 1px solid #eee;
border-radius: 10px;
padding: 12px 20px;
margin-bottom: 20px;
display: flex;
align-items: center;
> div {
min-height: 40px;
display: flex;
align-items: center;
}
.icon {
width: 15%;
flex-basis: 15%;
img {
width: 60px;
margin: 0;
}
> div {
width: 60px;
height: 60px;
background-image: resolve("layout/pay-icon.png");
background-size: 90%;
background-position-y: 8px;
background-position-x: center;
background-repeat: no-repeat;
}
}
.app {
width: 35%;
flex-basis: 35%;
font-size: 32px;
color: #414141;
}
.hint {
width: 45%;
flex-basis: 45%;
font-size: 24px;
color: #4b4b4b;
}
.iconfont {
width: 5%;
flex-basis: 5%;
justify-content: flex-end;
color: #e0e0e0;
font-size: 28px;
}
}
}