html,
body {
  padding: 0;
  margin: 0;
  font-family: arial;
  font-size: 14px;
  color: #333;
  width: 100%;
  height: 100%;
  line-height: 30px;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -moz-hyphens: auto;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.wrap2 {
  width: 90%;
  margin: 0 auto;
}

.showDiv {
  display: none;
}

.clearfixed {
  clear: both;
}

a {
  color: #000;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.arrow-bottom {
  font-size: 0;
  line-height: 0;
  border-width: 10px;
  border-color: red;
  border-bottom-width: 0;
  border-style: dashed;
  border-top-style: solid;
  border-left-color: transparent;
  border-right-color: transparent;
}

/* 向右的箭头 */

.arrow-right {
  font-size: 0;
  line-height: 0;
  border-width: 10px;
  border-color: #f7f7f7;
  border-right-width: 0;
  border-style: dashed;
  border-left-style: solid;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  background: none;
  text-decoration: none;
  transition-duration: .5s;
  -ms-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
}

p {
  padding: 0;
  margin: 0;
}

a:hover {
  color: #0a3f89;
}

img {
  max-width: 100%;

}

.imgDiv {
  overflow: hidden;
}

.imgDiv img {
  width: 100%;
  transition: all 0.5s;
}

.mask:hover .imgDiv img {
  transform: scale(1.1);
}


input:focus,
button:focus,
textarea:focus {
  outline: none;
}

.ovh {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ovh2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.ovh3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.ovh4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

/**导航菜单**/
header {
  width: 100%;
  /* position: fixed; */
  top: 0;
  left: 0;
  /* z-index: 9999; */
  background: #FFFFFF;
  height: 80px;
  transition: all 0.5s;
  /* box-shadow: 0 0 5px #ECEDEE; */
  /*overflow: hidden;*/
}

header.header2 {
  background: none;
  border-bottom: 1px #666 solid;
  box-shadow: none;
}

header .logo a {
  /* height: 54px; */
  position: relative;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;

}

header .logo img {
  max-height: 100%;
}

header.on-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0 0 10px #ccc;
}


header.on-fixed .rightDiv .menu>ul>li>a {
  color: #000;
}

header .rightDiv {
  float: right;
}

header .rightDiv .menu {
  text-align: right;
  position: relative;
  height: 80px;
}

header .rightDiv .menu>ul {
  display: inline-block !important;
  /*overflow: hidden;*/
}

header .rightDiv .menu>ul>li {
  float: left;
  position: relative;
  padding: 0 25px;
  /*width: 126px;*/
}


header .rightDiv .menu>ul>li>a {
  height: 80px;

  display: block;
  /* justify-content: center; */
  /* align-items: center; */
  text-align: center;
  color: #000;
  position: relative;
  font-size: 18px;
  line-height: 80px;
}

a.check {
  color: #0a3f89 !important;
  font-weight: bold;
}


header .rightDiv .menu>ul>li:last-child>a.now {
  color: #333333;
  font-weight: bold;
}

header .rightDiv .menu>ul>li>a::after {
  content: "";
  width: 0;
  height: 3px;
  background: #0a3f89;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: .5s;
}
header .rightDiv .menu>ul>li:last-child>a::after {
  display: none;
}

header .rightDiv .menu>ul>li>a.now::after,
header .rightDiv .menu>ul>li:hover>a::after {
  width: 100%;
  transition: .5s;
  font-weight: bold;
}

header .rightDiv .menu>ul>li>a:hover,
header .rightDiv .menu>ul>li>a.now {
  color: #0a3f89;
}



header .rightDiv .menu>ul>li:hover>a,
header .rightDiv .menu>ul>li:focus>a,
header .rightDiv .menu>ul>li.on>a,
header .rightDiv .menu>ul>li.active>a {
  color: #0a3f89;
}

header .rightDiv .menu ul li div.down_list {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.625rem;
  margin-top: -0.65rem;
  display: none;
}

header .rightDiv .menu ul li div.down_list ul li a {
  text-align: center;
  display: block;
}

header .mbtn {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../img/menu1.svg) no-repeat center center;
  background-size: 70%;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  z-index: 9999;
}


header .mbtn:active {
  opacity: .8;
}

header.header2 .rightDiv .menu>ul>li>a {
  color: #FFFFFF;
  margin: 0 2px;
  position: relative;
  text-transform: capitalize;
}


body.on-menu header .mbtn {
  background: url(../img/menu-hide1.svg) no-repeat center center;
  background-size: 40%;
  z-index: 9999;
}

.menu,
.menu ul li,
.menu ul li a,
.menu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  display: block;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}


.menu #menu-button {
  display: none
}

.menu {
  width: auto;
}

#menu-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: #b3c9e2;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out
}

.menu>ul>li {
  float: left;
}



.menu>ul>li>a {
  padding: 0;
  font-size: 18px;
  text-decoration: none;
  color: #333;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease
}

.menu>ul>li:hover>a,
.menu>ul>li.active>a {
  color: #fff;
}

.menu>ul>li:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}


.menu ul li:hover>ul {
  width: 200px;
  top: 80px;

  opacity: 1;
  visibility: visible;
  text-align: center;
}


.menu ul ul ul {
  right: 100%;
  top: 0;
  width: 100%;
}

.menu ul ul li:hover>ul {
  margin-left: 0;
}

