.page-container{
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100%;
    background: url('../../images/login/bg.png') no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'element-icons';
}
.site-name{
    position: absolute;
    top: 50px;
    left: 40px;
    font-size: 32px;
    color: rgb(198, 25, 25);
    font-weight: bold;
}
.page-mid{
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-left{
    position: relative;
    /* background: url('/static/img/register/login-bg.jpg') no-repeat; */
    background-size: cover;
    background-position: center;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-left-top{
    /* transform: translate(0%, -58%);  */
    width: 600px;
    
    justify-content: center;
    
}
.page-left-top-1{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
.page-left-top-5{
    font-size: 17px;
    margin-bottom: 10px;
}
.page-left-top-2{
    font-size: 20px;
    margin-bottom: 30px;
}
.page-left-top-3{
    font-size: 18px;
    margin-bottom: 5px;
}
.page-left-top-4{
    font-size: 18px;
    margin-top: 22px;
}
.page-left-top-6{
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}
.page-footer{
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.411);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: rgb(134, 137, 147);
    font-size: 12px;
    width: 100%;
}
.page-footer a{
    color: rgb(134, 137, 147);
    margin-left: 20px;
}
.page-left-background{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.8);
}
.page-left-img{
    width: 460px;
    transform: translate(56px, 276px) rotate(6deg);
}
.page-left-text{
    /* text-align: center; */
    height: 800px;
    background-image: url('../../images/login/left_login_2.png');
    background-size: 100%;
    background-position: center;
    background-repeat:no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* .page-left-text div:nth-child(1){
    font-size: 40px;
    color: #1c1d1f;
    margin-bottom: 12px;
}
.page-left-text div:nth-child(2){
    font-size: 18px;
    color: #333;
} */
.page-right{
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0;
}
.main-box{
    width: 400px;
    /* border: 1px solid #eaebef; */
    background: white;
    padding: 30px;
    box-shadow: rgba(255, 255, 255, 0) 0px 0px 1px;
    border-radius: 12.5px;
}
.main-title{
    font-weight: bold;
    font-size: 24px;
    color: rgb(51, 51, 51);
    margin: 0 0 28px 0;
}
.main-item-title{
    width: 100px;
    color: #4c4d4d;
    font-size: 15px;
}
.main-item{
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.captcha-box{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.captcha-box img{
    height: 42px;
    width: 162px;
    border-radius: 4px;
}
.register{
    display: flex;
    align-items: center;
    font-size: 16px;
    color: rgb(101, 110, 122);
    margin-bottom: 22px;
}
.register a{
    color: rgb(198, 25, 25);
}
.register a:hover{
    opacity: .8;
}
.commit-btn{
    width: 100%;
    height: 44px;
    margin: 20px 0!important;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    background: rgb(198, 25, 25)!important;
    border-color: rgb(198, 25, 25)!important;
    transition: all .5s;
}
.commit-btn:hover{
    opacity: .8;
}

/* 手机样式 */
@media (max-width: 1024px) {
    .page-container{
        flex-wrap: wrap;
    }
    .page-left{
        display: none;
        width: 100%;
        height: fit-content;
        padding: 20px 0;
        flex-wrap: wrap;
    }
    .page-right{
        padding: 30px 0;
        width: 100%;
    }
    .page-left-text{
        width: 100%;
        padding: 0 4%;
    }
    .page-left-text div:nth-child(1){
        font-size: 14px;
    }
    .page-left-text div:nth-child(2){
        font-size: 12px;
    }
    .page-left-img{
        position: unset;
        padding-left: 4%;
        margin-bottom: 12px;
    }
    .main-box{
        width: 92%;
    }
}