/* é€šç”¨ */
* {
  box-sizing: border-box;
}
html,
body {
  font-family: Microsoft YaHei;
  overflow-x: hidden;
}
body {
  background-color: #daf0ff;
}
a {
  display: inline-block;
  color: inherit;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
a:active,a:focus{
  outline: none !important;
  outline-offset: none !important;
}
a:hover {
  color: #00407f;
}
a:active,
a:hover,
a:focus {
  text-decoration: none;
}
i {
  display: inline-block;
}
.inner {
  position: relative;
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.inner::after {
  content: '';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
@media (max-width: 1400px) {
  .inner {
    width: 100%;
    padding: 0 0.1rem;
  }
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .col-md-l {
    width: 100% !important;
  }
  .col-md-m {
    width: 100% !important;
    margin-top: 0.3rem;
  }
  .col-md-r {
    width: 100% !important;
    margin-top: 0.3rem;
  }
}
.wrap {
  position: relative;
}
/* å¤´éƒ¨header å¼€å§‹ */
.header {
  background: url(../images/banner.png) no-repeat center top;
  background-size: cover;
  position: relative;
}
@media (min-width: 993px) {
  .header {
    height: 500px;
  }
}
.header .header_info {
  padding: 9px 0;
}
.header .header_toolbar .header_wx {
  display: inline-block;
  position: relative;
}
.header .header_toolbar .header_wx .wx_box {
  display: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 30px;
  z-index: 999;
  padding: 14px;
  border: 1px solid #e6e6e6;
  background-color: #ffffff;
}
.header .header_toolbar .header_wx .wx_box img {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}
.header .header_toolbar .header_wx:hover .wx_box {
  display: block;
}
.header .header_toolbar a {
  font-size: 14px;
  font-weight: normal;
  color: #333333;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_toolbar a:hover {
  color: #00407f;
}
.header .header_toolbar .blue {
  width: 74px;
  height: 22px;
  line-height: 22px;
  background-color: #00407f;
  border-radius: 11px;
  color: #fff !important;
  text-align: center;
  margin-right: 5px;
}
@media (max-width: 992px) {
  .header .header_toolbar {
    width: 100%;
    text-align: center;
  }
}
.header .header_main {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .header .header_main {
    padding: 10px 0 40px;
  }
}
@media (max-width: 992px) {
  .header .header_main .inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.header .header_logo {
  width: 400px;
  height: 86px;
  background: url(../images/logo.png) left center no-repeat;
  background-size: contain;
}
.header .header_logo a {
  display: block;
  height: 100%;
}
@media (max-width: 992px) {
  .header .header_logo {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .header .header_right {
    width: 100%;
  }
}
.header .search {
  display: flex;
  justify-content: end;
}
@media (max-width: 992px) {
  .header .search {
    width: 100%;
  }
}
.header .search_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 400px;
  height: 47px;
  background-color: #ffffff;
  border-radius: 4px;
  border: solid 4px rgba(255, 255, 255, 0.35);
}
.header .search_box form {
  width: 100%;
  display:flex;
  align-items:center;

}
.header .search_box input {
  flex:1;
  /* width: -webkit-calc(13%); */
  width: -moz-calc(13%);
  width: calc(100% - 87px);
  height: 100%;
  padding: 0 20px;
  outline: none;
  border: none;
  font-size: 16px;
  font-weight: normal;
  color: #333;
}
.header .search_box button {
  width: 82px;
  height: 36px;
  background-color: #00407f;
  border-radius: 4px;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: normal;
  color: #ffffff;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header .search_box button:hover {
  opacity: 0.7;
}
@media (max-width: 992px) {
  .header .search_box {
    width: 100%;
  }
}
.header .hotwords {
  text-align: right;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .header .hotwords {
    text-align: center;
  }
}
.header .hotwords a {
  font-size: 16px;
  font-weight: normal;
  color: #4d6783;
  margin: 0 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.header .hotwords a:hover {
  color: #00407f;
}
.header .hotwords span {
  font-size: 16px;
  font-weight: normal;
  color: #237edb;
}
.search_box form {
  position: relative;
  width: 100%;
}
#search-results {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  width: 100%;
  /* max-height: 200px; */
  overflow-y: auto;
  border: 1px solid #ccc;
  border-top: none;
  background-color: #fff;
  display: none;
  border-radius: 5px;
}
.result-item {
  padding: 8px;
  cursor: pointer;
}
.result-item:hover {
  background-color: #f0f0f0;
}
/* å¤´éƒ¨header ç»“æŸ */
.nav {
  margin-top: -160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}
.nav > li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.nav > li:nth-child(2) {
  min-width: 220px;
}
.nav > li > a {
  display: block;
  line-height: 48px;
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  color: #00407f;
  padding:0;
}
.nav > li i {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-image: url(../images/nav_icons.png);
  transition: all 0.3s;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}
.nav > li i.s1 {
  background-position: 0px 0px;
}
.nav > li i.s2 {
  background-position: -180px 0px;
}
.nav > li i.s3 {
  background-position: -403px 0px;
}
.nav > li i.s4 {
  background-position: -606px 0px;
}
.nav > li i.s5 {
  background-position: -807px 0px;
}
.nav > li i.s6 {
  background-position: -1010px 0px;
}
.nav > li i.s7 {
  background-position: -1213px 0px;
}
.nav > li i.s8 {
  background-image: url(../images/nav_icon_xw.png);
}
.nav > li.cur,
.nav > li:hover {
  background-color: #00407f;
  border-radius: 6px 6px 0px 0px;
}
.nav > li.cur > a,
.nav > li:hover > a {
  color: #ffffff;
  font-weight: bold;
}
.nav > li.cur i,
.nav > li:hover i {
  transform: rotateY(360deg);
  background-image: url(../images/nav_icons_cur.png);
}
.nav > li.cur i.s8,
.nav > li:hover i.s8 {
  background-image: url(../images/nav_icon_xw_cur.png);
}
@media (max-width: 992px) {
  .nav {
    display: none;
  }
}
/* ç§»åŠ¨èœå• å¼€å§‹ */
.menu-btn {
  display: none;
  position: absolute;
  top: 130px;
  right: 0;
  z-index: 599;
  width: 50px;
  height: 50px;
}
.menu-btn > span {
  position: absolute;
  left: 0;
  right: 0;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #00407f;
  border-radius: 2px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}
.menu-btn > span:nth-child(1) {
  top: 18px;
}
.menu-btn > span:nth-child(2) {
  top: 24px;
}
.menu-btn > span:nth-child(3) {
  top: 30px;
}
.menu {
  position: fixed;
  z-index: 598;
  top: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  background-color: #f5f5f5;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -moz-transition: transform 0.3s, -moz-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}
.menu i {
  display: none;
}
.menu ul {
  margin-top: 110px;
}
.menu > ul > li a {
  position: relative;
  display: block;
  margin: 0 15px;
  padding: 0 15px;
  line-height: 50px;
  font-size: 16px;
  color: #00407f;
}
.menu > ul > li a::after {
  content: ' ';
  display: inline-block;
  height: 6px;
  width: 6px;
  border-width: 2px 2px 0 0;
  border-color: #ccc;
  border-style: solid;
  -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  -moz-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  -ms-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  -o-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 10px;
}
.menu > ul > li:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.menu > ul > li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.menu > ul > li:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.menu > ul > li:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.menu > ul > li:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.menu > ul > li:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.mask {
  display: none;
  position: fixed;
  z-index: 597;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.menu-btn.on {
  position: fixed;
  top: 30px;
}
.menu-btn.on > span {
  background: #00407f;
}
.menu-btn.on > span:nth-child(1) {
  top: 21px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-btn.on > span:nth-child(2) {
  opacity: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.menu-btn.on > span:nth-child(3) {
  top: 21px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.menu.on {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mask.on {
  display: block;
  opacity: 1;
}
@media (max-width: 992px) {
  .menu-btn {
    display: block;
  }
}
/* ç§»åŠ¨èœå• ç»“æŸ */
/* åº•éƒ¨footer å¼€å§‹ */
.footer {
  padding: 25px 0;
  background-color: #f5f8fa;
}
@media (max-width: 992px) {
  .footer .links {
    flex-wrap: wrap;
  }
}
.footer .links .yqlj {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  height: 21px;
  line-height: 21px;
  background: url(../images/icon_link.png) no-repeat left center;
  background-size: contain;
  padding-left: 25px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .footer .links .yqlj {
    display: block;
    width: 100%;
  }
}
.footer .links > ul {
  width: calc(100% - 180px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer .links > ul > li {
  position: relative;
  width: 23.5%;
  margin-bottom: 20px;
}
.footer .links > ul > li a {
  position: relative;
  width: 100%;
  background-color: #ebeff2;
  line-height: 40px;
  text-align: left;
  font-size: 16px;
  font-weight: normal;
  color: #333333;
  padding: 0 13px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .links > ul > li a:hover {
  color: #00407f;
}
.footer .links > ul > li ul {
  z-index: -1;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 40px;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #ddd;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: translate(0, 3px);
  -moz-transform: translate(0, 3px);
  -ms-transform: translate(0, 3px);
  -o-transform: translate(0, 3px);
  transform: translate(0, 3px);
  -webkit-transition: opacity, -webkit-transform 0.3s;
  transition: opacity, -webkit-transform 0.3s;
  -o-transition: opacity, -o-transform 0.3s;
  -moz-transition: opacity, transform 0.3s, -moz-transform 0.3s;
  transition: opacity, transform 0.3s;
  transition: opacity, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}
.footer .links > ul > li ul li {
  border-top: 1px solid #ddd;
}
.footer .links > ul > li:hover ul {
  z-index: 9;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.footer .links .more_links > a::after {
  content: '';
  position: absolute;
  right: 13px;
  bottom: 16px;
  width: 0;
  border-style: solid;
  border-width: 7px 6px 1px 6px;
  border-color: #666666 transparent transparent transparent;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .links .more_links > a:hover::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 992px) {
  .footer .links > ul,
  .footer .links > ul > li {
    width: 100%;
  }
}
.footer .copyright p {
  text-align: center;
  line-height: 2.5;
}
.footer .copyright p span,
.footer .copyright p a {
  font-size: 16px;
  font-weight: normal;
  color: #333333;
  margin: 0 10px;
}
.footer .copyright p span:nth-child(1),
.footer .copyright p a:nth-child(1) {
  margin-left: 0px;
}
.footer .copyright p a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .copyright p a:hover {
  color: #00407f;
}
@media (max-width: 992px) {
  .footer .copyright p {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer .copyright p span {
    display: block;
  }
  .footer .copyright .linkxy a {
    margin: 0 2px;
  }
}
.footer .wxb,
.footer .jc,
.footer .gov {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .footer .wxb,
  .footer .jc,
  .footer .gov {
    position: static;
    transform: none;
    display: inline-block;
    margin: 0 10px;
  }
}
.footer .wxb {
  left: 0;
}
.footer .jc {
  right: 80px;
}
.footer .gov {
  right: 0;
}
/* åº•éƒ¨footer ç»“æŸ */
/* æ»šåŠ¨æ¡ å¼€å§‹ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  background-color: #bbb;
}
::-webkit-scrollbar-track-piece {
  background-color: #ddd;
}
/* æ»šåŠ¨æ¡ ç»“æŸ */
.title {
  font-size: 24px;
  font-weight: bold;
  color: #00407f;
  padding-bottom: 30px;
}
.title .more {
  font-size: 15px;
  font-weight: normal;
  color: #00407f;
  line-height: 24px;
  padding-right: 20px;
  background: url(../images/icon_more.png) no-repeat right center;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.title .more:hover {
  opacity: 0.7;
}
.title.vline {
  position: relative;
  padding-left: 20px;
}
.title.vline::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0px;
  width: 6px;
  height: 21px;
  background-color: #00407f;
}
.title.hline {
  border-bottom: 6px solid #00407f;
}
.panel-more {
  display: none;
  margin: 10px 0;
  padding: 0 !important;
  background: none;
}
.panel-more a {
  position: relative;
  display: block;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  border: 0.5px solid #e9e9e9;
  background-color: #fff;
  color: #666;
  border-radius: 4px;
  width: 100% !important;
}
.panel-more a::before,
.panel-more a::after {
  position: absolute;
  top: 0;
  content: '\2022';
  font-weight: normal;
  font-size: 12px;
  color: #ddd;
  text-shadow: 8px 0 #ddd, -8px 0 #ddd;
  pointer-events: none;
}
.panel-more a::before {
  left: 30%;
}
.panel-more a::after {
  right: 30%;
}
@media (max-width: 992px) {
  .panel-more {
    display: block;
  }
}
.paper {
  border-top: 6px solid #00407f;
  background-color: #ffffff;
  box-shadow: 0px 0px 18px 0px rgba(60, 132, 209, 0.29);
  padding: 30px;
  margin-bottom: 40px;
}
.where {
  margin-bottom: 30px;
  padding-left: 30px;
  background-repeat: no-repeat;
  background-position: 0px 2px;
  background-image: url(../images/icon_where.png);
  font-size: 15px;
  color: #666666;
}
.where span,
.where a {
  color: inherit;
}
.where a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.where a:hover {
  color: #00407f;
}
.tab {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 30px;
  position: relative;
}
.tab a:not(.enter) {
  position: relative;
  font-size: 24px;
  font-weight: normal;
  color: #8e8d8d;
  transition: all 0.3s;
  padding-bottom: 16px;
  border-bottom: 4px solid transparent;
}
@media (max-width: 1400px) {
  .tab a:not(.enter) {
    font-size: 22px;
  }
}
.tab a:not(.enter):not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 1400px) {
  .tab a:not(.enter):not(:last-child) {
    margin-right: 20px;
  }
}
.tab a:not(.enter).cur {
  color: #00407f;
  font-weight: bold;
  border-bottom: 4px solid #3366cc;
}
@media (max-width: 992px) {
  .tab a:not(.enter) {
    font-size: 20px;
  }
}
.tab a.enter {
  position: absolute;
  bottom: 20px;
  right: 0;
  font-size: 18px;
  font-weight: normal;
  color: #00407f;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 992px) {
  .tab a.enter {
    font-size: 16px;
  }
}
.tab a.enter:hover {
  opacity: 0.7;
}
.tab a.enter img {
  margin-right: 5px;
}
.tab_pane {
  position: relative;
  overflow: hidden;
}
.tab_pane .pane > ul,
.tab_pane .pane > div {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  -o-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
.pubCon_title {
  line-height: 1;
  border-bottom: 1px solid #e3e3e3;
}
.pubCon_title::after {
  content: '';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.pubCon_title li {
  padding-right: 15px;
  margin-right: 15px;
}
.pubCon_title li.on a {
  font-weight: bold;
  color: #00407f;
  border-bottom: 4px solid #3366cc;
}
.pubCon_title a {
  padding-bottom: 20px;
  font-size: 24px;
  line-height: 24px;
  color: #333333;
}
.pubCon_title .more {
  font-size: 24px;
  line-height: 24px;
  color: #ccc;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 40px;
  letter-spacing: 0px;
  color: #000000;
}
.pagination .page {
  display: inline-block;
  text-align: center;
  padding: 0 16px;
  box-sizing: border-box;
  min-width: fit-content;
  height: 40px;
  border: solid 1px #e2e2e2;
  margin: 0 5px;
  color: #333;
  text-decoration: none;
}
.pagination .current-page {
  background-color: #3b79b6;
  color: #fff;
}
.pagination .dots {
  color: #ccc;
}
.pagination .sum {
  margin: 0 5px;
}
.pagination input {
  width: 40px;
  height: 40px;
  text-align: center;
  border: solid 1px #e2e2e2;
  display: inline-block;
}
.pagination .page:hover {
  background-color: #3b79b6;
  color: #fff;
}
.pages {
  margin-top: 80px;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: #666;
}
.pages a,
.pages span,
.pages input {
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: solid 1px #d6d8da;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 0 15px;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.pages input {
  padding: 0 2px;
  width: 40px !important;
}
.pages a:hover,
.pages a.current,
.pages span.current {
  border: solid 1px #3b79b6;
  background-color: #3b79b6;
  color: #fff !important;
}
.header_toolbar {
  font-size: 16px;
}
