.captcha-pop {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.70);
    z-index: 10000000;
}

.row-center-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.captcha-wrapper {
    width: 400px;
    min-height: 330px;
    background: #ffffff;
    border-radius: 10px;
    padding: 16px;
    box-sizing: border-box;
}

.captcha-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    position: relative;
    font-size: 18px;
    font-family: PingFang SC, PingFang SC-500;
    font-weight: 500;
    color: #333333;
}

.captcha-header-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 23px;
    height: 23px;
    cursor: pointer;
}

.captcha-sms-img {
    width: 100%;
    height: 100%;
}

.captcha-pic {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px;
}

.captcha-pic-img {
    width: 140px;
    height: 50px;
}

.captcha-pic-reload {
    height: 20px;
    font-size: 14px;
    font-family: PingFang SC, PingFang SC-400;
    font-weight: 400;
    text-align: right;
    color: #18A4EA;
    margin-left: 10px;
    cursor: pointer;
}

.captcha-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    box-sizing: border-box;
}

.captcha-digit {
    width: 40px;
    height: 40px;
    padding: 5px;
    text-align: center;
    background: #edf2f5;
    border-radius: 8px;
    border: 1px #edf2f5 solid;
    font-size: 16px;
    font-family: PingFang SC, PingFang SC-400;
}

.captcha-tip {
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px 0 10px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: PingFang SC, PingFang SC-400;
    font-weight: 400;
    color: #f0342f;
}

/* .captcha-tip-warning {
    display: none;
} */

.captcha-tip-reload {
    flex: 1;
    height: 20px;
    font-size: 14px;
    font-family: PingFang SC, PingFang SC-400;
    font-weight: 400;
    text-align: right;
    color: #18A4EA;
}

.captcha-sms-btn {
    width: 340px;
    height: 44px;
    background: #abc6d4;
    border-radius: 4px;
    margin: 0 auto;
    font-size: 16px;
    font-family: PingFang SC, PingFang SC-500;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    cursor: pointer;
}