/*======轮播图=====*/

.carouselContainer {
	width: 100%;
	max-width: 640px;
	height: 3.6rem;
	overflow: hidden;
	position: relative;
}

#carouselContent {
	position: relative;
}

.carouselContentList {
	float: left;
}

.carouselContentList>a {
	display: block;
	height: 3.6rem;
}

.carouselImg {
	display: block;
	height: 3.6rem;
}


/*===小圆点==*/

#dotContent {
	height: 10px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 5%;
}

#dotContent>li {
	float: left;
	width: 28px;
	height: 10px;
	margin-left: 8px;
	border-radius: 5px;
	cursor: pointer;
	background-color: #999;
}

#dotContent>li.dotHover {
	background-color: #fff;
}


/*=====左右按钮====*/

.iconLeft,
.iconRight {
	width: 80px;
	height: 180px;
	cursor: pointer;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
}

.iconLeft {
	left: 30px;
}

.iconRight {
	right: 30px;
}