.index-loading-box {
	width: 6rem;
	height: 1.6rem;
	position: fixed;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

.index-loading-box .icon {
	display: block;
	width: .7rem;
	height: .7rem;
	margin: auto;
	animation: loading 2s infinite;
}

.index-loading-box p {
	font-size: .26rem;
	color: #08A7FF;
	text-align: center;
	padding-top: .2rem;
}

@keyframes loading {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}
