69 lines
1.3 KiB
Plaintext
69 lines
1.3 KiB
Plaintext
.login-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: url(/@/assets/images/login/login_bg.jpg) no-repeat center;
|
|
background-size: cover;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
.name{
|
|
font-family: "PingFangSC";
|
|
font-size: 30px;
|
|
color: #319b45;
|
|
text-align: center;
|
|
position: relative;
|
|
left: 18%;
|
|
top: 2vh;
|
|
margin-bottom: 10px;
|
|
}
|
|
.box-item {
|
|
width: 400px;
|
|
height: 410px;
|
|
&.login {
|
|
background: #ffffff;
|
|
border-radius: 12px 12px 12px 12px;
|
|
padding: 14px 42px;
|
|
position: relative;
|
|
left: 18%;
|
|
top: 15vh;
|
|
}
|
|
.login-title {
|
|
font-size: 30px;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
color: #1e1e1e;
|
|
}
|
|
.login-form {
|
|
margin-top: 7px;
|
|
.captcha-input {
|
|
width: 60%;
|
|
}
|
|
.captcha-img {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.ant-input,
|
|
.ant-input-affix-wrapper {
|
|
height: 44px;
|
|
border: 1px solid #ededed;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.btn {
|
|
width: 100%;
|
|
height: 50px;
|
|
background: #1890ff;
|
|
border-radius: 4px;
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
line-height: 50px;
|
|
cursor: pointer;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
|
|
}
|