/*html, body, .content {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
}*/

.banner {
	position:relative;
/*	padding:0px;
	margin:0px;*/
/*	width: 100% !important;*/
	height:100%;
	overflow: hidden;
	-moz-user-select:none;
	-webkit-user-select:none;
	cursor:pointer;
}
.banner .imgs {
	position:relative;
	display: block;
	margin:0px;
	padding:0px;
	width: 100%;
	height:100%;
}
.banner .imgs:after {
	content: "";
	display: block;
	clear: both;
}

.banner .imgs  li{
	position:relative;
	display: block;
	float:left;
	margin:0px;
	padding:0px;
	width:100%;
	height:100%;
	min-height: 1px;
	overflow: hidden;
}
.banner_img_item {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	top: 0px;
	left: 0px;
}


.banner .index_img {
	position:absolute;
	width: 100%;
	margin:0px auto;
	text-align:right;
	top: auto;
	bottom:30px;
	height:20px;
	white-space:nowrap;
	z-index: 10;
	padding-right: 3%;
}

.banner .index_img li{
	position:relative;
	display: inline-block;
	margin:10px 20px;
	margin-left: 0px;
	padding:0px;
	width:10px;
	height:10px;
	border-radius:6px 6px;
	background-color:#55576C;
	border:1px solid #55576C;
	cursor:pointer;
	
	transition: all 0.5s linear 0s;
	-webkit-transition: all 0.5s linear 0s;
}

.banner .index_img li:last-child {
	margin-right: 0px;
}

.banner .index_img li.current{
	width: 10px;
	background-color: #fff;
	border:1px solid #fff;
	
	transition: all 0.5s linear 0s;
	-webkit-transition: all 0.5s linear 0s;
}

.leftArrow {
	position:absolute;
	left:0px;
	top:0px;
	width:60px;
	height:100%;
	display:none;
	z-index:3;
	cursor:pointer;
	background: url('../img/arrow_left.png?time=20') no-repeat;
	background-position: center;
	display: none;
}

.rightArrow {
	position:absolute;
	right:0px;
	top:0px;
	width:60px;
	height:100%;
	display:none;
	z-index:3;
	cursor:pointer;
	background: url('../img/arrow_right.png?time=20') no-repeat;
	background-position: center;
	display: none;
}

.banner:hover .leftArrow,  .banner:hover .rightArrow {
	display: block;
}

.banner_video {
	position: relative;
	width: 100%;
	height: auto;
	top: 0px;
	left: 0px;
	display: none;
}

.banner_video_show {
	position: absolute;
	display: block;
	z-index: 4;
}

.banner_play_video {
	position: absolute;
	width: 100px;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 2;
}

.banner_video_close {
	position: absolute;
	width: auto;
	height: auto;
	top: 10px;
	left: auto;
	right: 10px;
	z-index: 5;
	display: none;
	cursor: pointer;
}

.banner_video_close_show {
	display: block;
}

.hidden {
	display: none;
}

@media screen and (min-width:1px) and (max-width:959px) {
	.banner .img {
		width: auto;
	}
	
	.banner:hover .leftArrow,  .banner:hover .rightArrow {
		display: none;
	}
	
	.banner_play_video {
		display: none;
	}
}