@charset "UTF-8";
body {
  font: 15px/1 "微软雅黑";
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  width: 100% !important;
}

@font-face {
  body {
    font-family: 'FontAwesome';
    src: url("../fonts/fontawesome-webfont.ttf");
    font-weight: normal;
    font-style: normal;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
}

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

.show {
  display: block;
}

.hide {
  display: none;
}

ul,
li,
ol {
  list-style: none;
}

.flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

img {
  display: block;
}

.main {
  width: 100%;
}

.content {
  width: 1200px;
  margin: 0 auto;
}

.b1 {
  border: 1px solid red;
}

.show {
  display: block;
}

.hide {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.m-l-5 {
  margin-left: 5px;
}

.ellip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

.font_12 {
  font-size: 12px;
}

.font_16 {
  font-size: 16px !important;
}

.font_15 {
  font-size: 15px !important;
}

.font_18 {
  font-size: 18px !important;
}

.font_20 {
  font-size: 20px;
}

.font_22 {
  font-size: 22px;
}

.font_24 {
  font-size: 24px;
}

.font_36 {
  font-size: 36px;
}

.font_32 {
  font-size: 32px;
}

.font_600 {
  font-weight: 600;
}

input::-webkit-input-placeholder {
  color: #999;
}

input::-moz-placeholder {
  color: #999;
}

input:-moz-placeholder {
  color: #999;
}

input:-ms-input-placeholder {
  color: #999;
}

.center {
  text-align: center;
}

/* 动画 */
@-webkit-keyframes topUp {
  0% {
    top: 120px;
  }
  50% {
    top: 60px;
  }
  100% {
    top: 0;
  }
}
@keyframes topUp {
  0% {
    top: 120px;
  }
  50% {
    top: 60px;
  }
  100% {
    top: 0;
  }
}

.topUp {
  -webkit-animation-name: topUp;
          animation-name: topUp;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes topDown {
  0% {
    top: 0;
  }
  50% {
    top: 60px;
  }
  100% {
    top: 120px;
  }
}

@keyframes topDown {
  0% {
    top: 0;
  }
  50% {
    top: 60px;
  }
  100% {
    top: 120px;
  }
}

.topDown {
  -webkit-animation-name: topDown;
          animation-name: topDown;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes bottomUp {
  0% {
    bottom: -60px;
  }
  50% {
    bottom: -30px;
  }
  100% {
    bottom: 0;
  }
}

@keyframes bottomUp {
  0% {
    bottom: -60px;
  }
  50% {
    bottom: -30px;
  }
  100% {
    bottom: 0;
  }
}

.bottomUp {
  -webkit-animation-name: bottomUp;
          animation-name: bottomUp;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes bottomDown {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -30px;
  }
  100% {
    bottom: -60px;
  }
}

@keyframes bottomDown {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -30px;
  }
  100% {
    bottom: -60px;
  }
}

.bottomDown {
  -webkit-animation-name: bottomDown;
          animation-name: bottomDown;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes flexShow {
  0% {
    -webkit-box-flex: 1;
            flex: 1;
  }
  25% {
    -webkit-box-flex: 2;
            flex: 2;
  }
  50% {
    -webkit-box-flex: 3;
            flex: 3;
  }
  75% {
    -webkit-box-flex: 4;
            flex: 4;
  }
  100% {
    -webkit-box-flex: 5;
            flex: 5;
  }
}

@keyframes flexShow {
  0% {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  25% {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  50% {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  75% {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
  }
  100% {
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
  }
}

.flexShow {
  -webkit-animation-name: flexShow;
          animation-name: flexShow;
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes flexHide {
  0% {
    -webkit-box-flex: 5;
            flex: 5;
  }
  25% {
    -webkit-box-flex: 4;
            flex: 4;
  }
  50% {
    -webkit-box-flex: 3;
            flex: 3;
  }
  75% {
    -webkit-box-flex: 2;
            flex: 2;
  }
  100% {
    -webkit-box-flex: 1;
            flex: 1;
  }
}

@keyframes flexHide {
  0% {
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
  }
  25% {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
  }
  50% {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  75% {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  100% {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.flexHide {
  -webkit-animation-name: flexHide;
          animation-name: flexHide;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes progress1 {
  0% {
    width: 0;
  }
  25% {
    width: 25%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 75%;
  }
  100% {
    width: 100%;
  }
}

@keyframes progress1 {
  0% {
    width: 0;
  }
  25% {
    width: 25%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 75%;
  }
  100% {
    width: 100%;
  }
}

.progress1 {
  -webkit-animation-name: progress1;
          animation-name: progress1;
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes progress2 {
  0% {
    width: 100%;
  }
  25% {
    width: 75%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 25%;
  }
  100% {
    width: 0;
  }
}

@keyframes progress2 {
  0% {
    width: 100%;
  }
  25% {
    width: 75%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 25%;
  }
  100% {
    width: 0;
  }
}

.progress2 {
  -webkit-animation-name: progress2;
          animation-name: progress2;
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes showUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes showUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.showUp {
  -webkit-animation-name: showUp;
          animation-name: showUp;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

/* 动画 */
@-webkit-keyframes rightLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes rightLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.rightLeft {
  -webkit-animation-name: rightLeft;
          animation-name: rightLeft;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

@-webkit-keyframes leftRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }
}

@keyframes leftRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }
}

.leftRight {
  -webkit-animation-name: leftRight;
          animation-name: leftRight;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

@-webkit-keyframes hideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

@keyframes hideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

.hideDown {
  -webkit-animation-name: hideDown;
          animation-name: hideDown;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes amHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes amHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes amShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes amShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.ppUp {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.amHide {
  -webkit-animation-name: amHide;
          animation-name: amHide;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.amShow {
  -webkit-animation-name: amShow;
          animation-name: amShow;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.hideDown {
  -webkit-animation-name: hideDown;
          animation-name: hideDown;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.rote90 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.rote-90 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.rote45 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px !important;
}

.rote-45 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px !important;
}

.rote270 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.rote-270 {
  -webkit-transform: rotate(-270deg);
          transform: rotate(-270deg);
}

.tabnav_on {
  background-color: #157e3a !important;
  color: #fff !important;
}

.fd_tit {
  margin-top: 30px;
}

.fd_tit img {
  width: 60px;
  margin-top: -10px;
}

.fd_tit div span {
  display: block;
  font-size: 28px;
  margin-left: 5px;
}

.fd_tit div span:nth-child(2) {
  font-size: 16px;
  margin-top: 5px;
  color: #666;
}

.fb_nav {
  margin-top: 20px;
}

.fb_nav a {
  width: 120px;
  height: 45px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #990008;
}

.fb_nav a:hover {
  background-color: #990008;
}

.fb_nav a:hover span {
  color: #fff;
}

.fb_nav a:hover i {
  color: #fff;
}

.fb_nav a span {
  color: #990008;
}

.fb_nav a i {
  font-size: 18px;
  margin-left: 5px;
  color: #990008;
}

/* 公共头部 */
.header_wrap {
  background-color: #fff;
}

.header_wrap .header_box {
  max-width: 1200px;
  margin: 0 auto;
  height: 115px;
  padding: 0 20px;
}

.header_wrap .header_box .logo img {
  width: 85px;
}

.header_wrap .header_box .logo span {
  font-size: 26px;
  margin-left: 25px;
}

.header_wrap .header_box .zhankai {
  display: none;
}

.header_wrap .header_box .head_right .no_login .login,
.header_wrap .header_box .head_right .no_login .register {
  margin-right: 30px;
  font-size: 18px;
}

.header_wrap .header_box .head_right .no_login a:hover {
  color: #990008;
}

.header_wrap .header_box .head_right .longin .username {
  padding: 0 12px;
  border-right: 1px solid #bbb;
}

.header_wrap .header_box .head_right .longin .username img {
  width: 24px;
}

.header_wrap .header_box .head_right .longin .username span {
  margin-left: 6px;
}

.header_wrap .header_box .head_right .longin .username span:hover {
  color: #990008;
}

.header_wrap .header_box .head_right .longin .loginout {
  margin-left: 12px;
}

.header_wrap .header_box .head_right .search_box {
  background-color: #f7f7f7;
  border: 1px solid #bbb;
  padding: 9px 10px;
  border-radius: 20px;
  margin-left: 12px;
}

.header_wrap .header_box .head_right .search_box img {
  width: 15px;
}

.header_wrap .header_box .head_right .search_box input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  outline: none;
  background-color: #f7f7f7;
  padding: 0 5px;
}

.header_wrap .header_box .head_right .search_box span {
  cursor: pointer;
}

.header_wrap .header_box .menu {
  display: none;
}

.navlist_wrap {
  width: 100%;
  height: 80px;
  background-color: #990008;
}

.navlist_wrap .navlist_box {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}

.navlist_wrap .navlist_box .hnav_item {
  display: block;
  position: relative;
  height: 80px;
  line-height: 80px;
  text-align: center;
}

.navlist_wrap .navlist_box .hnav_item:hover .js_aa {
  background-color: #fff;
  color: #990008;
}

.navlist_wrap .navlist_box .hnav_item .js_aa {
  display: inline-block;
  height: 100%;
  padding: 0 24px;
  border: 4px solid transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
}

.navlist_wrap .navlist_box .hnav_item .fadein {
  position: absolute;
  right: 0;
  left: 0;
  top: 79px;
  z-index: 999;
  background-color: #fff;
  border-radius: 5px;
  display: none;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.navlist_wrap .navlist_box .hnav_item .fadein a {
  display: block;
  border-top: 1px solid #D8D8D8;
  text-align: center;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}

.navlist_wrap .navlist_box .hnav_item .fadein a:hover {
  color: #990008;
}

/* 公共底部 */
.pub_bottom_wrap {
  background-color: #353434;
  padding-top: 30px;
}

.pub_bottom_wrap .pub_bottom_box {
  width: 1440px;
  margin: 0 auto;
}

.pub_bottom_wrap .pub_bottom_box .friendly_link span {
  color: #fff;
  margin-right: 15px;
}

.pub_bottom_wrap .pub_bottom_box .friendly_link a {
  color: #aaa;
  margin-right: 15px;
}

.pub_bottom_wrap .pub_bottom_box .friendly_link a:hover {
  color: #fff;
}

.pub_bottom_wrap .pub_bottom_box .bot_con {
  margin-top: 50px;
}

.pub_bottom_wrap .pub_bottom_box .bot_con .bot_con_left {
  color: #bcbaba;
}

.pub_bottom_wrap .pub_bottom_box .bot_con .bot_con_left h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.pub_bottom_wrap .pub_bottom_box .bot_con .bot_con_left p {
  font-size: 16px;
  margin-top: 10px;
}

.pub_bottom_wrap .pub_bottom_box .bot_con .bot_con_right div {
  margin-left: 30px;
}

.pub_bottom_wrap .pub_bottom_box .bot_con .bot_con_right div img {
  width: 120px;
}

.pub_bottom_wrap .pub_bottom_box .bot_con .bot_con_right div p {
  text-align: center;
  margin-top: 10px;
  color: #fff;
}

.pub_bottom_wrap .beian {
  margin-top: 40px;
  background-color: #211f1f;
  text-align: center;
  color: #818181;
  padding: 20px 0;
}

.per_box .per_item {
  border-bottom: 1px solid #ddd;
  padding: 20px;
  display: block;
}

.per_box .per_item .per_item_p1 {
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
}

.per_box .per_item .per_item_p1:hover {
  color: #990008;
}

.per_box .per_item .per_item_p2 {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 15px;
}

.per_box .per_item .per_item_p2:hover {
  color: #990008;
}

.per_box .per_item .per_item_p3 {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

.zixun_item {
  background-color: #fff;
  padding: 15px;
  border: 1px solid #eee;
  position: relative;
  margin-bottom: 10px;
}

.zixun_item .zx_shu {
  position: absolute;
  background: #c40000;
  top: 15px;
  left: -1px;
  width: 5px;
  height: 25px;
  z-index: 2;
}

.zixun_item .quanwen {
  position: absolute;
  bottom: 18px;
  right: -1px;
  z-index: 2;
  background: #c40000;
  color: #fff;
  line-height: 30px;
  padding: 0 12px;
  display: block;
  border-radius: 2px 0 0 2px;
}

.zixun_item .quanwen:hover {
  background-color: #666;
}

.zixun_item .zx_con .zx_con_left {
  max-width: 200px;
  overflow: hidden;
  height: auto;
  position: relative;
  cursor: pointer;
}

.zixun_item .zx_con .zx_con_left img {
  width: 100%;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.zixun_item .zx_con .zx_con_left img:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.zixun_item .zx_con .zx_con_left span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: #fff;
  line-height: 28px;
  padding: 0 10px;
  background: #c40000;
}

.zixun_item .zx_con .zx_con_right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 20px;
}

.zixun_item .zx_con .zx_con_right .ht_p1 {
  color: #555;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.zixun_item .zx_con .zx_con_right .ht_p1:hover {
  color: #c40000;
}

.zixun_item .zx_con .zx_con_right .ht_p2 {
  margin-top: 20px;
  height: 75px;
  line-height: 1.5;
  color: #777;
  font-size: 15px;
}

.zixun_item .zx_con .zx_con_right .liulan {
  margin-top: 10px;
  color: #999;
}

.zixun_item .zx_con .zx_con_right .liulan i {
  margin-left: 8px;
  margin-right: 5px;
}

@media (max-width: 1500px) {
  /* 公共底部 */
  .pub_bottom_wrap {
    background-color: #353434;
    padding-top: 30px;
  }
  .pub_bottom_wrap .pub_bottom_box {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .fd_tit {
    margin-top: 20px;
  }
  .fd_tit img {
    width: 50px;
    margin-top: -5px;
  }
  .fd_tit div span {
    font-size: 20px;
  }
  .fd_tit div span:nth-child(2) {
    font-size: 16px;
  }
  /* 公共头部 */
  .header_wrap .header_box {
    height: 80px;
  }
  .header_wrap .header_box .logo img {
    width: 60px;
  }
  .header_wrap .header_box .logo span {
    font-size: 26px;
    margin-left: 25px;
  }
  .header_wrap .header_box .zhankai {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    padding: 80px 30px 0 30px;
  }
  .header_wrap .header_box .zhankai .zk_box .zk_box_li {
    border-bottom: 1px solid #eee;
    /*padding-bottom: 10px;*/
    padding-top: 10px;
  }
  .header_wrap .header_box .zhankai .zk_box .zk_box_li .zk_box_pp img {
    width: 25px;
  }
  .header_wrap .header_box .zhankai .zk_box .zk_box_li .zk_box_bb {
    padding-left: 5px;
    display: none;
  }
  .header_wrap .header_box .zhankai .zk_box .zk_box_li .zk_box_bb a {
    display: block;
    line-height: 1.8;
  }
  .header_wrap .header_box .zhankai .zk_box .zk_box_li .zk_box_bb a:hover {
    color: #666;
  }
  .header_wrap .header_box .menu {
    display: block;
    width: 30px;
    height: 30px;
  }
  .header_wrap .header_box .menu .three_line {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    padding-top: 2px;
    position: relative;
  }
  .header_wrap .header_box .menu .three_line span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #990008;
    position: absolute;
    z-index: 9999;
  }
  .header_wrap .header_box .menu .three_line .t {
    transition: 0.3s ease;
    top: 0;
  }
  .header_wrap .header_box .menu .three_line .b {
    top: 10px;
  }
  .header_wrap .header_box .menu .three_line .m {
    top: 20px;
    transition: 0.3s ease;
  }
  .navlist_wrap {
    display: none;
  }
  /* 公共底部 */
  .pub_bottom_wrap {
    padding-top: 20px;
  }
  .pub_bottom_wrap .pub_bottom_box {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
  .pub_bottom_wrap .pub_bottom_box .friendly_link {
    flex-wrap: wrap;
  }
  .pub_bottom_wrap .pub_bottom_box .friendly_link span {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .pub_bottom_wrap .pub_bottom_box .friendly_link a {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .pub_bottom_wrap .pub_bottom_box .bot_con {
    margin-top: 30px;
  }
  .pub_bottom_wrap .pub_bottom_box .bot_con .bot_con_left h3 {
    font-size: 16px;
  }
  .pub_bottom_wrap .pub_bottom_box .bot_con .bot_con_left p {
    font-size: 14px;
  }
  .pub_bottom_wrap .pub_bottom_box .bot_con .bot_con_right div {
    margin-left: 20px;
  }
  .pub_bottom_wrap .pub_bottom_box .bot_con .bot_con_right div img {
    width: 100px;
  }
  .pub_bottom_wrap .pub_bottom_box .bot_con .bot_con_right div p {
    font-size: 14px;
  }
  .pub_bottom_wrap .beian {
    padding: 20px;
    line-height: 1.4;
    font-size: 14px;
  }
  .zixun_item .quanwen {
    display: none;
  }
  .zixun_item .zx_con .zx_con_left {
    max-width: 100px;
    width: 200px;
    min-width: 100px;
    height: auto;
  }
  .zixun_item .zx_con .zx_con_left img {
    width: 100%;
  }
  .zixun_item .zx_con .zx_con_left span {
    display: none;
  }
  .zixun_item .zx_con .zx_con_right {
    flex: 1;
    padding: 0 20px;
  }
  .zixun_item .zx_con .zx_con_right .ht_p1 {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }
  .zixun_item .zx_con .zx_con_right .ht_p2 {
    display: none;
  }
  .zixun_item .zx_con .zx_con_right .liulan {
    margin-top: 15px;
  }
}
@media (max-width: 500px) {
  .zixun_item .zx_con .zx_con_left {
    max-width: 80px;
    width: 200px;
    min-width: 80px;
    height: auto;
  }
  .zixun_item .zx_con .zx_con_left img {
    width: 100%;
  }
  .zixun_item .zx_con .zx_con_right {
    padding: 0 10px;
  }
  .zixun_item .zx_con .zx_con_right .ht_p1 {
    font-size: 14px;
  }
  .zixun_item .zx_con .zx_con_right .liulan {
    display: none;
  }
}
/*# sourceMappingURL=public.css.map */