@charset "UTF-8";
/* 公共样式 */
body, div, ul, ol, li, form, input, textarea, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: PingFang SC,Arial;
  font-size: 14px;
  overflow-x: hidden;
  background: #fff;
}

body {
  padding-top: 0;
}

dl, dt, dd, ul, li, p, h1, img, form {
  list-style: none;
  border: none;
}

.flex {
  display: flex;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #333333;
}

a:hover {
  color: #00367b;
  text-decoration: none;
}

img {
  max-width: 100%;
}

* {
  transition: color 300ms;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
}

#header .headerw {
  padding: 20px 0;
}

#header .logo {
  flex: 1;
}

#header .logo img {
  max-height: 72px;
}

#header .header-content {
  height: 358px;
  padding-top: 51px;
}

#header .header-content .hgg {
  margin-right: -59px;
}

#header .search {
  width: 210px;
  border: 1px solid #b2b2b2;
  border-radius: 32px;
}

#header .search input {
  flex: 1;
  height: 32px;
  border: 0;
  font-size: 14px;
  background: none;
  color: #000;
}

#header .search button {
  border: 0;
  width: 44px;
  height: 32px;
  padding-left: 10px;
  background: none;
  font-size: 18px;
  line-height: 32px;
  color: #515152;
}

#header .top_link {
  margin-left: 10px;
}

#header .top_link a {
  background: #0064cf;
  border-radius: 5px;
  margin-left: 5px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 0 10px;
  transition: all 300ms;
}

#header .top_link a:hover {
  background: #f96604;
  color: #fff;
}

#header.header-scrolled .menubox {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
.menubox {
  background: #00367b;
}

/* Desktop Navigation */
.nav-menu {
  height: 60px;
}

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
  height: 60px;
}

.nav-menu > ul > li {
  position: relative;
  flex: 1;
  text-align: center;
  /* white-space: nowrap;
    margin: 0 25px; */
}

.nav-menu > ul > li:last-child {
  margin-right: 0;
}

.nav-menu a {
  display: block;
  position: relative;
  line-height: 60px;
  font-size: 16px;
  color: #fff;
}

.nav-menu > ul > li.active a {
  background: #fff;
  color: #000;
}

.nav-menu a:hover, .nav-menu li:hover > a {
  background: #fff;
  color: #000;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 55px;
  z-index: 99;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  transition: 0.3s;
  text-align: center;
  padding: 0;
  background: #f2f2f2;
  overflow: hidden;
  margin-top: 0;
  border-radius: 0 0 4px 4px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  /* min-width: 180px; */
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 0px 0px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  line-height: 40px;
  border: 0;
  padding: 0 10px;
  color: #000;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  border-radius: 0;
  border: 0 solid transparent;
  color: #fff;
  background: #0064cf;
}

/* .nav-menu .drop-down > a:after {
    content: "\e67a";
    font-family: iconfont;
    padding-left: 5px;
  } */
.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

/* .nav-menu .drop-down .drop-down > a:after {
    content: "\e684";
    font-family: iconfont;
    position: absolute;
    right: 15px;
  } */
.mobile-nav ul {
  flex-flow: wrap;
}

.mobile-nav li {
  width: 100%;
  border-bottom: 1px solid #f2f2f2;
}

/* @media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }
    
  } */
