@charset "UTF-8";
body {
  padding-top: 80px;
}

/* 头部样式 */
.page-header {
  position: fixed;
  width: 100%;
  height: 80px;
  line-height: 80px;
  z-index: 999;
  top: 0;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #f5f5f5;
}

.page-header .header-wrap {
  width: 1600px;
  max-width: 90%;
  min-width: 83.3%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header .nav-toggle .icon-menu span {
  background-color: #000;
}

.page-header .header-left {
  float: left;
  white-space: nowrap;
  flex: 1;
  overflow: hidden;
}

.page-header .logo-wrap {
  display: inline-block;
  vertical-align: middle;
  width: 146px;
}

.page-header .logo-wrap .logo {
  width: 100%;
  padding-bottom: 23.3%;
  background-image: url("/images/logo.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.page-header .logo-title {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
  color: #333;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.page-header .shares-wrap {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.2;
  color: #333;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  display: none;
}

.page-header .nav-list {
  left: 0;
  float: left;
  flex: 1;
  display: flex;
  align-self: center;
  height: 100%;
  justify-content: flex-end;
  padding-right: 20px;
}

.page-header .nav-list .nav-list-wrap {
  padding-left: 20px;
  display: flex;
  white-space: nowrap;
}

.page-header .nav-list .nav-item {
  float: left;
  padding-right: 25px;
  position: relative;
}

.page-header .nav-list .nav-item.active .nav-item-a {
  transition: 1s;
  color: #d42e3c;
}

.page-header .nav-list .nav-item:last-child .sub-nav .sub-nav-wrap {
  left: auto;
  right: 0;
  transform: translateX(0);
}

.page-header .nav-list .nav-item:hover .nav-item-a {
  transition: 1s;
  color: #d42e3c;
}

.page-header .nav-list .nav-item:hover .sub-nav {
  height: 60px;
  display: block;
}

.page-header .nav-list .nav-item:hover .sub-nav::before {
  height: 60px;
}

.page-header .nav-list .nav-item .nav-item-a {
  cursor: pointer;
  font-size: 18px;
  line-height: 18px;
  color: #333;
  text-decoration: none;
}

.page-header .header-right {
  float: right;
  display: flex;
  align-items: center;
}

.page-header .search-wrap .search-btn {
  line-height: 1;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  font-weight: bold;
}

.page-header .search-wrap .search-btn.active {
  color: #c62b1d;
}

.page-header .menu-icon {
  display: none;
  font-size: 16px;
  margin-left: 10px;
  vertical-align: middle;
  cursor: pointer;
}

.page-header .language {
  margin-left: 25px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.page-header .language .language-text {
  color: #333;
  cursor: pointer;
  text-decoration: none;
}

.page-header .language .language-text.active {
  color: #d42e3c;
}

.page-header .language .language-text:hover {
  color: #d42e3c;
}

.page-header .language .split-line {
  display: inline-block;
  position: relative;
  width: 1px;
  height: 7px;
  background-color: #828791;
  vertical-align: middle;
  margin: 0 10px;
}

.page-header .sub-nav {
  position: absolute;
  top: 100%;
  height: 0;
  left: 0;
  font-size: 18px;
  line-height: 60px;
  width: 100%;
  background: #222222;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all .5s;
  display: none;
}

.page-header .sub-nav::before {
  left: 0;
  content: '';
  position: fixed;
  width: 100vw;
  height: 0;
  transition: all 1s;
  background: #222222;
}

.page-header .sub-nav .sub-nav-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.page-header .sub-nav .sub-list {
  padding-left: 22%;
  display: flex;
}

.page-header .sub-nav .sub-list .sub-item a {
  margin-right: 25px;
  color: #888888;
  transition: 1s;
}

.page-header .sub-nav .sub-list .sub-item a:hover {
  color: #fff;
}

.black-header {
  padding-top: 80px;
}

.black-header .page-header {
  background: #000;
  border-bottom: 0;
}

.black-header .page-header .shares-wrap {
  color: #fff;
}

.black-header .page-header .logo-wrap .logo {
  background-image: url("/images/logo_white.svg");
}

.black-header .page-header .nav-list .nav-item:hover .nav-item-a {
  color: #d42e3c;
}

.black-header .page-header .nav-list .nav-item .nav-item-a {
  color: #fff;
}

.black-header .page-header .search-wrap .search-btn {
  color: #fff;
}

.black-header .page-header .search-wrap .search-btn.active {
  color: #c62b1d;
}

.black-header .page-header .language .language-text {
  color: #fff;
}

.black-header .page-header .language .language-text.active {
  color: #d42e3c;
}

.black-header .page-header .nav-toggle .icon-menu span {
  background-color: #fff;
}

.search-panel {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
}

.search-panel .search-bar {
  width: 100%;
  height: 60px;
  background: #222222;
  padding: 13px 0;
  box-sizing: border-box;
}

.search-panel.active {
  display: block;
}

.search-panel .input-item {
  position: relative;
  width: 310px;
  min-width: 16%;
  max-width: 80%;
  margin: 0 auto;
  border-radius: 20px;
  height: 34px;
  line-height: 34px;
  padding: 0 18px;
  background-color: #fff;
  z-index: 9;
}

.search-panel .input-item input {
  display: block;
  width: 100%;
  height: 100%;
}

.search-panel .input-item .search-icon {
  position: absolute;
  display: block;
  font-size: 20px;
  right: 0;
  top: 0;
  padding-right: 18px;
  cursor: pointer;
  z-index: 10;
}

.search-panel .search-main {
  width: 100%;
  background-color: #f3f3f3;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  display: none;
}

.search-panel .search-main.show {
  display: block;
}

.search-panel .search-main .result-wrap {
  width: 1440px;
  max-width: 95%;
  min-width: 75%;
  margin: 0 auto;
}

.search-panel .search-main .result-wrap .tip {
  width: 100%;
  text-align: center;
  color: #aaaaaa;
  padding: 50px 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin: auto;
}

.search-panel .search-main .result-wrap .result-container {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  padding: 40px 0 80px;
}

.search-panel .search-main .result-wrap .result-container .result-box {
  width: 500px;
  box-sizing: border-box;
  max-width: 60%;
}

.search-panel .search-main .result-wrap .result-container .result-box.case {
  margin-left: 10%;
}

.search-panel .search-main .result-wrap .result-container .result-box .list {
  width: 100%;
  height: 350px;
}

.search-panel .search-main .result-wrap .result-container .result-box .item {
  margin-bottom: 15px;
}

.search-panel .search-main .result-wrap .result-container .result-box .item .item-title {
  cursor: pointer;
  color: #333;
  transition: all .5s;
}

.search-panel .search-main .result-wrap .result-container .result-box .item .item-title:hover {
  color: #d42e3c;
}

.search-panel .search-main .result-wrap .result-container .result-box .mCustomScrollBox {
  width: 100%;
  padding-left: 10%;
  box-sizing: border-box;
}

.search-panel .search-main .result-wrap .result-container .result-box .mCustomScrollBox > .mCSB_scrollTools {
  right: auto;
  left: 0;
}

.search-panel .search-main .result-wrap .result-container .result-box .mCS-dark > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.6);
}

.search-panel .search-main .result-wrap .result-container .label {
  margin-bottom: 10px;
  padding-left: 10%;
  box-sizing: border-box;
}

.banner {
  position: relative;
  width: 100%;
}

.banner .banner-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 44.8%;
  overflow: hidden;
}

