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

Primary style

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family:  Helvetica, Arial, "Microsoft YaHei", PingFang SC,-apple-system,"Segoe UI", "Lucida Grande", 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:  "Microsoft YaHei", PingFang SC,-apple-system, FreeSans, "Segoe UI", "Lucida Grande", Helvetica, Arial,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: 10;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background:#fff;
  -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: 11px 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: 60px;
  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: 2px;
  width: 24px;
  background: #666;
  border-radius: 1px;
}
.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: #666;
}
.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;
  border-radius: 20px;
}
.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: 40px;
  border: none;
  border-radius: 20px;
  -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: 9;
  left: 0;
  top: 0;
  width: 100%;
  padding: 60px 0 0;
  background-color: #2f3b7f;
  visibility: hidden;
  opacity: 0;
  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 #9aa7b750;;
}
.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: #0a113660;
  padding:0.8em 0;
}
.has-children ul li{
    border-bottom:1px solid #ffffff10;
}
.has-children ul li:last-child{
    border:0;
}
.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;
}
.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) {
    
    #hhintro{margin-bottom:5%;margin-top:5%;text-align:center;flex-wrap:wrap;}
    #hhintro img{width:100%;}
    #hhintro .intro H2{font-size:24px;}
    #fcimg .fcbox.big{width:100%;}
    #fcimg .fcbox.midd{width:50%;}
    #fcimg .fcbox.smm{width:33.33333%;}
    #fcimg{margin-bottom:5%;}
    #fcimg span{height:36px;line-height:36px;font-size:13px;}
    #hhintro .intro{padding:0 1.5em 3em 1.5em;}
    #hhintro .viewmore{right:1.5em;bottom:1.5em;}
    #fc_years a{font-size:18px;padding: 10px 25px;}

  .banner{
    margin-top:60px;
    position:relative;
    width:100%;
    overflow: hidden;
    min-height: 26vw;
  }
  .banner.about{
      min-height: 30vw;
  }
  .banner.tese{
      min-height: 33vw;
  }
  .index-banner{
    margin-top: 60px;
      
  }
  .absoluteBox{z-index:7;}
  .banner img{
      min-height:100%;
      min-width:100%;
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      object-fit: cover;
  }
  .rightlist .kefu{
      display: none;
  }
  .rightlist .kefu2{
      display: block;
  }
  .banner.index{

  }

  .box_1334{
    width:100%;
  }
  .indexfourbox {
      
  }
  .indexfourbox .jzdbox{
    width:90%;
    position: relative;
    margin:0px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
  }
  .indexfourbox .jzdbox a{
      width:47%;
      margin-bottom:5vw;
  }
  .indexfourbox .jzdbox .cell{
    width:auto;
    margin:0px;
    margin-bottom: 4%;
    padding-top: 20px;
    border-radius: 10px;
    padding-left:5vw;
    padding-right:3vw;
  }
  .indexfourbox .jzdbox .cell .iconbox{
      scale:0.5;
      display: inline-block;
      margin-bottom:15px;
  }
  .indexfourbox .jzdbox div .title{
    margin-top: 10px;
  }
  .indexfourbox .jzdbox div p {
    font-size: 12px;
    color:#ccc;
  }
  .indexfourbox .jzdbox div p.content{
    color:#999;
  }
  .indexfourbox .jzdbox div .knowmore{
    bottom: 3%;
  }
  .indexfourbox .jzdbox .cell{
      height:100%;
      padding-bottom:3vw;
  }

  footer .one{
    width:100%;
  }
  footer .one .content span{
    font-size: 36px;
  }
  footer .one .content .zxdh{
    margin-top: 30px;
  }
  footer iframe{
    width:90vw;
    height:55vw;
    margin:15px 5vw;
    margin-bottom:0;
    float:none;
    position:absolute;
    top:-100px;
  }
  footer .one .content{
    width:92%;
    margin:15px 4%;
    float:none;
  }

  footer .three{
    width:96%;
    margin:15px 2%;
    float:none;
  }
  footer .three .evm{
    width:100%;
    text-align: center;
    margin-bottom: 5%;
  }
  footer .title{
    width:96%;
    margin:25px 0% 10px 4%;
    display: none;;
  }
  footer .icp{
    width:92%;
    margin:5% 2% 0px 5%;
  }
  footer .icp p{
    line-height: 1.5em;
    padding:2%;
    color:#ffffff50;
  }

  /*yygk.php*/
  .nylist,.rczplist{
    height:auto;
    padding:1% 2%;
  }
  .nylist .box_1334,
  .rczplist .box_1334{
    
  }
  .nylist .listtitle,
  .nylist .listtitle_jyzn,
  .rczplist .listtitle_ylfw,
  .nylist .listtitle_ylfw{
    display: inline;
    float:none;
    background: none;;
  }
  .nylist .listtitle a,
  .nylist .listtitle_jyzn a,
  .rczplist .listtitle_ylfw a,
  .nylist .listtitle_ylfw a{
    font-size: 16px;
    display: inline-block;
    padding:3px 5px;
    border-radius: 3px;
    line-height:1.2em;
    margin:6px 5px;
  }
  .nylist .on a,
  .rczplist .on a{
    color:#fff;
    background:#444f96;
  }

  .nycontent{
    padding-top: 3px;
    padding-bottom: 0px;
  }
  .gbluebg{
      margin-top:-150px;
      padding-top:150px;
  }
  
  .gbluebg .dataShow{
      margin-top:3rem;
      column-gap:4rem;
  }

  .yyjj h5{
    padding-top: 20px;
    margin-bottom: 20px;
  }
  .jxwh{
    padding-top: 0px;;
  }

  .jxwh .left,
  .jxwh .sm .four,
  .jxwh .sm .right{
    float:none;
    width:96%;
    margin:0px 2% 3% 2%;
  }
  .jxwh .sm img{
    width:100%;
    height:auto;
  }

  .zjlist,
  .xjsbox,
  .newsdetail,
  .kypx,
  .p88,
  {
    width:96%;
    margin:0px 2%;
    padding-bottom: 50px;
  }
  .type{
    zoom:0.8;
    clear: both;
    margin: 25px 0px 20px 0px;
  }
  .xjsbox .one,
  .ryrz img{
    width:45%;
    margin:0px 2% 5% 2%;
  }
  .ryrz img{
    height:105px;
  }
  .zjlist .zjbox{
    width:43%;
    margin:0px 2% 5% 2%;
    height:280px;
  }
  .zjlist .zjbox img
  {
    height:auto;
  }
  .xjsbox .one img{
    height:100px;
  }
  .xjsbox .one .title{
    margin-top: 15px;
  }
  .xjsbox .one .title h5{
    width:auto;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: normal;
  }
  .zjlist .zjbox h5
  {
    font-size: 14px;
    line-height: 1.5em;
    margin-top: 10px;
  }
  .zjlist .zjbox .ckxq,
  .nycontent .news_box .right .ckxq,
  .csjz .box .right .ckxq{
    font-size: 14px;
    height:32px;
    line-height: 32px;
    margin-top: 10px;
    width:100px;
  }

  .newsdetail .title{
    line-height: 1.5em;
    font-size: 24px;
    padding:10px;
  }
  .ryrz table{
    margin:3vw 0vw;
    width:auto;
  }
  .ryrz table td{
    font-size: 14px;
    text-align: left;
    width:48%;
    padding-left:0.9%;
    line-height: 1.5em;
  }

  .nycontent .kypx h5{
    font-size: 24px;
    line-height: 1.5em;
  }
  .nycontent .kypx .span{
    font-size: 20px;
    line-height: 1.5em;
  }
  .nycontent .kypx .imgbox .left,
  .nycontent .kypx .imgbox .right{
    padding:0;
    height:auto;
    width:100%;
  }
  .nycontent .kypx .ls p{
    font-size: 14px;
  }
  .nycontent .kypx .ls .left,
  .nycontent .kypx .ls .right{
    width:32%;
    margin-right: 1.9%;
  }
  .nycontent .kypx .ls .right{
    margin-right: 0;
  }

  .content_right{
    display: none;
  }

  /*ylfw*/
  .nycontent .zzn,
  .nycontent .xxbk,
  .nycontent .xzwk,
  .nycontent .yxk,
  .nycontent .zxkf,
  .nycontent .yydh,
  .nycontent .lxwm,
  .nycontent .csjz,
  .nycontent .yplc,
  .nycontent .xinwen,
  .nycontent .mzk{padding:10px 0px;}
  .nycontent .content .left,
  .nycontent .content .right,
  .nycontent .zzn .p88 .left,
  .nycontent .zzn .p88 .right,
  .nycontent .xxbk .left,
  .nycontent .xxbk .right,
  .nycontent .mzk .left,
  .nycontent .mzk .right,
  .nycontent .yxk .left,
  .nycontent .yxk .right,
  .nycontent .xzwk .left,
  .nycontent .lxwm .left,
  .nycontent .xzwk .right{
    width:100%;
    float:none;
    margin:0%;
  }
  #content-left{
    width:100%;
    margin:0 auto;
    padding:10px 0px 25px 0px;
  }
  .nycontent .content .left{
    max-width: 65%;
  }
  .nycontent img{
    max-width: 100%;
    height:auto;
  }
  .hh_header img{
      max-width:40%;
  }
  .nycontent  .mid{
    position: static;
    transform: none;
    margin-bottom: 2em;
  }
  .nycontent .zzn .p88 .zznbox,
  .nycontent .xxbk .flow,
  .nycontent .mzk .flow,
  .nycontent .yxk .flow,
  .nycontent .xzwk .flow{
    height:auto;
  }
  .lxwm .left span{
    margin-right: 30px;;
  }
  .lxwm iframe{
    width:90%;
    height:300px;
    margin:0px 5%;
  }

  .nycontent .lxwm .left{
    width:90%;
    margin:0px 5%;
  }
  .nycontent .hh_content p img{
      transform:none;
  }
  .nycontent .hh_content p{
      line-height:1.5em;
  }
  .hh_header,
  .hh_content{
      width:90vw;
      margin-left:5vw;
  }
    
