@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: #2574AE;
  --dark-blue: #0d588e;
  --light-blue: #D3EDF8;
  --light-blue2: #9FE1FD;
}
.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: 1200px;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
}
.topWrap {
/*  background: url("../img/header/bg.png") top center no-repeat;*/
background-color: var(--blue);
}
.navWrap {
  background-color: var(--blue);
}
.mainWrap {
  	background-color:var(--light-blue);
	padding: 20px 0;
}
.mainWrap section {
  width: 100%;
  height: auto;
  /*	border: 1px solid silver;*/
}
.mainWrap .container {
  width: 1200px;
  height: auto;
  margin: 0 auto;
  /*	background-color: white;*/
}
.footWrap {
  background: var(--blue);
/*	margin-top: 10px;*/
}
/*一、页眉*/
/*1-1 logo+搜索框*/
header {
  width: 1200px;
  height: 85px;
  margin: 0 auto;
  position: relative;
}
/*1-1-1 logo*/
header img.logoImg {
  width: 567px;
  height: 77px;
  position: absolute;
  bottom: 3px;
  left: 2px;
}
/*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: 240px;
  height: 32px;
  border: none;
  position: absolute;
  top:24px;
  right: 25px;
}
/*单行输入框*/
#searchBox .inputBox {
  border: solid 1px var(--light-blue);
  width: 180px;
  height: 32px;
	line-height: 32px;
/*  border: none;*/
  outline: none;
  font-size: 18px;
  color: #000;
  padding-left: 10px;
  background-color: white;
/*  background: url("../img/header/slogan.png") no-repeat center;*/
}
#searchBox .inputBox::placeholder {
    font-size: 18px;
/*    line-height: 32px;*/
    letter-spacing: 2px;
    color: rgba(0,0,0,0.5);
}
/*图片按钮*/
#searchBox .submitBtn {
/*  border: solid 2px #ffffff;*/
  width: 60px;
	height: 32px;
	box-shadow: 2px 1px 1px 0px 
		#000000;
	border: solid 1px #ffffff;
	color:black;
	float: right;
	font-size: 18px;
	background:var(--light-blue2);
	cursor: pointer;
}
/*1-2 菜单导航*/
nav {
  width: 1200px;
  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;
/*  padding: 0 23px;*/
  height: 50px;
  line-height: 50px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 22px;
	width: 148px;
	font-weight: bold;
	text-shadow: 2px 1px 1px #000000;
	
}
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: 1200px;
  margin: 0 auto;
  position: relative;
  height: 130px;
	padding-left: 14px;
	padding-right: 74px;
	padding-top: 30px;
  /*	background-color: #0b6cb8;*/
}
footer img.logoImg {
 width: 257px;
 height: 65px;
 float: left;
}
footer .line{
	width: 4px;
	height: 69px;
	background: white;
	float: left;
	margin-left: 20px;
}
footer .copyright {
	width: 480px;
	height: 66px;
	font-size: 16px;
	line-height: 24px;
	color: white;
	float: left;
	margin-left: 22px;
}
footer .qrcodePanel{
	float: right;
	width: 220px;
	height: 104px;
	margin-top: -8px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
footer .qrcodeBox{
	width: 84px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
footer .qrcodeBox .qrcodeImg{
	width: 84px;
	height: 84px;
}
footer .qrcodeBox .title{
	width: 100%;
	height: 15px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0px;
	color: #f2f2f2;
	text-align: center;
}