::-webkit-scrollbar{
    display: none;
}
.modal-mask {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
}
.modal-mask .modal-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -125px 0 0 -200px;
    width: 400px;
    height: 250px;
    background-color: #f1f9fc;
    border-radius: 7px;
}
.modal-mask .title-wrapper {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-color: #4FA9F8;
    border-radius: 7px 7px 0 0;
}
.modal-mask .title {
    color: #fff;
    font-size: 14px;
    padding-left: 15px;
}
.modal-mask .close-icon {
    width: 18px;
    height: 18px;
    float: right;
    margin: 10px 10px 0 0;
    cursor: pointer;
}
.modal-mask .pic-wrapper {
    padding: 40px 0 30px 35px;
}
.modal-mask .code-pic {
    width: 110px;
    height: 40px;
    vertical-align: middle;
    cursor: pointer;
}
.modal-mask .code-pic-tips {
    padding-left: 20px;
    color: #333;
    font-size: 13px;
    cursor: pointer;
}
.modal-mask .input-wrapper {
    padding-left: 35px;
}
.modal-mask .input-code {
    width: 100px;
    height: 30px;
    border: none;
    font-size: 12px;
    padding: 5px;
}
.modal-mask .input-code:active, .modal-mask .input-code:focus {
    border: none;
    outline: none;
}
.modal-mask .input-code::placeholder {
    font-size: 12px;
}
.modal-mask .confirm-btn {
    display: inline-block;
    width: 60px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background-color: #22AAFF;
    border-radius: 15px;
    margin-left: 20px;
    cursor: pointer;
}
.modal-mask .err-tips {
    color: rgb(224, 14, 14);
    font-size: 12px;
    padding-left: 20px;
    padding-top: 10px;
    display: none;
}