.index-next-a{
	width: 100%;
	height: 100%;
	display: block;
	transition: all .4s linear;
	position: relative;
 	animation: move 3s linear infinite alternate;
}
@-webkit-keyframes move{
  
	0%{
		left: -10px;
	}
	50%{
		left: 0;
	}
	100%{
		left: -10px;
	}
}
@keyframes move{
  
	0%{
		left: -10px;
	}
	50%{
		left: 0;
	}
	100%{
		left: -10px;
	}
}
.rwd-product-list:after{
	animation: move2 1s linear infinite alternate;
}
@-webkit-keyframes move2{
  
	0%{
		bottom: -5px;
	}
	50%{
		bottom: 0;
	}
	100%{
		top: -5px;
	}
}
@keyframes move2{
  
	0%{
		bottom: -5px;
	}
	50%{
		bottom: 0;
	}
	100%{
		top: -5px;
	}
}