.menu ul ul li:hover {
  background: #0a3f89;
}


.menu ul ul {

  width: 200px;
  /* margin-left: -8px; */
  text-align: center;
  top: 120px;
  position: absolute;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  left: -30%;
  box-shadow: 0 0 5px #ccc;
}

.menu ul ul .ul {
  background: rgba(255, 255, 255, 1);
  /* border-radius: 6px; */
  box-shadow: 0px 5px 5px rgba(0, 0, 0, .1);
}

.menu ul ul li {
  padding: 0 15px;
  -webkit-transition: height .2s ease;
  -moz-transition: height .2s ease;
  -ms-transition: height .2s ease;
  -o-transition: height .2s ease;
  transition: height .2s ease;
  /* text-align: center; */
}

.menu ul ul li>a {
  font-size: 14px;
  color: #333;
  position: relative;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  text-decoration: none;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  padding: 10px 0;
}

.menu ul ul li>a::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 10px;
  /* background: url(../img/jiantou1.png) no-repeat; */
  top: 20px;
  left: 0;
}

.menu ul ul li>a:hover::before {
  width: 6px;
  height: 10px;
  /* background: url(../img/jiantou2.png) no-repeat; */
}

.menu ul ul li>a:hover,
.menu ul ul li a:hover {
  color: #fff;
  border: 0;
}

.menu ul ul li:last-child>a {
  border: 0;
}


.bannerIndex .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 1;
  border-radius: 0;
  border-radius: 50%;
  transition: all 0.5s;
}

.bannerIndex .swiper-button-white {
  opacity: 0.6;
  background-size: 70%;
  z-index: 99;
}


.bannerIndex .swiper-pagination-bullet-active {
  width: 40px;
  background: #0a3f89;
  opacity: 1;
  border-radius: 10px;
}

.bannerIndex img {
  min-height: 200px;
  object-fit: cover;
}


.indexDiv1 .fl {
  width: 565px;
  line-height: 32px;
  color: #444;
  text-align: justify;
}

.indexDiv1 .link {
  font-size: 16px;
}

.indexDiv1 .link a {
  border-bottom: 1px #08308e solid;
  margin-right: 40px;
  padding-bottom: 5px;
}

.indexDiv1 .fr {
  width: 600px;
  overflow: hidden;
}

.indexDiv1 .fr .textDiv {
  width: 280px;
}

.indexDiv1 .fr .bg {
  z-index: 9;
  background: rgba(8, 48, 142, 0.8);
  width: 100%;
  height: 100%;
  bottom: -110%;
  transition: all 0.5s;
}

.indexDiv1 .fr .text {
  z-index: 99;
  top: 80%;
  padding: 0 35px;
  color: #FFFFFF;
  transition: all 0.5s;
}

.indexDiv1 .fr .text .font18 span {
  width: 50px;
  height: 5px;
  display: block;
  background: #FFFFFF;
  margin-top: 10px;
  margin-bottom: 40px;
}

.indexDiv1 .fr .textDiv:hover .bg {
  bottom: 0;
}

.indexDiv1 .fr .textDiv:hover .text {
  top: 65px;
  height: 80%;
}

.indexDiv1 .fr .textDiv:hover .text a {
  position: absolute;
  bottom: 30px;
  display: block;
  width: 120px;
  height: 40px;
  border-radius: 3px;
  border: 1px #ffff solid;
  color: #FFFFFF;
  text-align: center;
  line-height: 40px;
}

.indexDiv1 .fr .textDiv:hover .text a:hover {
  background: #FFFFFF;
  color: #08308e;
}

a.more {
  width: 130px;
  height: 40px;
  color: #FFFFFF;
  display: block;
  text-align: center;
  line-height: 40px;
  background: #84c225;
}

.title {
  text-transform: uppercase;
}

.indexDiv2 {
  /* background: url(../img/index_bg.jpg) no-repeat center center; */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 85px 0;
}

.indexDiv2 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  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;
  transition: 300ms;
  transform: scale(0.85);
}

.indexDiv2 .swiper-slide-active,
.indexDiv2 .swiper-slide-duplicate-active {
  transform: scale(1.15);
  /* width: 380px!important; */
}

.indexDiv2 .swiper-button-next {
  right: -50px;
  outline: none;
  width: 55px;
  height: 55px;
  background-size: 100% 100%;
}

.indexDiv2 .swiper-button-prev {
  left: -50px;
  outline: none;
  width: 55px;
  height: 55px;
  background-size: 100% 100%;
}

.indexDiv2 .swiper-slide .textDiv {
  background: #f4f4f4;
  transition: all 0.5s;
}

.indexDiv2 .swiper-slide .textDiv:hover {
  background: #08308e;
  color: #FFFFFF;
}

.indexDiv2 .swiper-slide .textDiv .text {
  padding: 25px;
  font-size: 14px;
  line-height: 32px;
}

.indexDiv2 .swiper-container {
  padding: 50px 0;
}

