.content-login {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.left-banner {
    width: 1262px;
    height: 100%;
    background: #7287FA;
    position: relative;
}

.left-banner .web-title {
    width: 128px;
    height: 45px;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    font-size: 28px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    text-transform: none;
    position: absolute;
    left: 78px;
    top: 50px;
}

.left-banner .web-content {
    position: absolute;
    left: 78px;
    top: 50%;
    transform: translateY(-50%);
}

.left-banner .web-content span {
    width: 475px;
    height: 67px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 30px;
    color: #FFFFFF;
    text-align: left;
    text-transform: none;
}

.left-banner .web-content p {
    width: 636px;
    height: 70px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 40px;
    color: #FFFFFF;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.left-banner .bg {
    height: 100vh;
    width: 100vh;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("/img/image_2521@2x.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.right-form {
    padding: 85px;
    box-sizing: border-box;
    display: grid;
    align-items: center;
    align-content: center;
    gap: 10px;
    width: 480px;
    min-width: 480px;
}

.right-form .no-margins {
    height: 40px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 20px;
    color: #111827;
    line-height: 40px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.right-form .form-control {
    background: #F5F8F9;
    border: 1px solid #F5F8F9;
    color: #A0AEC0 !important;
    display: block;
    padding: 5px 10px;
    width: 100%;
    font-size: 14px;
    border-radius: 45px;
    height: 40px;
}
.right-form .form-control:focus, .single-line:focus {
    border-color: #97aac4 !important;
}
.right-form .btn-success {
    background-color: #7287FA;
    border-color: #7287FA;
    color: #fff;
    width: 100%;
    border-radius: 45px;
}

.right-form .v-code {
    display: flex;
    align-items: center;
}

.right-form .v-code .code-input {
    width: 55%;
}

.right-form .v-code .code-image {
    right: 0px;
    margin: 0px;
    padding: 2px 0px;
    height: 45px;
    box-sizing: border-box;
    width: 45%;
}

.right-form .v-code .code-image img {
   height: 100%;
}

.right-form .checkbox-custom{
    display: flex;
    gap: 2px;
    align-items: center;
}
.right-form .checkbox-custom>*{
    margin:unset!important;
}

/*屏幕小于1000*/
@media screen and (max-width: 950px) {
    .left-banner {
        display: none;
    }
    .right-form{
        height: 100vh;
        width: 100vw;
        box-sizing: border-box;
        min-width: 100vw;
    }
}