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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
| .wave {
| position: fixed;
| width: 50%;
| height: 100%;
| left: 0;
| bottom: 0;
| z-index: -1;
| width: 50%;
| height: 100%;
| float: left;
| justify-content: center;
| background: url('@/assets/login/bg.png') no-repeat left center;
| background-size: cover;
| }
| .logo1{
| padding:40px;
| }
|
| .login-container {
| width: 100vw;
| height: 100vh;
| max-width: 100%;
| display: grid;
| grid-template-columns: repeat(2, 1fr);
| grid-gap: 18rem;
| padding: 0 2rem;
| }
|
| .img {
| display: flex;
| justify-content: flex-end;
| align-items: center;
| }
|
| .img img {
| width: 500px;
| }
|
| .login-box {
| display: flex;
| align-items: center;
| text-align: center;
| overflow: hidden;
| }
|
| .login-form {
| width: 360px;
| }
|
| .avatar {
| width: 350px;
| height: 80px;
| }
|
| .login-form h2 {
| text-transform: uppercase;
| margin: 15px 0;
| color: #999;
| font:
| bold 200% Consolas,
| Monaco,
| monospace;
| }
|
| @media screen and (max-width: 1180px) {
| .login-container {
| grid-gap: 9rem;
| }
|
| .login-form {
| width: 290px;
| }
|
| .login-form h2 {
| font-size: 2.4rem;
| margin: 8px 0;
| }
|
| .img img {
| width: 360px;
| }
|
| .avatar {
| width: 280px;
| height: 80px;
| }
| }
|
| @media screen and (max-width: 968px) {
| .wave {
| display: none;
| }
|
| .img {
| display: none;
| }
|
| .login-container {
| grid-template-columns: 1fr;
| }
|
| .login-box {
| justify-content: center;
| }
| }
|
|