.indexDiv3 {
  padding: 90px 0 70px 0;
  /* background: url(../img/index_bg2.jpg) no-repeat center center; */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.indexDiv3 .textDiv {
  background: #FFFFFF;
  padding: 20px 15px;
  line-height: 26px;
}

.indexDiv3 .textDiv .bt {
  display: flex;
}

.indexDiv3 .textDiv .bt img {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  align-items: center;
}

.indexDiv4 .textDiv {
  box-shadow: 0 0 10px #CCCCCC;
  position: relative;
}

.indexDiv4 .textDiv .wenzi {
  padding: 15px 28px;
  line-height: 24px;
}

.indexDiv4 ul li {
  padding: 20px 28px;
  box-shadow: 0 0 10px #CCCCCC;
  margin-bottom: 19px;
  line-height: 24px;
  position: relative;
}

.indexDiv4 .col-12 {
  padding: 0 8px;
}

.indexDiv4 .row {
  margin: 0 -7px;
}

.indexDiv4 ul li::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 5px;
  background: #84c225;
  bottom: 0;
  left: 0;
  transition: all 0.8s;
}

.indexDiv4 ul li:hover::after {
  width: 100%;
}

.indexDiv5 {
  padding: 70px 0 95px 0;
  background: #f8f8f8;
}

.mapDiv {
  width: 620px;
  height: 230px;
}

.liuyan {
  width: 565px;
}

.liuyan input {
  width: 49%;
  border: 0;
  background: #FFFFFF;
  padding: 10px 15px;
}

.liuyan textarea {
  width: 100%;
  height: 120px;
  border: 0;
  padding: 10px 15px;
  resize: none;
}

.liuyan button {
  width: 100%;
  height: 35px;
  color: #FFFFFF;
  background: #0a3f89;
  border: 0;
  cursor: pointer;
}

.bkTop {
  position: relative;
  z-index: 99;
  margin-top: -77px;
}

footer {
  padding-top: 65px;
  color: #FFFFFF;
  background: #0a3f89;
  margin-top: -1px;
}

.nav_bott {
  font-size: 18px;
  margin-left: 60px;
}

.nav_bott a {
  font-size: 18px;
  color: #FFFFFF;
  padding: 0 30px;
  border-right: 1px #FFFFFF solid;
  height: 18px;
  line-height: 18px;
}

.nav_bott a:last-child {
  border: 0;
}

.nav_bott a:first-child {
  margin-left: 0;
}

.foot_con {
  margin-left: 40px;
  display: flex;
}

