/* 滑块验证码弹层样式 */
.jc-captcha-mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 9998;
    display: none;
}

.jc-captcha-box {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 340px;
    margin-left: -170px;
    margin-top: -180px;
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    z-index: 9999;
    display: none;
    box-sizing: content-box;
}

.jc-captcha-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.jc-captcha-close {
    float: right;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    line-height: 14px;
}

.jc-captcha-imgwrap {
    position: relative;
    width: 340px;
    height: 207px;
    overflow: hidden;
}

.jc-captcha-bg {
    width: 340px;
    height: 207px;
    display: block;
}

.jc-captcha-jigsaw {
    position: absolute;
    top: 0;
    left: 0;
    height: 207px;
    display: block;
}

.jc-captcha-refresh {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    text-align: center;
    line-height: 24px;
    cursor: pointer;
    border-radius: 2px;
    font-size: 14px;
}

.jc-captcha-slider {
    position: relative;
    width: 340px;
    height: 40px;
    background: #f7f9fa;
    border: 1px solid #e4e7eb;
    margin-top: 12px;
    box-sizing: border-box;
}

.jc-captcha-slider-tip {
    line-height: 38px;
    text-align: center;
    color: #999;
    font-size: 13px;
    user-select: none;
}

.jc-captcha-slider-btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 38px;
    background: #fff;
    border: 1px solid #e4e7eb;
    cursor: move;
    text-align: center;
    line-height: 38px;
    color: #666;
    box-sizing: border-box;
}

.jc-captcha-msg {
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    color: #f5222d;
    margin-top: 5px;
}

.jc-captcha-msg.ok {
    color: #52c41a;
}
