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
| html, body, #app {
| height: 100%;
| margin: 0;
| padding: 0;
| }
|
| .login-container {
| display: flex;
| align-items: center;
| justify-content: center;
| position: relative;
| width: 100%;
| height: 100%;
| background-image: url("/images/pro-bg.png");
| background-size: cover;
| background-position: center;
| }
|
| .login-weaper {
| display: flex;
| width: 800px;
| box-shadow: -4px 5px 20px rgba(0, 0, 0, 0.3);
| border-radius: 8px;
| overflow: hidden;
| }
|
| .login-left,
| .login-border {
| min-height: 450px;
| display: flex;
| align-items: center;
| }
|
| .login-left {
| border-top-left-radius: 8px;
| border-bottom-left-radius: 8px;
| justify-content: center;
| flex-direction: column;
| background: linear-gradient(135deg, #409eff 0%, #67b8ff 100%);
| color: #fff;
| width: 45%;
| padding: 30px;
| box-sizing: border-box;
| }
|
| .login-time {
| position: absolute;
| top: 30px;
| left: 30px;
| color: rgba(255, 255, 255, 0.9);
| font-weight: 300;
| font-size: 16px;
| }
|
| .login-left .img {
| width: 120px;
| margin-bottom: 20px;
| }
|
| .login-left .title {
| text-align: center;
| color: #fff;
| font-weight: 400;
| letter-spacing: 3px;
| font-size: 22px;
| margin: 0;
| }
|
| .login-border {
| border-top-right-radius: 8px;
| border-bottom-right-radius: 8px;
| background-color: #fff;
| width: 55%;
| padding: 40px 30px;
| box-sizing: border-box;
| }
|
| .login-main {
| width: 100%;
| }
|
| .login-title {
| color: #333;
| margin-bottom: 8px;
| font-weight: 500;
| font-size: 20px;
| text-align: center;
| letter-spacing: 2px;
| }
|
| .login-title-child {
| color: #999;
| margin-bottom: 30px;
| font-weight: 300;
| font-size: 12px;
| text-align: center;
| letter-spacing: 1px;
| }
|
| .login-form {
| margin: 0;
|
| .el-form-item {
| margin-bottom: 20px;
| }
|
| .el-input {
| input {
| padding: 12px 15px;
| border: 1px solid #e4e7ed;
| border-radius: 6px;
| font-size: 14px;
| transition: border-color 0.3s;
|
| &:focus {
| border-color: #409eff;
| outline: none;
| }
| }
|
| .el-input__prefix {
| i {
| color: #909399;
| font-size: 16px;
| }
| }
|
| .el-input__suffix {
| i {
| color: #909399;
| cursor: pointer;
| }
| }
| }
| }
|
| .login-submit {
| width: 100%;
| height: 42px;
| background: linear-gradient(135deg, #409eff 0%, #67b8ff 100%);
| border: none;
| border-radius: 6px;
| font-size: 16px;
| letter-spacing: 2px;
| color: #fff;
| cursor: pointer;
| margin-top: 10px;
| transition: opacity 0.3s;
|
| &:hover {
| opacity: 0.9;
| }
|
| &:active {
| opacity: 0.8;
| }
| }
|
|