.banner .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

.banner .text-box {
  position: absolute;
  width: 100%;
  top: 44.18%;
  text-align: center;
  color: #fff;
}

.banner .text-box a {
  color: #fff;
}

.banner .banner-title {
  font-size: 66px;
  font-family: 'MyriadProSemibold';
}

.banner .crumbs {
  font-family: 'SourceHanSansCN';
  margin-top: 20px;
  font-size: 20px;
}

/* 移动端菜单按钮 */
.nav-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 80;
  display: none;
}

.nav-toggle .icon-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 24px;
  height: 16px;
}

.nav-toggle .icon-menu span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 0 auto;
  line-height: 2px;
  position: static;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.nav-toggle .icon-menu span.center-hr {
  margin: 5px auto;
}

.nav-toggle .icon-menu span.top-hr {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.nav-toggle .icon-menu span.bottom-hr {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.nav-toggle.active .icon-menu span {
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  background: #fff;
}

.nav-toggle.active .icon-menu span.center-hr {
  display: none;
}

.nav-toggle.active .icon-menu span.top-hr {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.nav-toggle.active .icon-menu span.bottom-hr {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

/* 移动端导航 */
.mobile-nav-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 0;
  transition: 0.7s 0.1s cubic-bezier(0.85, 0.24, 0.23, 0.81);
  overflow: hidden;
  display: none;
}

.mobile-nav-box.show {
  height: 100%;
}

.mobile-nav-box .wrap {
  position: absolute;
  width: 80%;
  height: 100%;
  background: #fff;
  z-index: 10;
  padding: 20px;
  box-sizing: border-box;
}

.mobile-nav-box .mobile-nav-bg {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.mobile-nav-box .language {
  margin-left: 0;
  padding-left: 8%;
}

.mobile-nav-box .language .language-text {
  color: #333;
}

.mobile-nav-box .mobile-nav-list {
  padding: 20px 0;
  padding-left: 8%;
}

.mobile-nav-box .mobile-nav-list .nav-item {
  line-height: 1.5;
}

.mobile-nav-box .mobile-nav-list .nav-item .nav-item-a {
  display: block;
  padding: 10px 0;
  cursor: pointer;
  color: #333;
  font-size: 20px;
}

.mobile-nav-box .mobile-nav-list .mobile-sub-nav {
  font-size: 14px;
}

.mobile-nav-box .mobile-nav-list .mobile-sub-nav .sub-item {
  padding: 6px 0;
}

.mobile-nav-box .mobile-nav-list .mobile-sub-nav a {
  color: #4c4c4c;
}

/* footer底部样式 */
.footer-1600 .footer .footer-wrap {
  width: 1600px;
  min-width: 83.3%;
}

.footer {
  position: relative;
  background: #fff;
  border-top: 1px solid #cccccc;
  z-index: 98;
}

.footer .footer-wrap {
  width: 1440px;
  max-width: 90%;
  min-width: 75%;
  margin: 0 auto;
  display: flex;
  padding: 70px 0 100px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .footer-nav {
  max-width: 100%;
  display: flex;
  white-space: nowrap;
  margin-bottom: 50px;
}

.footer .footer-nav-item {
  margin-right: 85px;
}

.footer .footer-nav-item:last-child {
  margin-right: 0;
}

.footer .footer-nav-item dt {
  font-size: 18px;
  line-height: 56px;
  font-weight: bold;
}

.footer .footer-nav-item dt a {
  color: #222;
}

.footer .footer-nav-item dd {
  font-weight: normal;
  font-size: 14px;
  line-height: 28px;
}

.footer .footer-nav-item a {
  text-decoration: none;
  color: #808080;
  transition: 1s;
}

.footer .footer-nav-item a:hover {
  color: #cf2d26;
}

.footer .footer-information .footer-logo-wrap {
  display: block;
  margin-bottom: 10px;
}

.footer .footer-information .footer-logo-wrap img {
  width: 146px;
}

.footer .footer-information .footer-copyright i {
  font-style: normal;
  color: #cf2d26;
}

.footer .footer-information .footer-copyright {
  color: #333;
  font-size: 14px;
}

.footer .footer-information .footer-copyright a {
  color: #333;
}

.footer .footer-information .footer-powered {
  font-size: 14px;
  line-height: 1.5;
  color: #A8A8A8;
}

.footer .footer-information .footer-share {
  margin-top: 30px;
  font-size: 14px;
  color: #333;
}

.footer .footer-information .footer-share .text {
  float: left;
}

.footer .footer-information .footer-share .icon {
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 26px;
  height: 24px;
  margin-left: 10px;
  background-size: cover;
  position: relative;
  cursor: pointer;
}

.footer .footer-information .footer-share .icon.wx-icon {
  background-image: url("/images/wx_icon.svg");
}

.footer .footer-information .footer-share .icon.wx-icon:hover .qr-pic {
  opacity: 1;
  display: block;
}

.footer .footer-information .footer-share .icon.bz-icon {
  background-image: url("/images/bz_icon.svg");
}

.footer .footer-information .footer-share .icon.bz-icon:hover .qr-pic {
  opacity: 1;
  display: block;
}

.footer .footer-information .footer-share .icon.dy-icon {
  background-image: url("/images/douyin_icon.svg");
}

.footer .footer-information .footer-share .icon.dy-icon:hover .qr-pic {
  opacity: 1;
  display: block;
}

.footer .footer-information .footer-share .icon img {
  width: 100%;
}

.footer .footer-information .footer-share .qr-pic {
  display: none;
  opacity: 0;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 1s;
  transform: translate(-50%, -101%);
}

.footer .footer-information .footer-share .qr-pic img {
  width: 100%;
  height: auto;
}

.footer .footer-information .footer-share .dy-icon .qr-pic {
  transform: translate(-50%, -130%);
}

.to-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background-image: url(/images/to_top.png);
  background-size: 100% 100%;
  z-index: 999;
  cursor: pointer;
  transition: all .5s;
  display: none;
}

.to-top-btn:hover {
  opacity: .8;
}

@media all and (min-width: 2600px) {
  body {
    padding-top: 120px;
  }
  .page-header {
    height: 120px;
  }
  .page-header .header-left .logo-wrap {
    width: 150px;
  }
  .page-header .nav-list .nav-item .nav-item-a {
    font-size: 24px;
    line-height: 80px;
  }
  .page-header .header-right .search-wrap .search-btn {
    font-size: 30px;
  }
  .page-header .header-right .language {
    font-size: 24px;
  }
  .banner .banner-title {
    font-size: 102px;
  }
  .banner .crumbs {
    font-size: 30px;
  }
  .crumbs {
    font-size: 30px;
  }
  .footer .footer-nav .footer-nav-item dt {
    font-size: 28px;
    line-height: 66px;
  }
  .footer .footer-nav .footer-nav-item dd {
    font-size: 22px;
    line-height: 36px;
  }
  .footer .footer-information .footer-logo-wrap img {
    width: 180px;
  }
  .footer .footer-information .footer-copyright {
    font-size: 22px;
  }
  .footer .footer-information .footer-powered {
    font-size: 20px;
    line-height: 30px;
  }
  .font-68 {
    font-size: 78px;
  }
  .font-95 {
    font-size: 100px;
  }
  .font-66 {
    font-size: 74px;
  }
  .font-52 {
    font-size: 60px;
  }
  .font-40 {
    font-size: 50px;
  }
  .font-32 {
    font-size: 42px;
  }
  .font-28 {
    font-size: 38px;
  }
  .font-26 {
    font-size: 36px;
  }
  .font-24 {
    font-size: 34px;
  }
  .font-18 {
    font-size: 28px;
  }
  .font-16 {
    font-size: 26px;
  }
}

@media all and (min-width: 3840px) {
  body {
    padding-top: 160px;
  }
  .page-header {
    height: 160px;
  }
  .page-header .header-left .logo-wrap {
    width: 192px;
  }
  .page-header .nav-list {
    position: relative;
  }
  .page-header .nav-list .nav-item .nav-item-a {
    font-size: 36px;
    line-height: 80px;
  }
  .page-header .nav-list .nav-item:hover .sub-nav {
    height: 120px;
    font-size: 36px;
    line-height: 120px;
  }
  .page-header .nav-list .nav-item:hover .sub-nav::before {
    height: 120px;
  }
  .page-header .header-right .search-wrap .search-btn {
    font-size: 40px;
  }
  .page-header .header-right .language {
    font-size: 30px;
  }
  .banner .banner-title {
    font-size: 132px;
  }
  .banner .crumbs {
    font-size: 40px;
  }
  .footer .footer-nav .footer-nav-item dt {
    font-size: 36px;
    line-height: 76px;
  }
  .footer .footer-nav .footer-nav-item dd {
    font-size: 28px;
    line-height: 52px;
  }
  .footer .footer-information .footer-logo-wrap img {
    width: 207px;
  }
  .footer .footer-information .footer-copyright {
    font-size: 28px;
    line-height: 46px;
  }
  .footer .footer-information .footer-powered {
    font-size: 24px;
    line-height: 40px;
  }
}

@media all and (max-width: 1600px) {
  .font-68 {
    font-size: 60px;
  }
  .font-66 {
    font-size: 64px;
  }
  .font-40 {
    font-size: 32px;
  }
  .font-32 {
    font-size: 30px;
  }
  .font-28 {
    font-size: 26px;
  }
  .font-26 {
    font-size: 24px;
  }
  .font-24 {
    font-size: 20px;
  }
  .font-18 {
    font-size: 16px;
  }
  .font-16 {
    font-size: 14px;
  }
}

@media all and (max-width: 1280px) {
  .page-header .nav-list .nav-item {
    padding-right: 10px;
  }
}

@media only screen and (max-width: 1440px) {
  .font-22 {
    font-size: 18px;
  }
  .font-24 {
    font-size: 20px;
  }
  .font-25 {
    font-size: 20px;
  }
  .font-26 {
    font-size: 24px;
  }
  .font-28 {
    font-size: 24px;
  }
  .font-30 {
    font-size: 30px;
  }
  .font-32 {
    font-size: 30px;
  }
  .font-34 {
    font-size: 30px;
  }
  .font-36 {
    font-size: 32px;
  }
  .font-38 {
    font-size: 32px;
  }
  .font-40 {
    font-size: 30px;
  }
  .font-32 {
    font-size: 28px;
  }
  .font-26 {
    font-size: 22px;
  }
  .font-68 {
    font-size: 50px;
  }
  .m-t-40 {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 1366px) {
  .font-16 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1200px) {
  .font-24 {
    font-size: 18px;
  }
  .font-20 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1024px) {
  body {
    padding-top: 60px;
  }
  .font-18 {
    font-size: 14px;
  }
  .font-20 {
    font-size: 16px;
  }
  .font-24 {
    font-size: 16px;
  }
  .font-26 {
    font-size: 20px;
  }
  .font-28 {
    font-size: 20px;
  }
  .font-30 {
    font-size: 24px;
  }
  .font-32 {
    font-size: 24px;
  }
  .font-34 {
    font-size: 24px;
  }
  .font-36 {
    font-size: 26px;
  }
  .font-38 {
    font-size: 26px;
  }
  .font-40 {
    font-size: 30px;
  }
  .font-42 {
    font-size: 30px;
  }
  .font-44 {
    font-size: 30px;
  }
  .font-46 {
    font-size: 32px;
  }
  .font-48 {
    font-size: 32px;
  }
  .banner .banner-title {
    font-size: 46px;
  }
  .black-header {
    padding-top: 60px;
  }
  .black-header .page-header {
    height: 60px;
    background: #000;
    box-sizing: border-box;
  }
  .black-header .page-header .nav-toggle .icon-menu span {
    background-color: #fff;
  }
  .page-header {
    height: 60px;
    line-height: 60px;
  }
  .page-header .shares-wrap {
    display: none;
  }
  .page-header .logo-wrap {
    width: 100px;
    margin-right: 0;
  }
  .page-header .logo-wrap .logo {
    background-size: 100px 23.3px !important;
  }
  .page-header .logo-title {
    display: none;
    margin-left: 5px;
    padding-left: 5px;
  }
  .page-header .nav-list {
    display: none;
  }
  .page-header .header-left {
    flex: 1;
  }
  .page-header .header-right .search-btn {
    position: absolute;
    right: 60px;
    top: 20px;
  }
  .page-header .header-right .language {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .mobile-nav-box {
    display: block;
  }
}

@media all and (max-width: 768px) {
  .search-panel .search-main .result-wrap {
    max-width: 95%;
  }
  .search-panel .search-main .result-wrap .tip {
    padding: 20px 0 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin: auto;
  }
  .search-panel .search-main .result-wrap .result-container {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
  }
  .search-panel .search-main .result-wrap .result-container .result-box.case {
    margin-left: 5%;
  }
  .search-panel .search-main .result-wrap .result-container .result-box .item {
    margin-bottom: 15px;
  }
  .search-panel .search-main .result-wrap .result-container .label {
    margin-bottom: 10px;
    padding-left: 5%;
    box-sizing: border-box;
  }
  .footer .footer-nav {
    display: none;
  }
  .to-top-btn {
    right: 10px;
    width: 50px;
    height: 50px;
    bottom: 10px;
  }
  .font-95 {
    font-size: 40px;
  }
  .font-68 {
    font-size: 34px;
  }
  .font-66 {
    font-size: 32px;
  }
  .font-52 {
    font-size: 26px;
  }
  .font-40 {
    font-size: 20px;
  }
  .font-32 {
    font-size: 20px;
  }
  .font-28 {
    font-size: 20px;
  }
  .font-26 {
    font-size: 20px;
  }
  .font-24 {
    font-size: 16px;
  }
  .font-22 {
    font-size: 14px;
  }
  .font-18 {
    font-size: 14px;
  }
  .font-16 {
    font-size: 12px;
  }
  body {
    padding-top: 60px;
  }
  .black-header {
    padding-top: 60px;
  }
  .black-header .page-header {
    height: 60px;
    background: #000;
    box-sizing: border-box;
  }
  .black-header .page-header .nav-toggle .icon-menu span {
    background-color: #fff;
  }
  .page-header {
    height: 60px;
    line-height: 60px;
  }
  .page-header .shares-wrap {
    display: none;
  }
  .page-header .logo-wrap {
    width: 100px;
    margin-right: 0;
  }
  .page-header .logo-wrap .logo {
    background-size: 100px 23.3px !important;
  }
  .page-header .logo-title {
    margin-left: 5px;
    padding-left: 5px;
  }
  .page-header .header-left {
    flex: 1;
  }
  .page-header .header-right .search-btn {
    position: absolute;
    right: 60px;
    top: 20px;
  }
  .page-header .header-right .language {
    display: none;
  }
  .banner .banner-wrap {
    padding-bottom: 89.6%;
  }
  .banner .banner-title {
    font-size: 24px;
  }
  .banner .crumbs {
    font-size: 12px;
    margin-top: 0;
  }
  .footer .footer-wrap {
    padding: 90px 0 30px;
  }
  .footer .footer-nav {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 20px;
    text-align: center;
  }
  .footer .footer-nav-item {
    width: 100%;
    margin-right: 0;
    font-size: 14px;
    line-height: 36px;
  }
  .footer .footer-nav-item dt {
    font-size: 14px;
    line-height: 36px;
  }
  .footer .footer-nav-item dd {
    display: none;
    font-size: 13px;
    line-height: 28px;
  }
  .footer .footer-information {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #ccc;
  }
  .footer .footer-information .footer-logo-wrap {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer .footer-information .footer-copyright {
    font-size: 12px;
    padding: 50px 0 0;
    width: 70%;
    word-break: keep-all;
    text-align: center;
    margin: 0 auto;
  }
  .footer .footer-information .footer-powered {
    font-size: 10px;
    display: none;
  }
  .footer .footer-information .footer-share {
    position: absolute;
    left: 0;
    bottom: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .footer-information .footer-share .wx-icon {
    margin-left: 0;
  }
  .footer .footer-information .footer-share .text {
    display: none;
  }
}

@media all and (max-width: 420px) {
  .font-18 {
    font-size: 12px;
  }
}
