/* 基础样式 */
body{touch-action: pan-y;}
a{-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;}
ol,ul,li {list-style:none; margin:0; padding:0;} 
a{ text-decoration: none; color:#333;}
a:link,a:visited{text-decoration: none;}

/* 阿里云字体图标 */
@font-face {
  font-family: 'iconfont'; 
  src: url('/tpl/default/skin/plugins/iconfont/iconfont.woff2') format('woff2'),
       url('/tpl/default/skin/plugins/iconfont/iconfont.woff') format('woff'),
       url('/tpl/default/skin/plugins/iconfont/iconfont.ttf') format('truetype');
}
.iconfont{font-family:"iconfont" !important;font-size:16px;font-style:normal;-webkit-font-smoothing: antialiased;-webkit-text-stroke-width: 0.2px;-moz-osx-font-smoothing: grayscale;}


/*bootrstrap样式复盖*/
.container-fluid{
	width:1440px !important;
	max-width:90% !important;
}
@media screen and (max-width:1300px){
	.container-fluid{
		max-width:95% !important;
	}
}
@media screen and (max-width:768px){
	.container-fluid{
		max-width:100% !important;
		padding-right: 10px;
		padding-left: 10px;
	}
}

#header{
	width:100%;
	z-index:900;
	position:fixed;
	width:100%;
	left:0px;
	top:0px;
	border-bottom:1px solid #e5e5e5;
	background:rgba(255,255,255,0);
	-webkit-transition: all .5s ease;-moz-transition: all .5s ease;-o-transition: all .5s ease;transition: all .5s ease;
}
#header .left{
	float:left;
	display:flex;
	height:112px;
	align-items:center;
	align-items:stretch;
	-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
}

#header .right{
	float:right;
	display:flex;
	height:112px;
	justify-content:right;
	align-items:stretch;
	-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
}
#header .logo{
	display:flex;
	align-items:center;
}
#header .logo img{
	display:block;
	min-height:40px;
	max-height:95%;
	-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
}
#header .navList{
	display:flex;
	align-items:stretch;
}
#header .navList ul{
	margin:0px;
	display:flex;
	align-items:center;
	justify-content:center;
	align-items:stretch;
}
#header .navList li{
	display:flex;
	align-items:center;
	position: relative;
	margin:0 0.08rem;
	position:relative;
}
#header .navList li>a{
	font-size:15px;
	display:block;
	color:#000;
	position:relative;
	text-align:center;
	-webkit-transition: all .5s ease;-moz-transition: all .5s ease;-o-transition: all .5s ease;transition: all .5s ease;
}
#header .navList li:hover>a{color:#f4a534;}

#header .navList li:after{
	position:absolute;
	bottom:0px;
	left:0px;
	content:'';
	display:block;
	width:0%;
	height:3px;
	background:#f4a534;
	margin:0 auto -1px auto;
	-webkit-transition: all .5s ease;-moz-transition: all .5s ease;-o-transition: all .5s ease;transition: all .5s ease;
}
#header .navList li:hover:after{
	width:100%;
}

#header .navList li.active:after{
	width:100%;
}
#header .navList li>a .glyphicon{
	font-size:11px;
	transform:scale(0.7); 
}

#header .navList li .child{
	position:absolute;
	top:100%;
	left:0px;
	background:rgba(255,255,255,0.9);
	border-radius:0 0 5px 5px;
	box-shadow:0 3px 5px rgba(0,0,0,0.1);
	z-index:999;
	visibility: hidden;
	opacity:0;
	margin-top:30px;
	-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
}
#header .navList li:hover .child{
	visibility: visible;
	opacity:1;
	margin-top:1px;
}
#header .navList li .child a{
	display:block;
	line-height:40px;
	height:40px;
	padding:0 15px;
	white-space: nowrap;
	overflow: auto;
}
#header .navList li .child a:hover,#header .navList li .child a.active{
	background:#fff;
	color:#f4a534;
}


#header .search{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	position:relative;
	z-index:999999;
}
#header .search-icon{
	display:block;
	cursor:pointer;
	font-size:24px;
}
#header .search-icon:hover{
	color:#f4a534;
}
#header .search-icon.active{
	color:#f4a534;
}
#header .search-form{
	position:absolute;
	background:rgba(0,0,0,0.1);
	width:320px;
	margin-top:100px;
	right:-8px;
	padding:10px;
	border-radius:3px;
	display:none;
}
#header .search-form form{
	position:relative;
}
#header .search-form form input{
	display:block;
	height:36px;
	line-height:36px;
	border:1px solid #ddd;
}
#header .search-form form button{
	position:absolute;
	top:0px;
	right:0px;
	height:36px;
	background:#4e6ef2;
	color:#fff;
}
#header .search-form form button:hover{
	background:#4662d9;
}

#header .lang{
	display:flex;
	margin:0 30px;
	align-items:center;
}
#header .lang a{
	display:block;
	line-height:32px;
}
#header .lang a .glyphicon{
	font-size:16px;
	position:relative;
	top:3px;
}
#header .lang a:hover{
	color:#f4a534;
}

