app.wxss
529 Bytes
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
/**app.wxss**/
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
.page{
background-color: #fff;
}
.divide_line{
background: #e5e5e5;
width: 100%;
height: 2rpx;
}
.float_right {
float: right;
}
.float_left {
float: left;
}
.btn_bottom {
width: 100%;
height: 84rpx;
background: #357aeb;
text-align: center;
position: fixed;
color: #fff;
bottom: 0;
line-height: 84rpx;
}