.loading {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 999999999999999999;
	font-size: 20px;
	background-color: #fff;
	text-align: center;
}

.loading.active {
	-webkit-animation: fadeAnim 0.3s forwards ease-in-out;
	animation: fadeAnim 0.3s forwards ease-in-out;
}

.load {
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	
	
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	text-align:center;
	
}

.load-img{
	max-width: 100%;
	
}
.load-text {
	font-weight: 800;
	font-size: 150px;
	line-height: 150px;
	color: #f0f0f0;
	display: inline-block;
	
}



@-webkit-keyframes fadeAnim {
	from {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes fadeAnim {
	from {
		opacity: 1
	}

	to {
		opacity: 0
	}
}




/*小屏幕*/
@media screen and (min-width: 960px) and (max-width: 1600px) {
	
	
	
	.load-img{
		max-width: 100%;
		
	}
	.load-text {
		font-weight: 800;
		font-size: 150px;
		line-height: 150px;
		color: #f0f0f0;
		display: inline-block;
		
	}
	
}


/*手机*/
@media screen and (min-width: 0px) and (max-width: 960px) {
	
	
	.load-img{
		max-width: 80%;
		position: absolute;
		left: 50%;
		top: 35%;
		transform: translate(-50%,-50%);
		z-index: 1;
	}
	.load-text {
		font-weight: 600;
		font-size: 60px;
		line-height: 600px;
		color: #f0f0f0;
		display: inline-block;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		z-index: -1;
	}
	
}

