.page-container{
    display: flex;
    width: 100%;
    height: fit-content;
    background: url('../../images/login/bg.png') no-repeat;
    background-size: cover;
    background-position: center;
}
.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-background{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.8);
}
.page-left-img{
    width: 460px;
}
.page-left-text{
    text-align: 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: 486px;
    border: 1px solid #eaebef;
    background: white;
    padding: 30px;
}
.main-title{
    font-weight: bold;
    font-size: 22px;
    color: #666;
    margin: 20px 0 24px 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;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: rgba(33, 37, 41, 0.75);
}
.register a{
    color: #0d6efe;
}
.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: #0d6efd!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%;
    }
}