#wrapper{
	width:100%;
	margin:0 auto;
	height:610px;
	position:relative;
	color:#fff;
	text-shadow:rgba(0,0,0,0.1) 2px 2px 0px;	
}

#slider-wrap{
	width:100%;
	height:610px;
	position:relative;
	overflow:hidden;
}

#slider-wrap ul#slider{
	width:100%;
	height:100%;	
	position:absolute;
	top:0;
	left:0;		
	 display: flex;
  overflow-x: auto;        /* 横向滚动 */
  white-space: nowrap; 
}

#slider-wrap ul#slider li{
	float:left;
	position:relative;
	width:100%;
	overflow:hidden;
	height:610px;	
}
#slider-wrap ul#slider li > div{
	position:absolute;
	top:155px;
	left:35px;
	width:50%;
}

#slider-wrap ul#slider li > div h3{
    font-size: 35px;
    font-weight: 100;
    margin-bottom: 10px;
    line-height: 70px;
    color: #fff;
}

#slider-wrap ul#slider li > div p{
	line-height: 2.4;
    font-size: 16px;
    font-weight: 100;
    margin-bottom: 0px;
    margin-top: 20px;
    color: #fff;
    width: 100%;
	padding-bottom:50px;
	white-space: normal;  
}

#slider-wrap ul#slider li > div a{
	    margin-top: 70px;
    padding: 20px 45px;
    border-radius: 0px;
	    border: 1px solid #fff;
    background: none;
    color: #ffffff;
	    font-size: 14px;
    text-transform: uppercase;
    font-weight: 100;
}


/*btns*/
.btns{
	position:absolute;
	width:50px;
	height:50px;
	top:50%;
	margin-top:-25px;
	line-height:40px;
	text-align:center;
	cursor:pointer;	
	background:rgba(0,0,0,0.1);
	z-index:100;
	
	
	-webkit-user-select: none;  
	-moz-user-select: none; 
	-khtml-user-select: none; 
	-ms-user-select: none;
	
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	transition: all 0.1s ease;
}

.btns:hover{
	background:rgba(0,0,0,0.3);	
}
.btns img{  max-width: 80%;
margin-top:7px;
    max-height: 70%;
    width: auto;
    height: auto;
	vertical-align: middle;}
#next{right:-50px; border-radius:7px 0px 0px 7px;}
#previous{left:-50px; border-radius:0px 7px 7px 7px;}


#slider-wrap.active #next{right:0px;}
#slider-wrap.active #previous{left:0px;}


/*bar*/
#pagination-wrap{
	min-width:20px;
	margin-top:580px;
	margin-left: auto; 
	margin-right: auto;
	height:15px;
	position:relative;
	text-align:center;
}

#pagination-wrap ul {
	width:100%;
}

#pagination-wrap ul li{
	margin: 0 4px;
	display: inline-block;
	width:5px;
	height:5px;
	border-radius:50%;
	background:#fff;
	opacity:0.5;
	position:relative;
  top:0; 
  
}

#pagination-wrap ul li.active{
  width:12px;
  height:12px;
  top:3px;
	opacity:1;
	box-shadow:rgba(0,0,0,0.1) 1px 1px 0px;	
}
/*ANIMATION*/
#slider-wrap ul, #pagination-wrap ul li{
	-webkit-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	-moz-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	-o-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	-ms-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	transition: all 0.3s cubic-bezier(1,.01,.32,1);	
}