
html{
	overflow-y: auto;
	margin:0px;
	padding: 0px;
}
body{
	font-size: 12px;
	margin: 0px auto;
	padding: 0px;
	overflow-y: auto;
}

.navbar{
	height:40px;
	color:#FFF;
	background-color: #2b2b2b;
}
.navItem{
	width: 120px;
	line-height: 40px;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
}
a{
	text-decoration: none;
	color: #FFF
}
.navItem:hover{
	background-color: #ffaa00;
}

.active{
	background-color: #ffaa00;
}


.carousel {
    width: 100%; /* 根据需要调整 */
    overflow: hidden; /* 隐藏超出容器的部分 */
    position: relative; /* 定位父容器 */
}
 
.carousel-images {
    display: flex; /* 使用flex布局 */
    width: 100%; /* 与父容器宽度相同 */
    transition: transform 0.5s ease; /* 平滑过渡效果 */
}
 
.carousel-images img {
    width: 100%; /* 使图片宽度与容器宽度相同 */
    flex-shrink: 0; /* 不允许图片缩小 */
}

.section_title{
	padding-top: 20px;
	line-height: 60px;
	text-align: center;
	font-size: 25px;
}
.section_subtitle{
	line-height: 45px;
	text-align: center;
	font-size: 15px;
}

.content_wraper{
	width: 1024px;
	padding: 20px;
	margin: 0px auto;
}