.hh_header{
    flex-direction: column;
    gap:3vw;
    align-items: center;
}
.hh_header .header_co{
    gap:3vw;
}
.hh_header img{
    max-width:65% !important;
}
.hh_header .header_co h1{
    font-size:32px;
}
.hh_header .header_co ul{
    gap:2vw;
}
.hh_content h3{
    font-size:24px;
}
  .newsdetail .content{
    margin:0px;
    padding: 3vw 0px;
    width: auto;
  }
  .newsdetail .content p{
    margin-bottom: 1em;
    width:auto;
  }
  
  .newsdetail video,
  .newsdetail img{
      max-width: 100% !important;
      height:auto !important;
  }

  .newsdetail {
    margin-top: 20px;;
  }
  .csjz .box,
  .nycontent .news_box{
    height:auto;
    margin-bottom: 4%;
  }
  .nycontent .news_box{
    height:auto;
  }
  .nycontent .news_box .viewmore{
      display: none;
  }
  .csjz .box .left,
  .nycontent .news_box img{
    width: 35%;
    margin-right: 2%;
  }
  .csjz .box .left img,
  .nycontent .news_box img{
    height:auto;
    margin-top: 10px;
  }
  .nycontent .news_box .nimgbox{
      width:45%;
  }
  .nycontent .news_box .right .sj{
      margin:0.8em 0;
  }
  .nycontent .news_box .right .blueline{
      width:25vw;
      margin:10px 0px 10px;
  }
  .nycontent .news_box .right .viewmore{
      margin:0;
  }
  .csjz .box .right,
  .nycontent .news_box .right{
    margin-top: 0;
    margin-left:0;
  }
  .nycontent .news_box .right{
      padding:1em;
  }
  .csjz .box .right h5,
  .nycontent .news_box .right h5{
    font-size: 18px;
    line-height: 1.3em;
  }
  .csjz .box .right .span{
    font-size: 14px;
  }
  .csjz .box .right p,
  .nycontent .news_box .right p{
    display: none;
  }
  .csjz .box .right .blueline{
    margin:10px 0px;
  }
  .page_list{
    width:96%;
    margin-top: 10%;
  }
  .page a{
    font-size: 14px;
    margin:auto 6px;
    padding:5px 8px;
  }

  .nycontent .content div.left {
    width: 85%!important;
  }
  .nycontent .content div.right{
    width: 100%!important;
  }

  .nycontent .yplc .box{
    width:30%;
    margin-bottom: 20px;
    height:60px;
    position: relative;
    text-align: center;
  }
  .nycontent .yplc .box p{
    font-size: 14px;
    display: inline-block;
    position: absolute;
    top:50%;
    transform:translateY(-50%);
    left:7%;

  }

  .nycontent .yplc .xx{
    height:auto;
    border:0;
    padding:0;
  }
  .nycontent .yplc .xx .left,
  .nycontent .yplc .xx .right{
    width:auto;
    float:none;
    margin:20px 0px;
  }

  .nycontent .news_box .right .blueline{
    background-color: #fff;;
  }

  .newsdetail .content img{
    margin:10px 0px;
    width: 100% !important;
  }
  .newsdetail .content p{
    text-indent: 0;
  }

  .newsdetail{
    border:0;
  }


}
