/*
 * @Inc: https://www.hz-xg.com/
 * @Author: fegq
 * @Descripttion: this is global style.
 * @version: v0.0.1
 * @Date: 2020-11-03 17:12:21
 * @LastEditors: fegq
 * @LastEditTime: 2021-09-06 11:08:54
 */
/*
common property
*/
/*
common methods
*/
.img {
  display: inline-block;
  width: 100%;
  height: auto;
}

@-webkit-keyframes imgScaling {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes imgScaling {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
table {
  width: 100%;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 5px #e60013;
          box-shadow: inset 0 0 5px #e60013;
  background: #e60013;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px white;
          box-shadow: inset 0 0 5px white;
  border-radius: 10px;
  background: white;
}

.scrollbox::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.scrollbox::-webkit-scrollbar-thumb {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 5px #e60013;
          box-shadow: inset 0 0 5px #e60013;
  background: #e60013;
}

.scrollbox::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px white;
          box-shadow: inset 0 0 5px white;
  border-radius: 10px;
  background: white;
}

.develop::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.develop::-webkit-scrollbar-thumb {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 5px transparent;
          box-shadow: inset 0 0 5px transparent;
  background: transparent;
}

.develop::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px transparent;
          box-shadow: inset 0 0 5px transparent;
  border-radius: 10px;
  background: transparent;
}

/* common */
.inner {
  margin: 0 auto;
  width: 1200px;
  height: auto;
}

body.hide {
  overflow: hidden;
}

html,
body {
  min-width: 1200px;
  overflow-x: hidden;
}

header,
main,
footer {
  width: 100%;
  min-width: 1200px;
}

/* header */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 111px;
  background: white;
}
header .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 111px;
  background: white;
  height: 100%;
}
header .header-logo {
  margin-right: 110px;
  float: left;
  display: block;
  width: 115px;
  height: 88px;
}
header .header-nav {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 36px;
  padding-top: 48px;
  padding-right: 105px;
  width: 976px;
  height: 108px;
}
header .header-nav > li > a {
  position: relative;
  display: block;
  padding-bottom: 15px;
  font-size: 16px;
  color: #333;
  overflow: hidden;
}
header .header-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #e90117;
  color: white;
  border-radius: 1.5px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all .5s;
  transition: all .5s;
}
header .header-nav > li .header-nav-child {
  display: block;
  position: fixed;
  left: 0;
  top: 108px;
  width: 100%;
  height: 108px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: all .5s;
  transition: all .5s;
}
header .header-nav > li .header-nav-child .header-child-ls {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding-left: 230px;
  width: 1200px;
  height: 108px;
}
header .header-nav > li .header-nav-child .header-child-ls li {
  margin-right: 50px;
  list-style: disc;
}
header .header-nav > li .header-nav-child .header-child-ls li a {
  color: #333;
  font-size: 14px;
}
header .header-nav > li .header-nav-child .header-child-ls li:hover a {
  color: #e90117;
  text-decoration: underline;
}
header .header-nav > li.active > a {
  color: #e90117;
}
header .header-nav > li.active > a::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
header .header-nav > li:hover .header-nav-child {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
header.fixed {
  position: absolute;
  top: 0;
  background: white;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  z-index: 9;
}

.header-menu {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
  width: 108px;
  height: 111px;
  background: #e60013;
  cursor: pointer;
}
.header-menu span {
  display: inline-block;
  width: 46px;
  height: 4px;
  background: white;
}
.header-menu.active {
  display: none;
}

#navs {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 999;
}
#navs .nav-btn {
  position: relative;
  height: 108px;
}
#navs .nav-btn .header-menu span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 12px);
          transform: rotate(45deg) translate(5px, 12px);
  width: 60px;
}
#navs .nav-btn .header-menu span:nth-child(2) {
  visibility: hidden;
}
#navs .nav-btn .header-menu span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(9px, -17px);
          transform: rotate(-45deg) translate(9px, -17px);
  width: 60px;
}
#navs .nav-inner {
  position: absolute;
  right: -760px;
  top: 108px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 60px;
  width: 760px;
  height: calc(100vh - 108px);
  background: white;
  -webkit-transition: all .5s;
  transition: all .5s;
  overflow-x: hidden;
  overflow-y: auto;
}
#navs .nav-inner .nav-title {
  margin-bottom: 10px;
}
#navs .nav-inner .nav-title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#navs .nav-inner .nav-title a img,
#navs .nav-inner .nav-title a span {
  display: inline-block;
}
#navs .nav-inner .nav-title a img {
  width: 115px;
  height: 88px;
}
#navs .nav-inner .nav-title a span {
  margin: 15px 0;
  color: #333;
  font-size: 14px;
}
#navs .nav-inner .nav-mid {
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
#navs .nav-inner .nav-mid .nav-ls li {
  margin-bottom: 5px;
  line-height: 1.5;
}
#navs .nav-inner .nav-mid .nav-ls li > a {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  width: auto;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  font-weight: bold;
}
#navs .nav-inner .nav-mid .nav-ls li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #e60013;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all .5s;
  transition: all .5s;
}
#navs .nav-inner .nav-mid .nav-ls li > a:hover {
  color: #e60013;
}
#navs .nav-inner .nav-mid .nav-ls li > a:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#navs .nav-inner .nav-mid .nav-ls li .nav-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#navs .nav-inner .nav-mid .nav-ls li .nav-child li {
  line-height: 1.5;
}
#navs .nav-inner .nav-mid .nav-ls li .nav-child li a {
  margin-right: 15px;
  font-size: 14px;
  color: #999;
}
#navs .nav-inner .nav-mid .nav-ls li .nav-child li a:hover {
  color: #e60013;
}
#navs .nav-inner .nav-contact .nav-contact-item {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}
#navs .nav-inner .nav-contact .nav-contact-item i {
  margin-right: 10px;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
