body {
  background-color: #f7f9fc;
}
.mauto {
  max-width: 1400px;
}
.img-scale,
.hover-scale {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.img-scale img,
.hover-scale img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.img-scale:hover img,
.hover-scale:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
header {
  position: fixed;
  z-index: 555555;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  height: 87px;
}
header .header-ul {
  display: flex;
  align-items: center;
  align-content: center;
  height: 100%;
}
header .header-mauto {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  height: 87px;
}
header .header-mauto nav {
  margin: 0 0 0 70px;
}
header nav ul li {
  position: relative;
  float: left;
  height: 100%;
  text-align: center;
  margin: 0 58px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header nav ul li a {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}
header nav ul li a .ts::before {
  content: "";
  width: 23px;
  height: 23px;
  background: rgba(240, 138, 35, 0.36);
  transform: translate(-50%, -50%);
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-transform: scale(0);
  transform: scale(0);
}
header nav ul li a.header-active {
  color: #f08a23;
}
header nav ul li .sub-nav {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  top: 94px;
  left: 48%;
  padding: 10px;
  width: 150px;
  background: rgba(255, 255, 255, 0.9);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
header nav ul li .sub-nav a {
  display: block;
  line-height: 23px;
  padding: 8px 0;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header nav ul li .sub-nav a:hover {
  color: #fff;
  background: #f08a23;
}
header nav ul li.cur .ts,
header nav ul li:hover .ts {
  position: relative;
}
header nav ul li.cur .ts::after,
header nav ul li:hover .ts::after {
  content: "";
  width: 100%;
  height: 4px;
  -webkit-transform: scale(0);
  transform: scale(0);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -33px;
  background-color: #f08a23;
}
header nav ul li a:hover .ts:before {
  animation: scale 2s ease infinite;
}
header nav ul .search-btn::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 0px 0 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../images/search.png);
  background-position: center center;
}
header nav ul .earch-btn::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 0px 0 0;
  background-repeat: no-repeat;
  background-image: url(../img/earch.png);
  background-position: center center;
  background-size: contain;
}
header .logo {
  width: 128px;
  height: 68px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .logo img {
  object-fit: contain;
  width: 128px;
  height: 68px;
}
@keyframes scale {
  0% {
    opacity: 0.5;
    transform: scale(0.2);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
  100% {
    opacity: 0.5;
    transform: scale(0.2);
  }
}
@keyframes scale2 {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
nav ul li .sub-nav {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  top: 110px;
  left: 48%;
  padding: 10px;
  width: 150px;
  background: rgba(255, 255, 255, 0.9);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
nav ul li:hover .sub-nav {
  visibility: visible;
  opacity: 1;
  top: 100px;
}
nav ul li .sub-nav a {
  display: block;
  line-height: 23px;
  padding: 8px 0;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
footer {
  width: 100%;
  background-color: #fff;
}
footer .footer-bottom {
  width: 100%;
  height: 100px;
  margin: 0px auto 0;
}
footer .footer-bottom .mauto {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  color: #555555;
  height: 100px;
  font-size: 14px;
}
.fix-search {
  z-index: 999;
  top: 0;
  left: 0;
}
.fix-search .hide {
  width: 20px;
  height: 50px;
  margin-right: 10px;
  cursor: pointer;
}
.fix-search .hide::before,
.fix-search .hide::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 1px;
  height: 35%;
  margin-top: -35%;
  background: #000;
}
.fix-search .hide::before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.fix-search .hide::after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.fix-search .hide:hover {
  opacity: 0.5;
}
.fix-search .txt,
.fix-search .btn {
  height: 50px;
  line-height: 50px;
}
.fix-search .txt {
  width: -webkit-calc(70%);
  width: -moz-calc(70%);
  width: calc(100% - 30px);
  font-size: 15px;
  padding: 0 15px 0 5px;
  border-bottom: 1px solid #e1e1e1;
}
.fix-search .txt:focus {
  border-color: #666;
}
.fix-search .btn {
  width: 30px;
  height: 50px;
  line-height: 50px;
  font-size: 0;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAMAAAANIilAAAAAilBMVEUAAABmZmZmZmZlZWVmZmZmZmZmZmZmZmZmZmZmZmZmZmZlZWVmZmZlZWVlZWVlZWVmZmZmZmZmZmZmZmZmZmZiYmJmZmZmZmZmZmZlZWVmZmZmZmZmZmZmZmZmZmZkZGRmZmZmZmZmZmZlZWVmZmZlZWVnZ2dmZmZmZmZnZ2dmZmZqampnZ2dmZmbkjhFbAAAALXRSTlMAr5hB9NSAem7q5YxpRjcw+thfVSsU38zHwLq2k3NkIqmhhlpRGhDuSjwKJB5esRyhAAACPElEQVRIx8WW2XaDIBCGcY9b3Go0ajQ2exre//XKclqKIpDkov8dM/NxZBhmBALFn2Pj+OmmNrroAZ5QeRgv8K+2u0QTPXsBnMuIddhV9gvYWR0wfFyr0HVFI9MmSkpiGazwZ7tQzh5pVJuX/JauT89+l7AeDSnmniFMsevyscg25KC92JnsIdYSTbyb5UsxCX0S+j6xq5ZeBI5wzgJPTzxAKovc+Nz+CBiruA1X+NHOoC4hnPKvifHDRtYrUMsQFEuHbHu2lB875W9kgEg3oKMRRXacJUIWE2hpjYuBs7TIEgM9NZPslGw3tXaTr4xYCtU6oWB/kmsL6GqLokv+8hJt2OAfV42WgzY88tndkA9Rix0yZ0vcJVQI/ww8tsQd6q4Nhyg6YktH1CGkHeXIlo24OUna1ZrLH1nq1+eJT0GvDft8ei3WmvRedDPZLC2fSLY3TeBBE66mCSrwgFJRLDTjZ3KgnbJ63nw9NgvUrSCYFNQ5IxsqNQQ4TjiHdlpvOTgJkwgtjbKGkeDubexQP0bYiTwHCBXdqOWH5PzYMF9Cv2oyhJden0toU+zOHUiULdE34rbDx7yutvBHWbL0aTTGNwvOumrprpEr/W25m5DK3nvR4Wod85VbQarKAsAj9GLjuO2hULZZ/v6qBcttJzbmaOYNrLgRLZnlD3xIpjosaGNmtC/9E7jHudcZren2MX1sU1o9GCXVdIn/hY5I/q8v0v37dHp8kc7fp2GhD8y7RwXeoB3wqopq634DOx1tNyykjbUAAAAASUVORK5CYII=) no-repeat center / 60% auto;
}
.public-page {
  margin: 63px auto 81px;
  justify-content: center;
  display: flex;
  flex-wrap: nowrap;
}
.public-page .page-i {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  height: 44px;
  font-size: 16px;
  font-weight: 500;
  color: #160a8b;
}
.public-page .page-i p {
  color: #1d74d7;
  font-size: 16px;
  line-height: 44px;
  width: 90px;
  height: 44px;
  background: rgba(35, 47, 61, 0);
  border-radius: 22px;
  text-align: center;
  border: 1px solid #e0e0e0;
}
.public-page .page-i .btn-active {
  display: none;
}
.public-page .page-i:hover p {
  font-weight: bold;
  color: #0055a2;
}
.public-page .page-i:hover .btn-default {
  display: none;
}
.public-page .page-i:hover .btn-active {
  display: inline-block;
}
.public-page .page-b {
  margin: 0 8px;
}
.public-page .page-b-i {
  width: auto;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.public-page .page-b-i.cur {
  font-weight: bold;
}
.public-page .page-b-i {
  margin: 0 8px;
  font-size: 16px;
  font-weight: 400;
  width: 44px;
  height: 44px;
  color: #1e1e1e;
}
.public-page .page-b .cur {
  border-radius: 4px 4px 4px 4px;
}
.sild-float {
  position: fixed;
  z-index: 2000;
  right: 0;
  top: 30%;
  width: 69px;
}
.sild-float .fplae {
  height: 69px;
  width: 226px;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}
.sild-float .bpmaeb {
  height: 69px;
  width: 69px;
  background-color: #538bc1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.sild-float .bpmaeb img.icon {
  width: 25px;
  height: auto;
}
.sild-float .bpmaeb p {
  width: 100%;
  text-align: center;
  height: 12px;
  font-weight: 500;
  font-size: 12px;
  color: #ffffff;
  line-height: 12px;
  margin: 10px auto 0;
}
.sild-float .bpmaeb:hover {
  background-color: #115d9a;
}
.sild-float .bpmaeb:hover p {
  color: #ffffff;
}
.sild-float .list:hover .rolme {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
}
.sild-float .rolme {
  transform: translateX(-30px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  position: absolute;
  right: 90px;
  top: 0;
  background-color: #538bc1;
  width: 168px;
  box-shadow: 0px 0px 18px 0px rgba(16, 91, 167, 0.28);
  border: 1px solid #3791c6;
  padding: 10px 20px;
}
.sild-float .rolme .tel{
  width: 100%;
}
.sild-float .rolme .tel img{
  width: 100%;

}
.sild-float .rolme .tel .txt1 {
  color: #ffffff;
  font-size: 14px;
}
.sild-float .rolme .tel .txt2 {
  color: #ffffff;
  font-size: 14px;
  margin-top: 6px;
}
.sild-float .rolme .ltt {
  font-size: 20px;
  color: #fff;
  text-align: center;
  word-break: break-all;
}
.sild-float .rolme .emv img {
  border-radius: 10px;
}
@media (max-width: 1300px) {
  nav ul li {
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .mauto {
    width: 92%;
  }
  nav ul li {
    margin: 0 0px;
  }
  .header-m {
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  }
  .header-m::after {
    display: none;
    position: fixed;
    content: "";
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .header-m .logo {
    position: absolute;
    left: 50%;
    height: 70px;
    line-height: 70px;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .header-m .logo img {
    max-height: 40px;
    width: auto;
  }
  .header-m .m-menu-b {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 70px;
    cursor: pointer;
  }
  .header-m .m-menu-b::before,
  .header-m .m-menu-b::after {
    position: absolute;
    content: "";
    top: 50%;
    left: -webkit-calc(35px / 2);
    left: -moz-calc(35px / 2);
    left: calc(35px / 2);
    width: 25px;
    height: 1px;
    z-index: 999;
    -o-transition: all 0.3s ease-out 0.3s;
    -moz-transition: all 0.3s ease-out 0.3s;
    transition: all 0.3s ease-out 0.3s;
    -webkit-transition: all 0.3s ease-out 0.3s;
    background: #222;
  }
  .header-m .m-menu-b::before {
    -moz-transform: translateY(-4px) rotate(0);
    -ms-transform: translateY(-4px) rotate(0);
    -o-transform: translateY(-4px) rotate(0);
    transform: translateY(-4px) rotate(0);
    -webkit-transform: translateY(-4px) rotate(0);
  }
  .header-m .m-menu-b::after {
    -moz-transform: translateY(4px) rotate(0);
    -ms-transform: translateY(4px) rotate(0);
    -o-transform: translateY(4px) rotate(0);
    transform: translateY(4px) rotate(0);
    -webkit-transform: translateY(4px) rotate(0);
  }
  .header-m .m-menu {
    display: none;
    z-index: 888;
    position: fixed;
    width: 100%;
    width: 260px;
    height: 100%;
    top: 0;
    left: -260px;
    opacity: 1;
    background: #fafafa;
    text-align: left;
    padding-top: 70px;
  }
  .header-m .m-menu::after {
    position: absolute;
    top: 70px;
    content: "";
    width: 100%;
    height: 1px;
    background: #ebebeb;
  }
  .header-m .nav {
    height: -webkit-calc(-6%);
    height: -moz-calc(-6%);
    height: calc(100% - 106px);
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header-m .nav > li {
    border-bottom: 1px solid #ebebeb;
    -moz-animation: resize 0.5s both;
    -o-animation: resize 0.5s both;
    animation: resize 0.5s both;
    -webkit-animation: resize 0.5s both;
  }
  .header-m .nav > li > a {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    padding: 0 40px;
    color: #666;
    vertical-align: middle;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    overflow: hidden;
    height: 50px;
    line-height: 50px;
  }
  .header-m .nav > li > a::after {
    position: absolute;
    content: "";
    left: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border: 1px solid #999;
    border-radius: 50%;
    background: transparent;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
  }
  .header-m .nav > li .sub-nav {
    display: none;
  }
  .header-m .nav > li .sub-nav a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 12px 40px;
    background: #f2f2f2;
    color: #4e4e4e;
  }
  .header-m .nav > li .sub-nav a::before,
  .header-m .nav > li .sub-nav a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 20px;
    top: 20px;
    border: 5px solid transparent;
    overflow: hidden;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
  }
  .header-m .nav > li .sub-nav a::before {
    left: 21px;
    border-left: 5px solid #555;
  }
  .header-m .nav > li .sub-nav a::after {
    border-left: 5px #ebebeb solid;
  }
  .header-m .nav > li.cur {
    position: relative;
  }
  .header-m .nav > li.cur::after,
  .header-m .nav > li.cur::before {
    position: absolute;
    content: "";
    background: #999;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .header-m .nav > li.cur::before {
    top: 19px;
    right: 25px;
    width: 2px;
    height: 12px;
  }
  .header-m .nav > li.cur::after {
    top: 24px;
    right: 20px;
    width: 12px;
    height: 2px;
  }
  .header-m .nav > li.active::after {
    background: #fff;
  }
  .header-m .nav > li.active::before {
    height: 0;
  }
  .header-m .nav > li.active > a {
    color: #fff;
    background: #1062a5;
  }
  .header-m .nav > li.active > a::after {
    border-color: #fff;
    background: #fff;
  }
  .header-m .nav > li.active .sub-nav li {
    -moz-animation: ReturnToNormal 0.5s both;
    -o-animation: ReturnToNormal 0.5s both;
    animation: ReturnToNormal 0.5s both;
    -webkit-animation: ReturnToNormal 0.5s both;
  }
  .header-m .m-search-d {
    display: block;
    position: absolute;
    top: 0;
    right: 50px;
    width: 40px;
    height: 70px;
    cursor: pointer;
    /* border: 1px solid red; */
  }
  .header-m .m-search-d li {
    height: 100%;
    /* border: 1px solid red; */
    /* line-height: 70px; */
    display: flex;
    align-items: center;
    align-content: center;
    jua: c;
    justify-content: center;
  }
  .header-m .m-search-d li img {
    margin: auto;
  }
  .header-m .m-search-d li .i2 {
    display: none;
  }
  .header-m .m-search-b {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 70px;
    cursor: pointer;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAVFBMVEUAAABVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVW+WkCdAAAAG3RSTlMA86cS1Qd0zb+G48R+W0E4lVIhm5BKLeppGrQHXWddAAABjklEQVRIx6VV2XLDIAzkBgdf8d3o//+zg6GtB5DiTPfNi1cCrTRiV8i1Fc5aJ0yv2R30gsMv9mV7K9hekGGWtMJACf6kFOLnLyvGWShIaHCFgxOu+4rfk7GRWegcqr9y3X6SLfUOkbHSn3RfU0zx2khyrrGHiFowhcQaznewGuTpraynH4hXmpzVIZJnCELZbE6uIRBqcxNOv0oyVAXBUAsostTFtUs7fVHhos5zxoVmGunuE/+XuHcXKyOKzPvC/9LLNlYeQZ+KXFb+wCRztclCakXZ4gp6DIG6umSpn02AtswWj5Dhs+i4HNiFQZQKhQ/fEwLslJVyD+xDElMB3OhLisBRLi/x/NH0Mm6AmUOCwmxuIYEr7xWHC3ZsBawPKJAoPmBGNzwTdHqBiBXtWmP/9oTrdKpLbAAU07MdxdyYVWZr52D3cQBQGwD3GRl2asrKjqKxpVK+PtBMySCv72ukSs0j72u0T/ZO7D5eyWKk4bCtja5bakDQhUcPiGcfwMQSsE/QVbctjcFZw74Bhtc3xlH5qhwAAAAASUVORK5CYII=) no-repeat left center;
    -o-background-size: 23px;
    background-size: 23px;
  }
  .header-m .m-search-c {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 70px;
    cursor: pointer;
    background-image: url(../img/earch.png);
    -o-background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23px;
  }
  html.active {
    height: 100%;
    overflow: hidden;
  }
  html.active body {
    height: 100%;
    overflow: hidden;
  }
  html.active .header-m {
    left: 260px;
  }
  html.active .header-m::after {
    display: block;
  }
  html.active .header-m .m-menu-b::before,
  html.active .header-m .m-menu-b::after {
    background: #000;
  }
  html.active .header-m .m-menu-b::before {
    -moz-transform: translateY(0) rotate(225deg);
    -ms-transform: translateY(0) rotate(225deg);
    -o-transform: translateY(0) rotate(225deg);
    transform: translateY(0) rotate(225deg);
    -webkit-transform: translateY(0) rotate(225deg);
  }
  html.active .header-m .m-menu-b::after {
    -moz-transform: translateY(0) rotate(-225deg);
    -ms-transform: translateY(0) rotate(-225deg);
    -o-transform: translateY(0) rotate(-225deg);
    transform: translateY(0) rotate(-225deg);
    -webkit-transform: translateY(0) rotate(-225deg);
  }
  html.active .header-m .m-menu {
    display: block;
    left: 0;
  }
}
@media (max-width: 1000px) {
  .public-page {
    margin: 31px auto 40px;
    justify-content: center;
    display: flex;
    flex-wrap: nowrap;
  }
  .public-page .page-i {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    height: 30px;
    font-size: 14px;
  }
  .public-page .page-i p {
    font-size: 14px;
    line-height: 30px;
    width: 80px;
    height: 30px;
  }
  .public-page .page-b {
    margin: 0 4px;
  }
  .public-page .page-b-i {
    margin: 0 4px;
    width: 28px;
    height: 30px;
  }
  footer {
    width: 100%;
    background-color: #fff;
  }
  footer .footer-bottom {
    width: 100%;
    min-height: 60px;
    height: auto;
    margin: 0px auto 0;
  }
  footer .footer-bottom .mauto {
    min-height: 60px;
    height: auto;
    font-size: 12px;
  }
}
