﻿@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: #0a3179;
  --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;
}
.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: 1300px;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
}
.topWrap {
  background: url("../img/header/bg.png") top center no-repeat;
}
.navWrap {
  background-color: var(--blue);
}
.mainWrap {
  /*	background-color:cornflowerblue;*/
}
.mainWrap section {
  width: 100%;
  height: auto;
  /*	border: 1px solid silver;*/
}
.mainWrap .container {
  width: 1200px;
  height: auto;
  margin: 0 auto;
  /*	background-color: white;*/
}
.footWrap {
  background: url("../img/footer/bg.png") center no-repeat;
}
/*一、页眉*/
/*1-1 logo+搜索框*/
header {
  width: 1200px;
  height: 237px;
  margin: 0 auto;
  /*	background-color: white;*/
  position: relative;
}
/*1-1-1 logo*/
header img.logoImg {
  width: 598px;
  height: 103px;
  position: absolute;
  top: 66px;
  left: 0px;
}
/*1-1-2 slogan*/
header img.slogan {
  width: 232px;
  height: 77px;
  position: absolute;
  top: 79px;
  left: 637px;
}
/*1-1-3 searchBox*/
header #searchBox {
  width: 297px;
  height: 51px;
  border: solid 2px #ffffff;
  position: absolute;
  top:91px;
  right: 0px;
}
/*单行输入框*/
#searchBox .inputBox {
  width: 246px;
  height: 51px;
  border: none;
  outline: none;
  font-size: 18px;
  color: white;
  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:51px;
  height: 51px;
  position: absolute;
  top:-2px;
  right: -2px;
}
/*1-2 菜单导航*/
nav {
  width: 1200px;
  height: 77px;
  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: 77px;
  line-height: 77px;
  color: #fefefe;
  text-align: center;
  text-decoration: none;
  font-size: 25px;
	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(--light-blue);
  font-weight: bold;
/*  color: white;*/
}
/*三、页脚*/
footer {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 237px;
  /*	background-color: #0b6cb8;*/
}
footer p {
	width: 490px;
	height: 101px;
	font-size: 17px;
	line-height: 42px;
	color: #ffffff;
	position: absolute;
  top: 55px;
  right: 60px;
}

footer img.logoImg {
  width: 598px;
  height: 103px;
  position: absolute;
  top: 67px;
  left: 0;
}
footer .linkBox{
	width: 138px;
	height: 28px;
	background-color: #ffffff;
	border-radius: 10px;
	position: absolute;
  bottom: 60px;
 right: 57px;
	text-align: center;
	overflow: hidden;
}
footer #linkSelector{
	cursor: pointer;
	width: 158px;
	height: 100%;
	background-color: transparent;
	border: none;
	outline: none;
	padding-left: 7px;
}

