
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,li,ol {list-style-type: none;}

/****轮播*****/
.carousel{
}
.carousel-indicators li{
	background: #fff;
	width: 20px;
	height: 20px;
	border: none;
	margin: 0 2px;
}
.carousel-indicators .active{
	background: #2ea3f2;
	width: 20px;
	height: 20px;
	margin: 0 2px;
}
.carousel{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.carousel img {
    display: block;
    height: auto;
    max-width: 100%;
}
.carousel-indicators{
	bottom:5px;
}

/************当屏幕宽度小于767时***************/
@media (max-width: 767px) {
	
.carousel{
	margin-top: 20px;
    }
.carousel-indicators li,.carousel-indicators .active{width:10px;height:10px;}
}

