#verification {
	position: absolute;
	top: 60px;
	right: 13px;
	display: none;
	z-index: 100;
	background:#fff;
}

/* 刷新 */
#verification .refresh{
	position: absolute;
	top: 50px;
	right: 10px;
	z-index: 10;
	width: 28px;
	height: 28px;
	cursor: pointer;
	background-image: url("/themes/hpstore/case/img/refresh.png");
	background-size: 100% 100%;
}

#box{
	position: relative;
	width: 300px;
	height: 180px;
	padding: 0 20px;
	border-radius: 10px;
	background-image: url("/themes/hpstore/case/img/bg.png");
	background-repeat: no-repeat;
}

#box .item{
	position: absolute;
	width: 90px;
	height: 90px;
}

#box .radio{
	position: absolute;
	z-index: 10;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	background-color: #1abd6c;
}

#box span{
	font-size: 30px;
	position: absolute;
	z-index: 4;
	color: #162761;
	font-weight: bold;
}

#box span:hover{
	cursor: pointer;
}

#resultBox{
	height: 40px;
	font-size: 18px;
	line-height: 40px;
}

#resultBox span{
	font-size: 22px;
	font-weight: bold;
	color: #1f1f1f;
}

/* 当屏幕宽度小于或等于600px时，应用的样式 */  
@media screen and (max-width: 600px) { 
	#verification{
		width: 100%;
		left: 0;
	} 
	#verification .refresh{
		top: 50px;
		right: 20px;
	}
	#box{
		box-sizing: border-box;
		width: calc(100% - 20px);
		padding: 0 10px;
		margin: 0 auto;
	}

	#box span{
		font-size: 28px;
	}

	#resultBox{
		height: 24px;
		font-size: 14px;
		line-height: 24px;
		margin-left: 10px;
		margin-bottom: 10px;
	}
	#resultBox span{
		font-size: 16px;
		font-weight: bold;
	}
}