.foot_con p {
  width: 24%;
  float: left;
  margin-left: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.foot_con p:last-child{
  width: 50%;
  float: right;
}

.foot_con p img {
  margin-right: 10px;
}

.banquan {
  padding: 10px 0;
  border-top: 1px #fff solid;
  margin-top: 30px;
}

.yqlink a {
  margin-left: 15px;
  color: #FFFFFF;
}

.ewm ul li {
  text-align: center;
  color: #FFFFFF;
  position: relative;
  margin-left: 20px;
}

.ewm ul li a {
  display: block;
}

.ewm ul li .imgDiv {
  width: 76px;
  position: absolute;
  display: none;
  text-align: center;
  margin: 0 auto;
  right: 0;
  top: 40px;
  left: -25px;
  z-index: 999;
}

.nav_left ul li a {
  padding: 10px 20px;
  display: block;
  position: relative;
  display: flex;
}

.nav_left ul li a span {
  display: none;
  float: right;
}

.nav_left ul li a p {
  width: 95%;
}

.nav_left ul li a.now,
.nav_left ul li a:hover {
  background: #e6f3d3;
}

.nav_left ul li a.now span,
.nav_left ul li a:hover span {
  display: block;
  font-family: "宋体";
}

.nav_left ul li a.now::before,
.nav_left ul li a:hover::before {
  width: 5px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #0a408a;
}

.nav_left ul {
  background: #FFFFFF;
  box-shadow: 0 0 10px #CCCCCC;
}

.lfDiv {
  width: 20%;
  float: left;
}

.con_left .font20 {
  background: #0a3f89;
  color: #FFFFFF;
  padding: 10px 20px;
}

.con_left .wenzi {
  line-height: 22px;
  padding: 20px 18px;
}

.rtDiv {
  width: 77%;
  float: right;
}

.proDiv .textDiv {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 25px;
}

.proDiv .absolute {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.3s;
}

.proDiv .textDiv:hover .absolute {
  background: #0a408a;
  color: #FFFFFF;
}

.fenye {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fenye ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fenye ul li a {
  display: block;
  padding: 0 18px;
  background: #ececec;
  border-radius: 3px;
  margin: 0 5px;
}

.fenye ul li a.now,
.fenye ul li a:hover {
  background: #0a408a;
  color: #FFFFFF;
}
.fixed{
  position: fixed;
  z-index: 999;
  right: 0;
  top: 25%;
  border-radius: 5px 0 0 5px;
  background: #FFFFFF;
  box-shadow: 0 0 10px #CCCCCC;
  width: 140px;
  overflow: hidden;
}
.fixed .font16{
  color: #FFFFFF;
  background: #0a3f89;
  padding: 5px 12px;
  text-align: center;
}
.fixed ul{
  padding: 15px 0;
}
.fixed ul li{
  padding: 0 12px;
  text-align: center;
  margin-bottom: 10px;
}
.fixed ul li a{
  padding:0 10px;
  border: 1px #ccc solid;
  width: 100%;
  display: block;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.fixed ul li a img{
  margin-right: 5px;
}
.fixed ul li>img{
  border: 1px #eee solid;
}
.footDiv1{
  width: 75%;
}

/*PHONE屏幕下的专用样式*/
@media screen and (max-width:767px) {


  .wrap,
  .wrap2 {
    width: 96%;
    margin: 0 auto;
    font-size: 14px;
  }

  .showDiv {
    display: block;
  }

  .menu {
    width: 100%
  }

  .menu ul {
    width: 100%;
    display: block;
  }

  .menu ul ul {
    top: 0;
    border: 0;
    box-shadow: none;
    border-top: 1px #eee solid;
  }

  .menu ul ul .ul {
    background: #fff;
    box-shadow: none !important;
    border-radius: 0;
  }

  .menu>ul>li>a {
    padding: 0 20px;
  }

  .menu.align-center>ul,
  .menu.align-right ul ul {
    text-align: left
  }

  .menu ul li,
  .menu ul ul li,
  .menu ul li:hover>ul>li {
    width: 100%;
    height: auto;
    border-top: 1px solid rgba(255, 255, 255, .3)
  }

  .menu ul li:hover>ul {
    top: 0;
    width: 100%;
  }

  .menu ul li a,
  .menu ul ul li a {
    width: 100%
  }
  header .rightDiv .menu>ul>li:last-child{
    display: flex;
    justify-content: initial;
  }
  header .rightDiv .menu>ul>li:last-child>a{
    max-width: 30px;
    margin-right: 20px;
  }

  .menu>ul>li,
  .menu.align-center>ul>li,
  .menu.align-right>ul>li {
    float: none;
    display: block
  }

  .menu ul ul li a {
    padding: 0 20px 0 30px;
    font-size: 12px;
    background: 0 0
  }

  /*.menu ul ul li:hover>a,.menu ul ul li a:hover{color:#fff}*/
  .menu ul ul ul li a {
    padding-left: 40px
  }

  .menu ul ul,
  .menu ul ul ul {
    position: relative;
    left: 0;
    right: auto;
    width: 100%;
    margin: 0
  }

  .menu>ul>li.has-sub>a::after,
  .menu ul ul li.has-sub>a::after {
    display: none
  }

  #menu-line {
    display: none
  }

  .menu #menu-button {
    display: block;
    padding: 20px;
    color: #000;
    cursor: pointer;
    font-size: 12px;
  }

  .menu #menu-button::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 15px;
    height: 2px;
    background: #fff
  }

  .menu #menu-button::before {
    content: '';
    position: absolute;
    top: 25px;
    right: 20px;
    display: block;
    width: 15px;
    height: 3px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff
  }

  .menu .submenu-button {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid #eee;
    height: 52px;
    width: 52px;
    cursor: pointer
  }

  .menu .submenu-button::after {
    content: '';
    position: absolute;
    top: 21px;
    left: 26px;
    display: block;
    width: 1px;
    height: 11px;
    background: #999;
    z-index: 99
  }

  .menu .submenu-button::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 26px;
    display: block;
    width: 11px;
    height: 1px;
    background: #999;
    z-index: 99
  }

  .menu .submenu-button.submenu-opened:after {
    display: none
  }

  .menu ul ul {
    background: transparent;
    border-bottom: none;
    padding: 0;
  }

  .menu ul ul ul {
    top: 0;
  }

  .menu li:hover>ul {
    left: auto;
    margin-left: auto;
  }

  .menu ul ul li>a:last-child {
    border-bottom: 0;
  }

  header .rightDiv .menu ul li ul li {
    border-bottom: 1px #eee dashed;
    border-top: 0;
  }

  header .rightDiv .menu ul li ul li:last-child {
    border: 0;
  }

  header .logo {
    width: 45%;
    margin-left: 0;
    margin-top: 5px;
  }

  header .logo a {
    /* height: 35px; */
    margin-top: 5px;

  }

  .menu ul ul {
    visibility: visible;
    opacity: 1;
  }

  header .wrap {
    display: block;
  }


  header.header2 .rightDiv .menu>ul>li>a {
    color: #333;
  }

  header {
    position: fixed !important;
    z-index: 999;
    top: 0;
    left: auto;
    right: 0;
    width: 100%;
    height: 50px;
    padding-top: 0;
    background: #fff;
    /* box-shadow: 0 0 5px #EEEEEE; */
    /* background: #000; */
    /*background-color: transparent;*/
    transition: right 300ms !important;
  }

  header.header2 {
    background: #FFFFFF;
    border: 0;
    box-shadow: 0 0 5px #EEEEEE;
  }


  header .rightDiv .menu>ul>li>a:hover {
    color: #009A44;
  }

  .on-fixed header {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
  }



  /*body.on-menu header {right: 45%;}*/
  header .mbtn {
    display: block;
  }

  body.on-menu header .mbtn {
    z-index: 9999;
  }

  header .rightDiv .menu {
    float: right;
    position: fixed;
    top: 50px;
    right: 0;
    width: 100%;
    height: 100%;
    padding-top: 0;
    /* background-color: rgba(0, 0, 0, 0.9); */
    background: #fff;
    border-bottom: 1px solid #f8f8f847;
    transition: right 300ms;
    right: -100%;
    padding: 0;
    z-index: 9999;
    overflow-y: auto;
    text-align: center;
    margin-top: 0;
    padding-bottom: 50px;
  }

  header .rightDiv .menu ul>li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #eee;
    float: none;
    width: 100%;
  }

  header .rightDiv .menu ul>li:first-child {
    border-top: 1px #eee solid;
  }

  header .rightDiv .menu ul li a {
    display: block;
    line-height: 50px;
    height: 50px;
    color: #333;
    /*padding: 0 15px;*/
    text-align: left;
    font-size: 16px;
    font-weight: normal;
  }

  header .rightDiv .menu>ul>li>a.now::after,
  header .rightDiv .menu>ul>li:hover>a::after {
    display: none;
  }

  header .rightDiv .menu>ul>li>a.login {
    width: 100px;
    margin: 10px 0;
    margin-left: 20px;
    text-align: center;
  }

  header .rightDiv .menu>ul>li>a small {
    display: none;
  }

  header .rightDiv .menu>ul {
    display: block;
    /* padding-top: 60px; */
    width: 100%;
  }

  body.on-menu header .rightDiv .menu {
    right: 0;
  }

  body.on-menu .main {
    right: 0;
  }

  header .rightDiv .menu>ul>li>a {
    padding: 0 20px;
    background: none;
    margin: 0;
    width: 100%;
    color: #333;
  }

  header .rightDiv .menu ul li i {
    display: block;
  }

  header .twoMenu {
    position: relative;
    top: 0px;
    background: none;
    padding: 0;
    width: initial;
  }

  header .twoMenu dl {
    margin-bottom: 10px;
  }

  header .twoMenu dl dd {
    margin-top: 0;
  }

  header .rightDiv .menu ul li .twoMenu dl dt>a {
    color: #fff;
  }

  .on-fixed header .rightDiv .menu ul li .twoMenu dl dt>a {
    color: #000;
  }

  header .rightDiv .menu ul li .twoMenu {
    top: 10px;
    box-shadow: none;
  }

  header .rightDiv .menu ul li .twoMenu .liDiv>a {
    line-height: 32px;
    height: 32px;
    font-weight: normal;
  }

  header .twoMenu .liDiv>a:after {
    top: 0;
  }

  header .rightDiv .menu ul li.relativeLi .twoMenu .ulDiv {
    margin: 0 15px;
  }

  header .rightDiv .menu ul li>a:hover,
  header .rightDiv .menu ul li>a:focus,
  header .rightDiv .menu ul li>a.on {
    color: #a13e91;
  }

  header .rightDiv .menu ul li .twoMenu dl dt>a {
    line-height: 50px;
    height: initial;
  }

  header .rightDiv .menu>ul>li>a::before {
    display: none;
  }

  header .rightDiv .menu>ul>li:hover,
  header .rightDiv .menu>ul>li:focus,
  header .rightDiv .menu>ul>li.on {
    background: none;
  }

  header .rightDiv .menu>ul>li.on>a {
    color: #204e9e;
  }

  header .rightDiv .menu>ul>li>a:hover span,
  header .rightDiv .menu>ul>li>a.now span {
    display: none;


    /* background: #3fba9e;
    border-bottom: 2px #3fba9e solid; */
  }



  .hideDiv {
    display: none;
  }

  .bannerIndex,
  .banner_nei {
    margin-top: 50px;
  }

  .banner_nei img {
    min-height: 160px;
    object-fit: cover;
  }

  .bannerIndex .wrap {
    line-height: 22px;
    top: 30px;
    width: 95%;
  }

  .bannerIndex .wrap .font18 {
    font-size: 14px;
  }

  .bannerIndex .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .indexDiv1 .fl {
    width: 100%;
    margin-bottom: 30px;
  }

  .indexDiv1 .fr {
    width: 100%;
  }

  .indexDiv1 .fl,
  .indexDiv1 .fr {
    width: 100%;
    margin-bottom: 20px;
  }

  .indexDiv1 .fr .textDiv {
    width: 49%;
  }

  .indexDiv2 .swiper-slide {
    transform: scale(1);
  }

  .indexDiv2 .swiper-slide-active,
  .indexDiv2 .swiper-slide-duplicate-active {
    transform: scale(1);
    /* width: 380px!important; */
  }

  .indexDiv2 .swiper-container {
    padding: 0;
    width: 85%;
  }

  .indexDiv2 .swiper-slide .textDiv .text {
    padding: 20px;
    ;
  }

  .indexDiv2 .swiper-button-next,
  .indexDiv2 .swiper-button-prev {
    width: 35px;
    height: 35px;
    background-size: 60%;
  }

  .indexDiv2 .swiper-button-prev {
    left: -10px;
  }

  .indexDiv2 .swiper-button-next {
    right: -10px;
  }

  .indexDiv2 {
    padding: 20px 0;
  }

  .indexDiv4 .textDiv {
    margin-bottom: 20px;
  }

  .mapDiv,
  .liuyan {
    width: 100%;
    margin-bottom: 30px;
  }

  .nav_bott a {
    display: block;
    width: 33.33%;
    float: left;
  }

  .foot_con {
    display: block;
    margin-left: 0;
  }

  .liuyan input {
    width: 100%;
  }

  .liuyan input.fl {
    margin-bottom: 20px;
  }

  .lfDiv,
  .rtDiv {
    width: 100%;
    margin-bottom: 20px;
  }

  footer img.fl {
    width: 50%;
    float: none;
  }

  footer div.fl {
    width: 100%;
    margin-top: 30px;
  }
  .nav_bott{
    margin-left: 0;
  }
  .nav_bott a{
    width: 50%;
    margin-bottom: 10px;
  }
  .nav_bott a:nth-child(even){
    border: 0;
  }
  .foot_con p{
    margin-left: 0;
    width: 100%!important;
  }
  .ewm.fr{
    float: left;
    margin-top: 30px;
  }
  .indexDiv1 .fr .text{
    padding: 0 10px;
    top: 75%;
  }
  .indexDiv1 .fr .text .font18{
    font-size: 16px;
  }
  .indexDiv1 .fr .textDiv:hover .text{
    top: 15px;
    line-height: 18px;
  }
  .indexDiv1 .fr .text .font18 span{
    margin-bottom: 15px;
  }
  .indexDiv1 .fr .textDiv:hover .text a{
    bottom: -20px;
    height: 30px;
    line-height: 30px;
  }
  .bkTop{
    width: 35%;
    margin: 0 auto;
    left: auto;
    right: auto;
    margin-top: -70px;
  }

}

