/*loading 样式*/
.loading-toast {
	opacity: 1;
	display: none;
}

.loading-mask {
	position: fixed;
	z-index: 20;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: black;
	opacity: 0.3;
}

.loading-toast-content {
	position: fixed;
	z-index: 21;
	background: rgba(40, 40, 40, 0.75);
	text-align: center;
	border-radius: 10px;
	color: #FFFFFF;
    width: 120px;
    height: 120px;
	top: 30%;
	left: 50%;
	margin-left: -60px;
}

.loading-i {
	background: url(../../images/loading.gif) no-repeat center;
    background-size: 40px;
	display: inline-block;
    width: 40px;
    height: 40px;
    margin-top: 30px;
}

.loading-p {
	color: #fff;
	font-size: 14px;
    margin-top: 5px;
}