﻿@charset "utf-8";
/*全局初始化样式 --*/
body {
  padding: 0;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: #666;
  background-color: #fff;
  font-family: "Arial", "思源黑体 CN";
  /*禁用Webkit内核浏览器的文字大小调整功能*/
  -webkit-text-size-adjust: none;
  /*取出点击出现半透明的灰色背景*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight: rgba(0, 0, 0, 0);
  /*控制文本可选性*/
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  /*设置字体的抗锯齿或者说光滑度*/
  -webkit-font-smoothing: antialiased;
}
* {
  -webkit-tap-highlight-color: transparent;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}
/*html5设置*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
html,
body,
div,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
p {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  outline: none;
  color: #333;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:focus {
  outline: none;
  -moz-outline: none;
}
a:hover {
  color: #000;
}
a img {
  border: none;
}
/*强制去除表单自带的样式*/
select,
input,
textarea {
  border-radius: 0;
  -webkit-border-radius: 0;
}
input:focus {
  outline: none;
}
input,
button,
select,
textarea {
  outline: none;
  /*-webkit-appearance:none;*/
}
textarea {
  resize: none;
  /*-webkit-appearance:none;*/
}
textarea,
input,
select {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
/*清楚浮动*/
.clear {
  clear: both;
  overflow: hidden;
}
.clearfix {
  *zoom: 1;
}
/*IE/7/6*/
.clearfix:after {
  content: '';
  display: block;
  height: 0;
  clear: both;
}
/*该设置跟后台编辑器有关*/
.ul,
.ul li,
.dl,
.dl dd,
ul,
ul li,
ol,
ol li,
dl,
dl dd {
  list-style: none;
  margin: 0;
  padding: 0;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0px;
  margin: 0px;
  font-weight: normal;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.fleximportant {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
}
.inlineflex {
  display: inline-flex;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
}
.d_flex > * {
  display: block;
}
/*伸缩流方向*/
.f_direction_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_direction_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
/*主轴对齐*/
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/*侧轴对齐*/
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
/*伸缩性*/
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.flex_auto {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
.flex_1 {
  width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
/*显示顺序*/
.order_2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.order_3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}
/*单行溢出*/
.dot {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.dot2,
.dot3,
.dot4 {
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
}
/*2行文本省略号*/
.dot2 {
  -webkit-line-clamp: 2;
}
/*3行文本省略号*/
.dot3 {
  -webkit-line-clamp: 3;
}
/*4行文本省略号*/
.dot4 {
  -webkit-line-clamp: 4;
}
.dot5 {
  -webkit-line-clamp: 5;
}
.donghua {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.fangda {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.xuanzhuan {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -moz-transform: rotate(180deg);
  /* Firefox */
  -webkit-transform: rotate(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(180deg);
}
.Ispic {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/**字体大小**/
.fz_24 {
  font-size: 24px;
}
.fz_20 {
  font-size: 20px;
}
.fz_18 {
  font-size: 18px;
}
.fz_16 {
  font-size: 16px;
}
.fz_14 {
  font-size: 14px;
}
.fz_12 {
  font-size: 12px;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.pc {
  display: block;
}
.wap {
  display: none;
}
header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
header.scroll {
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
header .logo {
  max-width: 180px;
}
header .right {
  width: 130px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
header .right:before {
  content: '';
  width: 1px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  background: #fff;
}
header .right .search {
  width: 18px;
  height: 20px;
  position: relative;
}
header .right .search form {
  width: 200px;
  height: 0px;
  position: absolute;
  right: 0;
  top: 10px;
  border: 1px solid #fff;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: -1;
  opacity: -1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .right .search form.on {
  height: 40px;
  z-index: 1;
  opacity: 1;
  top: 25px;
}
header .right .search form input {
  width: 170px;
  height: 40px;
  padding: 0 10px;
  color: #fff;
}
header .right .search form a {
  width: 30px;
  height: 30px;
  background: url(../images/search.png) no-repeat center;
}
header .right .lan {
  max-width: calc(100% - 20px);
  position: relative;
}
header .right .lan:hover .sub {
  z-index: 1;
  opacity: 1;
  top: 25px;
}
header .right .lan .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
}
header .right .lan .box span {
  font-size: 16px;
  color: #fff;
  margin: 0 8px;
  white-space: nowrap;
}
header .right .lan .sub {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 20px;
  background: #fff;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .right .lan .sub a {
  display: block;
  width: 100%;
  line-height: 30px;
  text-align: center;
}
header .right .menu_a {
  display: none;
}
header .nav {
  width: calc(100% - 350px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
header .nav li a {
  font-size: 18px;
  color: #fff;
  font-weight: lighter;
  margin-left: 2vw;
  white-space: nowrap;
}
.more {
  font-size: 18px;
  color: #fff;
  padding: 20px 40px;
  border: 1px solid #fff;
}
.more:hover {
  color: #fff;
}
.more2 {
  font-size: 18px;
  color: #fff;
  padding: 20px 40px;
  background: #89c21b;
}
.more2:hover {
  color: #fff;
}
.banner .swiper-slide {
  line-height: 0;
}
.banner .swiper-slide .art {
  position: absolute;
  width: 100%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.banner .swiper-slide .art h2 {
  font-size: 48px;
  margin: 65px 0 45px;
  line-height: 1;
  color: #fff;
}
.banner .banner_s {
  width: 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  left: auto;
  right: 4%;
}
.banner .banner_s span {
  width: 26px;
  height: 26px;
  opacity: 1;
  background: transparent;
  position: relative;
  margin: 5px 0!important;
}
.banner .banner_s span:before {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -3px;
  margin-top: -3px;
  background: #fff;
  border-radius: 50%;
}
.banner .banner_s span svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.4) rotate(-90deg);
}
.wrap {
  width: 84%;
  max-width: 1440px;
  margin: 0 auto;
}
.wraps {
  max-width: 1600px;
}
.tzgg {
  height: 70px;
  position: relative;
  z-index: 9;
  background: transparent;
  margin-top: -70px;
  overflow: hidden;
}
.tzgg .wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  position: relative;
}
.tzgg .wrap:before {
  content: '';
  width: 20%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  background: #f6f4f5;
}
.tzgg .right {
  width: 75%;
  height: 70px;
  background: #f6f4f5;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.tzgg .right .tz {
  width: 160px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #004988;
  color: #fff;
  font-size: 18px;
}
.tzgg .right .tz img {
  margin-right: 10px;
}
.tzgg .right .tz_s {
  width: calc(100% - 160px);
  height: 100%;
}
.tzgg .right .tz_s .swiper-slide a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 30px;
}
.tzgg .right .tz_s .swiper-slide span {
  width: 255px;
}
.tzgg .right .tz_s .swiper-slide p {
  width: calc(100% - 260px);
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.tzgg .right .tz_s .tz_s_p,
.tzgg .right .tz_s .tz_s_n {
  left: auto;
  right: 0;
  top: 50%;
  width: 35px;
  height: 20px;
  outline: none;
}
.tzgg .right .tz_s .tz_s_p:after,
.tzgg .right .tz_s .tz_s_n:after {
  display: none;
}
.tzgg .right .tz_s .tz_s_p {
  background: url(../images/t1.png) no-repeat center;
  margin-top: -20px;
}
.tzgg .right .tz_s .tz_s_p:hover {
  background: url(../images/t2.png) no-repeat center;
}
.tzgg .right .tz_s .tz_s_n {
  background: url(../images/b1.png) no-repeat center;
  margin-top: 0px;
}
.tzgg .right .tz_s .tz_s_n:hover {
  background: url(../images/b2.png) no-repeat center;
}
h2.title {
  font-size: 42px;
  line-height: 1;
  color: #333333;
}
.info {
  font-size: 16px;
  line-height: 31px;
  color: #666666;
  font-weight: lighter;
}
.jyyw {
  padding: 4vw 0 2vw;
  background: url(../images/bg2.png) no-repeat right bottom calc(2vw + 20px);
  background-size: 24%;
}
.jyyw_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.jyyw_list li {
  width: 24%;
  margin-right: 1.33%;
  margin-bottom: 1vw;
}
.jyyw_list li:nth-child(4n) {
  margin-right: 0;
}
.jyyw_list li:first-child a .art {
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.jyyw_list li:first-child a .art h2 {
  margin-bottom: 4vw;
}
.jyyw_list li a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 104%;
  position: relative;
  overflow: hidden;
}
.jyyw_list li a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.jyyw_list li a img,
.jyyw_list li a .art {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.jyyw_list li a img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.jyyw_list li a .art {
  z-index: 2;
  background: url(../images/bg.png) no-repeat center;
  background-size: 100% 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.jyyw_list li a .art p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}
.ystd {
  padding: 4vw 0;
  background: url(../images/bg3.png) no-repeat center;
}
.ystd h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 15px;
}
.ystd_s {
  padding-bottom: 45px;
}
.ystd_s .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 25px 25px 90px;
}
.ystd_s .swiper-slide a:hover .imgbox img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.ystd_s .swiper-slide a .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 133.33%;
  position: relative;
  overflow: hidden;
}
.ystd_s .swiper-slide a .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ystd_s .swiper-slide a .art {
  position: absolute;
  width: 260px;
  max-width: 90%;
  height: auto;
  left: 0;
  bottom: 0;
  background: rgba(244, 245, 249, 0.95);
  padding: 20px 20px 30px;
}
.ystd_s .swiper-slide a .art h3 {
  font-size: 24px;
  color: #333333;
}
.ystd_s .swiper-slide a .art p {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  position: relative;
}
.ystd_s .swiper-slide a .art p:before {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  bottom: -10px;
}
.ystd_s .ystd_s_s {
  top: auto;
  bottom: 15px;
}
.ystd_s .swiper-pagination-progressbar {
  height: 2px;
  background: rgba(137, 194, 27, 0.2);
}
.ystd_s .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #89c21b;
}
.ystd_s .swiper-pagination-progressbar .swiper-pagination-progressbar-fill:before{
  content: '';
  width: 15px!important;
  height: 18px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -9px;
  background: url(../images/bg4.png) no-repeat center;
  display: none;
}
.yffx {
  padding: 4vw 0;
  background: #f1f8fc;
}
.yffx h2 {
  margin-bottom: 50px;
}
.yffx_s .swiper-slide {
  background: #44b096;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 45px 10px 20px;
  overflow: hidden;
}
.yffx_s .swiper-slide:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.yffx_s .swiper-slide:hover .img1 {
  z-index: 1;
}
.yffx_s .swiper-slide:nth-child(2) {
  background: #089c9e;
}
.yffx_s .swiper-slide:nth-child(3) {
  background: #0e88b1;
}
.yffx_s .swiper-slide:nth-child(4) {
  background: #3e83bd;
}
.yffx_s .swiper-slide:nth-child(5) {
  background: #0d5aad;
}
.yffx_s .swiper-slide:nth-child(6) {
  background: #6189ab;
}
.yffx_s .swiper-slide:nth-child(7) {
  background: #29adc6;
}
.yffx_s .swiper-slide:nth-child(8) {
  background: #479cb9;
}
.yffx_s .swiper-slide:nth-child(9) {
  background: #1875ab;
}
.yffx_s .swiper-slide:nth-child(10) {
  background: #004988;
}
.yffx_s .swiper-slide img {
  width: 80px;
  height: 100px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.yffx_s .swiper-slide .img1 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.yffx_s .swiper-slide p {
  font-size: 16px;
  line-height: 30px;
  height: 90px;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.news {
  padding: 4vw 0;
}
.news .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.news .wrap .left {
  width: 50%;
}
.news .wrap .left .news_s a:hover .imgbox img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news .wrap .left .news_s .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 52.5%;
  position: relative;
  overflow: hidden;
}
.news .wrap .left .news_s .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news .wrap .left .news_s .imgbox .time {
  position: absolute;
  width: 160px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  left: 0;
  bottom: 0;
  background: #004988;
  color: #fff;
  font-size: 20px;
  z-index: 2;
}
.news .wrap .left .news_s .art {
  padding: 30px;
  background: #f8f8f8;
}
.news .wrap .left .news_s .art h3 {
  font-size: 24px;
  color: #333333;
  margin-bottom: 5px;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news .wrap .left .news_s .art p {
  font-size: 16px;
  line-height: 36px;
  height: 76px;
  color: #666666;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news .wrap .left .news_s .news_s_s {
  bottom: 200px;
  text-align: right;
  padding-right: 30px;
}
.news .wrap .left .news_s .news_s_s span {
  width: 12px;
  height: 12px;
  opacity: 1;
  border: 1px solid #fff;
  background: transparent;
}
.news .wrap .left .news_s .news_s_s span.swiper-pagination-bullet-active {
  background: #fff;
}
.news .wrap .right {
  width: 46.25%;
}
.news .wrap .right .list li {
  margin-bottom: 28px;
}
.news .wrap .right .list li:last-child {
  margin-bottom: 0;
}
.news .wrap .right .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.news .wrap .right .list li a:hover .imgbox img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news .wrap .right .list li a .imgbox {
  width: 32%;
  height: 0;
  padding-bottom: 24.5%;
  position: relative;
  overflow: hidden;
}
.news .wrap .right .list li a .imgbox img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news .wrap .right .list li a .art {
  width: 68%;
  padding-left: 5%;
}
.news .wrap .right .list li a .art h4 {
  font-size: 20px;
  color: #333333;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news .wrap .right .list li a .art p {
  font-size: 16px;
  line-height: 36px;
  color: #666666;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 72px;
}
.news .wrap .right .list li a .art .time {
  padding-left: 28px;
  font-size: 16px;
  color: #999999;
  background: url(../images/time.png) no-repeat left center;
}
.news h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 40px;
}
.hzhb {
  padding: 4vw 0 0;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}
.hzhb h2 {
  margin-bottom: 50px;
}
.hzhb .hzhb_s {
  padding-bottom: 4vw;
}
.hzhb .hzhb_s .swiper-slide a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 40%;
  position: relative;
  overflow: hidden;
}
.hzhb .hzhb_s .swiper-slide a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.hzhb .hzhb_s .swiper-slide a img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #dcdcdc;
}
.hzhb .hzhb_s .swiper-pagination-progressbar {
  top: auto;
  bottom: 0;
  height: 5px;
  background: transparent;
}
.hzhb .hzhb_s .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #89c21b;
}
footer {
  padding: 4vw 0 0;
  background: #1b2a46;
  position: relative;
}
footer:after {
  content: '';
  width: 50%;
  height: 5px;
  background: #89c21b;
  top: -2.5px;
  left: 0;
  position: absolute;
}
footer .foot1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 50px;
}
footer .foot1 .navul {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
footer .foot1 .navul li a {
  font-size: 15px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.4);
  white-space: normal;
  display: block;
}
footer .foot1 .navul li a:first-child {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}
footer .foot1 .right {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
footer .foot1 .right select {
  width: 200px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /*去掉下拉箭头*/
  background: url(../images/m.png) no-repeat center right 20px;
}
footer .foot1 .right select option {
  line-height: 50px;
  height: 50px;
}
footer .foot1 .right h5 {
  font-size: 32px;
  color: #ffffff;
  margin: 20px 0;
}
footer .foot1 .right .share .bshare-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
footer .foot1 .right .share .bshare-custom a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  padding: 0;
  margin-left: 30px;
  margin-right: 0;
  opacity: 0.4;
}
footer .foot1 .right .share .bshare-custom a:hover {
  opacity: 1;
}
footer .foot1 .right .share .bshare-custom a.bshare-weixin {
  background: url(../images/wx.png) no-repeat center rgba(255, 255, 255, 0.05);
}
footer .foot1 .right .share .bshare-custom a.bshare-qqim {
  background: url(../images/qq.png) no-repeat center rgba(255, 255, 255, 0.05);
}
footer .foot1 .right .share .bshare-custom a.bshare-sinaminiblog {
  background: url(../images/wb.png) no-repeat center rgba(255, 255, 255, 0.05);
}
footer .foot2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .foot2 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 80px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
}
footer .foot2 .wrap a {
  color: rgba(255, 255, 255, 0.4);
}
footer .foot2 .wrap .links a {
  position: relative;
  padding-left: 14px;
  margin-left: 10px;
}
footer .foot2 .wrap .links a:first-child:before {
  display: none;
}
footer .foot2 .wrap .links a:before {
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.4);
}
#bsWXBox {
  height: 256px!important;
  width: 232px!important;
}
img {
  max-width: 100%;
}
.banner_info {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner_info .wrap {
  height: 100%;
}
.banner_info .art {
  color: #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.banner_info .art h2 {
  font-size: 48px;
  font-family: "YouSheBiaoTiHei";
  font-weight: normal;
}
.news_info {
  font-size: 18px;
  line-height: 30px;
  color: #354f5b;
  padding: 80px 0 120px;
}
.news_info h2 {
  font-size: 30px;
  text-align: center;
  line-height: 1.5;
}
.news_info .news_time {
  font-size: 16px;
  text-align: center;
  margin: 10px 0 20px;
  color: #999999;
}
.news_info .news_time span {
  margin: 0 15px;
}
.news_info .news_line {
  width: 100%;
  height: 1px;
  background: #e0edf2;
  margin-bottom: 55px;
}
.news_info .news_con {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
}
.news_info .contentBottom.sxy {
  padding-top: 30px;
  padding-right: 140px;
  position: relative;
  margin-top: 50px;
  border-top: 1px solid #e0edf2;
}
.news_info .contentBottom.sxy a {
  display: block;
  color: #004988;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
}
.news_info .contentBottom.sxy a p {
  color: #777777;
}
.pageTop {
  border-bottom: 1px solid #e0edf2;
  height: 80px;
  line-height: 80px;
  background: #f4f8fa;
}
.pageTop .wrap {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
.pageTop .wrap .pNav {
  flex: 1 1 auto;
  font-size: 16px;
}
.pageTop .wrap .pNav.pNav2 a {
  color: #1fb3d3;
}
.pageTop .wrap .pNav li {
  display: inline-block;
  margin-right: 40px;
}
.pageTop .wrap .pNav li a {
  display: block;
  border-bottom: 2px solid transparent;
  line-height: 77px;
  color: #333333;
}
.pageTop .wrap .pNav li a.cur,
.pageTop .wrap .pNav li a:hover {
  color: #1fb3d3;
  border-color: #1fb3d3;
}
.pageTop .wrap .bread {
  padding-left: 25px;
  color: #7e8b92;
  background: url(../images/icon-home.png) no-repeat left 28px;
  background-size: 19px 17px;
}
.pageTop .wrap .bread a {
  margin: 0 5px;
  color: #999999;
}
.pageTop .wrap .bread a:last-child {
  color: #1fb3d3;
}
.gsjj_info {
  padding: 4vw 0 0;
}
.gsjj_info .item_s .swiper-pagination {
  text-align: right;
  bottom: 20px;
  padding-right: 30px;
}
.gsjj_info .item_s .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  box-sizing: border-box;
}
.gsjj_info .item_s .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  border: none;
  background: transparent;
}
.gsjj_info .item_s .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #fff;
  top: 1px;
  left: 1px;
  border-radius: 50%;
}
.gsjj_info .item_s1 .swiper-pagination {
  text-align: right;
  bottom: 20px;
  padding-right: 30px;
}
.gsjj_info .item_s1 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  box-sizing: border-box;
}
.gsjj_info .item_s1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  border: none;
  background: transparent;
}
.gsjj_info .item_s1 .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #fff;
  top: 1px;
  left: 1px;
  border-radius: 50%;
}
.gsjj_info .item2:after {
  right: auto;
  left: 0;
}
.gsjj_info .item2 .imgbox {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  line-height: 0;
}
.gsjj_info .item2 .imgbox img {
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.gsjj_info .item2 .art {
  padding-left: 3%;
}
.gsjj_info .item3 .imgbox {
  line-height: 0;
}
.gsjj_info .item3 .imgbox img {
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.gsjj_info .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-bottom: 70px;
  position: relative;
}
.gsjj_info .item.item1 {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.gsjj_info .item.item1 .art {
  margin-top: 120px;
}
.gsjj_info .item:after {
  content: '';
  width: 92%;
  height: calc(100% - 80px);
  position: absolute;
  top: 80px;
  right: 0;
  background: #f8fbfd;
}
.gsjj_info .item .imgbox {
  width: 44.44%;
  position: relative;
  z-index: 1;
}
.gsjj_info .item .art {
  position: relative;
  width: 50%;
  padding-right: 3%;
  z-index: 1;
  margin-bottom: 30px;
}
.gsjj_info .item .art h3 {
  font-size: 30px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 30px;
}
.gsjj_info .item .art .info {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
}
.gsjj_s {
  position: relative;
  margin: 4vw 0;
}
.gsjj_s:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 60px;
  background: #b2c8db;
}
.gsjj_s .swiper-slide .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  position: relative;
}
.gsjj_s .swiper-slide .imgbox img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.gsjj_s .swiper-slide p {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  width: 100%;
  color: #333333;
  margin: 30px 0 50px;
  position: relative;
}
.gsjj_s .swiper-slide p:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 18px;
  left: 0;
  bottom: -35px;
  background: url(../images/d.png) no-repeat center;
  background-size: 15px 18px;
}
.gsjj_s .swiper-slide span {
  font-size: 20px;
  font-family: 'Arial';
  color: #333333;
  display: block;
  text-align: center;
}
.gljg_info {
  padding: 4vw 0;
}
.gljg_info .list1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.gljg_info .list1 li {
  width: 310px;
  margin: 20px;
  padding: 30px;
  max-width: calc(50% - 40px);
  border: 1px solid #dcdcdc;
}
.gljg_info .list1 li h3 {
  font-size: 20px;
  color: #004988;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.gljg_info .list1 li h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background: #004988;
  left: 0;
  bottom: 0;
}
.gljg_info .list1 li .info {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
  min-height: 96px;
}
.gljg_info .img {
  margin: 80px auto;
  line-height: 0;
  text-align: center;
}
.jyyw_info {
  padding: 4vw 0;
}
.jyyw_info .box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 80px;
}
.jyyw_info .box1 .img1 {
  width: 220px;
}
.jyyw_info .box1 .art {
  width: calc(100% - 250px);
}
.jyyw_info .box1 .art img {
  margin-top: 60px;
}
.jyyw_info .list1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.jyyw_info .list1 li {
  width: 31.25%;
  margin-bottom: 40px;
}
.jyyw_info .list1 li:hover .imgbox .art {
  top: 0;
}
.jyyw_info .list1 li .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}
.jyyw_info .list1 li .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.jyyw_info .list1 li .imgbox:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../uploadfiles/bg4.png) no-repeat center;
  z-index: 2;
}
.jyyw_info .list1 li .imgbox h3 {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: 40px;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  z-index: 3;
}
.jyyw_info .list1 li .imgbox .art {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 4;
  background: #004988;
  text-align: center;
  padding: 10%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.jyyw_info .list1 li .imgbox .art h2 {
  font-size: 24px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.jyyw_info .list1 li .imgbox .art h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 1px;
  background: #fff;
  left: 50%;
  margin-left: -30px;
  bottom: 0;
}
.jyyw_info .list1 li .imgbox .art .info {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  text-align: left;
}
.gszz_info {
  padding: 4vw 0;
}
.gszz_info .wrap {
  overflow: hidden;
}
.gszz_s {
  width: 100%;
  padding-left: 14%;
  position: relative;
}
.gszz_s .gszz_s_s {
  width: 31%;
  left: 69%;
  top: auto;
  bottom: 130px;
}
.gszz_s .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 450px;
  /* padding-bottom: 24px; */
  box-shadow: 0px 0px 10px 0px;
  background: #fff;
  transform: scale(0.6);
  opacity: 0.3;
  width: 1250px;
  margin-bottom: 20px;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  opacity: 0.3 !important;
}
.gszz_s .swiper-slide .imgbox img,
.gszz_s .swiper-slide .art {
  opacity: 0;
}
.gszz_s .swiper-slide.swiper-slide-duplicate-next,
.gszz_s .swiper-slide.swiper-slide-duplicate-active {
  opacity: 0!important;
}
.gszz_s .swiper-slide.swiper-slide-prev {
  opacity: 0.6 !important;
}
.gszz_s .swiper-slide.swiper-slide-active {
  opacity: 1!important;
}
.gszz_s .swiper-slide.swiper-slide-active .imgbox img,
.gszz_s .swiper-slide.swiper-slide-active .art {
  opacity: 1;
}
.gszz_s .swiper-slide:after {
  content: '';
  width: 100%;
  left: 0;
  height: 24px;
  position: absolute;
  bottom: 0;
  background: url(../uploadfiles/bg7.png) no-repeat center bottom;
  background-size: 100% 24px;
}
.gszz_s .swiper-slide .imgbox {
  width: 64%;
  height: 100%;
  background: url(../../uploadfiles/image/bg5.jpg);
  background-size: 100% 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.gszz_s .swiper-slide .imgbox .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: auto;
  line-height: 0;
  margin-bottom: -60px;
  padding-bottom: 60px;
  background: url(../uploadfiles/bg6.png) no-repeat center bottom;
}
.gszz_s .swiper-slide .art {
  width: 36%;
  height: 100%;
}
.gszz_s .swiper-slide .art h2 {
  font-size: 34px;
  color: #004988;
  font-weight: bold;
  text-align: center;
  margin-top: 125px;
}
.gszz_info2 {
  background: #f9f9f9;
  padding: 4vw 0;
}
.gszz_info2 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.gszz_info2 .list li {
  width: 22.22%;
  background: #fff;
}
.gszz_info2 .list li a {
  display: block;
  width: 100%;
  padding: 10px;
}
.gszz_info2 .list li .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 140%;
  position: relative;
  overflow: hidden;
}
.gszz_info2 .list li .imgbox:hover .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.gszz_info2 .list li .imgbox .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.gszz_info2 .list li .imgbox .img img {
  max-height: 100%;
  max-width: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.gszz_info2 .list li p {
  padding: 15px 10px;
  text-align: center;
  font-size: 16px;
  line-height: 25px;
  color: #333333;
}
.qyry_info {
  padding: 4vw 0;
}
    .qyry_info .list_s {
        background: url(../../uploadfiles/image/bg8.png) no-repeat center bottom 90px;
        background-size: 100% 75px;
    }
    .qyry_info .list2_s {
        background: url(../../uploadfiles/image/bg8.png) no-repeat center bottom 25px;
        background-size: 100% 75px;
    }
.qyry_info .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 70px;
}
.qyry_info .list.list2 {
  margin-bottom: 20px;
}
.qyry_info .list.list2 li .imgbox {
  padding-bottom: 146%;
}
.qyry_info .list li {
  width: 23%;
  padding: 0 1%;
}
.qyry_info .list li:hover .imgbox .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.qyry_info .list li .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 73%;
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
}
.qyry_info .list li .imgbox .img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.qyry_info .list li .imgbox .img img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.qyry_info .list li p {
  font-size: 16px;
  line-height: 25px;
  height: 50px;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #333333;
  text-align: center;
}
.ystd_info {
  padding: 4vw 0;
}
.ystd_info .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ystd_info .list li {
  width: 22.22%;
}
.ystd_info .list li a:hover .imgbox img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.ystd_info .list li .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 140%;
  position: relative;
  overflow: hidden;
}
.ystd_info .list li .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ystd_info .list li .art {
  background: #f8fbfd;
  padding: 20px 30px;
  border-bottom: 3px solid rgba(61, 133, 195, 0.5);
}
.ystd_info .list li .art h2 {
  font-size: 30px;
  color: #333333;
}
.ystd_info .list li .art .info {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  margin-bottom: 20px;
}
.ystd_info .list li .art span {
  font-size: 16px;
  color: #333333;
  display: inline-block;
  position: relative;
}
.ystd_info .list li .art span:after {
  content: '';
  width: 50px;
  height: 1px;
  position: absolute;
  background: #333;
  right: -70px;
  top: 50%;
}
.ystd_info2 {
  background: #f8fbfd;
}
.ystd_info2 .info {
  font-size: 16px;
  line-height: 36px;
  color: #666;
  margin-bottom: 50px;
}
.ystd_info2 .list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ystd_info2 .list2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ystd_info2 .list2 li h2 {
  width: 137px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 20px;
}
.ystd_info2 .list2 li h2 p {
  font-size: 50px;
  line-height: 1;
  color: #004988;
}
.ystd_info2 .list2 li h2 span {
  font-size: 18px;
  color: #231815;
}
.ystd_info2 .list2 li p {
  font-size: 18px;
  line-height: 26px;
  color: #666666;
  text-align: center;
}
.ystd_info3 .con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ystd_info3 .con img {
  width: 22.22%;
  height: auto;
  position: relative;
  z-index: 2;
}
.ystd_info3 .con .art {
  width: 75%;
}
.ystd_info3 .con .art h2 {
  font-size: 30px;
  color: #004988;
  font-weight: bold;
}
.ystd_info3 .con .art .info {
  font-size: 16px;
  line-height: 30px;
  color: #004988;
  margin: 15px 0;
}
.ystd_info3 .con .art .box {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  position: relative;
}
.ystd_info3 .con .art .box > div {
  position: relative;
  z-index: 1;
  padding: 20px 30px 30px 0;
}
.ystd_info3 .con .art .box:after {
  content: '';
  width: 120%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #f8fbfd;
  z-index: 0;
}
.yfpt_info {
  padding: 4vw 0;
}
.yfpt_info .box {
  margin-bottom: 60px;
}
.yfpt_info .box h2 {
  font-size: 30px;
  color: #333333;
  margin-bottom: 30px;
}
.yfpt_info .box .info {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
}
.yfpt_info .list {
  background: #f9f9f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 25px;
  padding-bottom: 0;
}
.yfpt_info .list li {
  width: calc(50% - 12.5px);
  margin-right: 25px;
  margin-bottom: 25px;
}
.yfpt_info .list li:nth-child(2n) {
  margin-right: 0;
}
.yfpt_info .list li a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 59%;
  position: relative;
  overflow: hidden;
}
.yfpt_info .list li a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.yfpt_info .list li a img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.yfpt_info .list li a p {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 30px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  z-index: 3;
}
.yfpt_info .list li a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../uploadfiles/bg9.png) no-repeat center;
  background-size: 100% 100%;
  z-index: 2;
}
.yfpt_info .con h3 {
  font-size: 30px;
  color: #333333;
  text-align: center;
  margin-bottom: 20px;
}
.yfpt_info .con .info {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
}
.yfpt_info .con .info img {
  display: block;
  margin: 30px auto;
}
.jlhz_info {
  padding: 4vw 0;
}
.jlhz_info h2 {
  font-size: 42px;
  color: #333333;
  margin-bottom: 35px;
}
.jlhz_info .box1 {
  border-bottom: 1px solid #f7f7f7;
  margin-bottom: 70px;
}
.jlhz_info .jz_a {
  display: block;
  margin: 60px auto 75px;
  width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #004988;
  color: #fff;
}
.jlhz_info .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.jlhz_info .list li {
  width: 31.25%;
  margin-right: 3.125%;
}
.jlhz_info .list li:nth-child(3n) {
  margin-right: 0;
}
.jlhz_info .list li a {
  display: block;
  width: 100%;
}
.jlhz_info .list li a:hover .imgbox img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.jlhz_info .list li a .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 71%;
  overflow: hidden;
  position: relative;
}
.jlhz_info .list li a .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.jlhz_info .list li a .art {
  margin-top: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ececec;
}
.jlhz_info .list li a .art .time {
  font-size: 18px;
  color: #999999;
}
.jlhz_info .list li a .art h3 {
  font-size: 22px;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #333333;
}
.jlhz_info .list li a .art .info {
  font-size: 16px;
  line-height: 30px;
  height: 60px;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #666666;
}
.jlhz_info .gsjj_s .info {
  font-size: 16px;
  line-height: 32px;
  height: 128px;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  color: #666666;
}
.jlhz_info .gsjj_s .info b {
  font-size: 18px;
  color: #004988;
}
.jlhz_info .gsjj_s:after {
  bottom: 150px;
}
.jlhz_info .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.jlhz_info .items .item {
  width: 48.6%;
}
.jlhz_info .items .item .swiper-slide .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 57%;
  position: relative;
}
.jlhz_info .items .item .swiper-slide .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.jlhz_info .items .item .swiper-slide p {
  margin-top: 50px;
  font-size: 22px;
  color: #333333;
  text-align: center;
  height: 30px;
  line-height: 30px;
  position: relative;
}
.jlhz_info .items .item .swiper-slide p:after {
  content: '';
  width: 1px;
  height: 80px;
  left: 50%;
  top: -90px;
  position: absolute;
  background: #004988;
}
.jlhz_info .items .item .swiper-pagination {
  text-align: right;
  bottom: 100px;
  padding-right: 30px;
}
.jlhz_info .items .item .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  box-sizing: border-box;
}
.jlhz_info .items .item .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  border: none;
  background: transparent;
}
.jlhz_info .items .item .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #fff;
  top: 1px;
  left: 1px;
  border-radius: 50%;
}
.xwdt_info {
  padding: 4vw 0;
}
.xwdt_info .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 70px;
  background: #f8f9fa;
}
.xwdt_info .top .imgbox {
  width: 50%;
  line-height: 0;
}
.xwdt_info .top .art {
  width: 50%;
  padding: 0 4%;
}
.xwdt_info .top .art .time {
  padding-left: 30px;
  background: url(../images/time.png) no-repeat center left;
}
.xwdt_info .top .art h3 {
  color: #333333;
  font-size: 24px;
  margin: 30px 0 20px;
}
.xwdt_info .top .art .info {
  font-size: 16px;
  line-height: 36px;
  color: #666666;
  margin-bottom: 50px;
}
.xwdt_info .top .art .more_s {
  font-size: 16px;
  color: #000000;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
.top_div {
  height: 100px;
}
.jssb_info {
  padding: 4vw 0 8vw;
}
.jssb_info .box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.jssb_info .box1 .tabtitle {
  max-width: 20%;
}
.jssb_info .box1 .tabtitle li {
  padding-left: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100px;
  position: relative;
}
.jssb_info .box1 .tabtitle li:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #dcdcdc;
  top: 0;
  left: 7.5px;
}
.jssb_info .box1 .tabtitle li.on:before {
  background: #004988;
}
.jssb_info .box1 .tabtitle li.on:after {
  width: 15px;
  height: 18px;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
  background: url(../images/d.png) no-repeat center;
}
.jssb_info .box1 .tabtitle li.on .imgbox img {
  display: none;
}
.jssb_info .box1 .tabtitle li.on .imgbox img.on {
  display: block;
}
.jssb_info .box1 .tabtitle li.on p {
  color: #004988;
}
.jssb_info .box1 .tabtitle li .imgbox {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.jssb_info .box1 .tabtitle li .imgbox img {
  display: block;
}
.jssb_info .box1 .tabtitle li .imgbox img.on {
  display: none;
}
.jssb_info .box1 .tabtitle li p {
  font-size: 18px;
  color: #333333;
}
.jssb_info .box1 .tabbox {
  width: 78.5%;
}
.jssb_info .box1 .tabbox .item {
  display: none;
  position: relative;
  line-height: 0;
}
.jssb_info .box1 .tabbox .item.on {
  display: block;
}
.jssb_info .box1 .tabbox .item .art {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.jssb_info .box1 .tabbox .item .art p {
  height: auto;
  display: block;
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}
.jssb_info .box1 .tabbox .item .art a {
  display: block;
  width: 160px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border: 1px solid #fff;
  font-size: 18px;
  margin: 20px auto 35px;
}
.jssb_info .swiper-container {
  margin-bottom: 80px;
}
.jssb_info .swiper-container .swiper-pagination {
  text-align: center;
  bottom: 25px;
  padding-right: 30px;
}
.jssb_info .swiper-container .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  box-sizing: border-box;
}
.jssb_info .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  border: none;
  background: transparent;
}
.jssb_info .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #fff;
  top: 1px;
  left: 1px;
  border-radius: 50%;
}
.jssb_info .swiper-container .imgbox {
  position: relative;
  line-height: 0;
  text-align: center;
}
.jssb_info .swiper-container .imgbox p {
  position: absolute;
  bottom: 25px;
  left: 0;
  text-align: center;
  width: 100%;
  height: auto;
  font-size: 24px;
  color: #ffffff;
  line-height: 30px;
}
.jssb_info .con h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 24px;
  color: #004988;
  margin-bottom: 30px;
  position: relative;
}
.jssb_info .con h2 img {
  margin-right: 20px;
}
.jssb_info .con h2:after {
  content: '';
  width: 80px;
  height: 1px;
  position: absolute;
  left: 120px;
  top: 50%;
  background: #b2c8db;
}
.jssb_info .con .info {
  font-size: 16px;
  line-height: 36px;
  color: #666666;
  margin-bottom: 60px;
}
.jssb_info .con .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
}
.jssb_info .con .item .imgbox {
  width: 48.5%;
  margin-top: 20px;
}
.jssb_info .con .item .imgbox p {
  font-size: 20px;
  color: #333333;
  text-align: center;
  margin-top: 10px;
}
.hjjc_info {
  padding: 4vw 0;
}
.hjjc_info .box1 {
  padding: 55px 0;
  background: #f8fbfd;
}
.hjjc_info .box1 .wrap {
  position: relative;
}
.hjjc_info .box1 .wrap .imgbox {
  position: absolute;
  width: 44.44%;
  height: auto;
  bottom: -55px;
  right: 0;
  line-height: 0;
}
.hjjc_info .box1 .wrap .imgbox:after {
  content: '';
  width: 10px;
  height: 96%;
  bottom: 0;
  left: -10px;
  position: absolute;
  background: #adc5da;
}
.hjjc_info .box1 .wrap .imgbox img {
  width: 100%;
}
.hjjc_info .box1 .art {
  width: 46.5%;
}
.hjjc_info .box1 .art h3 {
  font-size: 30px;
  color: #333333;
}
.hjjc_info .box1 .art .info {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
  margin: 20px 0 40px;
}
.hjjc_info .box1 .art .imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.hjjc_info .list {
  margin-top: 60px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.hjjc_info .list li {
  width: 31.25%;
  margin-right: 3.125%;
  margin-bottom: 50px;
}
.hjjc_info .list li:nth-child(3n) {
  margin-right: 0;
}
.hjjc_info .list li a {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 15px;
}
.hjjc_info .list li a:before {
  content: '';
  width: 100%;
  height: 18px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/d.png) no-repeat center;
}
.hjjc_info .list li a:after {
  content: '';
  width: 120%;
  height: 1px;
  background: #004988;
  position: absolute;
  left: -10%;
  bottom: 10px;
}
.hjjc_info .list li a:hover .imgbox img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.hjjc_info .list li a .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  overflow: hidden;
  position: relative;
}
.hjjc_info .list li a .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.hjjc_info .list li a p {
  height: 32px;
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  margin: 10px 0;
}
.jcfu_info {
  padding: 4vw 0;
}
.jcfu_info h2 {
  font-size: 30px;
  color: #333333;
}
.jcfu_info h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 40px 0 10px;
  font-size: 22px;
  color: #333333;
}
.jcfu_info h3 img {
  margin-right: 10px;
}
.jcfu_info .list {
  padding-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.jcfu_info .list li {
  width: 170px;
  padding-left: 30px;
  margin-bottom: 20px;
  position: relative;
  white-space: nowrap;
}
.jcfu_info .list li:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #d9d9d9;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
}
.jcfu_info .box2 {
  padding: 50px 0 150px;
  margin: 50px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.jcfu_info .box2:after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  top: 210px;
  background: rgba(255, 255, 255, 0.2);
}
.jcfu_info .box2 h2 {
  color: #fff;
  margin-bottom: 50px;
}
.jcfu_info .box2 .list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}
.jcfu_info .box2 .list2 li {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.jcfu_info .box2 .list2 li p {
  font-size: 18px;
  color: #fff;
  margin-top: 30px;
}
.jcfu_info .box3 {
  margin-bottom: 75px;
}
.jcfu_info .box3 h2 {
  margin-bottom: 35px;
}
.jcfu_info .table table {
  width: 100%;
  border-collapse: collapse;
}
.jcfu_info .table tr td {
  padding: 30px 20px;
  border: 1px solid #dcdcdc;
}
.jcfu_info .table tr td:first-child {
  width: 100px;
  text-align: center;
}
.jcfu_info .box4 {
  position: relative;
  padding: 50px 0;
}
.jcfu_info .box4 .wrap {
  position: relative;
  z-index: 2;
}
.jcfu_info .box4 h2 {
  margin-bottom: 40px;
}
.jcfu_info .box4:after {
  content: '';
  width: 100%;
  height: 365px;
  position: absolute;
  top: 0;
  left: 0;
  background: #f9f9f9;
}
.jcfu_info .box4 .ry_s {
  padding-bottom: 60px;
}
.jcfu_info .box4 .ry_s .ry_s_s {
  top: auto;
  bottom: 0;
  height: 2px;
  background: #ccdbe7;
}
.jcfu_info .box4 .ry_s .ry_s_s .swiper-pagination-progressbar-fill {
  background: #004988;
}
.rcpy_info {
  padding: 4vw 0;
}
.rcpy_info h3 {
  font-size: 24px;
  color: #004988;
}
.rcpy_info .info {
  font-size: 16px;
  line-height: 36px;
  color: #666666;
  margin: 20px 0;
}
.rcpy_info .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.rcpy_info .list li {
  width: 32%;
  margin-bottom: 30px;
}
.rcpy_info .list li:nth-child(4),
.rcpy_info .list li:nth-child(5) {
  width: 49%;
}
.rcpy_info .list li a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  position: relative;
  overflow: hidden;
}
.rcpy_info .list li a:hover .art {
  top: 0;
}
.rcpy_info .list li a > img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.rcpy_info .list li a .art {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.rcpy_info .list li a .art:before {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  border: 1px solid #fff;
}
.rcpy_info .list li a .art img {
  margin-bottom: 20px;
}
.rcpy_info .list li a .art p {
  font-size: 20px;
  color: #ffffff;
}
.rcpy_info .list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.rcpy_info .list2 li {
  width: 22.22%;
}
.rcpy_info .list2 li:last-child {
  width: 51.38%;
}
.bshgzz_info h3 {
  font-size: 24px;
  line-height: 48px;
  color: #004988;
  font-weight: bold;
  margin-bottom: 20px;
}
.bshgzz_info h2 {
  font-size: 28px;
  color: #333333;
  margin: 60px 0 10px;
}
.bshgzz_info h2.h2 {
  margin: 110px 0 20px;
}
.bshgzz_info .ul_list {
  margin: 40px 0 60px;
  position: relative;
}
.bshgzz_info .ul_list:after {
  content: '';
  width: 1px;
  height: calc(100% + 50px);
  position: absolute;
  left: 31px;
  top: -25px;
  background: #e7e7e7;
}
.bshgzz_info .ul_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.bshgzz_info .ul_list li span {
  display: block;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  line-height: 31px;
  text-align: center;
  color: #fff;
  background: #004988;
  position: relative;
  margin-left: 16px;
  margin-right: 30px;
}
.bshgzz_info .ul_list li span:before {
  content: '';
  width: 45px;
  height: 45px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22.5px;
  margin-top: -22.5px;
  background: rgba(0, 73, 136, 0.2);
  border-radius: 50%;
}
.bshgzz_info .ul_list li span:after {
  content: '';
  width: 61px;
  height: 61px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -30.5px;
  margin-top: -30.5px;
  background: rgba(0, 73, 136, 0.1);
  border-radius: 50%;
}
.bshgzz_info .ul_list li p {
  font-size: 16px;
  color: #666666;
  padding: 22px;
  background: #f8fbfd;
  width: calc(100% - 61px);
}
.bshgzz_info .item .art .swiper-slide .info {
  padding-right: 40px;
  background: url(../uploadfiles/bg10.png) no-repeat 99.9% bottom ;
}
.bshgzz_info .item .art h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.rczp_info {
  padding: 4vw 0;
}
.rczp_info .list li:first-child {
  background: #004988;
}
.rczp_info .list li:first-child .top {
  color: #fff;
}
.rczp_info .list li.on {
  background: #a0a0a0;
}
.rczp_info .list li.on .top {
  color: #fff;
}
.rczp_info .list li.on .art {
  padding: 50px 30px;
  height: auto;
}
.rczp_info .list li .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 20px 30px;
  font-size: 16px;
  color: #666666;
  border-bottom: 1px solid #e1e3e6;
}
.rczp_info .list li .top span {
  width: 20%;
  text-align: center;
  padding: 16px 10px	
}
.rczp_info .list li .top span:first-child {
  text-align: left;
}
.rczp_info .list li .top span:nth-child(2) {
  width: 10%;
}
.rczp_info .list li .top span:nth-child(3) {
  width: 10%;
}
.rczp_info .list li .top span:nth-child(4) {
  width: 10%;
}
.rczp_info .list li .top span:nth-child(5) {
  width: 10%;
}
.rczp_info .list li .art {
  padding: 0 30px;
  width: 100%;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #f7f7f7;
}
.rczp_info .list li .art h4 {
  font-size: 18px;
  color: #00529b;
  margin-bottom: 10px;
}
.rczp_info .list li .art .info {
  font-size: 16px;
  line-height: 36px;
  color: #666666;
  margin-bottom: 30px;
}
.rczp_info .list li .art a {
  width: 160px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: #004988;
  font-size: 16px;
  text-align: center;
  display: block;
}
.rczp_info .jz_a {
  width: 160px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: #004988;
  font-size: 16px;
  text-align: center;
  display: block;
  margin: 60px auto 0;
}
.lxwm_info {
  padding: 4vw 0;
  border-bottom: 1px solid #eeeeee;
}
.lxwm_info h1 {
  font-size: 42px;
  color: #333333;
  margin-bottom: 30px;
}
.lxwm_info .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.lxwm_info .box .list {
  width: 360px;
}
.lxwm_info .box .list li.on a {
  background: #004988;
  color: #fff;
}
.lxwm_info .box .list li.on .art {
  height: 280px;
  padding-top: 40px;
}
.lxwm_info .box .list li a {
  display: block;
  line-height: 70px;
  width: 100%;
  height: 70px;
  font-size: 24px;
  color: #333333;
  background: #eeeeee;
  padding-left: 50px;
}
.lxwm_info .box .list li .art {
  height: 0;
  background: #f7f7f7;
  padding: 0 30px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.lxwm_info .box .list li .art > div {
  padding-left: 45px;
  min-height: 35px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.lxwm_info .box .list li .art > div span {
  width: 50px;
  display: inline-block;
}
.lxwm_info .box .list li .art > div p {
  width: calc(100% - 50px);
}
.lxwm_info .box .list li .art > div.dz {
  background: url(../uploadfiles/i1.png) no-repeat left top;
}
.lxwm_info .box .list li .art > div.dh {
  background: url(../uploadfiles/i2.png) no-repeat left top;
}
.lxwm_info .box .list li .art > div.wz {
  background: url(../uploadfiles/i5.png) no-repeat left top;
}
.lxwm_info .box .map {
  width: calc(100% - 360px);
  height: 420px;
}
.lxwm_info .box .map #map {
  height: 100%;
}
.zxly_info {
  border-bottom: none;
  padding-bottom: 6vw;
}
.zxly_info .list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 30px;
}
.zxly_info .list2 li {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-bottom: 50px;
}
.zxly_info .list2 li span {
  font-size: 18px;
  color: #333333;
}
.zxly_info .list2 li input {
  border-bottom: 1px solid #cccccc;
  height: 30px;
  line-height: 30px;
}
.zxly_info .list2 li textarea {
  border-bottom: 1px solid #cccccc;
  height: 30px;
  line-height: 30px;
}
.zxly_info .list2 li:last-child {
  width: 100%;
}
.zxly_info .btn_tj {
  width: 160px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: #004988;
  font-size: 16px;
  text-align: center;
  display: block;
  cursor: pointer;
}
.hygx_info {
  padding: 4vw 0;
}
.hygx_info h2 {
  font-size: 42px;
  color: #333333;
  margin-bottom: 50px;
}
.hygx_info h3 {
  position: relative;
  margin: 20px 0 50px;
}
.hygx_info h3:after {
  content: '';
  width: 200px;
  height: 1px;
  position: absolute;
  left: 80px;
  top: 50%;
  background: #b2c8db;
}
.hygx_info h3 span {
  display: block;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  line-height: 31px;
  text-align: center;
  color: #fff;
  background: #004988;
  position: relative;
  margin-left: 16px;
  margin-right: 30px;
}
.hygx_info h3 span:before {
  content: '';
  width: 45px;
  height: 45px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22.5px;
  margin-top: -22.5px;
  background: rgba(0, 73, 136, 0.2);
  border-radius: 50%;
}
.hygx_info h3 span:after {
  content: '';
  width: 61px;
  height: 61px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -30.5px;
  margin-top: -30.5px;
  background: rgba(0, 73, 136, 0.1);
  border-radius: 50%;
}
.hygx_info h4 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}
.hygx_info h5 {
  font-size: 22px;
  color: #004988;
  margin-left: -10px;
}
.hygx_info .info {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
  margin-bottom: 50px;
}
.hygx_info .box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.hygx_info .box1 .left {
  width: calc(100% - 300px);
}
.hygx_info .box1 img {
  width: 280px;
  height: auto;
}
.hygx_info .box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 50px;
}
.hygx_info .box2 .left {
  width: 48%;
}
.hygx_info .box2 .left .hygx_s {
  padding-bottom: 50px;
}
.hygx_info .box2 .left .hygx_s .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 1px solid #004988;
  box-sizing: border-box;
  background: transparent;
  margin: 0 10px;
}
.hygx_info .box2 .left .hygx_s .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  border: none;
  background: transparent;
}
.hygx_info .box2 .left .hygx_s .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: #004988;
  top: 0px;
  left: 0px;
  border-radius: 50%;
}
.hygx_info .box2 .left .hygx_s .swiper-slide {
  padding: 10px;
  border: 1px solid #dcdcdc;
}
.hygx_info .box2 .left .hygx_s .swiper-slide .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 132%;
}
.hygx_info .box2 .left .hygx_s .swiper-slide .art {
  text-align: center;
}
.hygx_info .box2 .left .hygx_s .swiper-slide .art h4 {
  font-size: 18px;
  color: #004988;
  margin: 15px 0 10px;
}
.hygx_info .box2 .left .hygx_s .swiper-slide .art p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 15px;
}
.hygx_info .box2 .img {
  width: 48.6%;
  margin-top: 40px;
}
.hygx_info .box3 {
  padding: 60px 0;
  position: relative;
  margin-bottom: 260px;
}
.hygx_info .box3 .wrap {
  position: relative;
  z-index: 2;
}
.hygx_info .box3:after {
  content: '';
  width: 92%;
  left: 0;
  height: 100%;
  top: 0;
  position: absolute;
  background: #f9f9f9;
}
.hygx_info .box3 .art {
  width: 48%;
}
.hygx_info .box3 .art .info {
  margin-bottom: 15px;
}
.hygx_info .box3 .right {
  position: absolute;
  width: 48%;
  right: 0;
  top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.hygx_info .box3 .right .item {
  width: 47.8%;
  padding: 10px;
  border: 1px solid #dcdcdc;
  background: #fff;
}
.hygx_info .box3 .right .item .imgbox {
  width: 100%;
  height: 0;
  padding-bottom: 132%;
}
.hygx_info .box3 .right .item .art2 {
  text-align: center;
}
.hygx_info .box3 .right .item .art2 h4 {
  font-size: 18px;
  color: #004988;
  margin: 15px 0 10px;
}
.hygx_info .box3 .right .item .art2 p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 15px;
}
.hygx_info .box4 {
  padding: 60px 0;
  position: relative;
  margin-bottom: 60px;
}
.hygx_info .box4.box5 {
  margin-bottom: 200px;
}
.hygx_info .box4.box5:after {
  right: auto;
  left: 0;
}
.hygx_info .box4.box5 .wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.hygx_info .box4.box5 .wrap .art {
  width: 60%;
}
.hygx_info .box4.box5 .wrap .img {
  width: 37.5%;
  left: auto;
  right: 0;
  top: 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.hygx_info .box4.box6 {
  margin-bottom: 150px;
}
.hygx_info .box4.box6:after {
  right: auto;
  left: 0;
}
.hygx_info .box4.box6:before {
  width: 100%;
  height: 1px;
  content: '';
  position: absolute;
  left: 0;
  bottom: -150px;
  background: #eeeeee;
}
.hygx_info .box4.box6 .wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.hygx_info .box4.box6 .wrap .img {
  left: auto;
  right: 0;
  top: 15px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.hygx_info .box4 .wrap {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.hygx_info .box4:after {
  content: '';
  width: 84%;
  right: 0;
  height: 100%;
  top: 0;
  position: absolute;
  background: #f9f9f9;
}
.hygx_info .box4 .art {
  width: 48%;
  min-height: 350px;
}
.hygx_info .box4 .art .info {
  margin-bottom: 15px;
}
.hygx_info .box4 .img {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  position: absolute;
  top: -110px;
  left: 0;
}
.hygx_info .box7 {
  padding: 4vw 0;
}
.hygx_info .box7 .box8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.hygx_info .box7 .box8 .left {
  width: 31.25%;
  line-height: 0;
}
.hygx_info .box7 .box8 .right {
  width: 68.75%;
}
.hygx_info .box7 .box8 .right .img1 {
  display: block;
  margin: 40px auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.hygx_info .box7 .box8 .right .art {
  width: 100%;
  height: auto;
  background: #fcfcfc;
  padding: 40px 80px 60px;
}
.hygx_info .box7 .box8 .right .art h4 {
  font-size: 24px;
  color: #004988;
}
.hygx_info .box7 .box8 .right .art p {
  font-size: 20px;
  color: #666666;
  margin: 15px 0 25px -10px;
}
.hygx_info .box7 .box8 .right .art .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.hygx_info .box7 .box8 .right .art .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 100px;
}
.hygx_info .box7 .box8 .right .art .item a img {
  margin-right: 15px;
}
.BMap_bubble_content {
  white-space: nowrap;
}
@media (max-width: 1680px) {
  .gljg_info .list1 li {
    margin: 15px;
  }
}
@media (max-width: 1600px) {
  .gljg_info .list1 li {
    margin: 12px;
    width: 260px;
  }
  .gszz_s {
    padding: 0;
  }
  .gszz_s .swiper-slide {
    width: 100%;
    height: auto;
    transform: scale(1);
    opacity: 1;
  }
  .gszz_s .swiper-slide .imgbox {
    height: auto;
    padding: 30px 20px;
  }
  .gszz_s .swiper-slide .art h2 {
    margin-top: 120px;
    font-size: 24px;
  }
  .gszz_s .swiper-slide:after {
    display: none;
  }
  .gszz_s .gszz_s_s {
    bottom: 100px;
  }
}
@media (max-width: 1440px) {
  .news .wrap .right .list li {
    margin-bottom: 37px;
  }
  .news .wrap .right .list li a .art p {
    line-height: 30px;
    height: 60px;
  }
  header {
    padding: 0 2%;
  }
  header .nav li a {
    font-size: 16px;
    margin-left: 10px;
  }
  .gsjj_info .item {
    margin-bottom: 50px;
    padding: 30px 0;
  }
  .gsjj_info .item.item2,
  .gsjj_info .item.item3 {
    background: #f8fbfd;
  }
}
@media (max-width: 1200px) {
  .news .wrap .right .list li {
    margin-bottom: 25px;
  }
  .jssb_info .wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .jssb_info .wrap .tabtitle {
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .jssb_info .wrap .tabbox {
    width: 100%;
  }
}
@media (max-width: 1124px) {
  header .right {
    width: 180px;
  }
  header .right:before {
    display: none;
  }
  header .right .menu_a {
    display: block;
    width: 32px;
    height: 32px;
    background: url(../images/menu.png) no-repeat center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .right .menu_a.on {
    background: url(../images/close.png) no-repeat center;
  }
  header .nav {
    position: fixed;
    width: 50%;
    height: calc(100% - 80px);
    left: 100%;
    top: 80px;
    background: rgba(0, 0, 0, 0.6);
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding-top: 20px;
    z-index: 999;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .nav li {
    width: 100%;
    height: 40px;
    line-height: 40px;
  }
  header .nav.on {
    left: 50%;
  }
  .pageTop .wrap .pNav li {
    margin-right: 20px;
  }
  .wrap {
    width: 96%;
  }
}
@media (max-width: 768px) {
  header {
    height: 80px;
  }
  header .logo {
    display: block;
    max-height: 40px;
  }
  header .logo img {
    max-height: 40px;
  }
  .banner .swiper-slide > img {
    min-height: 350px;
    object-fit: cover;
  }
  .banner .swiper-slide .art {
    transform: translate(-50%, -40%);
  }
  .banner .swiper-slide .art img {
    max-width: 50%;
  }
  .banner .swiper-slide .art h2 {
    font-size: 24px;
    line-height: 30px;
    margin: 15px 0;
    text-align: center;
  }
  .wrap {
    width: 92%;
  }
  .tzgg {
    margin-top: 0;
    height: 100px;
  }
  .tzgg .wrap {
    width: 100%;
  }
  .tzgg .right {
    width: 100%;
    height: 100px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .tzgg .right .tz {
    width: 100%;
    height: 50px;
  }
  .tzgg .right .tz_s {
    width: 100%;
    height: 50px;
  }
  .tzgg .right .tz_s .swiper-slide a {
    padding: 0 10px;
  }
  .tzgg .right .tz_s .swiper-slide p {
    width: calc(100% - 100px);
  }
  .tzgg .right .tz_s .swiper-slide span {
    width: 100px;
  }
  h2.title {
    font-size: 24px;
  }
  .more {
    padding: 15px 20px;
    font-size: 14px;
  }
  .more2 {
    padding: 8px 20px;
    font-size: 14px;
  }
  .jyyw_list li {
    width: 50%;
    padding: 0 1%;
    margin-right: 0;
  }
  .jyyw_list li:first-child {
    width: 100%;
  }
  .jyyw_list li:first-child a {
    padding-bottom: 50%;
  }
  .ystd_s .swiper-slide a .art h3 {
    font-size: 20px;
  }
  .ystd,
  .yffx,
  .news {
    padding: 30px 0;
  }
  .hzhb {
    padding: 30px 0 0;
  }
  .yffx h2,
  .news h2,
  .hzhb h2 {
    margin-bottom: 20px;
  }
  .news .wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .news .wrap .left {
    width: 100%;
    margin-bottom: 30px;
  }
  .news .wrap .left .news_s .art {
    padding: 10px;
  }
  .news .wrap .left .news_s .art h3 {
    font-size: 20px;
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
  }
  .news .wrap .right {
    width: 100%;
  }
  .news .wrap .right .list li a {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .news .wrap .right .list li a .imgbox {
    width: 100%;
    padding-bottom: 60%;
    margin-bottom: 10px;
  }
  .news .wrap .right .list li a .art {
    width: 100%;
    padding-left: 0;
  }
  footer .foot1 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  footer .foot1 .navul {
    width: 50%;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    display: none;
  }
  footer .foot1 .navul li {
    width: 100%;
    height: 36px;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  footer .foot1 .navul li.on {
    height: auto;
  }
  footer .foot1 .right {
    width: 100%;
  }
  footer .foot1 .right select {
    width: 100%;
  }
  footer .foot1 .right h5 {
    font-size: 20px;
	margin: 20px auto;  
  }
  footer .foot1 .share{
	margin: 0 auto;  
  }
  footer .foot1 .right .share .bshare-custom a {
    margin-left: 10px;
  }
  footer .foot2 {
    height: auto;
    padding: 20px 0;
  }
  footer .foot2 .wrap {
    height: 100%;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  footer .foot2 .wrap .copyright {
    width: 100%;
    margin-bottom: 10px;
  }
  footer .foot2 .wrap .copyright a {
    margin: 0 10px;
  }
  footer .foot2 .wrap .links {
    width: 100%;
  }
  footer .foot2 .wrap .links a {
    padding-left: 10px;
    margin-left: 5px;
  }
  .news_info {
    font-size: 16px;
    line-height: 28px;
    padding: 50px 0 80px;
  }
  .news_info h2 {
    font-size: 0px;
  }
  .news_info .news_time {
    font-size: 16px;
    margin: 20px 0 30px;
  }
  .news_info .news_line {
    margin-bottom: 20px;
  }
  .news_info .contentBottom.sxy {
    padding-right: 0;
  }
  .news_info .contentBottom.sxy a.fh {
    position: relative;
    margin-top: 10px;
  }
  .banner_info {
    height: 250px;
  }
  .banner_info .art h2 {
    font-size: 30px;
  }
  .pageTop .wrap .pNav {
    width: 100%;
  }
  .pageTop .wrap .bread {
    display: none;
  }
  .news .wrap .left .news_s .news_s_s {
    bottom: 180px;
  }
  .news_s_s2 {
    bottom: 200px;
    text-align: right;
    padding-right: 30px;
  }
  .news_s_s2 span {
    width: 12px;
    height: 12px;
    opacity: 1;
    border: 1px solid #004988;
    background: transparent;
  }
  .news_s_s2 span.swiper-pagination-bullet-active {
    background: #004988;
  }
  .pageTop .wrap .pNav ul {
    white-space: nowrap;
    width: 100%;
  }
  .gsjj_info .item {
    padding: 0;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .gsjj_info .item .imgbox {
    width: 100%;
  }
  .gsjj_info .item .art {
    width: 100%;
    padding: 10px!important;
    margin-top: 10px!important;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .gsjj_info .item .art h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .pageTop .wrap .pNav {
    font-size: 14px;
  }
  .pageTop .wrap .pNav li {
    margin-right: 10px;
  }
  .gljg_info .list1 li {
    max-width: 100% ;
    width: 100%;
  }
  .jyyw_info .list1 li {
    width: 49%;
    margin-bottom: 20px;
  }
  .jyyw_info .list1 li .imgbox .art {
    display: none;
  }
  .jyyw_info .box1 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .jyyw_info .box1 .img1 {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
  }
  .jyyw_info .box1 .art {
    width: 100%;
  }
  .jyyw_info .box1 .art img {
    margin-top: 20px;
  }
  .gszz_s {
    padding: 0;
  }
  .gszz_s .swiper-slide {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;
    height: auto;
    transform: scale(1);
    opacity: 1;
  }
  .gszz_s .swiper-slide .imgbox {
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }
  .gszz_s .swiper-slide .art {
    width: 100%;
  }
  .gszz_s .swiper-slide .art h2 {
    margin-top: 20px;
    font-size: 24px;
  }
  .gszz_s .swiper-slide:after {
    display: none;
  }
  .gszz_s .gszz_s_s {
    bottom: 100px;
  }
  .gszz_info2 .list {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .gszz_info2 .list li {
    width: 49%;
    margin-bottom: 10px;
  }
  .qyry_info .list {
    margin-bottom: 30px;
  }
  .qyry_info .list li .imgbox {
    margin-bottom: 50px;
  }
  .qyry_info .list_s {
    background: url(../uploadfiles/bg8.png) no-repeat center bottom 70px;
    background-size: 100% 50px;
  }
  .qyry_info .list2_s {
    background: url(../uploadfiles/bg8.png) no-repeat center bottom 70px;
    background-size: 100% 50px;
  }
  .ystd_info .list li {
    width: 49%;
    margin-bottom: 20px;
  }
  .ystd_info .list li .art {
    padding: 10px;
  }
  .ystd_info .list li .art h2 {
    font-size: 24px;
  }
  .ystd_info2 .list2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .ystd_info2 .list2 li {
    margin-bottom: 20px;
  }
  .yfpt_info .list {
    padding: 10px;
    padding-bottom: 0;
  }
  .yfpt_info .list li {
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .yfpt_info .list li a p {
    bottom: 0;
    font-size: 16px;
  }
  .yfpt_info .con h3 {
    font-size: 24px;
  }
  .yfpt_info .con .info img {
    margin: 10px auto;
  }
  .jlhz_info .items {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .jlhz_info .items .item {
    width: 100%;
    margin-bottom: 30px;
  }
  .jlhz_info .items .item .swiper-pagination {
    bottom: 60px;
  }
  .jlhz_info .items .item .swiper-slide p {
    margin-top: 20px;
    font-size: 16px;
  }
  .jlhz_info .list li a .art {
    padding-bottom: 15px;
  }
  .jlhz_info .list li {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 30px;
  }
  .jlhz_info .list li:nth-child(3n) {
    margin-right: 0%;
  }
  .jlhz_info .jz_a {
    margin: 30px auto;
  }
  .jlhz_info h2 {
    font-size: 24px;
  }
  .xwdt_info .top {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .xwdt_info .top .imgbox {
    width: 100%;
  }
  .xwdt_info .top .art {
    padding: 20px;
    width: 100%;
  }
  .xwdt_info .top .art h3 {
    margin: 10px auto;
  }
  .xwdt_info .top .art .info {
    margin-bottom: 20px;
  }
  .xwdt_info .top .art .more_s {
    display: inline-block;
    margin-bottom: 20px;
  }
  .jssb_info .wrap .tabtitle {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .jssb_info .wrap .tabtitle li {
    height: 60px;
    padding-left: 0;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .jssb_info .wrap .tabtitle li .imgbox {
    width: 100%;
    height: 30px;
    margin-right: 0;
    margin-bottom: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .jssb_info .wrap .tabtitle li p {
    font-size: 16px;
  }
  .jssb_info .wrap .tabtitle li:after,
  .jssb_info .wrap .tabtitle li:before {
    display: none;
  }
  .jssb_info .wrap .tabbox .item .art {
    position: relative;
    margin-top: 10px;
  }
  .jssb_info .wrap .tabbox .item .art p {
    color: #333;
  }
  .jssb_info .wrap .tabbox .item .art a {
    color: #333;
    border-color: #333;
  }
  .jssb_info .swiper-container {
    margin-bottom: 30px;
  }
  .jssb_info .swiper-container .imgbox p {
    font-size: 16px;
    bottom: 0;
  }
  .jssb_info .con h2 {
    margin-bottom: 20px;
  }
  .jssb_info .con .info {
    margin-bottom: 30px;
  }
  .jssb_info .con .item {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .jssb_info .con .item .imgbox {
    width: 100%;
    margin-bottom: 20px;
  }
  .hjjc_info .list li {
    width: 49%;
    margin-right: 2%;
  }
  .hjjc_info .list li:nth-child(3n) {
    margin-right: 2%;
  }
  .hjjc_info .list li:nth-child(2n) {
    margin-right: 0;
  }
  .jcfu_info h3 {
    font-size: 18px;
  }
  .jcfu_info h3 img {
    max-width: 20px;
  }
  .jcfu_info .list {
    padding-left: 30px;
  }
  .jcfu_info .list li {
    width: auto;
    margin-right: 20px;
  }
  .jcfu_info .box2 {
    padding-bottom: 50px;
  }
  .jcfu_info .box2:after {
    display: none;
  }
  .jcfu_info .box2 .list2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .jcfu_info .box2 .list2 li {
    width: 50%;
  }
  .jcfu_info .box2 .list2 li p {
    font-size: 14px;
    line-height: 30px;
    height: 60px;
  }
  .rcpy_info .list li {
    margin-bottom: 10px;
  }
  .rcpy_info .list2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .rcpy_info .list2 li {
    width: 49%;
  }
  .rcpy_info .list2 li:last-child {
    width: 100%;
  }
  .rczp_info .list li.on .art {
    padding: 30px 20px;
  }
  .rczp_info .list li .art {
    padding: 0 20px;
  }
  .rczp_info .list li .top {
    padding: 10px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .rczp_info .list li .top span {
	font-size: 15px; 
  }
  .rczp_info .list li .top span:nth-child(2),
  .rczp_info .list li .top span:nth-child(3),
  .rczp_info .list li .top span:nth-child(4){display:none;}
  .rczp_info .list li .top span:first-child {
	width: 66%;
  }
  .rczp_info .list li .top span:last-child{
	width: 30%;
  }
  .rczp_info .list li .art .info{
	font-size: 14px;
	line-height: 28px;  
  }
	
  .lxwm_info h1 {
    font-size: 24px;
  }
  .lxwm_info .box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .lxwm_info .box .list {
    width: 100%;
  }
  .lxwm_info .box .map {
    width: 100%;
  }
  .zxly_info .list2 li {
    width: 100%;
    margin-bottom: 20px;
  }
  .zxly_info .list2 li textarea {
    height: auto;
  }
  .hygx_info h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .hygx_info h3 {
    margin: 20px 0;
  }
  .hygx_info h4 {
    font-size: 22px;
  }
  .hygx_info .info {
    margin-bottom: 25px;
  }
  .hygx_info .box1 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .hygx_info .box1 .left {
    width: 100%;
  }
  .hygx_info .box1 img {
    margin: 0 auto 20px;
  }
  .hygx_info .box2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .hygx_info .box2 .left {
    width: 100%;
  }
  .hygx_info .box2 .img {
    width: 100%;
  }
  .hygx_info .box3 {
    margin-bottom: 60px;
    padding: 30px 0;
  }
  .hygx_info .box3:after {
    width: 100%;
  }
  .hygx_info .box3 .art {
    width: 100%;
  }
  .hygx_info .box3 .right {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .hygx_info .box3 .right .item {
    width: 100%;
    margin-bottom: 20px;
  }
  .hygx_info .box4 {
    padding: 30px 0;
    margin-bottom: 30px;
  }
  .hygx_info .box4:after {
    width: 100%;
  }
  .hygx_info .box4.box5 {
    margin-bottom: 30px;
  }
  .hygx_info .box4.box5 .wrap .art {
    width: 100%;
  }
  .hygx_info .box4.box5 .wrap .img {
    width: 100%;
  }
  .hygx_info .box4.box6 {
    margin-bottom: 30px;
  }
  .hygx_info .box4.box6:before {
    bottom: -30px;
  }
  .hygx_info .box4 .wrap {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .hygx_info .box4 .art {
    width: 100%;
  }
  .hygx_info .box4 .img {
    position: relative;
    width: 100%;
    top: 0;
  }
  .hygx_info .box7 .box8 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .hygx_info .box7 .box8 .left {
    width: 100%;
  }
  .hygx_info .box7 .box8 .right {
    width: 100%;
  }
  .hygx_info .box7 .box8 .right .img1 {
    margin: 20px auto;
  }
  .hygx_info .box7 .box8 .right .art {
    padding: 15px;
  }
  .hygx_info .box7 .box8 .right .art h4 {
    font-size: 20px;
  }
  .hygx_info .box7 .box8 .right .art p {
    font-size: 16px;
  }
  .hygx_info .box7 .box8 .right .art .item a {
    margin-right: 50px;
  }
  .BMap_bubble_content {
    white-space: normal;
  }
  .hjjc_info .box1 .art {
    width: 100%;
  }
  .hjjc_info .box1 .art h3 {
    font-size: 24px;
  }
  .hjjc_info .box1 .wrap .imgbox {
    position: relative;
    width: 100%;
  }
}

.jssb_info .con h2:after{
  left: 160px;
}


/* 2021.11.25 */
.jssb_info .box1 .tabtitle li {
  height: auto;
  flex-direction: column;
  cursor: pointer;
}
.jssb_info .box1 .jssb_info_item{
  display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
}
.jssb_info .box1 li dl{
  display: none;
  padding-left: 12%;
}
.jssb_info .jssb_info_biaoti{
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.jssb_info .box1 li dl dt{
  white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

@media (max-width: 768px){
  .jssb_info .jssb_info_biaoti{
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.jssb_info .con h2{
  font-size: 20px;
}