﻿html {
  margin: 0 auto;
  max-width: 640px;
  font-size: 16px;
  background-color: #333;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul,
li,
form,
button,
input,
textarea,
th,
td,
a {
  margin: 0;
  padding: 0;
}
body {
  padding-bottom: 1px;
  padding-bottom: calc(1px + constant(safe-area-inset-bottom));
  padding-bottom: calc(1px + env(safe-area-inset-bottom));
  font-family: 'PingFang SC', -apple-system-font, Helvetica, Arial, 'Microsoft YaHei';
  font-size: 16px;
  color: #404040;
  background: #fafafa;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  word-break: break-all;
}
body,
div,
p,
span,
i,
en,
header,
ul,
li,
ol,
footer,
nav,
section,
h1,
figure {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #8d8a8a;
}
ul,
li,
ol {
  list-style: none;
}
.btn_chat {
  text-align: center;
}
.btn_chat a {
  display: block;
  margin: 1em auto;
  width: 50%;
  height: 3em;
  line-height: 3em;
  border-radius: 2em;
  font-size: 1em;
  background-color: #116655;
  color: #fff;
  text-align: center;
  border: 1px solid #d6d6d6;
  text-decoration: none;
}
body {
  background-color: #f9f9f9;
}
.container {
  width: 100%;
  min-width: 320px;
  max-width: 640px;
  margin: 0 auto;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.clamp {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  white-space: normal;
  -webkit-box-orient: vertical;
}
.clamp1 {
  -webkit-line-clamp: 1;
}
.clamp2 {
  -webkit-line-clamp: 2;
}
.clamp3 {
  -webkit-line-clamp: 3;
}
/*-- Header Part Starts Here --*/
.header {
  position: relative;
  background-color: #fff;
  z-index: 99;
  -webkit-box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 56px;
}
.logo {
  margin-left: 1em;
}
.logo a {
  display: block;
}
.logo img {
  width: auto;
  height: 36px;
}
.logo h1 {
  font-family: 'PT Sans Narrow', sans-serif;
  color: #116655;
  font-size: 2em;
}
.menu-ph {
  cursor: pointer;
  width: 40px;
  text-align: center;
}
.menu-ph .point {
  display: inline-block;
  width: 28px;
  height: 22px;
  /* margin-top: 10px; */
  position: relative;
}
.menu-ph .point:hover .navbtn,
.menu-ph .point:hover .navbtn::after,
.menu-ph .point:hover .navbtn::before {
  width: 28px;
}
.menu-ph .navbtn {
  position: absolute;
  top: 10px;
  right: 0;
  display: inline-block;
  width: 22px;
  height: 2px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: #116655;
}
.menu-ph .navbtn::after,
.menu-ph .navbtn::before {
  position: absolute;
  right: 0;
  display: inline-block;
  width: 28px;
  height: 2px;
  content: '';
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: #116655;
}
.menu-ph .navbtn::after {
  top: -11px;
}
.menu-ph .navbtn::before {
  top: 10px;
}
.menu-ph .point.active .navbtn {
  background: transparent;
}
.menu-ph .point.active .navbtn::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
}
.menu-ph .point.active .navbtn::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0px;
}
.top-menu {
  display: none;
  width: 100%;
  position: absolute;
  top: 55px;
  background-color: #fff;
}
.top-menu ul li {
  line-height: 3em;
  border-bottom: 1px solid #e5e5e5;
}
.top-menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.45em 1em 0 1em;
  color: #686767;
  font-weight: bold;
}
.top-menu ul li.active a,
.top-menu ul li a:hover {
  color: #116655;
}
.bottom-menu {
  background-color: #000000;
  opacity: 0.5;
  height: 100vh;
}
.top-menu ul li a i {
  font-style: normal;
}
.footer {
  margin-bottom: -1px;
  background-color: #434343;
  padding: 1em 0.2em;
  text-align: center;
  font-size: 0.8em;
  line-height: 1.9em;
}
.footer,
.footer a {
  color: #d4d1d1;
}
.fixed-bottom {
  position: fixed;
  bottom: 0;
  z-index: 99;
  margin: 0 auto;
  padding-bottom: constant(safe-area-inset-bottom);
  /* iPhone X 兼容，把可交互的部分渲染到安全区域内*/
  padding-bottom: env(safe-area-inset-bottom);
  width: 100%;
  max-width: 640px;
}
.fixed-bottom .bar {
  width: 100%;
  font-size: 0.9em;
  height: 3.5em;
}
.fixed-bottom .f_l,
.fixed-bottom .f_c,
.fixed-bottom .f_r {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.3%;
          flex: 1 1 33.3%;
  height: 3.5em;
  line-height: 3.5em;
  text-align: center;
  color: #fff;
}
.fixed-bottom .f_l i,
.fixed-bottom .f_c i,
.fixed-bottom .f_r i {
  vertical-align: -webkit-baseline-middle;
  padding: 0.3em 0.7em;
  margin-right: 0.2em;
}
.fixed-bottom .f_l {
  background-color: #64569d;
}
.fixed-bottom .f_l i {
  background: url('../images/bg6.gif') no-repeat;
  background-size: 100%;
}
.fixed-bottom .f_c {
  background-color: #2ea7e0;
  position: relative;
}
.fixed-bottom .f_c i {
  background: url('../images/b_ico_c.png') no-repeat;
  background-size: 100%;
}
.fixed-bottom .f_r {
  background-color: #f29950;
  position: relative;
}
.fixed-bottom .f_r i {
  background: url('../images/b_ico_l.png') no-repeat;
  background-size: 100%;
}
.fixed-bottom .f_c .sp3 {
  font-size: 0.9em;
  position: absolute;
  background-color: #f31919;
  height: 1.2em;
  padding: 0 0.3em;
  border-radius: 1em;
  color: #fff;
  line-height: 1.2em;
  font-style: normal;
  top: 0.3em;
  z-index: 1;
  right: 0.2em;
}
.wh35em {
  padding-bottom: constant(safe-area-inset-bottom);
  /* iPhone X 兼容，把可交互的部分渲染到安全区域内*/
  padding-bottom: env(safe-area-inset-bottom);
  height: 3.5em;
  font-size: 0.9em;
}
.source {
  color: #c0c4cc;
  font-size: 0.9rem;
  margin: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.source .user-name {
  text-align: left;
}
.source .user-other span {
  padding-right: 0.5rem;
}
.source p a {
  color: #555ba6;
}
.shenming {
  border: 1px solid #eee;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #7d7d7d;
}
.shenming div {
  text-align: center !important;
  margin-bottom: 0.3rem;
  line-height: 1.5rem;
  font-size: 1rem;
}
.shenming span {
  font-size: 0.9rem;
}
@media (max-width: 480px) {
  .source p {
    width: 100%;
  }
  .source .user-name {
    margin-bottom: 0.5rem;
  }
}
.bannerBox {
  position: relative;
  margin-bottom: 0.5em;
  width: 100%;
  overflow: hidden;
}
.bannerBox .swiper-slide {
  width: 100%;
  height: 320px;
}
.bannerBox a {
  display: block;
  width: 100%;
  height: 100%;
}
.bannerBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannerBox .swiper-pagination {
  font-size: 0;
}
.bannerBox .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  font-size: 0;
  background: #fff;
  border-radius: 100%;
  opacity: 1;
}
.bannerBox .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #116655;
}
@media screen and (max-width: 500px) {
  .bannerBox .swiper-slide {
    height: 190px;
  }
}
.index-box {
  padding-top: 1em;
  padding-bottom: 2em;
  background-color: #fff;
  margin-top: 0.7em;
}
.index-box .hd {
  position: relative;
  overflow: hidden;
  font-size: 1.3em;
  text-align: center;
  margin: 1em 0.5em;
  display: block;
}
.index-box .hd .title {
  font-size: 1.5em;
  font-family: 'TitilliumWeb-Bold';
  text-align: center;
  margin-bottom: 1em;
}
.index-box .hd .mod_w1 {
  display: inline-block;
}
.index-box .hd .mod_w1 a {
  font-weight: bold;
}
.index-box .hd .mod_w1 a,
.index-box .hd .bdcolor {
  color: #116655;
}
.index-box .hd .mod_line1.left {
  right: 70%;
}
.index-box .hd .mod_line1.right {
  left: 70%;
}
.index-box .hd .mod_line1 {
  position: absolute;
  top: 48%;
  width: 1300px;
  height: 0;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}
