| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- 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;
- }
|