Files
2026-04-14 17:38:46 +08:00

101 lines
1.5 KiB
CSS

body {
}
.login {
min-width: 1180px;
width: 100vw;
height: 100vh;
background-color: #F6F6F6;
display: flex;
align-items: center;
justify-content: center;
}
.login-form-box {
display: flex;
}
.logo {
position: fixed;
top: 10px;
left: 40px;
}
.login-left .login-left-img{
width: 500px;
height: 500px;
}
.login-left .login-left-img img{
width: 100%;
height: 100%;
}
.login-right {
width: 500px;
height: 500px;
background-color: white;
}
.login-title {
font-size: 24px;
font-weight: 500;
margin-top: 40px;
margin-bottom: 50px;
}
.login-form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.form-box-item {
width: 346px;
display: flex;
align-items: center;
height: 40px;
border:1px solid rgba(229,229,229,1);
margin-top: 16px;
}
.form-box-checked {
width: 346px;
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 16px;
height: 40px;
}
.submit-btn {
width:346px;
height:44px;
display: flex;
justify-content: center;
align-items: center;
color: white;
background-color: #2ad3b6;
border: none;
}
.icon {
width: 45px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border:1px solid rgba(229,229,229,1);
}
footer {
position: fixed;
bottom: 20px;
left: 40%;
font-size:12px;
color:rgba(112,112,112,1);
font-weight:400;
}