.news-list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #525c65;
  margin: 0.7em;
}
.news-list li {
  width: 100%;
  border-bottom: 1px solid #eee;
  padding: 1em 0;
}
.news-list li:first-child {
  border-top: 1px solid #eee;
}
.news-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-list .pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31%;
          flex: 0 0 31%;
  display: block;
  width: 31%;
  height: 6em;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-list .con {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 68%;
          flex: 1 1 68%;
  padding-right: 1em;
  height: auto !important;
  width: 68%;
  position: relative;
}
.news-list .title {
  margin-bottom: 0.5em;
  max-width: 100%;
  height: 1.25em;
  line-height: 1.25em;
  font-size: 1.05em !important;
  font-weight: 500;
  color: #222222;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.news-list p {
  text-align: justify;
  font-size: 0.95em;
}
.news-list .basic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.7em;
  font-size: 0.8em;
  color: #999;
}
.bottom-more {
  margin-top: 2em;
  text-align: center;
}
.bottom-more a {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  padding: 0.5em 4em;
  text-align: center;
  color: #a1a1a1;
}
.bottom-more a:hover {
  background-color: #116655;
  border: 1px solid #116655;
  color: #fff;
}
.news2-list li {
  background-color: #fff !important;
}
.news2-list li .grid-item-content {
  padding-left: 0;
  padding-right: 0;
}
.news3-box {
  padding-top: 1em;
  background-color: #ffffff;
  padding-bottom: 2em;
  margin-top: 0.5em;
}
.news3-box .title a {
  color: #116655;
}
.news3-box .info {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news3-box .new-list {
  width: 100%;
  background-color: #fafafa;
  padding: 0 0.7em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.news3-box .info-list-each {
  padding-bottom: 1.5em;
  padding-top: 1.5em;
  border-bottom: 1px dashed #c7c7c7;
}
.news3-box .info-list-each:last-child {
  border: none;
}
.news3-box .info-list-each .hos-title {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #222222;
}
.news3-box .info-list-each p {
  color: #999999;
  font-size: 0.95em;
}
body {
  background-color: #f4f4f4;
}
em {
  font-style: normal;
}
table,
table tr {
  max-width: 100%;
}
table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0 auto;
  width: 80%;
  color: #333;
  text-align: center;
}
table tr {
  line-height: 2.5rem;
  height: 2.5rem !important;
}
table tr td {
  border: 1px solid #ccc;
}
table tr:nth-child(odd) {
  background: #f5f5f5;
}
.breadcrumb {
  padding: 0.8em 0 0.8em 0.5em;
  color: #8d8a8a;
  font-size: 0.9em;
}
.breadcrumb a {
  margin-left: 0.2em;
  margin-right: 0.2em;
}
.listBox {
  margin-bottom: 0.5em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.listBox section,
.listBox aside {
  background-color: #fff;
}
.listBox .topTitle {
  padding-bottom: 1em;
  border-bottom: 1px solid #f4f4f4;
  padding: 1em;
}
.listBox .topTitle em {
  border-right: 1px solid #f4f4f4;
  padding-right: 0.5em;
  margin-right: 0.5em;
}
.listBox .topTitle span {
  font-size: 0.9em;
  border-bottom: 1px solid #116655;
  padding-bottom: 0.2em;
}
.listBox section {
  width: 100%;
  padding-bottom: 1em;
}
.listBox .articleBox {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1em 0.7em;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.listBox .articleBox:hover,
.hotBox ul li:hover {
  -webkit-box-shadow: 0 5px 15px #ccc;
          box-shadow: 0 5px 15px #ccc;
  -webkit-transition: translate3d(0, -2px, 0);
  transition: translate3d(0, -2px, 0);
}
.articleBox a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.articleBox .pic {
  max-width: 180px;
  width: 30%;
}
.articleBox .pic img {
  width: 100%;
  height: 7em;
  -o-object-fit: cover;
     object-fit: cover;
}
.articleBox .con {
  padding-left: 1em;
  width: 70%;
  color: #525c65;
  position: relative;
}
.articleBox .con h3 {
  /* display: block; */
  font-size: 1.05em;
  margin-bottom: 0.8em;
  color: rgba(34, 34, 34, 0.8);
  font-weight: 600;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.articleBox .con p {
  font-size: 0.95em;
}
.articleBox .con .basic {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.9em;
}
.articleBox .con .basic span {
  margin-right: 1em;
  min-width: 8em;
}
.pagesize {
  text-align: center;
}
.pagesize li {
  display: inline-block;
  margin-top: 1em;
  padding: 0.3em;
}
.pagesize li.active span {
  color: #116655;
  font-weight: bold;
}
.listBox aside {
  width: 100%;
  margin-top: 0.5em;
}
.hotBox ul li {
  padding: 1em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.hotBox ul li:last-child {
  border-bottom: none;
}
.hotBox .hotLeft {
  max-width: 180px;
  width: 27%;
  height: 4.5em;
  overflow: hidden;
}
.hotBox .hotLeft img {
  width: 100%;
  height: 4.5em;
  -o-object-fit: cover;
     object-fit: cover;
}
.hotBox .hotRight {
  width: 70%;
  position: relative;
}
.hotBox .hotRight t3 {
  font-size: 0.95em;
}
.hotBox .hotRight t3 a {
  color: rgba(10, 9, 9, 0.8);
}
.hotBox .hotRight span {
  position: absolute;
  bottom: 0;
  font-size: 0.9em;
}
.article {
  padding: 1.5em 1em;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.article h1 {
  font-size: 1.2em;
  margin-bottom: 0.7em;
  text-align: center;
  font-weight: normal;
}
.article .article-info {
  text-align: center;
  font-size: 0.8em;
  color: #ccc;
  margin-bottom: 1em;
  border: 1px dashed #dbdbdb;
  padding: 0.5em 0;
}
.news-zx-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 15px 0;
}
.news-zx-row li {
  border-radius: 7px;
  width: 30%;
  line-height: 30px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.news-zx-row li:first-child {
  background-color: #629cff;
}
.news-zx-row li:nth-child(2) {
  background-color: #f93886;
}
.news-zx-row li:nth-child(3) {
  background-color: #2ea7e0;
}
.article-article {
  line-height: 1.7em;
  font-size: 0.95em;
  color: #555;
}
.article-article img {
  display: block;
  max-width: 500px !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}
.article-article h2,
.article-article h3,
.article-article h4 {
  margin-top: 1em;
  margin-bottom: 1em;
  color: #333;
  font-weight: 600;
}
.article-article h2 {
  font-size: 1.3em;
}
.article-article h3 {
  font-size: 1.1em;
}
.article-article p,
.article-article div {
  margin-bottom: 0.5em;
}
.article-article p:last-child,
.article-article div:last-child {
  margin-bottom: 0.2em;
}
.article-article p,
.article-article div {
  margin-bottom: 0.5em;
  text-align: justify;
}
.post-copyright {
  border: 1px solid #ddd;
  position: relative;
  font-size: 0.95em;
  line-height: 1.7em;
  padding: 1em;
  color: #aaa;
  text-align: left;
  margin: 2em 0;
}
.post-copyright .zxBtn {
  color: #116655;
}
.post-copyright .mzsm_title {
  position: absolute;
  line-height: 20px;
  width: 10em;
  background-color: #fff;
  color: #818181;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-weight: bold;
  top: -2px;
  border-radius: 10px 10px 0 0;
  z-index: 1;
}
.art_other {
  margin-top: 1em;
  line-height: 2em;
  color: #8d8a8a;
  font-size: 0.95em;
}
.art_other a:hover {
  color: #116655;
}
.base-news {
  margin-top: 1em;
}
.base-news .blocktitle {
  padding: 0.7em;
  display: block;
  background-color: #eee;
}
.base-news ul {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px #eee dashed;
  padding-bottom: 1em;
}
.base-news ul li {
  margin-top: 0.9em;
  padding-top: 0.9em;
  width: 100%;
  font-size: 0.95em;
  border-top: 1px #eee dashed;
}
.base-news ul li:first-child {
  border-top: none;
}
.base-news ul li a:hover {
  color: #116655;
}
.blocktitle {
  line-height: 2em;
  color: #ccc;
  position: relative;
  font-weight: bold;
}
.blocktitle .dhidden {
  color: #817f7f;
}
.dhidden {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  display: block;
  text-align: center;
}
.blocktitle i.l,
.blocktitle i.r {
  position: absolute;
  left: 30%;
  top: 50%;
  margin-top: -16px;
  width: 6px;
  height: 25px;
  border-radius: 4px;
  display: block;
  -webkit-transform: rotate(36deg);
          transform: rotate(36deg);
  color: #ccc;
  background: #ccc;
}
.blocktitle i.r {
  left: auto;
  right: 30%;
}
.blocktitle i.l i,
.blocktitle i.r {
  background: #eee;
}
.blocktitle i.l i,
.blocktitle i.r i {
  left: 16px;
  top: -10px;
  margin: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.blocktitle em.l {
  opacity: 0.7;
}
.blocktitle em.r {
  left: 65%;
}
.blocktitle em.l,
.blocktitle em.r {
  position: absolute;
  right: 65%;
  top: 50%;
  width: 50px;
  border: 1px solid #ccc;
  margin-top: -2px;
}