#navs .nav-inner .nav-contact .nav-contact-item i.nav-icon-pos {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/icon-pos-black.png");
  background-size: 50%;
}
#navs .nav-inner .nav-contact .nav-contact-item i.nav-icon-call {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/icon-phone-black.png");
  background-size: 50%;
}
#navs .nav-inner .nav-contact .nav-contact-item p {
  font-size: 14px;
  line-height: 1.8;
}
#navs .nav-inner.active {
  right: 0;
}
#navs.active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* footer */
footer {
  padding: 90px 0 40px 0;
  background: black;
}
footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}
footer .inner a {
  color: white;
}
footer .inner .footer-left {
  margin-right: 140px;
  width: 200px;
}
footer .inner .footer-left .footer-left-logo {
  margin-bottom: 40px;
  width: 115px;
  height: 88px;
}
footer .inner .footer-left .footer-left-logo a, footer .inner .footer-left .footer-left-logo img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
footer .inner .footer-left .footer-left-qrcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .inner .footer-left .footer-left-qrcode p {
  text-align: center;
}
footer .inner .footer-left .footer-left-qrcode p:first-child {
  margin-right: 15px;
}
footer .inner .footer-left .footer-left-qrcode p img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  display: inline-block;
  width: 88px;
  height: 88px;
  border: 1px solid #e60013;
}
footer .inner .footer-left .footer-left-qrcode p span {
  font-size: 14px;
  line-height: 2.2857142857;
}
footer .inner .footer-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
footer .inner .footer-right .footer-right-top {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
footer .inner .footer-right .footer-right-top .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .inner .footer-right .footer-right-top .footer-nav li > a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
}
footer .inner .footer-right .footer-right-top .footer-nav li > a:hover {
  color: white;
}
footer .inner .footer-right .footer-right-top .footer-nav li .dot {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 15px;
}
footer .inner .footer-right .footer-right-top .footer-nav li .dot::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -2.5px;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
}
footer .inner .footer-right .footer-right-top .footer-nav li .footer-nav-child li {
  font-size: 14px;
  line-height: 2.1428571429;
}
footer .inner .footer-right .footer-right-top .footer-nav li .footer-nav-child li a {
  color: rgba(255, 255, 255, 0.5);
}
footer .inner .footer-right .footer-right-top .footer-nav li .footer-nav-child li a:hover {
  color: rgba(255, 255, 255, 0.8);
}
footer .inner .footer-right .footer-right-bot {
  text-align: right;
  color: white;
  font-size: 12px;
  line-height: 1.6666666667;
}
footer .inner .footer-right .footer-right-bot p:first-child {
  margin-bottom: 15px;
}