/* .nav-menu .drop-down ul{ display: none !important;} */
/* .nav-menu .drop-down a:after{ display: none;} */
@media (max-width: 990px) {
  .nav-menu ul {
    padding: 0 20px 0 90px;
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #153f89;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #00b371;
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 24px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #000;
}

.mobile-nav-toggle i.icon-Close {
  color: #000 !important;
}

.mobile-nav {
  position: fixed;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #282828;
  padding: 12px 20px;
  font-weight: 500;
  outline: none;
  font-size: 15px;
}

.mobile-nav a:hover {
  color: #153f89;
}

.mobile-nav .active > a {
  color: #153f89;
  text-decoration: none;
  /* background:#153f89; */
}

.mobile-nav .drop-down > a:after {
  content: "\e61f";
  font-family: iconfont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\e845";
}

.mobile-nav .drop-down > a {
  /* padding-right: 35px; */
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  /* padding-left: 20px; */
  border: 0;
}

.mobile-nav .drop-down li a {
  display: flex;
  padding: 5px 15px 12px 30px;
  font-size: 14px;
  justify-content: flex-start;
}

.mobile-nav .drop-down li a:hover {
  color: #153f89;
}

.mobile-nav .drop-down li a p {
  flex: 1;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.fixed-top {
  position: unset;
}

.bgwhite {
  background: #fff;
}

.home-no-padding-right {
  padding-right: 0;
}

i.red {
  color: #cf1717;
}

.jtl, .jtr {
  width: 8px;
}

.center {
  padding: 40px 0;
}

.center .title {
  height: 26px;
  border-left: 3px solid #f96604;
  margin-bottom: 15px;
  padding: 0 0 0 10px;
}

.center .title p {
  font-size: 16px;
}

.center .title span {
  height: 100%;
  display: flex;
  align-items: center;
}

.center .title span a {
  font-size: 12px;
  border: 1px solid #5c6b80;
  padding: 0 5px;
  border-radius: 5px;
  line-height: 22px;
  transition: all 300ms;
}

.center .title span a:hover {
  border-color: #003e6c;
}

.center .title .hd ul {
  justify-content: space-between;
}

.center .title .hd ul li {
  flex: 1;
  text-align: center;
  cursor: pointer;
  height: 26px;
  background-color: #f1f1f1;
  border-radius: 5px;
  line-height: 26px;
  font-size: 12px;
  color: #949494;
  margin-left: 5px;
  padding: 0 10px;
}

.center .title .hd ul li.on {
  color: #fff;
  background: #f96604;
}

.center .about-content {
  line-height: 28px;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}

.center .about-content .img {
  margin-bottom: 15px;
}

.center .newslist .showbox ul li {
  margin-bottom: 10px;
}

.center .newslist .showbox ul li:last-child {
  margin-bottom: 0;
}

.center .newslist .showbox ul li a {
  display: flex;
  align-items: center;
  background: #f4f4f4;
  height: 46px;
  border-radius: 2px;
  overflow: hidden;
  padding-right: 5px;
}

.center .newslist .showbox ul li a span {
  color: #fff;
  background: #0064cf;
  line-height: 46px;
  text-align: center;
  padding: 0 10px;
}

.center .newslist .showbox ul li a p {
  padding: 0 10px;
  flex: 1;
  min-width: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.center .newslist .showbox ul li a i {
  color: #0064cf;
  font-size: 24px;
}

.center .newslist .showbox ul li a:hover {
  background: #0064cf;
}

.center .newslist .showbox ul li a:hover span {
  background: #00367b;
}

.center .newslist .showbox ul li a:hover p {
  color: #fff;
}

.center .newslist .showbox ul li a:hover i {
  color: #fff;
}

.center .picbox {
  padding-top: 15px;
  padding-bottom: 15px;
}

.center .picbox-list .item a {
  border-radius: 4px;
  display: block;
  overflow: hidden;
  height: 274px;
}

.center .picbox-list .item a .img {
  width: 100%;
  height: 164px;
}

.center .picbox-list .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center .picbox-list .item a h3 {
  color: #0064cf;
  font-size: 16px;
  letter-spacing: -1px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}

.center .picbox-list .item a .boxcaption {
  text-align: justify;
  line-height: 24px;
  font-size: 12px;
  background: #fff;
  color: #6e6e6e;
  position: relative;
  top: 0px;
  border-radius: 10px 10px 0 0;
  height: 160px;
  transition: all 300ms;
  padding: 0 10px;
}

.center .picbox-list .item a .boxcaption p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}

.center .picbox-list .item a:hover .boxcaption {
  top: -50px;
}

.center .picbox-list .item a:hover .boxcaption p {
  font-weight: bold;
  color: #000;
}

.center .listpic {
  padding-top: 50px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-flow: wrap;
}

.center .listpic dl {
  width: 550px;
  height: 264px;
  display: flex;
  margin: 0;
}

.center .listpic dl img {
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center .listpic dl dt {
  width: 275px;
  position: relative;
  overflow: hidden;
}

.center .listpic dl dt i {
  position: absolute;
  top: 16px;
  font-size: 20px;
  color: #fff;
}

.center .listpic dl dd {
  padding: 0 18px;
  flex: 1;
}

.center .listpic dl dd h4, .center .listpic dl dd h5 {
  margin: 0;
}

.center .listpic dl dd h4 {
  color: #003683;
  font-size: 18px;
  line-height: 40px;
  padding-top: 10px;
}

.center .listpic dl dd h5 {
  color: #454545;
  font-size: 14px;
  line-height: 30px;
  text-align: justify;
}

.center .listpic dl:nth-child(1) i {
  right: -6px;
}

.center .listpic dl:nth-child(2) i {
  right: -6px;
}

.center .listpic dl:nth-child(3) i {
  left: -6px;
}

.center .listpic dl:nth-child(4) i {
  left: -6px;
}

.center .listpic dl:hover {
  background: #003683;
}

.center .listpic dl:hover img {
  transform: scale(1.1);
}

.center .listpic dl:hover i {
  color: #003683;
}

.center .listpic dl:hover h4, .center .listpic dl:hover h5 {
  color: #fff;
}

.ncenter {
  padding: 30px 0;
}

.ncenter .bt {
  font-size: 16px;
  color: #0a3479;
  text-align: center;
  border-bottom: 1px solid #e9e9e9;
  line-height: 30px;
  font-weight: bold;
  padding-bottom: 15px;
  letter-spacing: 1px;
}

.ncenter .n-top-nav {
  padding: 30px 0  25px 0;
  flex-flow: wrap;
}

.ncenter .n-top-nav a {
  text-align: center;
  background: #0a3479;
  padding: 10px 20px;
  line-height: 24px;
  border-radius: 8px;
  color: #fff;
  margin: 0px 5px 5px 5px;
  transition: all 300ms;
}

.ncenter .n-top-nav a:hover, .ncenter .n-top-nav a.active {
  background: #fb1c00;
}

.ncenter .dy-content {
  font-size: 14px;
  line-height: 28px;
}

.ncenter .newslist-style1 li {
  margin-bottom: 10px;
}

.ncenter .newslist-style1 li:last-child {
  margin-bottom: 0;
}

.ncenter .newslist-style1 li a {
  display: flex;
  align-items: center;
  background: #f4f4f4;
  height: 46px;
  border-radius: 2px;
  overflow: hidden;
  padding-right: 5px;
}

.ncenter .newslist-style1 li a span {
  color: #fff;
  background: #0064cf;
  line-height: 46px;
  text-align: center;
  padding: 0 10px;
}

.ncenter .newslist-style1 li a p {
  padding: 0 10px;
  flex: 1;
  min-width: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ncenter .newslist-style1 li a i {
  color: #0064cf;
  font-size: 24px;
}

.ncenter .newslist-style1 li a:hover {
  background: #0064cf;
}

.ncenter .newslist-style1 li a:hover span {
  background: #00367b;
}

.ncenter .newslist-style1 li a:hover p {
  color: #fff;
}

.ncenter .newslist-style1 li a:hover i {
  color: #fff;
}

.ncenter .newslist-style2 li {
  border-bottom: 1px solid #f9f9f9;
  transition: all 300ms;
  padding: 0 0 10px 0;
  margin-bottom: 10px;
}

.ncenter .newslist-style2 li:hover {
  border-color: #dddddd;
}

.ncenter .newslist-style2 li a {
  display: flex;
}

.ncenter .newslist-style2 li a .memo {
  min-width: 1px;
  flex: 1;
  padding-right: 15px;
}

.ncenter .newslist-style2 li a .memo .title {
  font-size: 16px;
  color: #222;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 5px;
}

.ncenter .newslist-style2 li a .memo .zy {
  font-size: 14px;
  color: #636262;
  line-height: 24px;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ncenter .newslist-style2 li a .img {
  width: 200px;
  height: 140px;
  border-radius: 5px;
  overflow: hidden;
}

.ncenter .newslist-style2 li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms;
}

.ncenter .newslist-style2 li a:hover .memo .title {
  color: #00367b;
}

.ncenter .newslist-style2 li a:hover .img img {
  transform: scale(1.1);
}

.ncenter .childnav {
  padding-bottom: 30px;
}

.ncenter .childnav ul {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}

.ncenter .childnav ul li {
  margin: 0 15px;
  text-align: center;
  line-height: 30px;
  color: #1a4282;
}

.ncenter .childnav ul li.active a p {
  color: #fb1c00;
}

.ncenter .childnav ul li a {
  color: #1a4282;
  font-size: 14px;
  font-weight: bold;
}

.ncenter .childnav ul li a img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  transition: all 300ms;
}

.ncenter .childnav ul li a p {
  margin-top: 5px;
}

.ncenter .childnav ul li a:hover img {
  transform: scale(1.03);
}

.ncenter .childnav ul li a:hover p {
  color: #fb1c00;
}

.ncenter .page {
  text-align: center;
  padding-top: 25px;
}

.ncenter .page span {
  padding: 0 5px;
  color: #000;
}

.ncenter .page span b {
  color: #00367b;
  font-weight: bold;
}

.ncenter .page a {
  color: #000;
}

.ncenter .page a:hover {
  color: #00367b;
}

.ncenter .page select {
  height: 26px;
}

.ncenter .news-content {
  font-size: 14px;
  line-height: 28px;
  padding-bottom: 30px;
  text-align: justify;
}

.ncenter .nothing {
  padding-top: 30px;
}

.ncenter .nothing_content {
  text-align: center;
}

.ncenter .nothing_content_img {
  margin: 0 auto;
  width: 200px;
}

.ncenter .nothing_content p {
  padding-top: 10px;
  font-size: 16px;
  line-height: 30px;
}

.ncenter .honor_pic_list {
  padding: 5px 5px 0px 5px;
  overflow: hidden;
}

.ncenter .honor_pic_list .honr-swiper {
  margin: 0 10px;
  padding-bottom: 30px;
}

.ncenter .honor_pic_list .honr-swiper .swiper-slide {
  text-align: center;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.ncenter .honor_pic_list .honr-swiper .swiper-slide img {
  width: 230px;
  height: 150px;
  object-fit: cover;
}

.ncenter .honor_pic_list .honr-swiper .swiper-slide p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 30px;
}

.ncenter .honor_pic_list .honr-swiper .swiper-pagination {
  bottom: 0px;
}

.ncenter .pic-swiper {
  padding-top: 30px;
}

.ncenter .pic-swiper .swiper {
  width: 100%;
  height: 100%;
}

.ncenter .pic-swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ncenter .pic-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ncenter .pic-swiper body {
  background: #000;
  color: #000;
}

.ncenter .pic-swiper .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.ncenter .pic-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
}

.ncenter .pic-swiper .mySwiper2 {
  height: 80%;
  width: 100%;
}

.ncenter .pic-swiper .mySwiper {
  height: 15%;
  box-sizing: border-box;
  padding: 10px 0;
}

.ncenter .pic-swiper .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.ncenter .pic-swiper .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.ncenter .pic-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ncenter .dy-content-newsd {
  font-size: 14px;
  line-height: 30px;
  padding: 30px 0;
}

.ncenter .newstitle {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333333;
}

.ncenter .newssubtitle {
  text-align: center;
  margin: 20px 0;
}

.dr {
  padding: 200px 0;
  overflow: hidden;
  background: url(../images/drbg.jpg) no-repeat center center;
  background-size: cover;
  min-width: 100%;
  min-height: 100vh;
}

.dr .logo {
  max-width: 526px;
  margin: 0 auto;
}

.dr .drnav {
  margin-top: 90px;
}

.dr .drnav ul {
  display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
}

.dr .drnav ul li {
  width: 230px;
  height: 78px;
  line-height: 78px;
  text-indent: center;
  margin-bottom: 10px;
}

.dr .drnav ul li a {
  display: block;
  background: url(../images/abg.png) no-repeat;
  background-size: cover;
  line-height: 78px;
  color: #fff;
  font-size: 22px;
  text-align: center;
  border-radius: 4px;
  transition: all 300ms;
}

.dr .drnav ul li a:hover {
  background: url(../images/ahbg.png) no-repeat;
  background-size: cover;
  text-shadow: 0 1px 1px #000;
}

footer {
  background: #313941;
  position: relative;
  overflow: hidden;
  background-size: cover;
}

footer .footer {
  padding: 30px 0;
}

footer .footer .content {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  flex: 1;
}

footer .footer .footer_links ul {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

footer .footer .footer_links ul li {
  width: 49%;
  margin-bottom: 10px;
}

footer .footer .footer_links ul li select {
  width: 100%;
  border: 1px solid #ccc;
  height: 34px;
  line-height: 34px;
  outline: none;
  border-radius: 4px;
}

@media (max-width: 1200px) {
  .center .listpic {
    padding-top: 10px;
  }
  .center .listpic dl {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
  .center .listpic dl dt {
    width: 155px;
  }
  .center .listpic dl dt i {
    top: 16px;
  }
  .center .listpic dl dd h4 {
    padding-top: 10px;
  }
  .center .listpic dl dd h5 {
    line-height: 24px;
  }
  .center .listpic dl:nth-child(3) {
    flex-flow: row-reverse;
  }
  .center .listpic dl:nth-child(3) i {
    right: -6px;
    left: auto;
    transform: rotate(180deg);
  }
  .center .listpic dl:nth-child(4) {
    flex-flow: row-reverse;
  }
  .center .listpic dl:nth-child(4) i {
    right: -6px;
    left: auto;
    transform: rotate(180deg);
  }
  .footer_links {
    margin-top: 15px;
  }
}

@media (max-width: 992px) {
  .home-no-padding-right {
    padding-right: 15px;
  }
  body {
    padding-top: 72px;
  }
  .banner img {
    width: 100%;
  }
  #header {
    height: 72px;
    border: 0;
    padding: 0;
    position: fixed;
    z-index: 9997;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  #header .search {
    display: none !important;
  }
  #header .hgg {
    display: none;
  }
  #header .logo {
    position: fixed;
    left: 15px;
    top: 13px;
    padding-top: 0;
  }
  #header .logo img {
    max-height: 46px;
  }
  #header .top_link {
    display: none;
  }
  .center .about-content {
    margin-bottom: 15px;
  }
  .center .picbox-list .item {
    margin-bottom: 15px;
  }
  .center .listpic {
    padding-top: 10px;
  }
  .center .listpic dl {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  .center .listpic dl dt {
    width: 50%;
  }
  .center .listpic dl dt i {
    top: 16px;
  }
  .center .listpic dl dd h4 {
    padding-top: 10px;
  }
  .center .listpic dl dd h5 {
    line-height: 24px;
  }
  .center .listpic dl:nth-child(2) {
    flex-flow: row-reverse;
  }
  .center .listpic dl:nth-child(2) i {
    left: -6px;
    right: auto;
    transform: rotate(180deg);
  }
  .center .listpic dl:nth-child(3) {
    flex-flow: row-reverse;
  }
  .center .listpic dl:nth-child(3) i {
    right: -6px;
    left: auto;
    transform: rotate(180deg);
  }
  .center .listpic dl:nth-child(4) {
    flex-flow: row;
  }
  .center .listpic dl:nth-child(4) i {
    left: -6px;
    right: auto;
    transform: rotate(0deg);
  }
  .dr {
    padding: 100px 0;
  }
  .dr .drnav {
    margin-top: 90px;
  }
  .dr .drnav ul li {
    width: 40%;
  }
  .dr .drnav ul li a {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .banner img {
    width: 100%;
  }
  .mobile-nav-toggle {
    font-size: 24px;
    top: 24px;
  }
  #header .headerw {
    max-width: 100%;
  }
  .fixed-top {
    position: fixed;
  }
  .banner img {
    width: 100%;
  }
  .center .listpic {
    padding-top: 0;
  }
  .ncenter .page span {
    padding: 0 3px;
    color: #000;
    font-size: 12px;
  }
  .ncenter .page span a {
    font-size: 12px;
  }
  .ncenter .newslist-style2 li a .memo {
    padding-right: 10px;
  }
  .ncenter .newslist-style2 li a .memo .title {
    font-size: 14px;
    line-height: 24px;
  }
  .ncenter .newslist-style2 li a .memo .zy {
    font-size: 12px;
    -webkit-line-clamp: 2;
    line-height: 20px;
  }
  .ncenter .newslist-style2 li a .img {
    width: 100px;
    height: 70px;
  }
  .ncenter .childnav ul {
    justify-content: space-between;
  }
  .ncenter .childnav ul li {
    margin: 0;
  }
  .ncenter .childnav ul li a img {
    width: 70px;
    height: 70px;
  }
  .dr {
    padding: 0px 0 0 0;
  }
  .dr .drnav {
    margin-top: 50px;
  }
  .dr .drnav ul li {
    width: 100%;
  }
  .dr .drnav ul li a {
    font-size: 20px;
  }
}
