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
| .login-container {
| height: 100vh;
| min-height: 600px;
| background: #000000;
| .logo {
| height: 100px;
| padding-top: 30px;
| border-bottom: 2px solid #06b4f7;
| img {
| max-height: 100%;
| }
| }
| .login-middle {
| height: calc(100vh - 194px);
| min-height: 420px;
| background: url('../../assets/img/loginbg.png');
| background-size: cover;
| background-position: center center;
| border-bottom: 2px solid #06b4f7;
|
| .login-form {
| float: right;
| margin-top: 5%;
| margin-right: 20%;
| padding: 15px;
| background: #ffffff;
| width: 18vw;
| min-width: 300px;
| border-radius: 5px;
|
| h4 {
| font-size: 18px;
| font-weight: bold;
| color: #0A95CB;
| margin-bottom: 3vh;
| }
| .minline {
| margin-bottom: 10px;
| margin-top: -10px;
| }
| button {
| width: 100%;
| height: 40px;
| line-height: 40px;
| }
| .ant-dropdown-link {
| float: right;
| cursor: pointer;
| line-height: 20px;
| margin-top: 10px;
| }
| }
| }
| .login-bottom {
| text-align: center;
| color: #ffffff;
| padding-top: 20px;
| p span.split {
| margin-right: 15px;
| }
| }
| .ant-btn-primary[disabled] {
| color: #fff;
| background-color: #40a9ff;
| border-color: #40a9ff;
| }
| }
| .ant-message {
| top: 50px;
| z-index: 1080;
| }
|
|