/*轮播新闻*/
.leftBannerNews{
	position: relative;
	width: 385px;
	height: 280px;
	margin-top: 12px;
}
.bannerNewsList{
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #444444;
}
.bannerNewsItem{
    position: absolute;
    display: none;
    width: 385px;
    height: 280px;
    overflow: hidden;
}
.bannerNewsItem img{
	display: block;
	width: 100%;
	margin: auto;
	transition: all .3s;
	
}
.bannerNewsItem img:hover{
	transform: scale(1.1);
}
.news_navigator{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 44px;
    background: url(../images/bg_black.png) center center repeat-x;
}
.news_navigator_content{
    height: 44px;
	padding: 0 10px;
}
.banner_news_title{
	width: 285px;
	height: 44px;
}
.title_list{
	position: relative;
	height: 44px;
}
.banner_news_title .title_item{
    position: absolute;
    display: none;
    width: 100%;
    height: 44px;
    line-height: 44px;
}
.banner_news_title .title_item a{
	display: block;
	font-size: 15px;
	color: #FFFFFF;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.banner_news_circle{
	height: 44px;
}
.circle_list{
    margin-top: 16px;
}
.circle_item{
    float: left;
    cursor: pointer;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    background: url(../images/bg_circle.png) center no-repeat;
}

.banner_news_active{
	display: block !important;
}
.title_item_active{
	display: block !important;
}
.navigator_active{
	background: url(../images/bg_circle_hover.png) center no-repeat;
}