/*PAD屏幕下的专用样式*/
@media screen and (min-width: 768px) and (max-width:992px) {

  .wrap,
  .wrap2 {
    width: 96%;
    margin: 0 auto;
    font-size: 14px;
  }
  
  .showDiv {
    display: block;
  }
  
  .menu {
    width: 100%
  }
  
  .menu ul {
    width: 100%;
    display: block;
  }
  
  .menu ul ul {
    top: 0;
    border: 0;
    box-shadow: none;
    border-top: 1px #eee solid;
  }
  
  .menu ul ul .ul {
    background: #fff;
    box-shadow: none !important;
    border-radius: 0;
  }
  
  .menu>ul>li>a {
    padding: 0 20px;
  }
  
  .menu.align-center>ul,
  .menu.align-right ul ul {
    text-align: left
  }
  
  .menu ul li,
  .menu ul ul li,
  .menu ul li:hover>ul>li {
    width: 100%;
    height: auto;
    border-top: 1px solid rgba(255, 255, 255, .3)
  }
  header .rightDiv .menu>ul>li:last-child{
    display: flex;
    justify-content: initial;
  }
  header .rightDiv .menu>ul>li:last-child>a{
    max-width: 30px;
    margin-right: 20px;
  }
  
  .menu ul li:hover>ul {
    top: 0;
    width: 100%;
  }
  
  .menu ul li a,
  .menu ul ul li a {
    width: 100%
  }
  
  .menu>ul>li,
  .menu.align-center>ul>li,
  .menu.align-right>ul>li {
    float: none;
    display: block
  }
  
  .menu ul ul li a {
    padding: 0 20px 0 30px;
    font-size: 12px;
    background: 0 0
  }
  
  /*.menu ul ul li:hover>a,.menu ul ul li a:hover{color:#fff}*/
  .menu ul ul ul li a {
    padding-left: 40px
  }
  
  .menu ul ul,
  .menu ul ul ul {
    position: relative;
    left: 0;
    right: auto;
    width: 100%;
    margin: 0
  }
  
  .menu>ul>li.has-sub>a::after,
  .menu ul ul li.has-sub>a::after {
    display: none
  }
  
  #menu-line {
    display: none
  }
  
  .menu #menu-button {
    display: block;
    padding: 20px;
    color: #000;
    cursor: pointer;
    font-size: 12px;
  }
  
  .menu #menu-button::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 15px;
    height: 2px;
    background: #fff
  }
  
  .menu #menu-button::before {
    content: '';
    position: absolute;
    top: 25px;
    right: 20px;
    display: block;
    width: 15px;
    height: 3px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff
  }
  
  .menu .submenu-button {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid #eee;
    height: 52px;
    width: 52px;
    cursor: pointer
  }
  
  .menu .submenu-button::after {
    content: '';
    position: absolute;
    top: 21px;
    left: 26px;
    display: block;
    width: 1px;
    height: 11px;
    background: #999;
    z-index: 99
  }
  
  .menu .submenu-button::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 26px;
    display: block;
    width: 11px;
    height: 1px;
    background: #999;
    z-index: 99
  }
  
  .menu .submenu-button.submenu-opened:after {
    display: none
  }
  
  .menu ul ul {
    background: transparent;
    border-bottom: none;
    padding: 0;
  }
  
  .menu ul ul ul {
    top: 0;
  }
  
  .menu li:hover>ul {
    left: auto;
    margin-left: auto;
  }
  
  .menu ul ul li>a:last-child {
    border-bottom: 0;
  }
  
  header .rightDiv .menu ul li ul li {
    border-bottom: 1px #eee dashed;
    border-top: 0;
  }
  
  header .rightDiv .menu ul li ul li:last-child {
    border: 0;
  }
  
  header .logo {
    width: 32%;
    margin-left: 0;
  }
  
  header .logo a {
    /* height: 35px; */
    margin-top: 5px;
  
  }
  
  .menu ul ul {
    visibility: visible;
    opacity: 1;
  }
  
  header .wrap {
    display: block;
  }
  
  
  header.header2 .rightDiv .menu>ul>li>a {
    color: #333;
  }
  
  header {
    position: fixed !important;
    z-index: 999;
    top: 0;
    left: auto;
    right: 0;
    width: 100%;
    height: 50px;
    padding-top: 0;
    background: #fff;
    /* box-shadow: 0 0 5px #EEEEEE; */
    /* background: #000; */
    /*background-color: transparent;*/
    transition: right 300ms !important;
  }
  
  header.header2 {
    background: #FFFFFF;
    border: 0;
    box-shadow: 0 0 5px #EEEEEE;
  }
  
  
  header .rightDiv .menu>ul>li>a:hover {
    color: #009A44;
  }
  
  .on-fixed header {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
  }
  
  
  
  /*body.on-menu header {right: 45%;}*/
  header .mbtn {
    display: block;
  }
  
  body.on-menu header .mbtn {
    z-index: 9999;
  }
  
  header .rightDiv .menu {
    float: right;
    position: fixed;
    top: 50px;
    right: 0;
    width: 100%;
    height: 100%;
    padding-top: 0;
    /* background-color: rgba(0, 0, 0, 0.9); */
    background: #fff;
    border-bottom: 1px solid #f8f8f847;
    transition: right 300ms;
    right: -100%;
    padding: 0;
    z-index: 9999;
    overflow-y: auto;
    text-align: center;
    margin-top: 0;
    padding-bottom: 50px;
  }
  
  header .rightDiv .menu ul>li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #eee;
    float: none;
    width: 100%;
  }
  
  header .rightDiv .menu ul>li:first-child {
    border-top: 1px #eee solid;
  }
  
  header .rightDiv .menu ul li a {
    display: block;
    line-height: 50px;
    height: 50px;
    color: #333;
    /*padding: 0 15px;*/
    text-align: left;
    font-size: 16px;
    font-weight: normal;
  }
  
  header .rightDiv .menu>ul>li>a.now::after,
  header .rightDiv .menu>ul>li:hover>a::after {
    display: none;
  }
  
  header .rightDiv .menu>ul>li>a.login {
    width: 100px;
    margin: 10px 0;
    margin-left: 20px;
    text-align: center;
  }
  
  header .rightDiv .menu>ul>li>a small {
    display: none;
  }
  
  header .rightDiv .menu>ul {
    display: block;
    /* padding-top: 60px; */
    width: 100%;
  }
  
  body.on-menu header .rightDiv .menu {
    right: 0;
  }
  
  body.on-menu .main {
    right: 0;
  }
  
  header .rightDiv .menu>ul>li>a {
    padding: 0 20px;
    background: none;
    margin: 0;
    width: 100%;
    color: #333;
  }
  
  header .rightDiv .menu ul li i {
    display: block;
  }
  
  header .twoMenu {
    position: relative;
    top: 0px;
    background: none;
    padding: 0;
    width: initial;
  }
  
  header .twoMenu dl {
    margin-bottom: 10px;
  }
  
  header .twoMenu dl dd {
    margin-top: 0;
  }
  
  header .rightDiv .menu ul li .twoMenu dl dt>a {
    color: #fff;
  }
  
  .on-fixed header .rightDiv .menu ul li .twoMenu dl dt>a {
    color: #000;
  }
  
  header .rightDiv .menu ul li .twoMenu {
    top: 10px;
    box-shadow: none;
  }
  
  header .rightDiv .menu ul li .twoMenu .liDiv>a {
    line-height: 32px;
    height: 32px;
    font-weight: normal;
  }
  
  header .twoMenu .liDiv>a:after {
    top: 0;
  }
  
  header .rightDiv .menu ul li.relativeLi .twoMenu .ulDiv {
    margin: 0 15px;
  }
  
  header .rightDiv .menu ul li>a:hover,
  header .rightDiv .menu ul li>a:focus,
  header .rightDiv .menu ul li>a.on {
    color: #a13e91;
  }
  
  header .rightDiv .menu ul li .twoMenu dl dt>a {
    line-height: 50px;
    height: initial;
  }
  
  header .rightDiv .menu>ul>li>a::before {
    display: none;
  }
  
  header .rightDiv .menu>ul>li:hover,
  header .rightDiv .menu>ul>li:focus,
  header .rightDiv .menu>ul>li.on {
    background: none;
  }
  
  header .rightDiv .menu>ul>li.on>a {
    color: #204e9e;
  }
  
  header .rightDiv .menu>ul>li>a:hover span,
  header .rightDiv .menu>ul>li>a.now span {
    display: none;
  
  
    /* background: #3fba9e;
    border-bottom: 2px #3fba9e solid; */
  }
  
  
  
  .hideDiv {
    display: none;
  }
  
  .bannerIndex,
  .banner_nei {
    margin-top: 50px;
  }
  
  .banner_nei img {
    min-height: 160px;
    object-fit: cover;
  }
  
  .bannerIndex .wrap {
    line-height: 22px;
    top: 30px;
    width: 95%;
  }
  
  .bannerIndex .wrap .font18 {
    font-size: 14px;
  }
  
  .bannerIndex .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  
  .indexDiv1 .fl {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .indexDiv1 .fr {
    width: 100%;
  }
  
  .indexDiv1 .fl,
  .indexDiv1 .fr {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .indexDiv1 .fr .textDiv {
    width: 49%;
  }
  
  .indexDiv2 .swiper-slide {
    transform: scale(1);
  }
  
  .indexDiv2 .swiper-slide-active,
  .indexDiv2 .swiper-slide-duplicate-active {
    transform: scale(1);
    /* width: 380px!important; */
  }
  
  .indexDiv2 .swiper-container {
    padding: 0;
    width: 85%;
  }
  
  .indexDiv2 .swiper-slide .textDiv .text {
    padding: 20px;
    ;
  }
  
  .indexDiv2 .swiper-button-next,
  .indexDiv2 .swiper-button-prev {
    width: 35px;
    height: 35px;
    background-size: 60%;
  }
  
  .indexDiv2 .swiper-button-prev {
    left: -10px;
  }
  
  .indexDiv2 .swiper-button-next {
    right: -10px;
  }
  
  .indexDiv2 {
    padding: 20px 0;
  }
  
  .indexDiv4 .textDiv {
    margin-bottom: 20px;
  }
  
  .mapDiv,
  .liuyan {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .nav_bott a {
    display: block;
    width: 33.33%;
    float: left;
  }
  
  .foot_con {
    margin-left: 0;
  }
  
  .liuyan input {
    width: 100%;
  }
  
  .liuyan input.fl {
    margin-bottom: 20px;
  }
  
  .lfDiv,
  .rtDiv {
    width: 100%;
    margin-bottom: 20px;
  }
  
  footer img.fl {
    width: 50%;
    float: none;
  }
  
  footer div.fl {
    width: 100%;
    margin-top: 30px;
  }
  .nav_bott{
    margin-left: 0;
  }
  .nav_bott a{
    width: 50%;
    margin-bottom: 10px;
  }
  .nav_bott a:nth-child(even){
    border: 0;
  }
  .foot_con p{
    margin-left: 0;
    width: 100%!important;
  }
  .ewm.fr{
    float: left;
    margin-top: 30px;
  }
  .indexDiv3 .textDiv{
    height: 100%;
  }


}

/*中等PC屏幕下的专用样式*/
@media screen and (min-width:993px) and (max-width:1024px) {

  .wrap,
  .wrap2 {
    width: 99%;
  }
  header .rightDiv .menu>ul>li{
    padding: 0 15px;
  }
  .indexDiv1 .fl{
    width: 45%;
  }
  .indexDiv1 .fr{
    width: 52%;
  }
  .indexDiv1 .fr .textDiv{
    width: 49%;
  }
  .indexDiv2 .swiper-container{
    width: 90%;
  }
  .indexDiv2 .swiper-button-next{
    right: 0;
  }
  .indexDiv2 .swiper-button-prev{
    left: 0;
  }
  .indexDiv3 .textDiv{
    height: 100%;
  }
  .mapDiv{
    width: 50%;
  }
  .liuyan{
    width: 48%;
  }

}

@media screen and (min-width:1205px)and (max-width:1600px) {
  .wrap {
    width: 100%;
  }
}

/* 后台添加样式 */
#contactForm {
  position: relative;
}
#contactForm .error {
  position: absolute;
  display: block;
  color: red;
  padding: 0 15px;
  font-size: 12px;
  line-height: 15px;
}
#nameError {
  top: 50px;
}
#emailError {
  top: 50px;
  left: 51%;
}
@media screen and (max-width: 992px) {
  #nameError { line-height: 20px; }
  #emailError { top: 120px; left: 0; }
}
#submitSuccess, #submitRepeat {
  position: fixed;
  min-width: 200px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-weight: bold;
  color: #237E29;
  border: 1px solid #A6DFA6;
  background: #EEF9EE;
  top: calc(45vh - 20px);
  left: calc(50vw - 100px);
  padding: 0 10px;
  display: none;
}
#submitSuccess img, #submitRepeat img {
  width: 40px;
  line-height: 60px;
  margin-right: 10px;
  vertical-align: middle;
}
#submitRepeat {
  min-width: 240px;
  left: calc(50vw - 120px);
  background: #FFFDD7;
  color: red;
  border: 1px solid #FF0000;
}
.foot_con p:first-child {
  font-size: 20px;
}
.nav_bott a:nth-last-child(-n+2) {
  border-right: none;
}
.xiaocms-page {
  display: flex;
  justify-content: center;
  align-items: center;
}
.xiaocms-page>a, .xiaocms-page>span {
  display: block;
  padding: 0 18px;
  border-radius: 3px;
  margin: 0 5px;
  background: #ececec;
}
.xiaocms-page>span, .xiaocms-page>a:hover {
  color: #ffffff;
  background: #0a308a;
}
.PrevNext {
  display: block;
  clear: both;
  overflow: hidden;
	margin-top: 40px;
  color: #333333;
}
.PrevNext p.fl {
  float: left;
}
.PrevNext p.fr {
  float: right;
}
.news .PrevNext p {
	display: block;
}
.PrevNext span {
  color: #999999;
}
@media (max-width:992px) {
  .PrevNext p.fl, .PrevNext p.fr {
    float: none;
    text-align: left;
  }
}
.content h2 {
  text-align: center;
  font-size: 20px;
  color: #0a3f89;
  font-weight: bolder;
}
.content .time {
  text-align: center;
  color: #999;
  margin-top: -10px;
}
.proDiv .news .textDiv {
  box-shadow: 0 0 10px #cccccc;
}
.proDiv .news .textDiv .wenzi {
  padding: 10px 15px;
}
.proDiv .news .textDiv .wenzi .ovh2 {
  line-height: 1.5em;
}
/* 2021-01-14 */
@media screen and (min-width:993px) {
  header .rightDiv .menu>ul>li>a {
    line-height: 90px;
    font-size: 16px;
  }
}