
.bcontent {
	/* 给定容器宽高度 */
	width: 100%;
	overflow: hidden;
	height: 100%;
	position: relative; border-radius:5px; overflow:hidden;
}

.bcontent img {
	height: 100%;
	width: 100%;
}

.bcontent .points {
    position: absolute;
    z-index: 5;
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: hsla(0,0%,0%,0.2);*/
    bottom: 8px;
    /*left: 44%;*/
    height: 20px;
    border-radius: 25px;
    /*right: 44%;*/
}

.bcontent .points li {
	cursor: pointer;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0px 6px;
	border-radius: 15px;
	background-color: cadetblue;
}

.bcontent .active {
    background-color: hsla(0,0%,100%,1.00) !important;
}

.bcontent .prev {

	border-radius: 0 30px 30px 0;
}

.bcontent .next,
.bcontent .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;
}

.bcontent .next {
	right: 0px;
	border-radius: 30px 0 0 30px;
}
.bcontent .prev:hover{background-color: hsla(0,0%,0%,0.5);}
.bcontent .next:hover{background-color: hsla(0,0%,0%,0.5);}