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
| .head {
| background-color: aliceblue;
| padding-top: 10px;
| padding-bottom: 10px;
| margin: 5px 8px;
| display: flex;
| flex-direction: column;
| }
|
| .head_block {
| display: flex;
| justify-content: space-between;
| }
|
| .head_left {
| display: flex;
| }
|
| .head_bar {
| width: 5px;
| height: 20px;
| background-color: red;
| }
|
| .head_title {
| margin-left: 5px;
| }
|
|
| .flex_column {
| display: flex;
| flex-direction: column;
| }
|
| .flex_between {
| display: flex;
| justify-content: space-between;
| align-items: center;
| }
|
| .flex_center {
| display: flex;
| align-items: center;
| }
|
| .center_title{
| font-weight: bolder;
| }
| .center_border {
| border: 1px solid #ccc;
| min-height: 50px;
| border-radius: 5px;
| margin: 15px 0 0 0;
| padding: 5px 0px 5px 10px;
| }
|
|
|
|
| .footer {
| position: fixed;
| bottom: 0;
| background-color: aliceblue;
| min-height: 100px;
| padding-top: 10px;
| margin: 5px 8px 0;
| width: 96%;
| padding-bottom: 10px;
| display: flex;
| flex-direction: column;
| }
|
|