.sms-code-bg {
    position: fixed;
    z-index: 999998;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
}

.sms-code-modal {
    background: white;
    border-radius: 7px;
    min-width: 290px;
    transform: translate(-50%, 0);
    position: absolute;
    top: 200px;
    left: 50%;
}

#sms-code-form {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
}

.sms-code-title {
    padding: 6px 0 0 0;
    font-size: 17px;
    position: relative;
    color: #333333;
}

.sms-code-tip {
    color: gray;
    font-size: 12px;
}

.sms-code-input {
    margin-top: 20px;
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.sms-code-input-input {
    flex: 1;
    padding: 0 8px;
    font-size: 14px;
    height: 30px;
    border: none;
    border-radius: 0;
    background: white;
    box-sizing: border-box;
}

.sms-code-input-btn {
    line-height: 30px;
    font-size: 13px;
    width: 60px;
    text-align: center;
    color: #0D5BD6;
    cursor: pointer;
}

.sms-code-disabled {
    color: gray !important;
    cursor: not-allowed !important;
}

.sms-code-input-input:focus {
    outline: none;
}

.sms-code-input-input::-webkit-input-placeholder { /* 使用webkit内核的浏览器 */
    color: #686868;
    font-size: 12px;
}

.sms-code-input-input:-moz-placeholder { /* Firefox版本4-18 */
    color: #686868;
    font-size: 12px;
}

.sms-code-input-input::-moz-placeholder { /* Firefox版本19+ */
    color: #686868;
    font-size: 12px;
}

.sms-code-input-input:-ms-input-placeholder { /* IE浏览器 */
    color: #686868;
    font-size: 12px;
}

.sms-code-error {
    padding: 4px 0;
    font-size: 12px;
    color: red;
    max-width: 240px;
    min-height: 25px;
}

.sms-code-form-code-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 90px;
    display: flex;
    align-items: center;
    z-index: 1;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    /*color: #0D5BD6;*/
    background: #0D5BD6;
    color: white;
}

.sms-code-form-code-btn.sms-code-disabled {
    color: white !important;
    background: gray !important;
}

.sms-code-hidden {
    display: none !important;
}

.sms-code-buttons {
    border-top: 1px solid rgba(128, 128, 128, 0.13);
    display: flex;
}

.sms-code-button {
    flex: 1;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    cursor: pointer;
}

.sms-code-cancel {
    color: gray;
}

.sms-code-done {
    color: #0D5BD6;
    border-left: 1px solid rgba(128, 128, 128, 0.13);
}

.has-sms-code-btn {
    padding-right: 100px !important;
}