﻿.wrapper {
	margin: 0 auto;
	width: 1200px;
  }
  
  /* header */
  .header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 1280px;
	height: 90px;	
	background-color: #fff;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	z-index: 10;
  }
  
  .header .wrapper {
	display: flex;
	justify-content: space-between;
	z-index: 10;
}
  
  
/* logo */
  .header .logo {
	width: 200px;
	margin-top: 8px;
	display: block;
	overflow: hidden;
  }
  .header .logo img {
	  width: 100%;	
  }
  
/* nav */
.header .nav {
	height: 90px;	
}
.header .nav li {
	position: relative;
	float: left;
	width: 110px;
	z-index: 10;
}
.header .nav li:before {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 0;
	height: 2px;
	background: #F97D1C;	
	content: "\20";	
	-webkit-transition: all ease 300ms;
	-moz-transition: all ease 300ms;
	-ms-transition: all ease 300ms;
	-o-transition: all ease 300ms;
	transition: all ease 300ms;
}
.header .nav li a {
	position: relative;
	display: block;
	padding-top: 28px;
	width: 100%;
	height: 90px;	
	font-size: 18px;	
	color: #333;
	cursor: pointer;
	overflow: hidden;
	text-align: center;
	line-height: 22px;
}
.header .nav li a span {
	display: block;
	font-family: arial;
	text-transform: uppercase;
	font-size: 12px;
	color: #999;	
}
.header .nav li.hover .nav1, 
.header .nav li:hover .nav1 {
	background: #F97D1C;
	color: #fff;
}
.header .nav li.hover .nav1 span, 
.header .nav li:hover .nav1 span {
	color: #fff;
}
.header .nav li.hover:before, 
.header .nav li:hover:before {
	width: 100%;
}
.header .nav li .subNav {
	position: absolute;
	left: 0px;
	top: 90px;
	width: 100%;
	text-align: center;
	z-index: 99;
	background: #efefef;
}
.header .nav li .subNav {
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#F97D1C, direction=120, strength=5);
	opacity: 0;
	visibility: hidden;
	transition: all .6s ease 0s;
	transform: translate3d(0, 10px, 0);
	-moz-transform: translate3d(0, 10px, 0);
	-webkit-transform: translate3d(0, 10px, 0);
}
.header .nav li:hover .subNav {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
}
.header .nav li .subNav a {
	display: block;
	padding: 0;	
	height: 38px;
	overflow: hidden;
	font-size: 14px;
	line-height: 38px;
	color: #333;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.header .nav li .subNav a:hover {
	background: #F97D1C;
	color: #fff;
}

.header .search {
	position: relative;	
	margin-top: 32px;
	width: 170px;
	height: 30px;	
	line-height: 30px;
	box-shadow: 0px 0px 5px #ccc;
	z-index: 1;
	overflow: hidden;
}

.header .search .stxt {
	padding:0px 10px;
	font-size: 12px;
	color: #999;
}

.header .search .sbtn {
	position:absolute;
	top: 6px;	
	right:6px;
	height: 18px;
	width:18px;
	background-image: url(../images/search.png);
	background-size:100%;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fff;
}

/*footer*/
.footer {
	width: 100%;
	background: #666;
	color: #fff;
	font-size: 14px;
	line-height: 32px;
	padding: 15px 0 15px;
}

.footer .txt {
	width: 360px;
}
.footer .tit {
	padding-bottom: 4px;
	font-size: 16px;
	height: 32px;
	line-height: 32px;	
}
.footer .txt ul {
	width: 100%;
}
.footer .txt li {	
	width: 100%;
	line-height: 28px;
	font-size: 14px;
	color: #fff;
}

.footer .bmsg {
	width: 510px;
	padding: 0 30px;
	margin: 0 30px;
}
.bmsg .bmsgCon {
	font-size: 20px;
	height: 32px;
	line-height: 32px;
	padding-top: 25px;
	text-align: center;
	font-weight: bold;
}

.footer .ewm {
	width: 208px;
}

.footer .ewm img {
	width: 100px;
	height: 100px;
	display: block;
}

.copyright {
	width: 100%;
	height: 40px;
	line-height: 40px;
	font-size: 12px;
	background: #333;
	color: #fff;
	text-align: center;
}
.copyright a {
	color: #fff;
}

.copyright a:last-child {
	color: #666;
}

.copyright a:hover {
	color: #999;
}

/* 浮动客服 */

.toolbar {
	position: fixed;
	width: 50px;	
	right: 0;
	bottom: 150px;
	z-index: 10;
}

.toolbar dd {
	width: 50px;
	height: 50px;
	margin-bottom: 1px;
	background: rgba(0, 0, 0, 0.6);	
}

.toolbar dd:hover {
	background-color: #F97D1C;
}

.toolbar dd i {
	display: inline-block;
	width: 35px;
	height: 35px;	
	margin: 7px 8px 0 7px;
	background: url(../images/rightFixIcon.png) no-repeat 0 0;   
    vertical-align: middle;
}

.toolbar .tel i {
	background-position: 0 -5px;
}

.toolbar .qq i {
	background-position: 0 -47px;
}

.toolbar .code i {
	background-position: 0 -95px;
}

.toolbar .top i {
	background-position: 0 -142px;
}

.toolbar .tel,
.toolbar .qq,
.toolbar .code,
.toolbar .top {
	display: block;
	width: 50px;
	height: 50px;
	white-space: nowrap;
	cursor: pointer;
}

.toolbar .tel {
	transition: transform .5s;
}

.toolbar .tel span {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	font-size: 20px;	
	color: #fff;
	padding-right: 20px;
}

.toolbar .tel:hover {
	transform: translate(-180px);
	width: 200px;
	background-color: #F97D1C;
}

.toolbar .code span {
	float: left;
	width: 132px;
	height: 132px;	
	margin-left: -142px;
	margin-top: -41px;
	background: rgba(255, 100, 0, 0.8);
	display: none;
	transition: all 0.8s;	
}

.toolbar .code span img {
	width: 120px;
	margin-left: 6px;
	margin-top: 6px;
}

.toolbar .code:hover span {
	display: block;	
}



/*分页样式*/
.pglist {
	padding: 30px 0;
	width: 100%;
	text-align: center;
	clear: both;
}
.pglist a, .pglist span {
	color: #999;
	padding: 0 10px;
	margin: 0 3px;
	display: inline-block;
	vertical-align: middle;
	line-height: 28px;
	background: #fff;
	border: 1px solid #c9c9c9;
}
.pglist a:hover, .pglist span {
	display: inline-block;
	color: #fff;
	background: #058BC1;
	border-color: #058BC1;
}

