-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.wxss
95 lines (84 loc) · 1.47 KB
/
app.wxss
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
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
.zp-border-bottom,
.zp-border-top {
position: relative;
}
.zp-border-bottom:after {
bottom: 0;
transform-origin: 0 100%;
}
.zp-border-top:before {
top: 0;
transform-origin: 0 0;
}
.zp-border-bottom:after,
.zp-border-top:before {
position: absolute;
content: '';
width: 200%;
border-bottom: 1px solid #DCDCDC;
transform: scale(.5);
display: block;
left: 0;
}
.zp-border {
position: relative;
}
.zp-border::before {
position: absolute;
content: '';
width: 200%;
height: 200%;
border: 1px solid rgba(0, 0, 0, .1);
transform: scale(.5);
transform-origin: 0 0;
box-sizing: border-box;
pointer-events: none;
display: block;
left: 0;
top: 0;
}
.modal-loading-layout {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 2;
overflow: hidden;
background: #F4F4F4;
}
.modal-loading{
position: fixed;
display: block;
margin: 0rpx 3rpx;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 99;
text-align: center;
width: 200rpx;
height: 200rpx;
background: #ffffff;
border-radius: 20px;
}
.modal-loading-image{
width: 70rpx;
height: 80rpx;
display: block;
margin:0 auto;
margin-top:20px;
}
.modal-loading-font{
font-size: 24rpx;
color: #666666;
}