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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
| .login-container {
| position: relative;
| display: flex;
| align-items: center;
| width: 100%;
| height: 100%;
| // background-color: #fff;
| background: linear-gradient(110deg, rgb(2, 40, 85) 0%, rgb(44, 119, 241) 50%, rgb(255,255,255) 50%, rgb(240,240,240) 100%);
| overflow: hidden;
| &::before{
| // content:' ';
| position: absolute;
| top: 0;
| left: 0;
| width: 100%;
| height: 100%;
| margin-left: -48%;
| background-image: url(/img/login-bg.svg);
| background-position: 100%;
| background-repeat: no-repeat;
| background-size: auto 100%;
| }
| }
| .login-weaper {
| margin: 0 auto;
| width:100%;
| }
|
| .login-left,
| .login-border {
| position: relative;
| min-height: 500px;
| align-items: center;
| display: flex;
| }
| .login-left {
| padding-top: 100px;
| justify-content: center;
| flex-direction: column;
| color: #fff;
| float: left;
| width: 50%;
| position: relative;
| box-sizing: border-box;
| }
| .login-left .img {
| width: 200px;
| }
| .login-time {
| position: absolute;
| left: 25px;
| top: 25px;
| width: 100%;
| color: #fff;
| font-weight: 200;
| opacity: 0.9;
| font-size: 18px;
| overflow: hidden;
| font-weight: bold;
| }
| .login-left .title {
| margin-top: 60px;
| text-align: center;
| color: #fff;
| font-weight: 300;
| letter-spacing: 2px;
| font-size: 28px;
| font-weight: bold;
| }
|
| .login-border {
| border-left: none;
| border-top-right-radius: 5px;
| border-bottom-right-radius: 5px;
| color: #fff;
| width: 50%;
| float: left;
| box-sizing: border-box;
| }
| .login-main {
| margin: 0 auto;
| padding: 30px 50px;
| width: 70%;
| //box-shadow: -4px 5px 10px rgba(255, 255, 255, 0.4);
| box-sizing: border-box;
| }
| .login-main > h3 {
| margin-bottom: 20px;
| }
| .login-title {
| color: #000;
| margin-bottom: 50px;
| font-weight: bold;
| font-size: 28px;
| text-align: center;
| letter-spacing: 4px;
| }
| .login-menu {
| margin-top: 40px;
| width: 100%;
| text-align: center;
| a {
| color: #999;
| font-size: 12px;
| margin: 0px 8px;
| }
| }
| .login-submit {
| width: 100%;
| height: 45px;
| font-size: 18px;
| letter-spacing: 2px;
| font-weight: 300;
| cursor: pointer;
| margin-top: 30px;
| transition: 0.25s;
| background-color: #2C77F1;
| }
| .register-submit {
| width: 100%;
| height: 45px;
| font-size: 18px;
| letter-spacing: 2px;
| font-weight: 300;
| cursor: pointer;
| margin-top: 30px;
| margin-left: 0!important;
| transition: 0.25s;
| }
| .login-form {
| margin: 10px 0;
| i {
| color: #333;
| }
| .el-input {
| input {
| text-indent: 5px;
| }
| .el-input__wrapper{
| padding:5px 10px;
| border-radius: 0;
| }
| .el-input__suffix,.el-input__prefix{
| display: flex;
| align-items: center;
| text-align: center;
| }
| .el-input__prefix{
| margin-left: 8px;
| }
| }
| }
| .login-code {
| width: 100%;
| height: 100%;
| .el-input-group__append{
| background-color: #fff;
| }
| }
| .login-code-box{
| display: flex;
| align-items: center;
| }
| .login-code-img {
| cursor: pointer;
| min-width: 100px;
| padding: 0 5px;
| height: 30px;
| color: #333;
| font-size: 20px;
| font-weight: bold;
| letter-spacing: 3px;
| line-height: 38px;
| text-indent: 5px;
| text-align: center;
| box-sizing: border-box;
| }
|
|