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
| .wrap{
| display: flex;
| flex-direction: column;
| align-items: center;
| }
| .title{
| text-align: center;
| padding: 23px 0 30px 0;
| color: rgba(255,255,255,0.8);
| font-size: 14px;
| display: flex;
| align-items: center;
| }
| .title img{
| width: 30px;
| height: 30px;
| margin-right: 17px;
| }
| .section .title{
| margin-bottom: 0;
| }
| .section{
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| width: 90%;
| height: 60%;
| }
| .bottom-btn{
| display: flex;
| justify-content: center;
| margin-top: 36px;
| }
| .bottom-btn .btn{
| width: 98px;
| height: 32px;
| font-size: 14px;
| font-weight: 600;
| border-radius: 30px;
| }
| .bottom-btn .pre{
| color: #FFFFFF;
| margin-right: 20px;
| border: 1px solid #FFFFFF;
| }
| .bottom-btn .admin{
| background: #FFFFFF;
| border: 1px solid #FFFFFF;
| }
| .bottom-btn .pre a{
| color: #fff;
| }
| .bottom-btn .admin a{
| color: #5A487D;
| }
| .trip{
| font-size: 12px;
| }
|
|