/**加载效果旋转**/
@-webkit-keyframes rotate {
	0% {
	-webkit-transform: rotate(0deg);
	}
	50% {
	-webkit-transform: rotate(180deg);
	}
	100% {
	-webkit-transform: rotate(360deg);
	}
}
@keyframes rotate {
	0% {
	transform: rotate(0deg);
	}
	50% {
	transform: rotate(180deg);
	}
	100% {
	transform: rotate(360deg);
	}
}
.loadmore {
	display: block;
	line-height: 50px;
	text-align: center;
	color: #CCC;
	font-size: 14px;
}
.loadmore span {
	height: 20px;
	width: 20px;
	border-radius: 100%;
	display: inline-block;
	margin: 10px;
	border: 2px solid #EA1540;
	border-bottom-color: transparent;
	vertical-align: middle;
	-webkit-animation: rotate 0.75s 0 linear infinite;
	animation: rotate 0.75s linear infinite;
}
.loadover {
	position: relative;
	height: 20px;
	line-height: 20px;
	color: #DDD;
	text-align: center;
	width: 100%;
	z-index:1;
}
.loadover span {
	position: relative;
	display: inline-block;
	padding: 0 6px;
	height: 20px;
	/*background: #F2F2F2;*/
	z-index: 2;
	width: 100%;
}
.loadover:after {
	/*content:''position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
	background: #DCDCDC;
	z-index: 1;*/
}