﻿* {
	margin: 0;
	padding: 0;
	font-family: "microsoft yahei", "微软雅黑", "宋体"
}

ul,
li {
	list-style: none;
}

img {
	border: none;
}

a {
	font-family: "microsoft yahei", "微软雅黑", "宋体";
	text-decoration: none;
	color: #464646;
}

a:hover {
	color: #00529b;
}


/***header***/
body {background-color: #F5F5F5;}
.header {
	width: 100%;
	position: fixed;
	top: 0;
	background: #FFFFFF;
	z-index: 99999999999999999999;
	box-shadow: 5px 2px 6px #565656
}

.headerWrapper {
	width: 1200px;
	margin: 0 auto;
	padding: 6px 0;
	height: 94px;
}

.header .logo {
	float: left;
	width: 210px;
	height: 94px;
}

.header .navBar {
	float: right;
	width: 950px;
	margin-left: 40px;
	height: 94px;
}

.header .searchForm {
	float: right;
	margin-right: 20px;
	height: 35px;
	margin-top: 8px;
}

.header .searchTxt {
	display: block;
	float: left;
	border: solid 1px #0084cb;
	line-height: 32px;
	height: 32px;
	border-right: none;
	outline: none;
	padding-left: 10px;
	width: 140px;
	border-radius: 25px 0 0 25px;
}

.header .searchBtn {
	display: block;
	float: left;
	background: url(../images/searchBtn.jpg);
	width: 38px;
	height: 35px;
	border: none;
	margin-top: -1px;
}

.header .zh-en {
	float: right;
	margin-top: 10px;
}

.header .zh-en a {
	display: inline-block;
	font-size: 13px;
}

.header .zh-en div {
	display: inline-block;
	font-size: 13px;
	margin: 0 15px;
}

.header .nav {
	clear: both;
	float: right;
	margin-top: 16px;
}

.header .nav a {
	display: inline-block;
	margin-left: 40px;
	padding-bottom: 5px;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: bold;
	color: #00529b;
}

.header .nav a:hover {
	border-bottom: solid 3px #00529b;
}

.header .nav a.active {
	border-bottom: solid 3px #00529b;
}


/***header***/

div.blank_ {
	height: 107px;
	width: 100%;
}


/***footer***/

.footer {
	margin-top: 40px;
	width: 100%;
	background: #fafafa;
	padding: 10px 0;
}

.footer .footerWrapper {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.footer .sectionLeft {
	float: left;
	width: 800px;
	display: flex;
}
.footer .sectionLeft-right{
	width: 130px;
	display: flex;
	align-items: flex-end;
}

.footer .section1 {
	display: table;
}

.footer .section1 img {
	float: left;
	display: block;
	width: 210px;
	height: 100px;
}

.footer .section1 .hotline {
	float: left;
	height: 100px;
	line-height: 162px;
	color: #00529b;
	font-weight: bold;
	font-size: 15px;
	margin-left: 10px;
	text-transform: uppercase;
}

.footer .section2 {
	margin-top: 0px;
}

.footer .section2 a {
	display: inline-block;
	border-right: solid 1px #888888;
	padding: 0 10px 0 6px;
	font-size: 13px;
	height: 13px;
	line-height: 13px;
	text-transform: uppercase;
}

.footer .section2 a.last {
	border-right: none;
}

.footer .section3 {
	font-size: 13px;
	color: #545454;
	margin-top: 5px;
	padding-left: 6px;
}

.footer .sectionRight {
	float: right;
	width: 400px;
}

.footer .sectionRight img.qrcode {
	float: right;
	margin-top: 10px;
}


/***footer***/

/**ie8**/

html,
body {
	scrollbar-face-color: #DFDFDF;
	/*滚动条3D表面（ThreedFace）的颜色*/
	scrollbar-highlight-color: #fff;
	/*滚动条3D界面的亮边（ThreedHighlight）颜色*/
	scrollbar-shadow-color: #eeeeee;
	/*滚动条3D界面的暗边（ThreedShadow）颜色*/
	scrollbar-3dlight-color: #eeeeee;
	/*滚动条亮边框颜色*/
	scrollbar-arrow-color: #000;
	/*滚动条方向箭头的颜色 */
	scrollbar-track-color: #fff;
	/*滚动条的拖动区域(TrackBar)颜色*/
	scrollbar-darkshadow-color: #fff;
	/*滚动条暗边框（ThreedDarkShadow）颜色*/
}

/**Chrome**/

/*---滚动条默认显示样式--*/

::-webkit-scrollbar-thumb {
	background-color: #00629b;
	height: 50px;
	outline-offset: -2px;
	outline: 2px solid #fff;
	-webkit-border-radius: 4px;
	border: 2px solid #fff;
}

/*---鼠标点击滚动条显示样式--*/

::-webkit-scrollbar-thumb:hover {
	background-color: #00829b;
	height: 50px;
	-webkit-border-radius: 4px;
}
/*---滚动条大小--*/

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
/*---滚动框背景样式--*/

::-webkit-scrollbar-track-piece {
	background-color: #fff;
	-webkit-border-radius: 0;
}