<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #F7F8FA;
}

.page-content{
    display: flex;
    width: 75%;
    max-width: 1280px;
    height: 734px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}

.page-left {
    flex: 1;
    background: url("../image/login-left-bg.jpg") no-repeat center center;
    background-size: cover;
}

.page-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-right .form {
    width: 80%;
    max-width: 380px;
}

.form .title {
    color: #1C212A;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.form .form-item {
    margin-bottom: 26px;
}

.form .label {
    color: #1C212A;
    font-size: 14px;
    margin-bottom: 10px;
}

.form .input {
    border: 1px solid #E5E6EB;
    background: #fff;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    position: relative;
}
.form .input.error{
    border: 1px solid #FF6651;
}

.form .input input {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    user-select: none;
    outline: none;
    padding: 0 16px;
    font-size: 14px;
}

.form img {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 13px;
    right: 10px;
    cursor: pointer;
}

.form .login-btn {
    height: 50px;
    width: 100%;
    text-align: center;
    line-height: 50px;
    background: #FF6651;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    margin-top: 26px;
    margin-bottom: 50px;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
}

.form .tips {
    font-size: 14px;
    text-align: center;
    color: #1C212A;
}

.form .tips span {
    color: #FF6651;
    text-decoration: underline;
    cursor: pointer;
}

.form .validate-text {
    color: #FF4D4F;
    font-size: 12px;
    display: none;
    padding-top: 6px;
}

.status-req {
    display: none;
}

.customer-service{
    position: fixed;
    right: 70px;
    bottom: 100px;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.customer-service img{
    width: 38px;
    height: 33px;
    margin-bottom: 5px;
}
.customer-service span{
    font-size: 12px;
    color: #1C212A;
}

.form .verification-code-img{
    flex: 0 0 150px;
    width: 150px;
    height: 50px;
    position: inherit;
    margin-left: 10px;
}
.form .ver-code{
    display: flex;
    height: 50px;
}
.form .ver-code input{
   flex: 1;
}

.copy-bar {
    padding: 0 20px;
    height: 40px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .4);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    text-align: center;
    line-height: 40px;
    color: #fff;
    display: none;
    font-size: 14px;
    max-width: 300px;
}

@media screen and (max-width: 800px) {
    .login-page{
        display: inherit;

    }
    .page-content {
        display: inherit;
        width: 100%;
        height: auto;
        min-height: 100vh;
        background: #fff;
        border-radius: 0;
        overflow: hidden;
        box-shadow: none;
    }
    .page-left{
        flex: 1;
        height: 230px;
        background: url("../image/login_bg_h5.jpg") no-repeat center left;
        background-size: cover;
    }
    .form .title{
        display: none;
    }
    .form .tips{
        margin-bottom: 30px;
    }
    .page-right{
        flex: inherit;
        justify-content: flex-start;
        margin-top: 20px;
    }
    .customer-service{
        display: none;
    }
}</pre></body></html>