* {
	padding: 0;
	margin: 0;
	outline: 0;
	font-family: "微软雅黑", arial;
	text-decoration: none;
	list-style: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
img {
	border: none;
}
body {
	background-color: #fff;
	text-rendering: optimizelegibility;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-tap-highlight-color: rgba(0, 0, 0, 0);
	-moz-text-size-adjust: none;
	-moz-font-smoothing: antialiased;
	-ms-tap-highlight-color: rgba(0, 0, 0, 0);
	-ms-text-size-adjust: none;
	-ms-font-smoothing: antialiased;
}
.content {
	margin-top: 51px;
	background: #fff;
}
.container {
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
}
.header {
	overflow: hidden;
	height: 51px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: url(../images/nav.png);
	z-index: 30;
}
.header_b {
	position: relative;
	max-width: 1200px;
	margin: auto;
	padding-left: 10px;
	padding-right: 10px;
}
header h1 {
	text-align: left;
	line-height: 51px;
	font-weight: bold;
	padding-left: 0px;
	max-width: 1200px;
	margin: auto;
}
header h1 img {
	width: 172px;
	margin-top: 16px;
	float: left;
}
.burger {
	position: absolute;
	float: left;
	padding: 10px;
	top: -1px;
	left: 8px;
	display: none;
	cursor: pointer;
}
.burger li {
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 7px 0;
}
.burger.open li {
	background-color: #d9dde1;
}
nav {
	position: fixed;
	top: 0px;
	right: 0px;
	left: 0px;
	width: 100%;
	max-width: 1200px;
	z-index: 31;
	margin-left: auto;
	margin-right: auto
}
nav ul {
	float: right;
}
nav li {
	float: left;
	display: inline-block;
}
nav li a {
	font-size: 14px;
	color: #9d9d9d;
	padding: 0px 16px;
	display: block;
	line-height: 51px;
}
nav li .active {
	background: #000;
}
nav li a:hover {
	background: #000;
	color: #fff;
}
nav li.active a{
	background: #000;
	color: #fff;	
}
nav .index {
	display: block;
	float: left;
	height: 51px;
	width: 174px;
}
@media only screen and (max-width: 780px) {
	.header {
		background: none;
		position: fixed;
	}
	header {
		z-index: 2;
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		background: url(../images/nav.png);
		height: 51px;
	}
	header h1 {
		text-align: center;
		padding-left: 0;
		display: block;
		line-height: 46px;
	}
	header h1 img {
		float: none;
		width: 150px;
		margin-top: 0px;
	}
	.burger {
		display: block;
	}
	/*  Nav Drawer Layout  */
	nav .index {
		display: none;
	}
	nav {
		position: relative;
		max-width: inherit;
		z-index: 0;
	}
	nav ul {
		height: 100%;
		overflow-y: auto;
		float: none;
		padding-top: 51px;
	}
	nav li {
		display: block;
		float: none;
	}
	nav li a {
		padding: 0px 25px;
		letter-spacing: 3px;
		font-size: 14px;
	}
	nav li a.logo {
		display: none;
	}
	nav li a.active {
		color: #fff;
	}
	nav li a:hover {
		color: #fff;
		background-color: #000;
	}
	.header-section {
		margin-top: 60px;
	}
	/* NAVIGATION ANNIMATION */
	nav {
		width: 93%;
		height: 100%;
		position: fixed;
		left: 0;
		top: 0;
		margin: 0;
		background: rgba(0, 0, 0, 0.8);
	/*	opacity: .3;*/
	    opacity: 0;
		-webkit-transform: translate3d(5%, 0, 0)scale(.97);
		-moz-transform: translate3d(5%, 0, 0)scale(.97);
		transform: translate3d(5%, 0, 0)scale(.97);
	}
	/*Nav Expanding Open Effect*/
	nav.open {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0)scale(1);
		-webkit-animation: slideIn .35s ease-in-out;
		-moz-transform: translate3d(0, 0, 0)scale(1);
		-moz-animation: slideIn .35s ease-in-out;
		transform: translate3d(0, 0, 0)scale(1);
		animation: slideIn .35s ease-in-out;
	}
	@-webkit-keyframes slideIn {
		0% {
			opacity: .3;
			-webkit-transform: translate3d(5%, 0, 0)scale(.97);
		}
		100% {
			opacity: 1;
			-webkit-transform: translate3d(0, 0, 0)scale(1);
		}
	}
	@-moz-keyframes slideIn {
		0% {
			opacity: .3;
			-moz-transform: translate3d(5%, 0, 0)scale(.97);
		}
		100% {
			opacity: 1;
			-moz-transform: translate3d(0, 0, 0)scale(1);
		}
	}
	@keyframes slideIn {
		0% {
			opacity: .3;
			transform: translate3d(5%, 0, 0)scale(.97);
		}
		100% {
			opacity: 1;
			transform: translate3d(0, 0, 0)scale(1);
		}
	}
	/*Nav Shrinking Closed Effect*/
	nav.close {
		opacity:0;
		-webkit-transform: translate3d(5%, 0, 0)scale(.97);
		-webkit-animation: slideOut .3s ease-in-out;
		-moz-transform: translate3d(5%, 0, 0)scale(.97);
		-moz-animation: slideOut .3s ease-in-out;
		transform: translate3d(5%, 0, 0)scale(.97);
		animation: slideOut .3s ease-in-out;
	}
	@-webkit-keyframes slideOut {
		0% {
			opacity: 1;
			-webkit-transform: translate3d(0, 0, 0)scale(1);
		}
		100% {
			opacity: .3;
			-webkit-transform: translate3d(5%, 0, 0)scale(.97);
		}
	}
	@-moz-keyframes slideOut {
		0% {
			opacity: 1;
			-moz-transform: translate3d(0, 0, 0)scale(1);
		}
		100% {
			opacity: .3;
			-moz-transform: translate3d(5%, 0, 0)scale(.97);
		}
	}
	@keyframes slideOut {
		0% {
			opacity: 1;
			transform: translate3d(0, 0, 0)scale(1);
		}
		100% {
			opacity: .3;
			transform: translate3d(5%, 0, 0)scale(.97);
		}
	}
	/* CONTENT ANNIMATION */
	.content {
		/* starting point */
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		z-index: 1;
		margin-top: 0px;
		padding-top: 51px;
	}
	/*Content Sliding Open Effect*/
	header.open,
	.content.open {
		-webkit-transform: translate3d(240px, 0, 0);
		-webkit-animation: open .5s ease-in-out;
		-moz-transform: translate3d(240px, 0, 0);
		-moz-animation: open .5s ease-in-out;
		transform: translate3d(240px, 0, 0);
		animation: open .5s ease-in-out;
	}
	.content.open {
		position: fixed;
		overflow: hidden;
	}
	@-webkit-keyframes open {
		0% {
			-webkit-transform: translate3d(0, 0, 0);
		}
		70% {
			-webkit-transform: translate3d(260px, 0, 0);
		}
		100% {
			-webkit-transform: translate3d(240px, 0, 0);
		}
	}
	@-moz-keyframes open {
		0% {
			-moz-transform: translate3d(0, 0, 0);
		}
		70% {
			-moz-transform: translate3d(260px, 0, 0);
		}
		100% {
			-moz-transform: translate3d(240px, 0, 0);
		}
	}
	@keyframes open {
		0% {
			transform: translate3d(0, 0, 0);
		}
		70% {
			transform: translate3d(260px, 0, 0);
		}
		100% {
			transform: translate3d(240px, 0, 0);
		}
	}
	/*Content Sliding Closed Effect*/
	header.close,
	.content.close {
		-webkit-transform: translate3d(0, 0, 0);
		-webkit-animation: close .3s ease-in-out;
		-moz-transform: translate3d(0, 0, 0);
		-moz-animation: close .3s ease-in-out;
		transform: translate3d(0, 0, 0);
		animation: close .3s ease-in-out;
	}
	@-webkit-keyframes close {
		0% {
			-webkit-transform: translate3d(240px, 0, 0);
		}
		100% {
			-webkit-transform: translate3d(0, 0, 0);
		}
	}
	@-moz-keyframes close {
		0% {
			-moz-transform: translate3d(240px, 0, 0);
		}
		100% {
			-moz-transform: translate3d(0, 0, 0);
		}
	}
	@keyframes close {
		0% {
			transform: translate3d(240px, 0, 0);
		}
		100% {
			transform: translate3d(0, 0, 0);
		}
	}
}
/*header end*/
/*titlebigbox*/
.titlebigbox {
	width: 100%;
	border-bottom: 1px solid #f4f4f4;
}
.titlebox {
	max-width: 1200px;
	margin: 0 auto 0px;
	overflow: hidden;
	height: 60px;
	padding-left: 10px;
	padding-right: 10px;
}
.titlebox h2 {
	float: left;
	font-size: 24px;
	color: #6b6b6b;
	line-height: 60px;
	font-weight: normal;
}
.titlebox .titlebox_r {
	float: right;
	margin-top: 19px;
	font-size: 12px;
	height: 28px;
}
.titlebox .titlebox_r span {
	margin-left: 15px;
	margin-right: 15px;
	height: 16px;
	width: 1px;
	display: block;
	background: #e0e0e0;
	float: left;
	margin-top: 5px;
}
.titlebox .titlebox_r a {
	padding: 0px 15px;
	color: #8e8e8e;
	height: 26px;
	line-height: 26px;
	display: block;
	float: left;
}
.titlebox .titlebox_r .first{
	display: none;
}
.titlebox .titlebox_r .active {
	color: #fff;
	background: #595959;
}
.footerbox {
	width: 100%;
	padding-top: 38px;
	padding-bottom: 25px;
	width: 100%;
	background: url(../images/nav.png);
	position: relative;
	z-index: 15;
	font-size: 12px;
}
.footerbox .footer {
	max-width: 1200px;
	margin: 0 auto 28px;
	font-family: "微软雅黑";
	overflow: hidden;
	padding: 0px 16px;
}
.footerbox .footer ul li {
	float: left;
	width: 20%;
	padding: 0 18px;
	border-right: 1px dotted #494747;
	color: #9f9f9f;
	height: 120px;
}
.footerbox .footer ul li img {
	display: block;
}
.footerbox .footer ul li.lastli {
	width: 25%;
	float: right;
	margin-right: 0;
	border-right: none;
	padding: 0px 30px;
}
.footerbox .footer ul li p {
	line-height: 21px;
	padding: 0px;
	margin: 0px;
}
.footerbox .footer ul li.lastli div {
	width: 100%;
	overflow: hidden;
}
.footerbox .footer ul li.lastli div img {
	float: left;
	margin-right: 2px;
}
.footerbox .footer ul li .topimg {
	height: 88px;
	margin-bottom: 10px;
}
.footerbox .footer ul li .fttitle {
	color: #fff;
	margin-bottom: 10px;
	font-size: 12px;
	display: block;
}
.footerbox .footer ul li .pfff {
	color: #fff;
}
.footerbox .footer ul li .mt10 {
	color: #fff;
	font-size: 12px;
	margin-bottom: 5px;
}
.ft_bottom {
	width: 100%;
	text-align: center;
	border-top: 1px solid #474646;
	padding-top: 12px;
	font-family: "微软雅黑";
	color: #999;
}
.ft_bottom .cop {
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 12px;
}
.ft_bottom .ft_fx {
	height: 17px;
	overflow: hidden;
	background: url(../images/fticon.png) no-repeat center center;
}
.ft_fx a{
	display: block !important;
	float: none !important;
	display: inline-block !important;
	padding: 0px !important;
	background: none !important;
	height: 17px !important;
	width: 17px !important;
	margin: 0px 5px !important;
}
.ft_bottom .ft_fx .bdsharebuttonbox{
	height: 17px !important;
	text-align: center;
}
.fs_fx{
	overflow: hidden;
	width: 135px;
	position: fixed;
	right: 0px;
	bottom: 0px;
	z-index: 30;
}
.fs_fx .to_top{
	width: 135px;
	height: 56px;
	cursor: pointer;
	background: url(../images/to_top.png) no-repeat center center;
	overflow: hidden;
}
.fs_fx .qq_li{
	width: 135px;
	background: url(../images/qq_top.png) #313131 no-repeat top center;
	padding-top: 40px;
	overflow: hidden;
}
.fs_fx .qq_li a{
	display: block;
	height: 42px;
	background: url(../images/qq_li.png) no-repeat center center;
	overflow: hidden;
	font-family: arial;
	line-height: 42px;
	padding-left: 40px;
	color: #f1f1f1;
	font-size: 12px;
}
.fs_fx .kefu{
	width: 135px;
	height: 61px;
	background: url(../images/kefus.png) no-repeat center center;
	overflow: hidden;
}
.fs_ewm{
	width: 135px;
	height: 182px;
	background: url(../images/fs_ewm.png) no-repeat center center;
	overflow: hidden;
	text-align: center;
}
.fs_ewm img{
	width: 110px;
	height: 110px;
	margin-top: 20px;
}
.fs_close{
	width: 135px;
	height: 24px;
	background: url(../images/fs_close.png) no-repeat center center;
	cursor: pointer;
	overflow: hidden;
}
.wap_fx{
	overflow: hidden;
	position: fixed;
	width: 40px;
	bottom: 3%;
	right: 5px;
	z-index: 50;
	text-align: center;
	display: none;
}
.wap_fx a{
	display: block;
	width: 40px;
	height: 40px;
	margin: 6px 0px;
	text-align: center;
	cursor: pointer;
}
.wap_fx .qq{
	background: url(../images/wap_qq.png) no-repeat;
	background-size: cover;
}
.wap_fx .wx{
	background: url(../images/wap_wx.png) no-repeat;
	background-size: cover;
}
.wap_fx .phone{
	background: url(../images/wap_phone.png) no-repeat;
	background-size: cover;
}
@media only screen and (max-width: 640px) {
	.titlebox_r {
		float: none !important;
		margin-top: 0px !important;
		margin-bottom: 10px !important;
		display: table;
		margin-left: auto;
		margin-right: auto;
	}
	.titlebox h2 {
		font-size: 20px;
		line-height: 50px;
		float: none;
		display: block;
	}
	.titlebox {
		height: auto;
	}
	.footerbox .footer {
		display: none;
	}
	.footerbox {
		padding: 0px;
	}
	.ft_bottom {
		width: 100%;
		text-align: center;
		border-top: 1px solid #474646;
		padding: 16px 0px;
		color: #999;
	}
}
@media only screen and (min-width: 0px) and (max-width: 1200px) {
	.footerbox .footer ul li {
		width: 44%;
		height: 132px;
		padding: 0px 3%;
		margin-left: -1px;
	}
	.footerbox .footer ul li.lastli {
		width: 44%;
		float: left;
		margin-right: auto;
		border-right: none;
		padding: 0px 3%;
	}
	.footerbox .footer ul li:nth-child(2) {
		border-right: none;
	}
}
.cop a{color:#999}