.loadingbox{
	position: fixed;
	z-index: 3000200;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
}
.loadingbox .mask{
	position: fixed;
	z-index: 900;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.loadingbox .content{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	border-radius: 10px;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
	background-color: #FFF;
	z-index: 1000;
	text-align: center;
}
.loadingbox .content img{
	margin-top: 7.5px;
}