@charset "utf-8";
/*滑块验证码对应的css样式*/
.rightValidate {
    width: 320px;
    margin: 0px auto;
    position: relative;
    line-height: 33px;
    height: 33px;
    text-align: center;
    z-index: 99;
}

.v_rightBtn {
    position: absolute;
    left: 0;
    top: 0;
    height: 33px;
    width: 40px;
    background: #ddd;
    cursor: pointer;
}

.imgBtn {
    width: 40px;
    height: 5px;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.imgBtn img {
    width: 100%;
    height: 213px;
}

.imgBg {
    position: relative;
    width: 320px;
    height: 0;
    box-shadow: 0px 4px 8px #3C5476;
}

.hkinnerWrap {
    border: 1px solid #AAA;
    margin-top: 16px;
}

.green {
    border-color: #34C6C2 !important;
    background: #34C6C2;
}

.green .v_rightBtn {
    color: #fff;
    background: #34C6C2;
}

.red {
    border-color: red !important;
}

.red .v_rightBtn {
    background: red;
    color: #fff;
}

.refresh {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    top: 0;
    font-size: 12px;
    color: #fff;
    text-shadow: 0px 0px 9px #333;
    cursor: pointer;
    display: none;
}

.notSel {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

.mask_container {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity 0.3s ease-out;
    z-index: 1;
}

.mask_container .drag_validation {
    width: 350px;
    height: 345px;
    padding: 0px 15px 15px 15px;
    background-color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 12px;
}

.closeBtn {
    float: right;
    padding: 1px 6px 1px 6px;
    border: 1px solid gray;
    margin: 5px;
    cursor: pointer;
}

.validate_title_box {
    height: 32px;
}

.validate_title {
    padding: 6px;
    margin-top: 2px;
    margin-left: 8px;
    float: left;
    color: gray;
}

.drag_title {
    margin-left: 14px;
    font-size: 16px;
}

.img_btn_gray {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}