99 lines
1.8 KiB

.login-bg {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1005;
background: url('../images/login-bg.png') no-repeat center/cover;
}
.login {
width: 545px;
height: 516px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: url('../images/block.png') no-repeat center/cover;
}
.login-content {
width: 483px;
height: 447px;
padding: 0 53px;
margin: 30px auto 0 auto;
text-align: center;
position: relative;
border-radius: 8px;
background-color: rgba(10, 68, 125, 0.4);
}
.login-content:before,
.login-content:after {
content: '';
width: 402px;
height: 26px;
display: block;
position: absolute;
left: 40px;
top: 20px;
background: url('../images/border-top.png') no-repeat center/cover;
}
.login-content:after {
top: auto;
bottom: 20px;
background: url('../images/border-bottom.png') no-repeat center/cover;
}
.login-logo{
margin: 80px 0 40px 0;
}
.login-block {
margin-bottom: 20px;
position: relative;
}
.login-block span{
position: absolute;
top: 12px;
left: 10px;
}
.login-block input{
width: 100%;
height: 40px;
padding-left: 37px;
display: block;
line-height: 44px;
border: 1px solid #0687cd;
border-radius: 5px;
color: #97e1ff;
font-size: 16px;
background-color: rgba(6, 135, 205, 0.2);
}
.login-tip {
margin-top: 15px;
display: block;
text-align: right;
}
.login-tip a {
text-decoration: underline;
display: inline-block;
color: #97e1ff;
}
.login-btn {
width: 100%;
line-height: 46px;
text-align: center;
cursor: pointer;
font-size: 16px;
color: #ffffff;
border-radius: 5px;
background: linear-gradient(#7bebff, #0367c4, #35a1fd);
}