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
| .title:active {
| background-color: var(--fyui-BG-COLOR-ACTIVE);
| }
|
| .fyui-cell_select {
| font-size: 16px;
| padding-top: 12px;
| padding-bottom: 12px;
| border-bottom: 1px solid rgb(238, 238, 238);
| }
|
| .page {
| justify-content: space-between;
| background-color: transparent;
| }
|
| .page-header {
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: center;
| height: 30vh;
| }
|
| .page-header>image{
| width: 88px;
| height: 88px;
| }
|
| .page-header>view{
| font-size: 14px;
| color: var(--fyui-text-color_2);
| margin-top: 16px;
| }
|
| .page-container{
| flex: 1;
| color: var(--fyui-text-color_1);
| }
|
| .page-footer{
| margin-top: 100rpx;
| text-align: center;
| font-size: var(--td-font-size-base);
| color: var(--td-text-color-secondary);
| }
|
|