/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei",PingFang SC,-apple-system, FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", "FontAwesome", sans-serif;
  color: #3e454c;
  background-color: #ffffff;
}
body::after {
  clear: both;
  content: "";
  display: table;
}

a {
  color: #1784c7;
  text-decoration: none;
}

input {
  font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", PingFang SC,-apple-system,FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", "FontAwesome", sans-serif;
  font-size: 1.6rem;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* -------------------------------- 

Main Page Content

-------------------------------- */
.cd-main-content{
  display: none;
}
.cd-main-content .content-wrapper {
  padding: 45px 5% 3em;
}
.cd-main-content .content-wrapper h1 {
  text-align: center;
  padding: 3em 0;
  font-size: 2rem;
}
.cd-main-content::before {
  /* never visible - used to check MQ in jQuery */
  display: none;
  content: 'mobile';
}
@media only screen and (min-width: 768px) {
  .cd-main-content .content-wrapper {
    margin-left: 110px;
    padding-top: 55px;
  }
  .cd-main-content .content-wrapper h1 {
    padding: 4em 0;
    font-size: 3.2rem;
    font-weight: 300;
  }
  .cd-main-content::before {
    content: 'tablet';
  }
}
@media only screen and (min-width: 1170px) {
  .cd-main-content .content-wrapper {
    margin-left: 200px;
  }
  .cd-main-content::before {
    content: 'desktop';
  }
}

/* -------------------------------- 

Header

-------------------------------- */
.cd-main-header {
  display: none;;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background:rgba(70,83,162,.9);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-main-header::after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (min-width: 768px) {
  .cd-main-header {
    position: fixed;
    height: 55px;
  }
}

@media only screen and (max-width: 1024px) {
  .cd-main-header {
    display: block;;
  }
  .cd-main-content{
    display: block;
  }
  header#pcnav{
    display: none;
  }
}

.cd-logo {
  float: left;
  display: block;
  margin: 7px 0 0 5%;
}
.cd-logo img {
  display: block;
  width:170px;
  height:auto;
}
@media only screen and (min-width: 768px) {
  .cd-logo {
    margin: 16px 0 0 36px;
  }
}

.cd-nav-trigger {
  /* navigation trigger - visible on mobile devices only */
  float: right;
  position: relative;
  display: block;
  width: 34px;
  height: 50px;
  margin-right: 5%;
  /* hide text */
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
}
.cd-nav-trigger span, .cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* hamburger icon in CSS */
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #ffffff;
}
.cd-nav-trigger span {
  /* line in the center */
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -2px;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* other 2 lines */
  content: '';
  right: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}
.cd-nav-trigger span::before {
  /* menu icon top line */
  top: -6px;
}
.cd-nav-trigger span::after {
  /* menu icon bottom line */
  top: 6px;
}
.cd-nav-trigger.nav-is-visible span {
  /* hide line in the center */
  background: rgba(255, 255, 255, 0);
}
.cd-nav-trigger.nav-is-visible span::before, .cd-nav-trigger.nav-is-visible span::after {
  /* keep visible other 2 lines */
  background: white;
}
.cd-nav-trigger.nav-is-visible span::before {
  -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
  transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.cd-nav-trigger.nav-is-visible span::after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  .cd-nav-trigger {
    display: none;
  }
}

.cd-search {
  position: relative;
  margin: 1.2em 5% 0.6em;
}
.cd-search.is-hidden {
  opacity: 0;
}
.cd-search::before {
  /* lens icon */
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background: url(../img/cd-search.svg) no-repeat 0 0;
}
.cd-search input {
  padding-left: 32px;
  width: 100%;
  height: 36px;
  border: none;
  border-radius: .25em;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-search input:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  .cd-search {
    float: left;
    display: inline-block;
    width: 250px;
    height: 100%;
    margin: 0 0 0 2.5em;
  }
  .cd-search.is-hidden {
    /* reset style */
    opacity: 1;
  }
  .cd-search::before {
    background-position: 0 -16px;
    left: 1em;
  }
  .cd-search form, .cd-search input {
    height: 100%;
    width: 100%;
  }
  .cd-search input {
    border: none;
    padding-left: 2.6em;
    border-radius: 0;
    background-color: #3e454c;
    border-left: 1px solid #51575d;
    color: #ffffff;
  }
  .cd-search input::-webkit-input-placeholder {
    color: #777c81;
  }
  .cd-search input::-moz-placeholder {
    color: #777c81;
  }
  .cd-search input:-moz-placeholder {
    color: #777c81;
  }
  .cd-search input:-ms-input-placeholder {
    color: #777c81;
  }
}