#header.active{
	background:rgba(255,255,255,0.9);
}
#header.active .right{
	height:80px;
}
#header.active .left{
	height:80px;
}


.mMenu-icon{
	height:30px;
	width:30px;
	position: fixed;right: 15px;top: 15px;z-index:902;
}
.mMenu-icon .line{
	display:block;
	width:100%;
	height:3px;
	background:#f4a534;
	position:relative;
	transition: 0.3s;-moz-transition: 0.3s;	-webkit-transition: 0.3s;	-o-transition: 0.3s;
	transform:rotate(0deg);-ms-transform:rotate(0deg); 	-moz-transform:rotate(0deg); 	-webkit-transform:rotate(0deg); -o-transform:rotate(0deg); 	
	transform-origin:right;
	border-radius:3px;
	overflow:hidden;
}
.mMenu-icon .l2{
	margin:8px 0;
	width:25px;
	position:relative;
	right:-4px;
}
.mMenu-icon.active .line{
	background:#f4a534;
}
.mMenu-icon.active .l1{
	transform:rotate(-45deg);-ms-transform:rotate(-45deg); 	-moz-transform:rotate(-45deg); -webkit-transform:rotate(-45deg); -o-transform:rotate(-45deg); 
	transform-origin:right;
}
.mMenu-icon.active .l2{
	opacity:0;
}
.mMenu-icon.active .l3{
	transform:rotate(45deg);-ms-transform:rotate(45deg); 	-moz-transform:rotate(45deg); 	-webkit-transform:rotate(45deg); -o-transform:rotate(45deg);
	transform-origin:right;
}

.mMenu-list{
	transition: 0.3s;-moz-transition: 0.3s;	-webkit-transition: 0.3s;	-o-transition: 0.3s;
	background:#fff;
	z-index:901;
	position:fixed;
	top:0px;
	right:-65%;
	height:100%;
	width:65%;
	padding-top:55px;
	border-radius:1000px 0 0 1000px;
	overflow:hidden;
}
.mMenu-list a{
	display:block;
	height:45px;
	line-height:45px;
	border-top:1px solid #eee;
	padding:0 20px;
	position:relative;
	z-index:9999;
}
.mMenu-list a.on{
	background:#f4a534;
	color:#fff;
}

.mMenu-list.active{
	right:0%;
	border-radius:0px;
}
.grayBg{
	position:fixed;
	left:0px;
	top:0px;
	background:#000;
	width:100%;
	height:100%;
	opacity:0.75;
	display:none;
	z-index:900;
}

@media screen and (max-width:768px){
	#header{
		height:55px;
	}
	#header .left ,#header.active .left{
		height:55px;
	}
	
}

/* 底部 */
#footer{
	padding:0.25rem 0 0 0;
	color:#fff;
	background:url('/tpl/default/skin/img/footer.jpg')no-repeat center center;
	background-size:cover;
}
#footer .info{
	position:relative;
}
#footer .info .logo{
	margin-bottom:15px;
}
#footer .info p{
	color:#fff;
	font-size:15px;
	padding-top:10px;
}
#footer .info .ewm{
	position:absolute;
	bottom:0px;
	right:0px;
	width:105px;
	height:105px;
}

#footer .bNav{
	display:flex;
	justify-content:space-between;
}
#footer .bNav h4{
	margin-bottom:15px;
}
#footer .bNav h4:before{
	content:'';
	display:block;
	height:2px;
	width:30%;
	background:#f4a534;
	margin-bottom:30px;
}
#footer .bNav h4 a{
	color:#fff;
}
#footer .bNav .item{
	width:100%;
}
#footer .address p{
	color:#99cc99;
}
#footer .bNav .item ul{
	padding:0px;
}
#footer .bNav .item ul li{
	min-width:100px;
	padding:5px 0;
}
#footer .bNav .item ul li a{
	color:#848484;
}
#footer .bNav .item ul li a:hover{
	color:#fff;
	text-decoration:underline;
}
#footer .copyright{
	margin-top:50px;
	border-top:1px solid #333;
	display:flex;
	padding:20px 0;
	justify-content:space-between;
	color:#848484;
}
#footer .copyright a{
	color:#848484;
}




#mFooter{
	position:fixed;
	bottom:0px;
	left:0px;
	width:100%;
	height:55px;
	padding:2px 0;
	background:#fff;
	z-index:999;
	box-shadow:0 0 5px #ddd;
	display:flex;
	border-radius:10px 10px 0 0;
	-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
}
#mFooter .item{
	width:100%;
}
#mFooter .item .iconbox{
	height:24px;
	text-align:center;
	margin-bottom:5px;
}
#mFooter .item .iconbox i{
	display:block;
	font-size:24px;
}
#mFooter .item img{
	display:block;
	margin:4px auto;
	height:24px;
}
#mFooter .item p{
	font-size:12px;
	text-align:center;
}
#mFooter .item.on p{
	color:#f4a534;
}
#mFooter .item.on .iconbox i{
	color:#f4a534;
}

@media screen and (max-width:768px){
	#footer{padding: 25px 0 ;}
}




