#clicaptcha-container{
	display: none;
	width: 350px;
	height: 290px;
	padding: 15px;
	border: 1px solid #b1b3b8;
	background-color: #f5f6f7;
	position: fixed;
	z-index: 10000;
	left: 50%;
	top: 50%;
	margin-left: -191px;
	margin-top: -161px;
	border-radius: 10px;
	box-shadow: 0 0 0 1px hsla(0,0%,100%,.3) inset, 0 .5em 1em rgba(0, 0, 0, 0.6);
}
#clicaptcha-container .clicaptcha-imgbox{
	position: relative;
}
#clicaptcha-container .clicaptcha-imgbox .step{
	position: absolute;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: #f04848;
	border: 3px solid #f04848;
	background-color: #fff;
	border-radius: 30px;
	box-shadow: 0 0 10px #fff;
	-webkit-user-select: none;
	user-select: none;
}
#clicaptcha-container .clicaptcha-img{
	width: 350px;
	height: 200px;
	border: none;
}
#clicaptcha-container .clicaptcha-title{
	font-family: 'Microsoft YaHei';
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	text-align: center;
	color: #333;
}
#clicaptcha-container .clicaptcha-title span{
	font-size: 16px;
	font-weight: bold;
	color: #c00;
}
#clicaptcha-container .clicaptcha-title span.clicaptcha-clicked{
	color: #069;
}
#clicaptcha-container .clicaptcha-refresh-box{
	position: relative;
	margin-top: 10px;
}
#clicaptcha-container .clicaptcha-refresh-line{
	position: absolute;
	top: 16px;
	width: 140px;
	height: 1px;
	background-color: #ccc;
}
#clicaptcha-container .clicaptcha-refresh-line-left{
	left: 5px;
}
#clicaptcha-container .clicaptcha-refresh-line-right{
	right: 5px;
}
#clicaptcha-container .clicaptcha-refresh-btn{
	display: block;
	margin: 0 auto;
	width: 32px;
	height: 32px;
	background: url(../../images/refresh.png) no-repeat;
}
#clicaptcha-container .clicaptcha-refresh-btn:hover{
	background-position:-32px 0;
}
#clicaptcha-container .clicaptcha-refresh-btn:not(:hover){
	background-position: 0 0;
}
#clicaptcha-mask{
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background-color: rgb(0, 0, 0);
}

/* 手机端响应式样式 */
@media screen and (max-width: 768px) {
	#clicaptcha-container {
		width: 90vw;
		height: auto;
		min-height: 300px;
		padding: 10px;
		margin-left: -45vw;
		margin-top: -150px;
		border-radius: 8px;
		box-shadow: 0 0 0 1px hsla(0,0%,100%,.3) inset, 0 .3em .6em rgba(0, 0, 0, 0.4);
	}
	
	#clicaptcha-container .clicaptcha-img {
		width: 100%;
		height: auto;
		max-height: 180px;
	}
	
	#clicaptcha-container .clicaptcha-title {
		height: 35px;
		line-height: 35px;
		font-size: 13px;
	}
	
	#clicaptcha-container .clicaptcha-title span {
		font-size: 14px;
	}
	
	#clicaptcha-container .clicaptcha-imgbox .step {
		width: 18px;
		height: 18px;
		line-height: 18px;
		font-size: 12px;
		border-width: 2px;
	}
	
	#clicaptcha-container .clicaptcha-refresh-line {
		top: 14px;
		width: 30%;
	}
	
	#clicaptcha-container .clicaptcha-refresh-btn {
		width: 34px;
        height: 32px;
		background-size: 56px 34px;
		background: url(../../images/refresh.png) no-repeat;
	}
	#clicaptcha-container .clicaptcha-refresh-btn:hover{
		background-position:-32px 0;
	}
	#clicaptcha-container .clicaptcha-refresh-btn:not(:hover){
	background-position: 0 0;
}
}
/* 超小屏幕手机适配 */
@media screen and (max-width: 480px) {
	#clicaptcha-container {
		width: 90vw;
		margin-left: -47.5vw;
		margin-top: -120px;
		padding: 8px;
		min-height: 250px;
	}
	
	#clicaptcha-container .clicaptcha-img {
		max-height: 150px;
	}
	
	#clicaptcha-container .clicaptcha-title {
		height: 30px;
		line-height: 30px;
		font-size: 12px;
	}
	
	#clicaptcha-container .clicaptcha-title span {
		font-size: 13px;
	}
	
	#clicaptcha-container .clicaptcha-imgbox .step {
		width: 16px;
		height: 16px;
		line-height: 16px;
		font-size: 11px;
	}
	
	#clicaptcha-container .clicaptcha-refresh-btn {
		width: 34px;
        height: 32px;
		background-size: 56px 34px;
		background: url(../../images/refresh.png) no-repeat;
	}
	#clicaptcha-container .clicaptcha-refresh-btn:hover{
		background-position:-32px 0;
	}

	#clicaptcha-container .clicaptcha-refresh-btn:not(:hover){
	background-position: 0 0;
}
}

/* 横屏手机适配 */
@media screen and (max-width: 768px) and (orientation: landscape) {
	#clicaptcha-container {
		width: 70vw;
		margin-left: -35vw;
		margin-top: -100px;
		min-height: 200px;
	}
	
	#clicaptcha-container .clicaptcha-img {
		max-height: 120px;
	}
}
