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
| page {
| width: 100%;
| height: 100%;
| padding: 0;
| background-color: #eceff4;
| font-size: 30rpx;
| font-family: -apple-system-font, 'Helvetica Neue', Helvetica, 'Microsoft YaHei', sans-serif;
| }
| #footer {
| width: 100%;
| height: 15rpx;
| display: flex;
| justify-content: center;
| align-items: left;
| padding-top:20px;
| }
|
| #footer .container {
| height: 15rpx;
| display: flex;
| flex-direction: column;
| justify-content: space-between;
| align-items: left;
| }
|
| #footer .container .item {
| height: 100%;
| display: flex;
| justify-content: center;
| align-items: left;
| }
|
|