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
| .container {
| display: flex;
| flex-direction: column;
| min-height: 100%;
| background: #f0f2f5;
| }
|
| @media (min-width: 768px){
| .container {
| background-image: url(https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg);
| background-repeat: no-repeat;
| background-position: center 110px;
| background-size: 100%;
| }
| }
|
| .wrap {
| padding: 32px 0;
| flex: 1;
| }
|
| @media (min-width: 768px){
| .wrap {
| padding: 112px 0 24px;
| }
| }
|
| .top {
| text-align: center;
| }
|
| .login-logo {
| height: 44px;
| margin-right: 16px;
| }
|
| img {
| vertical-align: middle;
| border-style: none;
| }
|
| .title {
| font-size: 33px;
| color: rgba(0,0,0,.85);
| font-family: 'Myriad Pro','Helvetica Neue',Arial,Helvetica,sans-serif;
| font-weight: 600;
| position: relative;
| vertical-align: middle;
| }
|
| .desc {
| font-size: 14px;
| color: rgba(0,0,0,.45);
| margin-top: 12px;
| margin-bottom: 40px;
| }
|
|