.slides-box {
    width: 100%;
    height: 630px;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.slides {
    position: relative;
    height: 100%;
    width: 100%;
    margin: auto;
    float: left;
}
.slides li {
	position: absolute;
    width:  100%;
    height: 100%;
}
.slides li img{
    display: block;
    width: 100%;
    margin: auto;
}
.prev, .next {
    position: absolute;
    z-index: 99;
    top: 50%;
    margin-top: -40px;
    left: 0;
    height: 70px;
    width: 30px;
    color: #fff;
    cursor: pointer;
    background-color: #000;
    opacity: .5;
}

.prev, .next {
    position: relative;
    text-decoration: none;
    display: block;
    width: 64px;
    height: 64px;
    margin: -32px 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: .8;
    cursor: pointer;
    color: rgba(0, 0, 0, 1);
    background: rgba(180,180,180,.3);
    border-radius: 50%;
    /*text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);*/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.prev:before, .next:before, .prev:after, .next:after{
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 2px;
    height: 14px;
    margin: auto;
    padding: 0;
    background-color: rgba(119,119,119,1);
    -webkit-transform: rotate(40deg) translate(-4px,-3px);
    transform: rotate(40deg) translate(-4px,-3px);
}
.prev:after, .next:after {
    -webkit-transform: rotate(-40deg) translate(-4px,3px);
    transform: rotate(-40deg) translate(-4px,3px);
}
.next:before {
    -webkit-transform: rotate(40deg) translate(4px,3px);
    transform: rotate(40deg) translate(4px,3px);
}
.next:after {
    -webkit-transform: rotate(-40deg) translate(4px,-3px);
    transform: rotate(-40deg) translate(4px,-3px);
}
.prev:hover , .next:hover {
    opacity: 1;
}
.prev {
    left:-70px;
}
.next {
    right:-70px;
    left:auto;
}
.pagination{
	position: absolute;
	bottom: 5px;
	z-index: 99;
}
.pagination li{
    padding: 5px 3px;
	float: left;
}
.pagination li a{
    display: block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 25px;
    background: #000;
	color: #fff;
    text-align: center;
    font-family: Arial;
	text-decoration: none;
}
.pagination .active{
	background: red;
}