/* -------------------------------- 

Top Navigation

-------------------------------- */
.cd-nav {
  /* top nav - not visible on mobile devices */
  display: none;
}
@media only screen and (min-width: 768px) {
  .cd-nav {
    display: block;
    float: right;
    height: 100%;
  }
}

.cd-top-nav > li > a::before {
  /* reset style */
  display: none;
}
.cd-top-nav > li a {
  padding: 1em 5% !important;
}
.cd-top-nav img {
  /* avatar image */
  position: absolute;
  left: 1.8em;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: none;
}
@media only screen and (min-width: 768px) {
  .cd-top-nav {
    height: 100%;
  }
  .cd-top-nav a {
    display: block;
    font-size: 1.4rem;
    color: #ffffff;
  }
  .cd-top-nav > li {
    display: inline-block;
    margin-right: 1em;
    height: 100%;
  }
  .cd-top-nav > li:last-of-type {
    margin-right: 0;
  }
  .cd-top-nav > li a {
    padding: 1em .6em !important;
  }
  .cd-top-nav img {
    display: block;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-top-nav li:not(.has-children) a:hover {
    color: #1784c7;
  }
}

/* -------------------------------- 

Sidebar

-------------------------------- */
.cd-side-nav {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  padding: 45px 0 0;
  background-color: #0E4C9B;
  visibility: hidden;
  opacity: 0;
  max-height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  transition: opacity 0.2s 0s, visibility 0s 0.2s;
}
.cd-side-nav.nav-is-visible {
  opacity: 1;
  visibility: visible;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
  transition: opacity 0.2s 0s, visibility 0s 0s;
  max-height: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.cd-side-nav > ul {
  padding: 0.6em 0;
}
.cd-side-nav > ul:last-of-type {
  padding-bottom: 0;
}
.cd-side-nav .cd-label, .cd-side-nav a {
  display: block;
  padding: 1em 10%;
}
.cd-side-nav .cd-label {
  text-transform: uppercase;
  font-weight: bold;
  color: #646a6f;
  font-size: 1rem;
  letter-spacing: .1em;
}
.cd-side-nav a {
  position: relative;
  color: #ffffff;
  font-size: 1.4rem;
}
.cd-side-nav ul.cd-top-nav > li:last-of-type > a {
  border-bottom: none;
}
.cd-side-nav > ul > li > a {
  padding-left: 7%;
  border-bottom: 1px solid #3369ae;
}
.cd-side-nav > ul > li > a::before {
  /* icon before item name */
  position: absolute;
  content: '';
  left: 5%;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background: url(../img/cd-nav-icons.svg) no-repeat 0 0;
}
.cd-side-nav > ul > li.overview > a::before {
  background-position: -64px 0;
}
.cd-side-nav > ul > li.notifications > a::before {
  background-position: -80px 0;
}
.cd-side-nav > ul > li.comments > a::before {
  background-position: -48px 0;
}
.cd-side-nav > ul > li.bookmarks > a::before {
  background-position: -32px 0;
}
.cd-side-nav > ul > li.images > a::before {
  background-position: 0 0;
}
.cd-side-nav > ul > li.users > a::before {
  background-position: -16px 0;
}
.cd-side-nav .count {
  /* notification badge */
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc(5% + 16px + 0.4em);
  padding: 0.2em 0.4em;
  background-color: #ff7e66;
  border-radius: .25em;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}
.cd-side-nav .action-btn a {
  display: block;
  margin: 0 5%;
  padding: 1em 0;
  background-color: #1784c7;
  border-radius: .25em;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
.cd-side-nav .action-btn a::before {
  display: none;
}
@media only screen and (min-width: 768px) {
  .cd-side-nav {
    position: relative;
    float: left;
    top: auto;
    width: 110px;
    min-height: 100vh;
    padding-top: 55px;
    /* reset style */
    visibility: visible;
    opacity: 1;
    overflow: visible;
    max-height: none;
  }
  .cd-side-nav.nav-is-visible {
    box-shadow: none;
  }
  .cd-side-nav.is-fixed {
    position: fixed;
  }
  .cd-side-nav > ul {
    /* reset style */
    padding: 0;
  }
  .cd-side-nav .cd-label {
    /* remove labels on minified version of the sidebar */
    display: none;
  }
  .cd-side-nav a {
    font-size: 1.2rem;
    text-align: center;
  }
  .cd-side-nav > ul > li > a {
    padding: calc(2.2em + 24px) 0 2.4em;
  }
  .cd-side-nav > ul > li > a::before {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 2.4em;
  }
  .cd-side-nav .active > a {
    /* current page */
    box-shadow: inset 3px 0 0 #1784c7;
    background-color: #33383e;
  }
  .cd-side-nav .action-btn a {
    margin: 1em 10% 0;
  }
  .cd-side-nav .count {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    padding: 0;
    top: 2em;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: calc(50% + 5px);
    right: auto;
    color: transparent;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-side-nav {
    width: 200px;
  }
  .cd-side-nav > ul {
    padding: 0.6em 0;
  }
  .cd-side-nav > ul > li:not(.action-btn):hover > a {
    background-color: #33383e;
  }
  .cd-side-nav > ul > li > a {
    padding: 1em 1em 1em 42px;
    text-align: left;
    border-bottom: none;
  }
  .cd-side-nav > ul > li > a::before {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 18px;
  }
  .cd-side-nav .cd-label {
    display: block;
    padding: 1em 18px;
  }
  .cd-side-nav .action-btn {
    text-align: left;
  }
  .cd-side-nav .action-btn a {
    margin: 0 18px;
  }
  .no-touch .cd-side-nav .action-btn a:hover {
    background-color: #1a93de;
  }
  .cd-side-nav .count {
    /* reset style */
    color: #ffffff;
    height: auto;
    width: auto;
    border-radius: .25em;
    padding: .2em .4em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 18px;
    left: auto;
    box-shadow: none;
  }
}

.has-children ul {
  position: relative;
  width: 100%;
  display: none;
  background-color: #023a83;
}
.has-children > a::after {
  /* arrow icon */
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  right: 5%;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/cd-arrow.svg);
}
.has-children.selected > ul {
  display: block;
  padding:15px 0px;
}
.has-children.selected > a::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
@media only screen and (min-width: 768px) {
  .has-children {
    position: relative;
  }
  .has-children ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: 160px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  .has-children ul a {
    text-align: left;
    border: none;
    padding: 1em;
  }
  .no-touch .has-children ul a:hover {
    color: #1784c7;
  }
  .has-children > a::after {
    display: none;
  }
  .cd-side-nav .has-children.selected > a {
    /* focus state -> show sub pages */
    background-color: #33383e;
  }
  .cd-top-nav .has-children {
    position: relative;
    background-color: #2c3136;
  }
  .cd-top-nav .has-children > a {
    height: 100%;
    padding: 0 calc(1.8em + 22px) 0 calc(1.8em + 26px) !important;
    line-height: 55px;
  }
  .cd-top-nav .has-children > a::after {
    display: block;
    right: 1.8em;
  }
  .cd-top-nav .has-children ul {
    background-color: #1c1f22;
    width: 200px;
    top: 100%;
    right: 0;
    left: auto;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  }
  .cd-top-nav .has-children ul a {
    padding-left: 18px !important;
  }
}
@media only screen and (min-width: 1170px) {
  .has-children > ul {
    width: 100%;
    z-index: 1;
  }
  .has-children ul a {
    padding-left: 18px;
  }
  .has-children.active > ul {
    /* if the item is active, make the subnavigation visible */
    position: relative;
    display: block;
    /* reset style */
    left: 0;
    box-shadow: none;
  }
  .no-touch .cd-side-nav .has-children:hover > ul, .cd-side-nav .has-children.hover > ul {
    /* show subnavigation on hover */
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

.nycontent .content div.left{
  width:30%!important;
}
.nycontent .content .right{
    width:67%!important;
  }
#content-left{
  width:1200px;
  margin:0 auto;
}

@media only screen and (max-width: 1024px) {
    .footer .footLinks{
        display: none;
    }
  .fixed{
    display: none;;
  }
  .fixed .top,
  .fixed .nav{
    display: none;
  }
  .swiper-button-next, .swiper-button-prev{
      zoom:0.5;
  }
  .news{
    padding-top: 10px;
  }
   .fwtitle {
       font-size: 12px;
   }
  .fwtitle .btitle{
      font-size:24px;
      margin-bottom:5px !important;
  }

  .cd-main-header{
    display: block;
    background-color: #fff;
    height:60px;
    z-index: 11;
  }
  .cd-nav-trigger span, .cd-nav-trigger span::before, .cd-nav-trigger span::after{
    background: #323c77;
  }
  .cd-nav-trigger.nav-is-visible span::before, .cd-nav-trigger.nav-is-visible span::after{
    background: #323c77;
  }
  .cd-nav-trigger{
    height: 60px;
  }
  .cd-side-nav{padding-top: 60px;z-index: 10;}
  .banner{margin-top: 60px;}
  .footer{height:auto;margin-top: 7vw;padding-bottom:3vw;}
  .footer .h300{height:auto;display:none;}
  .footer .logo{float:none;width:60%;margin:20px auto;transform:none;}
  .footer .h50{height:auto;}
  .footer .vx{float:none;transform:none;padding-bottom: 20px;display: none;}
  .footer .vx div{float:left;width:35%;font-size: 12px;padding: 15px;line-height: 3em;}

  .news .leftbox p{font-size: 12px;}
  .news .leftbox{float:none;width:auto;}
  .news .leftbox .title{font-size: 24px;margin-bottom:5px !important;}
  .w1200,
  .w1200_sys{width:92%;margin-left: 4%;}
  .news .leftbox .three_news .newsdiv{padding:5px 0px;}
  .news .leftbox .three_news .newsdiv .a{line-height: 1.5em;font-size: 16px;padding:5px;display: block;}
  .news .leftbox .three_news .more{font-size: 14px;padding:3px 10px;width:100px;}
  .news .leftbox .first_news p{font-size: 14px;}
  .news .leftbox .first_news h5{font-size: 20px;}
  .news .rightbox{float:none;display: none;}
  .news .rightbox img{width:100%;}
  .lh {padding-top: 25px;}
  .news .leftbox .three_news .newsdiv span{font-size: 12px;float:none;display: block;padding-left: 25px;}
  .news .leftbox .first_news{padding:12px 0px;}
  .lh .lhcounty{position: static; width:92%;height:auto;margin-left:4%;margin-top: -20%;padding: 20px 0px;transform:translateY(-40px);border-radius:10px;}
  .lh .lhcounty .sixbox .h_box .en{font-size: 10px;line-height: 1.3em;margin-bottom:0;}
  .lh .lhcounty .sixbox .h_box .cn{font-size: 16px; margin-bottom: 1.5vw;}
  .lh .lhcounty .sixbox .h_box{height:auto;padding-bottom: 2%;border:0;}
  .lh .lhcounty .sixbox .h_box .img{margin-top: 3vw;display:flex;align-items:flex-end;}
  .lh .lhcounty .sixbox .h_box .img img{max-height:100%;width:auto;}
  .lh .lhcounty .title{margin:12px auto;}
  .ks{background: url(../images/k_bg.jpg) top center no-repeat;position: static;padding:30px 5%;background-size:cover;}
  .ks .dh{position: static;transform: none;width:auto;}
  .ks .ksbg{display: none;}
  .ks .dh p{font-size: 12px;;}
  .ks .dh .title{font-size: 24px;}
  .map .system,
  .map .system .content{position: static;}
  .ks .dh .eight{margin-top:20px;}
  .ks .dh .eight .k_box{width:33.33%; border:0;}
  .ks .dh .eight .k_box img{width:72%;margin-left:10%;margin-top: 20px;}
  .ks .dh .eight .k_box .cn{font-size: 16px;}
  .ks .dh .eight .k_box .en{font-size: 10px;line-height: 1.3em;padding-top:1.5vw;}
  .ks .dh .eight .k_box .a{line-height: 1.2em;color:rgba(255,255,255,0.45);opacity:0;}
  .map .indexiframe{display: block;min-width: 100%;position:static;height:80vw;display:none;}
  .map .system{background-size:100% auto;width:auto;height:auto;background-position: left top;}
  .map .system .content{transform:none;margin-left: 10%;padding-top: 50%;padding-bottom: 10%;}
  .map .system .content .bighotline{font-size:32px;}
  .map .system .content div{margin-bottom: 25px;font-size: 14px;line-height: 1.5em;}
  .map .system .content img{width:20px;height:auto;}
  .map .system .content div:last-child p{padding-left: 32px !important; padding-top:10px !important;}
  .map .system .content span{font-size: 28px;}
  .footer .icp{line-height: 1.5em;padding:12px;}
  .p_left{zoom:0.8;}
  .footer .line_h{background: rgba(255,255,255,0.5);display:none;}
  .map .system .content .bighotline{padding-left:32px !important;}
  
  .dh_content .zj_content .zjbox{column-gap:1rem;}
  .ys_wrapper{flex-direction:column;margin:0;padding:0;gap:3em;}
  .ys_details{margin-bottom:2.5em;}
  .ys_details h3{margin-bottom:0.5em;font-size:20px;display:flex;gap:0.5em;align-items:center;}
  .ys_details h3:before{content:'';width:0.4em;height:1em;background:#0E4C9B;border-radius:3px;}
  .ys_intro h2{font-size:28px;font-weight:bold;}
  .dh_content .w a,
  .dh_content .ks_content .b a{font-size:20px;}
  .dh_content .ks_rongyu{padding:30px 0;}
  .dh_content .ks_content .ks_intro{padding-top:1em;}
  .dh_content .ks_content .ks_intro p{font-size:16px;}
  .dh_content .zj_content .ks_kuang{font-size:16px;}
  
  .cd-logo img{width:150px;}
  .moreWrapper{margin-top:1em;}
  .moreWrapper a{font-size:16px;}
  .lh .lhcounty .sixbox .h_box{text-align: left;width:calc(33.33% - 1vw);}


  .gk_list{height:42px;overflow:hidden }
  .gk_list .w1200 div,
  .gk_list .w1200 div{display: inline-block;height:42px;line-height: 42px;font-size: 14px;padding:0px 8px;width:auto;}
  .gk_content .catname,
  .dh_content .catname{font-size: 12px;line-height: 2.5em;color:#ccc;    padding-top: 10px;}
  .gk_content .title{margin-bottom: 24px;margin-top: 15px;font-size: 24px;}
  .gk_content .body img{max-width: 100%;}
  .gk_content .body .left,
  .gk_content .body .right{float:none;width:100%;margin-bottom: 5vw;padding-bottom:0;}
  .gk_content .body p{font-size: 16px;line-height: 1.5em;}
  .gk_content .body h5{font-size: 16px;}
  .gk_content .body li{font-size: 16px;line-height: 1.5em;margin-bottom: 0.6em;}
  .gk_content .body .xr div,
  .gk_content .body .ry,
  .dh_content .zj_content .zj,
  .gk_content .body .lr div{width:31%;}
  .gk_content .body .xr div img,
  .dh_content .zj_content .zj img,
  .gk_content .body .lr div img{width:100%;height:auto;}
  .gk_content h4{font-size: 20px;line-height: 1.5em;margin:0.5em 0;}
  .gk_content .lsygphoto{height:auto;width:auto;padding:2% 2% 5% 2%;overflow: hidden;}
  .gk_content .lsygphoto .swiper-slide{height:auto;}
  .gk_content .lsygphoto .w1200 .div img{height:auto;}
  .gk_content .body .whWrapper{row-gap:3vw;column-gap:0;}
  .gk_content .body .whContent{padding:24px;width:100%;}
  .gk_content .body .whContent h3{font-size:18px;}

  .dh_content .lm .en{font-size: 24px;margin-top: 20px;display: none;;}
  .dh_content .lm .cn{font-size: 32px;margin: 20px 0;}
  .dh_content .serach{height:50px;}
  .dh_content .serach input{width:65%;}
  .dh_content .serach button{padding:5px 15px;margin:10px 15px;}
  .dh_content .title{font-size: 20px;}
  .dh_content .title p{display: none;}
  .dplist{gap:1.5rem;column-gap:1rem;margin-bottom:7vw;}
  .dh_content .body .k{width:48%;height:auto;padding: 15px 15px;transition:none;font-weight:bold;box-shadow: 1px 1px 2px #00000010, 0px 1px 2px #0000002ß0;}
  .dh_content .body .k img{margin-right: 0px;    transform: translate(0px, 4px);opacity:0.4;}
  .dh_content .ks_content{padding:6% 0px;}
  .dh_content .ks_content .left,
  .dh_content .ks_content .right{float:none;position: static;width:auto;height:auto;font-size: 16px;line-height: 1.5em;}
  .dh_content .ks_content .left div{font-size: 16px;line-height: 1.5em;}
  .dh_content .ks_content .left .more{position: static;display:block;}
  .dh_content .zj_content{padding:3.5% 0;}
  .dh_content .zj_content .w span,
  .dh_content .ks_content .b span{display: none;}
  .dh_content h1{font-size: 28px;margin:0.8em 0;}
  .news_detail_content .news_left h1{font-size:18px;}

  .gk_content .hzfw_body{padding:30px 0px;}
  .gk_content .hzfw_body .newsbox,
  .gk_content .dj_body .newsbox,
  .gk_content .news_body .newsbox{width:auto;height:auto;}
  .gk_content .hzfw_body .newsbox .news_title{ line-height:1.3em; }
  .free {position: static;transform: none;}
  .gk_content .hzfw_body .newsbox .news_title{font-size: 20px;}
  .gk_content .hzfw_body .newsbox .news_describe{font-size: 14px;margin-top: 2%;}
  .news_detail_content .news_left{width:auto;float:none;padding:0;border:0}
  .news_detail_content .news_right{display: none;}
  .news_detail_content img{max-width: 100%;height:auto;}


  .gk_content .news_body{padding:30px 0px;}
  .gk_content .news_body .newsbox,
  .gk_content .dj_body .newsbox{padding: 15px 15px 10px;transition:none;padding:0 0 10px 0;}
  .gk_content .news_body .newsbox .left,
  .gk_content .news_body .newsbox .right,
  .gk_content .dj_body .newsbox .left,
  .gk_content .dj_body .newsbox .right{float:none;width:auto;height:auto;}
  .gk_content .news_body .newsbox .news_title{font-size: 16px;line-height: 1.5em;margin: 1% 0px 0px 0px;}
  .gk_content .news_body .newsbox .left img{width:100%;height:auto;margin:0px 0px 2% 0px;}
  .gk_content .news_body .newsbox .free p{display: inline; font-size: 14px;padding-right: 5px;}
  .gk_content .news_body .newsbox .right .d{font-size: 14px;}
  .gk_content .news_body .newsbox .news_describe{font-size: 14px;line-height: 1.5em;margin:10px 0px;}
  .news_detail_content .news_left h1{line-height: 1.5em;}
  .news_detail_content .news_left .posttime{font-size:12px;}
  
  .gk_content .videolist {gap:2rem;}
  .gk_content .videolist a{width:calc(50% - 1rem);transition:none;}

  .gk_content .dj_body{padding:30px 0px;}
  .gk_content .dj_body .newsbox .left{width:60px;height:60px;border-radius: 10px;text-align: center;}
  .gk_content .dj_body .newsbox .left .d{font-size: 30px;}
  .gk_content .dj_body .newsbox .left .ym{font-size: 12px;}
  .gk_content .dj_body .newsbox .right div{width:auto;float:none;}
  .gk_content .dj_body .newsbox .right .news_title{font-size: 20px;line-height: 1.5em;}
  .gk_content .dj_body .newsbox .right .news_describe{font-size: 14px;line-height: 1.5em;margin:10px 0px;color: #B3B3B4;}
  .gk_content .dj_body .newsbox .right img,
  .gk_content .dj_body .newsbox .right .news_w{display: none;;}
  
  .gk_content .news_body .newsbox{flex-direction:column;gap:0;align-items:normal;transition:none;}
  .gk_content .news_body .newsbox .left{flex-direction:column;gap:0;}
  .gk_content .news_body .newsbox .newx_txts{gap:0;}
   .gk_content .news_body .newsbox .right{text-align:left;}
  .gk_content .news_body .newsbox .right p:last-child{float:left;transform:translateY(2px);}
  .gk_content .news_body .newsbox .right p:last-child:after{content:' -';}
  
  .news_detail_content .news_left .content p img{transform:translateX(-2em);}
  .gk_content .dj_body .newsbox{gap:1em; transition:none;}
  .gk_content .dj_body .newsbox .right{width:calc(100% - 1em - 60px)}
  .gk_content .dj_body .newsbox .right div{width:auto;}
  .gk_content .body{padding-bottom:0;}
  .dh_content .title{margin-bottom:5vw;}
  .dh_content .body .k:last-child{margin-bottom:0vw;}
  .lh .lhcounty .sixbox{padding-top:0;padding-bottom:5vw;gap:1.5vw;justify-content:space-between;}
  .lh .lhcounty .sixbox:after{content:'';display:block; width:calc(33.33% - 1vw);}
  .lh .lhcounty .title .lhcn{max-width:40%;opacity:0.2;}
  
  .gongyiImgBox{gap:2rem;}
  .gongyiImgBox img{width:calc(50% - 1rem);}

}
