/**
 * 滑动验证码样式
 * 
 * @author Ben
 * @version 2021.1.29
 */

#verify-modal {
	background-color: rgba(0,0,0,0.5);
	user-select: none;
	z-index: 2;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex; /*none=隐藏, flex=显示*/
	justify-content: center;
	align-items: center;
}

#verify-modal .verifyImg-box * {
    margin: 0;
    padding: 0;
    outline: none;
}

#verify-modal .verifyImg-box {
    width: 300px;
    /*height: 300px;*/
    margin: 0 auto;
    border: 1px solid #ADADAD;
    border-radius: 15px;
    box-shadow: 1px 1px 1px #ADADAD;
    text-align: center;
    position: relative;
    background: #fff;
}
#verify-modal .verifyImg-box h3 {
    padding: 10px 0;
}
#verify-modal .verifyImg-box .img-box {
    width: 280px;
    height: 200px;
    margin: 0 auto;
    position: relative;
}

#verify-modal .verifyImg-box .img-box .defectImage {
    width: 50px;
    height: 50px;
    left: 0;
    position: absolute;
    z-index: 10;
    box-sizing: border-box;
    border: 3px solid rgba(255,255,255,0.9);
}
#verify-modal .verifyImg-box .img-box .defectImage img {
    width: 100%;
    height: 100%;
}

#verify-modal .verifyImg-box .slider-bar {
    width: 280px;
    height: 30px;
    margin: 10px auto;
    background-color: #DDDDDD;
    border-radius: 10px;
    position: relative;
}
#verify-modal .verifyImg-box .slider-bar .bar-light {
    width: 0px;
    height: 100%;
    margin: 10px auto;
    background-color: skyblue;
    top: -10px;
    left: 0;
    border-radius: 10px;
    position: absolute;
    color: white;
    font-weight: bold;
    line-height: 30px;
}
#verify-modal .verifyImg-box .slider-bar button {
    z-index: 20;
    width: 45px;
    height: 45px;
    position: absolute;
    left: 0;
    top: -8px;
    background: white url(img/yz.png) no-repeat;
    background-size: 100%;
    border-radius: 50%;
    border: 0;
}