@charset "utf-8";
/* CSS Document */

	  
@font-face {
	font-family: 'Ali';
	src: url('/http/zjt.hunan.gov.cn/font/AlibabaPuHuiTi-3-55-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}  
  
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Ali';
}



.container {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	max-width: 1440px;
	margin: 0 auto;
	-ms-flex-direction: row;   /* IE10 */
  flex-direction: row;
	-ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
	-ms-flex-pack: space-between;     /* IE10：justify-content: center; 的旧语法 */
  justify-content: space-between;
}
.container_a{
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	max-width: 1440px;
	margin: 0 auto;
	-ms-flex-direction: row;   /* IE10 */
  flex-direction: row;
	-ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
	-ms-flex-pack: space-between;     /* IE10：justify-content: center; 的旧语法 */
  justify-content: space-between;
}

.con_a{
	font-size: 16px;
	color: #ffffff;
}

.con_a a{
	font-size: 16px;
	text-decoration: none;
	color: #ffffff;
	padding: 0 20px 0 20px;
}
/* 头部样式 */
header {
  background-color: #1a56db;
  color: white;
  width: 100%;
}

.header-title {
  text-align: center;
  padding: 15px 0;
}

.header-title h1 {
	font-size: 56px;
	margin-bottom: 5px;
	margin-top: 15px;
	width: fit-content;

}

.header-title h2 {
  font-size: 20px;
  font-weight: normal;
}

.banner {
  position: relative;
  width: 100%;
  height: 357px;
  background-image: url('../img/banner_27.png');
  background-size: cover;
}

.banner img {

  object-fit: cover;
}

.search-box {
  position: absolute;
  top: 223px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: -ms-flexbox;
	display: flex;
  width: 722px;
  height: 40px;
  font-size: 16px;
}

.search-box form>select, .search-box input , .search-box form>input {
  padding: 8px 12px;
  border: none;
  outline: none;
  width: 438px;
  height: 40px;
}

.search-box form {
	display: -ms-flexbox;
	display: flex;
	border-left: 1px solid #E6E6E6;
}

.search-box select {
  border-radius: 4px 0 0 4px;
  background-color: white;
  width: 136px;
  height: 40px;
  font-size: 16px;
  color: #434343;
  text-align: center;
  border: none;
}

.search-box input {
  -ms-flex: 1; /* IE10 */
  flex: 1;
  font-size: 16px;
}

.search-box button {
  background-color: #ff7d00;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  width: 124px;
  font-size: 24px;
}

nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #02264aa6;
  border-radius: 0px;
}

.nav-menu {
	display: -ms-flexbox;
	display: flex;
	justify-content: space-evenly;
	list-style: none;
	height: 80px;
	width: 100%;
}

.nav-menu li {
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  font-weight: normal;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
}

.nav-menu span{
  height: 28px;
  font-weight: normal;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 20px;
  opacity: 1;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/*追加二级*/
.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu > li:hover > a,
.nh_active > a {
   
}

.nav-menu > li > a span {
    display: block;
}

/* 二级菜单样式 */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 4px 4px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-menu > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #0163C9 !important;
    font-size: 14px;
    transition: all 0.2s ease;
}

.submenu li a span{
    color: #0163C9 !important;
}

.submenu li a:hover {
    background-color: #f8f9fa;
    color: #1e6bb8;
}





/*三角箭头*/
.arrow-up:before {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    content: '';
}

.arrow-down:before {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    content: '';
}

/* 右边二维码部分 */
#moquu_top,#moquu_wxin,#moquu_wshare,#moquu_wmaps {
  z-index:2;
  width:70px;
  height:70px;
  right:10px;
  position:fixed;
  cursor:pointer;
  _position:absolute;
  _bottom:auto;
  _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)))
}

#moquu_wxin {
  top:320px;
  _margin-top:320px;
}
#moquu_wxin a {
  background:url(../img/fc1.jpg);
  right:0;
  float:left;
  width:70px;
  height:70px;
  box-shadow: 0px 2px 3px #ccc;
}

#moquu_wshare {
  top:395px;
  _margin-top:395px
}
#moquu_wshare a {
  background:url(../img/fc2.jpg);
  width:70px;
  height:70px;
  right:0;
  float:left;
  box-shadow: 0px 2px 3px #ccc;
}
#moquu_wmaps {
  top:470px;
  _margin-top:470px;
  box-shadow: 0px 2px 3px #ccc;
}
#moquu_wmaps a {
  background:url(../img/fc3.jpg);
  width:70px;
  height:70px;
  right:0;
  float:left;
  box-shadow: 0px 2px 3px #ccc;
}

#moquu_top {
  top:545px;
  _margin-top:545px;
  background:url(../img/fc4.jpg);
  width:70px;
  height:70px;
  box-shadow: 0px 2px 3px #ccc;
}

.moquu_wxin,.moquu_wshare,.moquu_wmaps {
  position:relative;
  z-index:2
}
.moquu_wxin a:hover .moquu_wxinh,.moquu_wshare a:hover .moquu_wshareh,.moquu_wmaps a:hover .moquu_wmapsh{
  display:block
}
.moquu_wxin .moquu_wxinh {
  position:absolute;
  display:none;
  left:-200px;
  top:-0px;
  width:200px;
  height:178px;
}
.mwx_left{
    width: 180px;
    height: 178px;
    background: #fff;
    box-shadow: 0px 2px 3px #ccc;
    text-align: center;
    padding-top: 16px;
}
.mwx_left span{
  font-size: 16px;
  color:#000;
}

.mwx_right{
    display: block;
    width: 0;
    height: 0;
    border-width: 15px 0px 15px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #f5f2f2;
    position: absolute;
    z-index: 9;
    right: 5px;
    top: 13%;
}
.moquu_wshare .moquu_wshareh {
  position:absolute;
  display:none;
  left:-340px;
  top:0px;
  width:340px;
  height:70px;
  }
.mws_left{
  width: 320px;
  height: 70px;
  line-height: 30px;
  background: #fff;
  box-shadow: 0px 2px 3px #ccc;
  text-align: left;
  padding: 5px 16px;
}
.mws_left p{
  font-size: 16px;
  color:#000;
}
.mws_right{
    display: block;
    width: 0;
    height: 0;
    border-width: 15px 0px 15px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #f5f2f2;
    position: absolute;
    z-index: 9;
    right: 5px;
    top: 20%;
}
.moquu_wmaps .moquu_wmapsh{
  position:absolute;
  display:none;
  left:-200px;
  top:0px;
  width:200px;
  height:178px;
}
.mwm_left{
    width: 180px;
    height: 178px;
    background: #fff;
    box-shadow: 0px 2px 3px #ccc;
    text-align: center;
}
.mwm_left .mwml_top{
  height: 44px;
  width: 180px;
  background: #e8f5ff;
  color:#247ec6;
  text-align: center;
  font-size: 14px;
  line-height: 44px;
  border-bottom: 2px solid #247ec6; 
}
.mwm_left ul li{
    font-size: 14px;
    color: #247ec6;
    text-align: left;
    line-height: 28px;
    padding-left: 5px;
  }
.mwm_left ul li span{
  font-weight: 600;
  font-size:14px;
  color: #000;
}
.mwm_right{
    display: block;
    width: 0;
    height: 0;
    border-width: 15px 0px 15px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #e8f5ff;
    position: absolute;
    z-index: 9;
    right: 5px;
    top: 11%;
}



