.swiper {
	/* 给定容器宽高度 */
	width: 750px;
	overflow: hidden;
	height: 465px;
	position: relative;
	margin: 0 auto;
	background-color: #ccc;
	margin-top: 5px;
}

.swiper img {
	height: 100%;
	width: 100%;
}

.swiper .points {
    position: absolute;
    z-index: 5;
    list-style: none;
    width: 30%;
    bottom: 10px;
    right: 10px;
    height: 20px;
    line-height: 20px;
    align-items: right;
    text-align: right;
}

.swiper .points li {
	cursor: pointer;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-left: 15px;
	background-color: cadetblue;
}

.swiper .active {
    background-color: hsla(0,0%,100%,1.00) !important;
}

.swiper .prev {

	border-radius: 0 30px 30px 0;
}

.swiper .next,
.swiper .prev {
    appearance: menu;
    margin: 0 auto;
    width: 40px;
    display: block;
    float: left;
    height: 40px;
    position: absolute;
	line-height: 40px;
	text-align: center;
	font-family: "宋体";
	color: aliceblue;
    z-index: 999;
    background-color: hsla(0,0%,0%,0.1);
    top: 45%;
    -webkit-appearance: button;
    cursor: pointer;
}

.swiper .next {
	right: 0px;
	border-radius: 30px 0 0 30px;
}
.swiper .prev:hover{background-color: hsla(0,0%,0%,0.5);}
.swiper .next:hover{background-color: hsla(0,0%,0%,0.5);}