.loadingbox{
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 10000;
}
.loadingbox .loadingbox_mask{
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 10001;
}
.loadingbox .loadingbox_icon{
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10002;
}
.loadingbox .loadingbox_icon img{
	width: 100%;
}
.loadingbox .loadingbox_icon span{
	font-size: 16px;
	color: #FFF;
}