@charset "utf-8";
/* CSS Document */
/*公共样式*/
body {
  font-family: MicrosoftYaHei;
  -webkit-text-size-adjust: 100% !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --blue: #003986;
  --dark-blue: #000c54;
  --light-blue: #194699;
  --light-blue2: #a0cae2;
}
.tmp_red {
  background-color: rgba(255, 0, 0, 0.3);
}
.tmp_blue {
  background-color: rgba(0, 255, 0, 0.3);
}
a {
  text-decoration: none;
	color: #000;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  clear: both;
}
.hide{display: none;}
ul {
  list-style: none;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bg_gray {
  background-color: rgb(242, 247, 252);
}
.wrap {
  width: 100%;
  min-width: 1370px;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
}
.topWrap {
/*  background: url("../img/header/bg.png") top center no-repeat;*/
/*	background:white;*/
}
.navWrap {
  background-color: var(--blue);
}
.mainWrap {
  /*	background-color:cornflowerblue;*/
}
.mainWrap section {
  width: 100%;
  height: auto;
  /*	border: 1px solid silver;*/
}
.mainWrap .container {
  width: 1370px;
  height: auto;

  margin: 0 auto;
  /*	background-color: white;*/
}
.footWrap {
  background: var(--blue);
	margin-top: 10px;
}
/*一、页眉*/
/*1-1 logo+搜索框*/
header {
  width: 1370px;
  height: 108px;
  margin: 0 auto;
  /*	background-color: white;*/
  position: relative;
}
/*1-1-1 logo*/
header img.logoImg {
  width: 646px;
  height: 81px;
  position: absolute;
  top: 18px;
  left: 0px;
}
/*1-1-2 slogan*/
header img.slogan {
  width: 300px;
  height: 48px;
  position: absolute;
  top: 40px;
  left: 676px;
}
/*1-1-4 linkBox*/
header #linkBox{
	position: absolute;
	right: 32px;
	top: 19px;
	width: auto;
	height: auto;
}
header #linkBox a{
	color: #000;
	font-size: 16px;
	display: inline-block;
	margin-left: 7px;
}
header #linkBox span{
	color: #000;
	font-size: 16px;
	display: inline-block;
	margin-left: 7px;
}
/*1-1-3 searchBox*/
header #searchBox {
  width: 272px;
  height: 32px;
  border: none;
  position: absolute;
  top:52px;
  right: 0px;
}
/*单行输入框*/
#searchBox .inputBox {
  border: solid 1px #000;
  width: 240px;
  height: 32px;
/*  border: none;*/
  outline: none;
  font-size: 14px;
  color: #000;
  padding-left: 10px;
  background-color: transparent;
/*  background: url("../img/header/slogan.png") no-repeat center;*/
}
#searchBox .inputBox:focus {
  background: transparent;
}
/*图片按钮*/
#searchBox .submitBtn {
/*  border: solid 2px #ffffff;*/
  outline: none;
  width:31px;
  height: 31px;
  position: absolute;
  top:0px;
  right: -7px;
}
/*1-2 菜单导航*/
nav {
  width: 1370px;
  height: 50px;
  margin: 0 auto;
}
nav ul {
  list-style: none;
  width: 100%;
  height: 100%;
}
nav li {
  float: left;
}
nav a:link, nav a:visited {
  display: block;
  /*	width: 160px;*/
/*  padding: 0 23px;*/
  height: 50px;
  line-height: 50px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
	width: 150px;
	
}
nav a:hover, nav a:active {
  background-color: var(--dark-blue);
/*	font-weight: bold;*/
}
nav dl {
  position: absolute;
  z-index: 99;
  background-color: var(--blue);
  display: none;
}
/*
nav dd:not(:last-child) {
  border-bottom: 1px solid white;
}
*/
nav dd a:link, nav dd a:visited {
  color: #fefefe;
  background-color: var(--blue);
/*
	height: 77px;
	line-height: 30px;
*/
	width: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 5px;
/*	font-size: 23px;*/
}
nav dd a:hover, nav dd a:active {
  background-color: var(--dark-blue);
/*  font-weight: bold;*/
/*  color: white;*/
}
/*三、页脚*/
footer {
  width: 1370px;
  margin: 0 auto;
  position: relative;
  height: 149px;
	padding: 36px 0 44px;
  /*	background-color: #0b6cb8;*/
}
footer img.logoImg {
 width: 457px;
 height: 57px;
 float: left;
 margin-top: 5px;
}
footer .line{
	width: 3px;
	height: 69px;
	background: rgba(255,255,255,0.8);
	float: left;
	margin-left: 20px;
}
footer .copyright {
	width: 480px;
	height: 66px;
	font-size: 16px;
	line-height: 24px;
	color: rgba(255,255,255,0.8);
	float: left;
	margin-left: 22px;
}

footer .qrcodeBox{
	float: right;
	width: 110px;
	height: 110px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: -7px;
}
footer .qrcodeBox .qrcodeImg{
	width: 100px;
	height: 90px;
}
footer .qrcodeBox .title{
	width: 100%;
	height: 15px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 2px;
	color: rgba(255,255,255,0.8);
	text-align: center;
}