﻿.banner {
	position: relative;
	width: 1300px;
	height: 450px;
	overflow: hidden;
}

.bannerContent {
	position: relative;
}

.banner_item {
	opacity: 0;
	position: absolute;
	left: -650px;
	margin-left: 50%;
	/*切换动画*/
	transition-duration: .2s;
	transition-property: opacity;
	transition-timing-function: ease;
}

.banner_item a,
.banner_item a img {
	display: block;
	
}


/*banner 当前项目样式*/

.banner_active {
	opacity: 1;
}

.navigator {
	position: absolute;
	bottom: 20px;
	width: 100%;
}

.navigator_list {
	width: 40%;
	text-align: center;
	margin: auto;
	font-size: 0;
}

.navigator_item {
	/*指示器普通样式*/
	display: inline-block;
	margin-left: 15px;
	width: 15px;
	height: 15px;
	font-size: 14px;
	line-height: 10px;
	color: #ffffff;
	text-align: center;
	background: url(../images/banner_item.png) center no-repeat;
	cursor: pointer;
	
}

.navigator_item {
	/*兼容ie7*/
	*display: inline;
}

.navigator_item_active {
	/*指示器活动样式*/
	background:url(../images/banner_active.png) center no-repeat;
}

