@charset "UTF-8";


/* loading > 加载
--------------------------------------------------------------------*/
#loadingBox {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999999;
}

.loading {
	width: 40px;
	height: 40px;
	position: relative;
	margin: 120px auto 0;
}

.loading .double-bounce1,
.loading .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #fff;
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: bounce 2s infinite ease-in-out;
	animation: bounce 2s infinite ease-in-out;
}

.loading .double-bounce2 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

@-webkit-keyframes bounce {
	0%,
	100% {
		-webkit-transform: scale(0)
	}
	50% {
		-webkit-transform: scale(1)
	}
}

@keyframes bounce {
	0%,
	100% {
		transform: scale(0);
		-webkit-transform: scale(0)
	}
	50% {
		transform: scale(1);
		-webkit-transform: scale(1)
	}
}


/* cd-top > 返回顶部
--------------------------------------------------------------------*/
.cd-top {
	display: block;
	height: 40px;
	width: 40px;
	position: fixed;
	z-index: 500;
	bottom: 55px;
	right: 15px;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
	font-size: 40px;
	color: #fff;
	text-align: center;
	line-height: 36px;
	cursor: pointer;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, .2);
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out {
	opacity: 1;
}