:root {
    --dialog-color-primary: #CA3525;
}

.mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.8);
    z-index: 900;
    align-items: center;
    justify-content: center;
}

.login-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 14px;
    display: flex;
    max-width: 776px;
    height: 560px;
    width: 100%;
    margin: 0 20px;
    overflow: hidden;
}

.login-dialog-left {
    width: 348px;
}

.login-dialog-left img {
    position: absolute;
    object-fit: contain;
}

.login-dialog-left .img1 {
    width: 318px;
    height: 503px;
    left: 0;
    top: 0;
}

.login-dialog-left .img2 {
    width: 347px;
    height: 634px;
    left: 0;
    top: 0;
}

.login-dialog-left .img3 {
    width: 293px;
    height: 259px;
    left: 35px;
    top: 150px;
}

.login-dialog-right {
    flex: 1;
    padding: 68px 32px 0;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close-pup-dialog {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    right: 12px;
    top: 12px;
    box-shadow: 0 3px 12px -1px rgba(0, 0, 0, .15);
    color: #121212;
    font-size: 22px;
    cursor: pointer;
    text-align: center;
    line-height: 44px;
}

.login-dialog-right form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-title {
    margin-bottom: 32px;
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
}

.l-menu {
    margin: 0 0 32px;
    display: flex;
    justify-content: center;
}

.l-menu div {
    padding: 0 12px 6px;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    position: relative;
    cursor: pointer;
    margin: 0 30px;
    white-space: nowrap;
}

.l-menu .on {
    color: var(--dialog-color-primary);
}

.l-menu .on:after {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    content: '';
    display: block;
    height: 4px;
    background: var(--dialog-color-primary);
    border-radius: 4px 4px 0 0;
}

.l-cont-inner {
    display: none;
    flex-direction: column;
    align-items: center;
}

.l-cont-inner.on {
    display: flex;
}

.wx-qr {
    width: 240px;
    height: 240px;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #CDCDCD;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.wx-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wx-qr-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #F8E8E7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wx-qr-cover .txt {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
    color: #CA3525;
}

.wx-qr-cover .zh-btn {
    background: none;
    height: 36px;
    width: fit-content;
}

.wx-qr-cover .zh-btn:hover {
    border-color: var(--dialog-color-primary);
}

.l-toast {
    font-size: 14px;
    text-align: center;
    color: #787878;
}

.l-line {
    margin: 20px 0;
    background: #CDCDCD;
    height: 1px;
    width: 100%;
}

.zh-btn {
    border-radius: 40px;
    border: 1px solid var(--dialog-color-primary);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    height: 44px;
    overflow: hidden;
    padding: 12px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--dialog-color-primary);
    color: #fff;
    transition: all .3s;
}

.zh-btn:hover {
    background-color: #f8e8e7;
    color: var(--dialog-color-primary);
}

.zh-btn-outline {
    color: var(--dialog-color-primary);
    border-color: var(--dialog-color-primary);
    background: #fff;
}

.zh-btn-outline:hover {
    color: #fff;
    background-color: var(--dialog-color-primary);
    border-color: transparent;
}

.zh-btn-text {
    border-color: transparent;
    color: var(--dialog-color-primary);
    background-color: transparent;
    width: fit-content;
}

.f-item {
    margin-bottom: 16px;
    width: 100%;
}

.f-label {
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 8px;
}

.f-box {
    border-radius: 22px;
    box-sizing: border-box;
    height: 44px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.f-box.border {
    border: 1px solid #CDCDCD;
}

.mb-16 {
    margin-bottom: 16px;
}

.f-box-slide {
    background: #CDCDCD;
}

.f-box input {
    flex: 1;
    font-size: 16px;
    padding: 0 10px;
    border: none;
    outline: none;
}

.phone-number {
    padding: 0 10px 0 16px;
    white-space: nowrap;
    width: fit-content;
    font-size: 16px;
    border-right: 1px solid #CDCDCD;
    line-height: 18px;
}

.f-box .sent-btn {
    position: absolute;
    right: 0;
}

.forget-link {
    font-size: 14px;
    color: #787878;
    margin-top: 8px;
    display: block;
}

.l-know {
    font-size: 12px;
    line-height: 18px;
    margin-top: 8px;
    display: flex;
    font-weight: normal;
}

.l-know a {
    color: var(--dialog-color-primary);
}

.l-know input {

}

.checkbox-box {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #CDCDCD;
    border-radius: 2px;
    color: transparent;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    flex-shrink: 0;
    margin: 0 6px 0 0 !important;
    outline: none !important;
}

.checkbox-box:checked {
    color: #fff;
    background-color: var(--dialog-color-primary);
    border: 1px solid var(--dialog-color-primary);
}

.checkbox-box:after {
    content: "✔";
}

.member-login-back {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 12px -1px rgba(0, 0, 0, .15);
    position: fixed;
    left: 10px;
    z-index: 2;
    margin-top: 20px;
    transition: all 220ms cubic-bezier(.4, 0, .2, 1);
    transition-duration: .35s;
    transform: rotate(180deg);
}

.member-login-back:hover {
    background: #f4f4f4;
}

.drag {
    position: relative;
    width: 100%;
    height: 44px;
    border-radius: 44px;
    overflow: hidden;
}

.drag div, .drag span {
    height: 100% !important;
    line-height: 44px !important;
}

.drag .nc_wrapper {
    width: 100% !important;
}

.drag .nc-container .nc_scale .btn_slide, .drag .nc-container .nc_scale .btn_ok {
    width: 60px !important;
    border-radius: 40px;
}

.j-warning {
    border: 1px dashed #d81d25;
    padding: 3px 15px;
    background: white;
    color: #d81d25;
    position: absolute;
    z-index: 199;
}

.j-warning:before {
    content: '\21E0 ';
    font-style: normal;
    speak: none;
    color: #d81d25;
    left: -24px;
    position: absolute;
    font-size: 25px;
}

.error-messgae {
    display: none;
    position: absolute;
    font-size: 12px;
    padding: 2px 6px 4px;
    color: #fff;
    background: #ca3525;
    border-radius: var(--border-radius-xs);
    right: 20px;
    z-index: 2;
}


#memberMobileLogin .xieyi {
    position: relative
}

#memberMobileLogin .xieyi .error-messgae {
    position: absolute;
    top: 20px;
    left: 0;
    width: 120px;
}

@media (max-width: 992px) {
    .l-cont{
        width: 100%;}
    .login-dialog-right form{
        width: 100%;}
    .l-cont-inner.on{
        width: 100%;
        display: ;}
    .login-dialog-left {
        display: none;
    }

    .login-dialog {
        left: initial;
        width: 90%;
        top: calc(50% - 280px);
        transform: inherit;
    }

}

@media (max-width: 800px) {
    #member{
        width: 100%;}
    .f-item{
        width: 90%;}
    .l-know{
        width: 90%;}
    .login-dialog-right{padding: 68px 10px 0;}
    .loginSubmit{width: 90%;
        margin-top: 10px;}
}
