.verificationDOM_body {
    opacity: 0;
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(100, 100, 100, 0.8);
    /*将内容居中*/
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.1s;
}

.verificationDOM_body[termtyp^="pc_client"]{
    background-color: inherit;
}

.verificationDOM_body * {
    user-select: none;
    transition: 0.1s;
}

.verificationDOM_captcha {
    position: absolute;
    z-index: 102;
}


.verificationDOM_header {
    display: none;
    width: 320px;
    height: 28px;
    color: #323232;
    font-size: 12px;
    background: #F2F2F2;
    border-radius: 2px 2px 0px 0px;
    box-shadow: inset 0px -1px 0px 0px #DCDCDC;
}

[termtyp^="pc_web"] .verificationDOM_header {
    display: flex;
    align-items: center;
}

.verificationDOM_header-logo{
    width: 16px;
    height: 16px;
    margin-left: 8px;
    margin-right: 5px;
}

.verificationDOM_header-close{
    cursor: pointer;
    font-size: 28px;
    color: #828282;
    margin-left:auto;
    margin-right: 8px;
}

.verificationDOM_content {
    border-radius: 2px;
    color: #161616;
    font-size: 14px;
    background-color: white;
    width: 260px;
    padding: 20px 30px;
    height: fit-content;
}

[termtyp^="pc_web"] .verificationDOM_content {
    border-radius: 0px 0px 2px 2px;
}

[termtyp^="mob"] .verificationDOM_content {
    background-color: white;
    border-radius: 2vw;
    width: 66vw;
    padding: 2.5vh 4.3vw;
    height: fit-content;
}

.verificationDOM_title {
    height: 25px;
    line-height: 25px;
    font-size: 18px;
    display: none;
    font-weight: 600;
    font-weight: bolder;
    text-align: center;
    margin-bottom: 1.5vh;
}

[termtyp^="mob"] .verificationDOM_title {
    display: block;
}

.verificationDOM_phone {
    font-size: 13px;
    height: 16px;
    line-height: 16px;
    color: #828282;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

[termtyp^="mob"] .verificationDOM_phone {
    font-size: 3.1vw;
}


.verificationDOM_phone span {
    color: #161616;
}


.verificationDOM_smsCode {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
}

.verificationDOM_smsCodeInput {
    width: calc(100% - 122px);
    height: 30px;
    padding: 0 8px;
    border-radius: 2px;
    border: 1px solid #DCDCDC;
    outline: none;
}

[termtyp^="mob"] .verificationDOM_smsCodeInput {
    /* width: calc(100% - 29.5vw); */
    margin-right: 2vw;
    font-size: 16px;
    color: rgba(0,0,0, 0.84);
    border: 1px solid rgba(0,0,0, 0.04);
    height: 5vh;
    padding: 0 2vw;
    border-radius: 4px;
    outline: none;
}

.verificationDOM_smsCodeInput:hover,
.verificationDOM_smsCodeInput:focus {
    border: 1px solid #BFBFBF;
}

[termtyp^="mob"] .verificationDOM_smsCodeInput:hover,
[termtyp^="mob"] .verificationDOM_smsCodeInput:focus {
    border: 1px solid rgba(0,0,0, 0.04);
}

.verificationDOM_smsCodeInput::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #BFBFBF;
}

.verificationDOM_smsCodeBtn {
    cursor: pointer;
    width: 92px;
    height: 30px;
    border-radius: 2px;
    border: 1px solid #DCDCDC;
    text-align: center;
    line-height: 30px;
}

[termtyp^="mob"] .verificationDOM_smsCodeBtn {
    width: 23vw;
    height: 5vh;
    font-size: 14px;
    color: rgba(0,0,0, 0.84);
    border: 1px solid;
    border-color: rgba(0,0,0, 0.04);
    border-radius: 4px;
    line-height: 5vh;
}

.verificationDOM_smsCodeBtn:hover {
    border: 1px solid #BFBFBF;
}

[termtyp^="mob"] .verificationDOM_smsCodeBtn:hover {
    border: 1px solid;
    border-color: rgba(0,0,0, 0.04);
}


.verificationDOM_smsCodeError {
    display: none;
    position: absolute;
    width: 100%;
    top: calc(100% + 2px);
    left: 0;
    font-size: 12px;
    color: #DA0000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.verificationDOM_footer {
    display: flex;
    justify-content: space-around;
}

.verificationDOM_Btn {
    flex: 1;
    cursor: pointer;
    border-radius: 2px;
    background: rgba(0,0,0, 0.04);
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    color: rgba(0,0,0, 0.84);
    text-align: center;
}

[termtyp^="mob"] .verificationDOM_Btn {
    height: 44px;
    line-height: 44px;
    border-radius: 4px;
    font-size: 16px;
}

/*取消按钮*/
.verificationDOM_close {
    display: none;
    margin-right: 2.1vw;
}

[termtyp^="mob"] .verificationDOM_close {
    display: block;
}

/*确定按钮*/
.verificationDOM_submit {
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.4000000059604645;
    background: #E62B25;
}

.verificationDOM_submitActive {
    cursor: pointer;
    opacity: 1;
    background: #DA0000;
}

.verificationDOM_submitActive:hover {
    background: #E62B25;
}


#weakPassword_mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    background-color: rgba(0, 0, 0, 0.7);
}

:root .weakPassword_wrapper {
    background-color: rgba(0, 0, 0, 0.7);
}
#weakPassword {
    width: 310px;
    height: 100px;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0px 0px 20px 0px;
    border-radius: 5px;
    z-index: 300;
}
.weakPasswordDOM_info {
    text-align: center;
    margin-top: 15px;
}
.weak_password_btn {
    width: 100px;
    height: 30px;
    line-height: 30px;
    background: #008DFF;
    color: #fff;
    border-radius: 5px;
    text-align: center;
}
.weak_password_btn_group {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 15px;
}
.weakPasswordDOM_exitBtn {
    display: none;
    width: 100px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #ccc;
}
.weakPasswordDOM_continueLoginBtn {
    display: none;
    width: 100px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #ccc;
}
.weakPasswordDOM_header {
    display: flex;
    align-items: center;
    width: 310px;
    height: 24px;
    color: #323232;
    font-size: 12px;
    background: #F2F2F2;
    border-radius: 2px 2px 0px 0px;
    box-shadow: inset 0px -1px 0px 0px #DCDCDC;
}


.weakPasswordDOM_header-logo{
    width: 16px;
    height: 16px;
    margin-left: 8px;
    margin-right: 5px;
}

.weakPasswordDOM_header-close{
    cursor: pointer;
    font-size: 24px;
    color: #828282;
    margin-left: auto;
    margin-right: 8px;
}