login.less
1.79 KB
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
body{
margin:0;
padding:0;
}
.loginBg{
// width:calc(100vh);
// height: calc(100vh);
opacity:0.8;
background-image: url(../../resource/assets/images/loginBg.jpg);
background-size: cover;
background-position:-680px 50%;
// background-repeat:repeat-x;
position: absolute;
top:0;
left:0;
right: 0;
bottom: 0;
.logo_2{
width:250px;
position: absolute;
opacity:0.8;
top:41px;
left: 41px;
}
}
.loginRight{
width:500px;
background: #fff;
height: calc(100vh);
position: absolute;
right: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
.title{
font-size: 24px;
margin-top:-10%;
margin-bottom: 70px;
.blueLine{
width:100px;
height:4px;
background:rgba(56,178,234,1);
margin:0 auto;
}
}
.ant-input{
border:none ;
outline: none !important;
// border-bottom: 1px solid #E2E2E2
}
input:focus{
border:none !important;
outline: none !important;
box-shadow: none;
}
.inputline{
width:100%;
height:1px;
background:rgba(226,226,226,1);
float: left;
margin-left: -3px;
}
.ideCode{
width:99px;
height:32px;
overflow: hidden;
background:rgba(56,178,234,1);
border-radius:5px;
text-align: center;
line-height: 32px;
letter-spacing: 4px;
color:#fff;
font-size: 12px;
margin-top:5px;
transition: all 0.3s;
cursor: pointer;
&:hover{
box-shadow: -2px 5px 8px rgba(67,132,170,0.3);
}
&:active{
box-shadow: -0px 5px 8px rgba(67,132,170,0.3);
}
img{
vertical-align: baseline ;
}
}
.loginBtn{
width:100%;
background:rgba(56,178,234,1);
border-radius:5px;
box-shadow: -2px 5px 8px rgba(67,132,170,0.3);
}
}