main {
  margin: 0 auto;
  min-width: 1200px;
  font-size: 16px;
}

.gotop {
  position: fixed;
  bottom: 100px;
  right: -60px;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  z-index: 111;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.gotop i {
  color: #e60013;
  font-size: 50px;
}
.gotop.fixed {
  right: 10px;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
}

.loading-inner {
  width: 50px;
  height: 50px;
  border: 3px solid #e60013;
  border-radius: 50%;
  -webkit-animation: 1s loader-04 linear infinite;
  animation: 1s loader-04 linear infinite;
  position: relative;
}

.loading-inner:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -10px;
  left: 50%;
  border: 10px solid #e60013;
  border-radius: 50%;
}

@-webkit-keyframes loader-04 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-04 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.block-title h3 {
  font-size: 36px;
  line-height: 1.5;
}
.block-title h3 span {
  color: #333;
}
.block-title h3 strong {
  color: #af855b;
}
.block-title p {
  font-size: 18px;
  line-height: 1.7777777778;
  color: #af855b;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}
.video-modal .video-modal-inner {
  position: relative;
  width: 650px;
  height: 400px;
}
.video-modal .video-modal-inner .video-close {
  position: absolute;
  top: -25px;
  right: 5px;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
.video-modal .video-modal-inner .video-origin {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.video-modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 1400px) {
  #navs .nav-inner {
    padding: 20px 60px;
  }
  #navs .nav-inner .nav-title a span {
    margin: 5px 0;
  }
  #navs .nav-inner .nav-mid {
    margin-bottom: 10px;
    padding: 5px 0;
  }
  #navs .nav-inner .nav-mid .nav-ls li {
    line-height: 1.3;
  }
  #navs .nav-inner .nav-mid .nav-ls li .nav-child li {
    line-height: 1.2;
  }
  #navs .nav-inner .nav-contact {
    margin-top: 10px;
  }
  #navs .nav-inner .nav-contact .nav-contact-item {
    height: 30px;
  }
  #navs .nav-inner .nav-contact .nav-contact-item p {
    line-height: 1.2;
  }
}
.block-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 80px auto;
  height: 58px;
}
.block-page li {
  margin-right: 10px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.block-page li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #333;
}
.block-page li:first-child, .block-page li:last-child {
  background: #e5e0e0;
}
.block-page li.active {
  background: #ef404f;
}
.block-page li.active a {
  color: white;
}

.detail {
  padding-bottom: 55px;
}
.detail .detail-title {
  font-size: 20px;
  line-height: 1.8;
  color: #e91425;
  text-align: center;
  font-weight: normal;
}
.detail .detail-date {
  margin: 25px auto 35px auto;
  font-size: 14px;
  color: #999;
  text-align: center;
}
.detail .detail-content {
  margin-bottom: 30px;
  color: #666;
  font-size: 16px;
  line-height: 1.875;
}
.detail .detail-content img {
  display: inline-block;
  max-width: 100% !important;
  height: auto !important;
}
.detail .detail-page p {
  font-size: 15px;
  line-height: 35px;
  color: #333;
}
.detail .detail-page p a {
  color: #333;
}
.detail .detail-page p a:hover {
  color: #e60013;
}
