﻿@charset "utf-8";
/*载入页面*/

.loading {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-opacity: 1;
	background: #152e4a;
	left: 0;
	z-index: 10;
	background-size: 4px 4px;
	position: fixed;
	z-index: 9999999999999;
}

.loading .inner {
	width: 240px;
	height: 120px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -80px 0 0 -120px;
	text-align: center;
	color: #f84a3f;
}
.loading-note {
	color: #FFFFFF;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 70%;
	left: 0;
}
.loading .loading_rate {
	/*隐藏进度*/
	display: none;
	/*color: #2e99e6;*/
	font: 4vw "microsoft yahei";
	font-weight: bold;
	line-height: 40px;
}

.spinner {
	margin: 0 auto;
	width: 50px;
	height: 60px;
	text-align: center;
	font-size: 4vw;
}

.spinner>i {
	background-color: #ffffff;
	height: 100%;
	width: 4px;
	display: inline-block;
	-webkit-animation: stretchdelay 1.2s infinite ease-in-out;
	animation: stretchdelay 1.2s infinite ease-in-out;
	margin-left: 4px;
}

.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
	0%,
	40%,
	100% {
		-webkit-transform: scaleY(0.4)
	}
	20% {
		-webkit-transform: scaleY(1.0)
	}
}

@keyframes stretchdelay {
	0%,
	40%,
	100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}
	20% {
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}
