@charset "utf-8";
/* 公共响应变量 */
/*
插件：视频弹窗
版本：
官网：
*/
/* 视频弹窗 */
#hi-video-pop {
  color: var(--color-active);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-video-pop * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-video-pop .hi-close {
  position: fixed;
  top: 85%;
  left: 50%;
  z-index: 5;
  margin-left: -25px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #fff;
  border-radius: 50%;
  transition: 0.4s;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#hi-video-pop .hi-close:after,
#hi-video-pop .hi-close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  background: #333;
  transition: 0.4s;
}
#hi-video-pop .hi-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hi-video-pop .hi-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hi-video-pop .hi-close:hover {
  background: var(--color-active);
}
#hi-video-pop .hi-close:hover:after,
#hi-video-pop .hi-close:hover:before {
  background: #fff;
}
#hi-video-pop .hi-video-box {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hi-video-pop .hi-video-box .hi-video-wrap {
  position: relative;
  max-width: 90vh;
  border: 2px solid #fff;
}
@media (max-width: 767px) {
  #hi-video-pop .hi-video-box .hi-video-wrap {
    max-width: 90%;
  }
}
#hi-video-pop .hi-video-box .hi-video-wrap video {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
/* iframe视频弹窗 */
#hi-iframe-video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-iframe-video * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-iframe-video .hi-close {
  position: fixed;
  top: 85%;
  left: 50%;
  z-index: 5;
  margin-left: -25px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #fff;
  border-radius: 50%;
  transition: 0.4s;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#hi-iframe-video .hi-close:after,
#hi-iframe-video .hi-close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  background: #333;
  transition: 0.4s;
}
#hi-iframe-video .hi-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hi-iframe-video .hi-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hi-iframe-video .hi-close:hover {
  background: var(--color-active);
}
#hi-iframe-video .hi-close:hover:after,
#hi-iframe-video .hi-close:hover:before {
  background: #fff;
}
#hi-iframe-video iframe {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100vh;
  height: 60vh;
  max-width: 90%;
  max-height: 70%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  #hi-iframe-video iframe {
    width: 90vw;
    height: 60vw;
  }
}
/*
插件：视频全屏
版本：
官网：
*/
#hi-video-pop2 {
  display: none;
  height: 0;
  width: 0;
}
/*
插件：图片弹窗
版本：
官网：
*/
#hi-img-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-img-pop * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-img-pop .hi-close {
  position: fixed;
  top: 85%;
  left: 50%;
  margin-left: -25px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #fff;
  border-radius: 50%;
  transition: 0.4s;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#hi-img-pop .hi-close:after,
#hi-img-pop .hi-close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  background: #333;
  transition: 0.4s;
}
#hi-img-pop .hi-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hi-img-pop .hi-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hi-img-pop .hi-close:hover {
  background: var(--color-active);
}
#hi-img-pop .hi-close:hover:after,
#hi-img-pop .hi-close:hover:before {
  background: #fff;
}
#hi-img-pop > img {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 90%;
  max-height: 65%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/*
插件：投递简历弹窗
版本：
官网：
*/
#hi-resume-pop {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-resume-pop * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-resume-pop form {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 500px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 1580px) {
  #hi-resume-pop form {
    max-width: 400px;
  }
}
#hi-resume-pop form .hi-title-box {
  position: relative;
  padding: 0 0.4rem;
  background: var(--color-active);
}
#hi-resume-pop form .hi-title-box .hi-title {
  line-height: 0.8rem;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 1580px) {
  #hi-resume-pop form .hi-title-box .hi-title {
    line-height: 1rem;
    font-size: 0.4rem;
  }
}
#hi-resume-pop form .hi-title-box .hi-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 1.05rem;
  height: 0.8rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  #hi-resume-pop form .hi-title-box .hi-close {
    width: 1.05rem;
    height: 1rem;
  }
}
#hi-resume-pop form .hi-title-box .hi-close:before,
#hi-resume-pop form .hi-title-box .hi-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -0.13rem;
  width: 0.25rem;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  #hi-resume-pop form .hi-title-box .hi-close:before,
  #hi-resume-pop form .hi-title-box .hi-close:after {
    margin: -1px 0 0 -0.2rem;
    width: 0.4rem;
  }
}
#hi-resume-pop form .hi-title-box .hi-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hi-resume-pop form .hi-box {
  padding: 0.4rem;
  line-height: 0.6rem;
}
@media (max-width: 767px) {
  #hi-resume-pop form .hi-box {
    line-height: 0.6rem;
  }
}
#hi-resume-pop form .hi-box input {
  margin-bottom: 0.2rem;
  padding: 0 0.15rem;
  width: 100%;
  height: 0.6rem;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  #hi-resume-pop form .hi-box input {
    height: 0.8rem;
  }
}
#hi-resume-pop form .hi-box button {
  width: 100%;
  height: 0.6rem;
  background: var(--color-active);
  color: #fff;
  cursor: pointer;
  border: 0;
}
@media (max-width: 767px) {
  #hi-resume-pop form .hi-box button {
    height: 0.8rem;
  }
}
#hi-resume-pop form .hi-box .hi-file-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}
#hi-resume-pop form .hi-box .hi-file-box .hi-input-box {
  position: relative;
  display: inline-block;
  margin-right: 0.15rem;
  padding: 0.05rem 0.15rem;
  line-height: 0.3rem;
  background: var(--color-active);
}
@media (max-width: 767px) {
  #hi-resume-pop form .hi-box .hi-file-box .hi-input-box {
    padding: 0.1rem 0.15rem;
    line-height: 0.4rem;
  }
}
#hi-resume-pop form .hi-box .hi-file-box .hi-input-box input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}
#hi-resume-pop form .hi-box .hi-file-box .hi-input-box .hi-text {
  color: #fff;
}
#hi-resume-pop form .hi-box .hi-file-box .hi-text2 {
  line-height: 0.4rem;
}
@media (max-width: 767px) {
  #hi-resume-pop form .hi-box .hi-file-box .hi-text2 {
    padding: 0.1rem 0;
  }
}
#hi-resume-pop form .hi-box .hi-code-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}
#hi-resume-pop form .hi-box .hi-code-box input {
  margin-bottom: 0;
  width: calc(100% - 1.4rem) !important;
}
@media (max-width: 767px) {
  #hi-resume-pop form .hi-box .hi-code-box input {
    width: calc(100% - 2.2rem) !important;
  }
}
#hi-resume-pop form .hi-box .hi-code-box img {
  max-width: 1.3rem;
  max-height: 0.6rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  #hi-resume-pop form .hi-box .hi-code-box img {
    max-width: 2rem;
    max-height: 0.8rem;
  }
}
/*
插件：图片弹窗
版本：
官网：
*/
.img-pop {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
}
.img-pop * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*
插件：animate动画
版本：3.7.2
官网：https://animate.style/
*/
@-webkit-keyframes h-scale-anim {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes h-scale-anim {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes h-line-mask-anim {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-clip-path: polygon(-10% -100%, 110% -100%, 110% 0%, -10% 0%);
    clip-path: polygon(-10% -100%, 110% -100%, 110% 0%, -10% 0%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(-10% 0%, 110% 0%, 110% 110%, -10% 110%);
    clip-path: polygon(-10% 0%, 110% 0%, 110% 110%, -10% 110%);
  }
}
@keyframes h-line-mask-anim {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-clip-path: polygon(-10% -100%, 110% -100%, 110% 0%, -10% 0%);
    clip-path: polygon(-10% -100%, 110% -100%, 110% 0%, -10% 0%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(-10% 0%, 110% 0%, 110% 110%, -10% 110%);
    clip-path: polygon(-10% 0%, 110% 0%, 110% 110%, -10% 110%);
  }
}
@-webkit-keyframes scrollToTop {
  0% {
    transform: translateY(50px) scale(0.99);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes scrollToTop {
  0% {
    transform: translateY(50px) scale(0.99);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes right-img-animate {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes right-img-animate {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@-webkit-keyframes right-animate {
  from {
    opacity: 0;
    transform: translate(100%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@keyframes right-animate {
  from {
    opacity: 0;
    transform: translate(100%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes up-animate {
  0% {
    opacity: 0;
    transform: matrix(1, 0.1, 0, 1, 0, 20);
  }
  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@keyframes up-animate {
  0% {
    opacity: 0;
    transform: matrix(1, 0.1, 0, 1, 0, 20);
  }
  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@-webkit-keyframes scaleInImg {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleInImg {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes icon-video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes icon-video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes icon_video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes icon_video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes h-line {
  0% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  20% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  30% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 0;
  }
  31% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 0;
  }
  50% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
}
@keyframes h-line {
  0% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  20% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  30% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 0;
  }
  31% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 0;
  }
  50% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
}
.scroll-animate.animated {
  visibility: hidden;
}
.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.h-scale-anim {
  -webkit-animation-name: h-scale-anim;
  animation-name: h-scale-anim;
  -webkit-transition: transform calc(1.5s*var(--animation-duration-factor)) cubic-bezier(0.215, 0.61, 0.355, 1), opacity calc(0.6s*var(--animation-duration-factor)) cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform calc(1.5s*var(--animation-duration-factor)) cubic-bezier(0.215, 0.61, 0.355, 1), opacity calc(0.6s*var(--animation-duration-factor)) cubic-bezier(0.215, 0.61, 0.355, 1);
}
.h-line-mask-anim {
  -webkit-animation-name: h-line-mask-anim;
  animation-name: h-line-mask-anim;
  transition: clip-path 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.scrollToTop {
  -webkit-animation-name: scrollToTop;
  animation-name: scrollToTop;
}
.right-img-animate {
  display: inline-block;
  -webkit-animation-name: right-img-animate;
  animation-name: right-img-animate;
}
.right-animate {
  display: inline-block;
  -webkit-animation-name: right-animate;
  animation-name: right-animate;
}
.up-animate {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-animation: up-animate 1.2s cubic-bezier(0.49, 0.54, 0.16, 1);
  animation: up-animate 1.2s cubic-bezier(0.49, 0.54, 0.16, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.scaleInImg {
  -webkit-animation-name: scaleInImg;
  animation-name: scaleInImg;
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.icon-video {
  -webkit-animation-name: icon-video;
  animation-name: icon-video;
}
.icon_video {
  -webkit-animation-name: icon_video;
  animation-name: icon_video;
}
.h-line {
  -webkit-animation-name: h-line;
  animation-name: h-line;
}
/*
插件：swiper轮播swiper.min.css
版本：4.5.0
官网：https://www.swiper.com.cn
*/
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform,height;
  transition-property: transform,height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}
.color-black-544 {
  color: #544B42;
}
.color-black-403 {
  color: #403932;
}
.color-black-514 {
  color: #514941;
}
.bg-black-544 {
  background-color: #544B42;
}
.bg-black-403 {
  background-color: #403932;
}
.bg-black-514 {
  background-color: #514941;
}
:root {
  /* 导航高度 */
  --header-height: 0.99rem;
  /* COLOR */
  --color-active: #544B42;
  --color-black-544: #544B42;
  --color-black-403: #403932;
  --color-black-514: #514941;
  --color-white: #fff;
  --color-black: #282828;
  --color-gray-f6: #f6f6f6;
  --color-gray-f4: #f4f4f4;
  --color-gray-eee: #eee;
  --color-gray-ddd: #ddd;
  --color-gray-bbb: #bbb;
  --color-gray-999: #999;
  --color-gray-666: #666;
  --color-gray-444: #444;
  --color-gray-333: #333;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font13: clamp(13px, 0.13rem, 13px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font15: clamp(12px, 0.15rem, 15px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font62: clamp(31px, 0.62rem, 62px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font75: clamp(32px, 0.75rem, 75px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font230: 2.3rem;
}
@media (max-width: 1580px) {
  :root {
    --header-height: 60px;
  }
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font13 {
  font-size: var(--font13);
}
.font14 {
  font-size: var(--font14);
}
.font15 {
  font-size: var(--font15);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font62 {
  font-size: var(--font62);
}
.font64 {
  font-size: var(--font64);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font75 {
  font-size: var(--font75);
}
.font80 {
  font-size: var(--font80);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font230 {
  font-size: var(--font230);
}
/* 字体 */
@font-face {
  font-family: 'AlibabaPuHuiTi_3_35_Thin';
  src: url('../fonts/AlibabaPuHuiTi_3_55_Regular.woff2') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.AlibabaPuHuiTi_3_35_Thin {
  font-family: 'AlibabaPuHuiTi_3_35_Thin';
}
@font-face {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_L';
  src: url('../fonts/AlibabaPuHuiTi_3_45_Light.woff2') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.AlibabaPuHuiTi_3_35_Thin_L {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_L';
}
@font-face {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_R';
  src: url('../fonts/AlibabaPuHuiTi_3_55_Regular.woff2') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.AlibabaPuHuiTi_3_35_Thin_R {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_R';
}
@font-face {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  src: url('../fonts/AlibabaPuHuiTi_3_65_Medium.woff2') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.AlibabaPuHuiTi_3_35_Thin_M {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
}

@font-face {
  font-family: 'SegoeUI_B';
  src: url('../fonts/SegoeUI-Bold.woff2') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.SegoeUI_B {
  font-family: 'SegoeUI_B';
}
/* 初始化 */
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width: 1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width: 480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_L', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.no_margin {
  margin-bottom: 0 !important;
}
a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  display: inline-block;
  outline: none;
  -moz-outline-style: none;
}
a:hover {
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
input,
button {
  border: none;
  background-color: transparent;
  box-sizing: border-box;
  outline: none;
}
input[type="checkbox"] {
  vertical-align: -2px;
  margin-right: 4px;
}
input::-webkit-input-placeholder {
  color: #B7B8B9;
}
input:-moz-placeholder {
  color: #B7B8B9;
}
input::-moz-placeholder {
  color: #B7B8B9;
}
input:-ms-input-placeholder {
  color: #B7B8B9;
}
textarea::-webkit-input-placeholder {
  color: #B7B8B9;
}
textarea:-moz-placeholder {
  color: #B7B8B9;
}
textarea::-moz-placeholder {
  color: #B7B8B9;
}
textarea:-ms-input-placeholder {
  color: #B7B8B9;
}
body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  /*滚动条-背景*/
  background: #ededed;
}
::-webkit-scrollbar {
  width: 3px;
  height: 1px;
}
::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  background-color: var(--color-black-514);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-track {
  /*滚动条-背景*/
  border-radius: 3px;
  background: #e5e3e1;
}
.scroller {
  overflow: auto;
  padding-right: 0.11rem;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.flex_auto {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
.flex_1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.order_2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.order_3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.dh {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/* 动画延迟 */
.white-space {
  white-space: pre-line;
}
@media (max-width: 1024px) {
  .white-space {
    white-space: inherit;
  }
}
.font-weight-b {
  font-weight: bold;
}
.text-cap {
  text-transform: uppercase;
}
/* 布局 */
.pc,
.c-pc {
  display: block;
}
@media (max-width: 767px) {
  .pc,
  .c-pc {
    display: none;
  }
}
.wap,
.mobile,
.c-mb {
  display: none;
}
@media (max-width: 767px) {
  .wap,
  .mobile,
  .c-mb {
    display: block;
  }
}
/* images等比-NEW */
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 5px;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.public-img-plus:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.item-animation:hover .public-img-plus img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.swiper {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.swiper .swiper-slide .ani {
  display: none;
}
.swiper .swiper-slide.swiper-slide-active .ani {
  display: block;
}
.swiper-pagination {
  bottom: 0;
  opacity: 0;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #DAD7DE;
  opacity: 1;
  margin: 0 0.1rem !important;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 0.06rem !important;
  }
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #403E3D;
}
.slide-btn {
  width: 23px;
  height: 17px;
  background: no-repeat center;
  border-radius: 50%;
  margin-top: -8.5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.slide-btn img,
.slide-btn svg {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .slide-btn {
    display: none;
  }
}
.slide-btn-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.33rem;
}
.slide-btn-main .slide-btn {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  margin: 0;
}
/* 公共样式 - 结束 */
.header {
  --color: #fff;
  --color-black: #000;
  --color-active: #000;
  /* ----------------------------------------------------------    手机端导航 */
}
.header.active .header-pc,
.header.header-bg .header-pc {
  background-color: #fff;
}
.header.active .header-pc .header-wrap .logo img,
.header.header-bg .header-pc .header-wrap .logo img,
.header.active .header-pc .header-wrap .logo svg,
.header.header-bg .header-pc .header-wrap .logo svg {
  -webkit-filter: initial;
  filter: initial;
}
.header.active .header-pc .header-wrap .nav dt a,
.header.header-bg .header-pc .header-wrap .nav dt a {
  color: var(--color-black);
}
.header.active .header-pc .header-wrap .header-right,
.header.header-bg .header-pc .header-wrap .header-right {
  color: var(--color-black);
}
.header.active .header-pc .header-wrap .header-right .header-language .round .header-language-icon img,
.header.header-bg .header-pc .header-wrap .header-right .header-language .round .header-language-icon img,
.header.active .header-pc .header-wrap .header-right .header-language .round .header-select-icon img,
.header.header-bg .header-pc .header-wrap .header-right .header-language .round .header-select-icon img,
.header.active .header-pc .header-wrap .header-right .header-language .round .header-language-icon svg,
.header.header-bg .header-pc .header-wrap .header-right .header-language .round .header-language-icon svg,
.header.active .header-pc .header-wrap .header-right .header-language .round .header-select-icon svg,
.header.header-bg .header-pc .header-wrap .header-right .header-language .round .header-select-icon svg {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.header.active .header-pc .header-wrap .header-right .header-contact .round,
.header.header-bg .header-pc .header-wrap .header-right .header-contact .round {
  border-color: rgba(0, 0, 0, 0.4);
}
.header.active .header-pc .header-wrap .header-right .header-contact .round .header-contact-icon img,
.header.header-bg .header-pc .header-wrap .header-right .header-contact .round .header-contact-icon img,
.header.active .header-pc .header-wrap .header-right .header-contact .round .header-contact-icon svg,
.header.header-bg .header-pc .header-wrap .header-right .header-contact .round .header-contact-icon svg {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.header .header-pc {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  margin: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .header-pc .header-wrap {
  margin: auto;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0 0.2rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .header-pc .header-wrap .logo {
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .header-pc .header-wrap .logo img,
.header .header-pc .header-wrap .logo svg {
  width: auto;
  height: 0.64rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.header .header-pc .header-wrap .nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0 0.42rem;
}
@media (max-width: 1280px) {
  .header .header-pc .header-wrap .nav {
    grid-gap: 0 0.28rem;
  }
}
.header .header-pc .header-wrap .nav .bor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-active);
}
.header .header-pc .header-wrap .nav dl {
  position: relative;
  z-index: 10;
}
.header .header-pc .header-wrap .nav dl:hover {
  z-index: 20;
}
.header .header-pc .header-wrap .nav dt a {
  font-size: var(--font16);
  color: var(--color);
  position: relative;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .header-pc .header-wrap .nav dt a span {
  position: relative;
}
.header .header-pc .header-wrap .nav dt a span::before {
  content: '';
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.16rem;
  margin: auto;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .header-pc .header-wrap .nav dt a.active span::before {
  opacity: 1;
}
.header .header-pc .header-wrap .nav dd {
  display: none;
  width: 140px;
  background-color: var(--color-white);
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -70px;
}
.header .header-pc .header-wrap .nav dd .ovs {
  height: 100%;
  padding: 20px 0 10px;
}
.header .header-pc .header-wrap .nav dd .ovs a {
  display: block;
  font-size: var(--font14);
  color: var(--color-black);
  line-height: 1.5em;
  margin-bottom: 15px;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .header-pc .header-wrap .nav dd .ovs a:hover {
  color: var(--color-active);
}
.header .header-pc .header-wrap .nav dd.nav-open {
  width: 100%;
  position: fixed;
  top: var(--header-height);
  left: 0;
  margin-left: 0;
}
.header .header-pc .header-wrap .nav dd.nav-open .container-custom {
  width: 50.652%;
  min-width: 970px;
  margin: auto;
}
.header .header-pc .header-wrap .nav dd.nav-open .container-custom .row {
  margin-left: -15px;
  margin-right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.header .header-pc .header-wrap .nav dd.nav-open .container-custom .ovs {
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}
.header .header-pc .header-wrap .nav dd.nav-open .container-custom .ovs h3 {
  font-weight: bold;
  border-bottom: 1px solid var(--color-gray-100);
  margin-top: 6px;
  margin-bottom: 20px;
}
.header .header-pc .header-wrap .nav dd.nav-open .container-custom .ovs h3 a {
  margin-bottom: 6px;
}
.header .header-pc .header-wrap .nav dd.nav-open .container-custom .ovs a {
  text-align: left;
}
.header .header-pc .header-wrap .header-right {
  font-size: var(--font14);
  color: var(--color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0 0.42rem;
}
.header .header-pc .header-wrap .header-right .header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  height: var(--header-height);
  height: 0.41rem;
  min-height: 41px;
  cursor: pointer;
}
.header .header-pc .header-wrap .header-right .header-language:hover .language-con {
  display: block;
}
.header .header-pc .header-language-icon{
    display: flex;
    align-items: center;
}
.header .header-pc .header-wrap .header-right .header-language .round {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.12rem;
  align-items: center;
}

.header .header-pc .header-wrap .header-right .header-contact .round i{display: flex;align-items: center;}
.header .header-pc .header-wrap .header-right .header-contact .round p{margin-top: .05rem;}
.header .header-pc .header-wrap .header-right .header-language .round .header-language-icon img,
.header .header-pc .header-wrap .header-right .header-language .round .header-language-icon svg {
  width: 0.25rem;
  min-width: 25px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin-top: -2px;
}
.header .header-pc .header-wrap .header-right .header-language .round .header-select-icon img,
.header .header-pc .header-wrap .header-right .header-language .round .header-select-icon svg {
  width: 0.08rem;
  min-width: 8px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.header .header-pc .header-wrap .header-right .header-language .language-con {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 8px 0 50px rgba(0, 0, 0, 0.08);
  padding: 24px 0;
  padding: 0.24rem 0;
  text-align: center;
  display: none;
}
.header .header-pc .header-wrap .header-right .header-language .language-con a {
  display: block;
  line-height: 2;
  color: #666;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .header-pc .header-wrap .header-right .header-language .language-con a:hover,
.header .header-pc .header-wrap .header-right .header-language .language-con a.active {
  color: #000;
}
.header .header-pc .header-wrap .header-right .header-contact:hover .round {
  background-color: #666;
  border-color: #666;
  color: #fff;
}
.header .header-pc .header-wrap .header-right .header-contact:hover .round .header-contact-icon img,
.header .header-pc .header-wrap .header-right .header-contact:hover .round .header-contact-icon svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.header .header-pc .header-wrap .header-right .header-contact .round {
  height: 0.41rem;
  min-height: 41px;
  padding: 0 0.28rem 0 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.16rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .header-pc .header-wrap .header-right .header-contact .round .header-contact-icon img,
.header .header-pc .header-wrap .header-right .header-contact .round .header-contact-icon svg {
  width: 0.21rem;
  min-width: 21px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media (max-width: 1024px) {
  .header .header-pc {
    display: none;
  }
}
.header .mask-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 29, 44, 0.2);
  display: none;
}
.header .mask-bg.active {
  display: block;
}
.header .m_header_box {
  width: 100%;
  height: auto;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
}
.header .m_header_box .header_title {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  position: relative;
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
.header .m_header_box .header_title .logo {
  height: 100%;
  overflow: hidden;
}
.header .m_header_box .header_title .logo a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .m_header_box .header_title .logo img,
.header .m_header_box .header_title .logo svg {
  width: auto;
  height: 24px;
}
.header .m_header_box .header_title .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.header .m_header_box .header_title .menu_btn {
  width: 30px;
  height: 30px;
  position: relative;
  overflow: hidden;
}
.header .m_header_box .header_title .menu_btn::after,
.header .m_header_box .header_title .menu_btn::before,
.header .m_header_box .header_title .menu_btn i {
  width: 70%;
  height: 2px;
  display: block;
  background: var(--color-black);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -35%;
  transform-origin: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .m_header_box .header_title .menu_btn::before {
  content: '';
  margin-top: -8px;
}
.header .m_header_box .header_title .menu_btn::after {
  content: '';
  margin-top: 6px;
}
.header .m_header_box .header_title .menu_btn.active i {
  opacity: 0;
}
.header .m_header_box .header_title .menu_btn.active::before {
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 5px;
  background: var(--color-active);
}
.header .m_header_box .header_title .menu_btn.active::after {
  margin-top: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 5px;
  background: var(--color-active);
}
.header .m_header_box .header_title .head_btn {
  width: auto;
  height: 30px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}
.header .m_header_box .header_title .head_btn .icon {
  max-width: 14px;
  height: 14px;
  font-size: 0;
  margin-right: 5px;
  filter: invert(1);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .m_header_box .header_title .head_btn .link {
  line-height: 1;
  font-size: 12px;
  color: var(--color-black);
  margin-top: 3px;
}
.header .m_header_box .header_title .head_btn .link span {
  opacity: 0.6;
}
.header .m_header_box .header_title .head_btn .link a {
  color: var(--color-black);
  opacity: 0.6;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .m_header_box .header_title .head_btn .link a:hover {
  opacity: 1;
}
.header .m_header_box .header_title .head_btn:hover .icon {
  filter: invert(1);
}
.header .m_header_box .header_title .head_btn:hover .link {
  color: var(--color-black);
}
.header .m_header_box .header_title .head_btn:hover .link a,
.header .m_header_box .header_title .head_btn:hover .link span {
  color: var(--color-black);
}
.header .m_header_box .header_body {
  width: 100%;
  height: calc(100vh - 50px);
  background: var(--color-gray-f6);
  display: none;
  overflow: hidden;
}
.header .m_header_box .header_body .menu_info {
  width: 100%;
  height: 100%;
  padding: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.header .m_header_box .header_body .menu_nav {
  width: 100%;
  height: auto;
  padding: 20px;
  overflow: hidden;
  overflow-y: auto;
}
.header .m_header_box .header_body .menu_nav ul {
  padding: 0;
  margin: 0;
}
.header .m_header_box .header_body .menu_nav ul li {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.header .m_header_box .header_body .menu_nav ul li .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
.header .m_header_box .header_body .menu_nav ul li .one a {
  padding: 15px 0;
  display: block;
  font-size: 14px;
  color: var(--color-gray-444);
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex: 1;
  position: relative;
}
.header .m_header_box .header_body .menu_nav ul li .one a .subtitle {
  font-size: 14px;
  margin-right: 10px;
}
.header .m_header_box .header_body .menu_nav ul li .one a .title {
  font-size: 14px;
}
.header .m_header_box .header_body .menu_nav ul li .one .icon {
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  color: var(--color-gray-444);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .m_header_box .header_body .menu_nav ul li .one .icon img,
.header .m_header_box .header_body .menu_nav ul li .one .icon svg {
  position: relative;
  width: 10px;
  height: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .m_header_box .header_body .menu_nav ul li .one.active a {
  color: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li .one.active .icon svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.header .m_header_box .header_body .menu_nav ul li .one.active .icon svg path {
  fill: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li ul {
  border-top: 1px solid var(--color-active);
  padding: 10px 0;
  display: none;
}
.header .m_header_box .header_body .menu_nav ul li ul li {
  border: 0;
}
.header .m_header_box .header_body .menu_nav ul li ul li a {
  display: block;
  font-size: 13px;
  padding: 6px 0 6px 20px;
  color: var(--color-gray-444);
  position: relative;
}
.header .m_header_box .header_body .menu_nav ul li ul li a .icon {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  color: var(--color-gray-444);
}
.header .m_header_box .header_body .menu_nav ul li ul li a .icon img,
.header .m_header_box .header_body .menu_nav ul li ul li a .icon svg {
  width: 8px;
  height: auto;
  position: static;
  margin: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .m_header_box .header_body .menu_nav ul li ul li .two.active {
  color: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li ul li .two.active a {
  color: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li ul li .two.active svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.header .m_header_box .header_body .menu_nav ul li ul li .two.active svg path {
  fill: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li ul li ul {
  border: 0;
  display: none;
}
.header .m_header_box .header_body .menu_nav ul li ul li ul li a {
  padding: 10px 0 10px 35px;
  font-size: 12px;
  color: var(--color-gray-999);
}
.header .m_header_box .header_body .menu_nav ul li ul li ul li a:before {
  content: '';
  width: 5px;
  height: 1px;
  color: var(--color-gray-999);
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -1.5px;
  z-index: 1;
}
.header .m_header_box .header_body .menu_nav ul li ul li ul li a.active:before {
  background: var(--color-active);
}
.header .m_header_box .header_body .menu_nav ul li ul li ul.active {
  display: block;
}
.header .m_header_box .header_body .menu_form {
  width: 100%;
  height: auto;
  padding: 0 20px;
  overflow: hidden;
}
.header .m_header_box .header_body .menu_form .center {
  width: 100%;
  height: 50px;
  background-color: var(--color-white);
  overflow: hidden;
}
.header .m_header_box .header_body .menu_form .center form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .m_header_box .header_body .menu_form .center form input {
  flex: 1;
  height: 100%;
  padding: 0 15px;
  font-size: 14px;
  color: var(--color-gray-444);
  border: 0;
}
.header .m_header_box .header_body .menu_form .center form button {
  width: 70px;
  border: 0;
  height: 100%;
  padding: 0;
  background: var(--color-active);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .m_header_box .header_body .menu_form .center form button img,
.header .m_header_box .header_body .menu_form .center form button svg {
  width: 18px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.header .m_header_box .header_body .menu_lang {
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 0 20px;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .m_header_box .header_body .menu_lang .one {
  width: auto;
  height: 36px;
  margin-right: 10px;
  overflow: hidden;
}
.header .m_header_box .header_body .menu_lang .one a {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: 50px;
  font-size: 12px;
  color: var(--color-gray-444);
}
.header .m_header_box .header_body .menu_lang .one a.active {
  background: var(--color-active);
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .header .m_header_box {
    display: block;
  }
}
.socials-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0 0.18rem;
}
.socials-wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.socials-wrap a .icon {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.socials-wrap a .icon img,
.socials-wrap a .icon svg {
  width: auto;
  height: 23px;
}
.socials-wrap a .socials-img {
  position: absolute;
  top: 46px;
  left: 50%;
  margin-left: -52px;
  width: 104px;
  height: 104px;
  background-color: white;
  border-radius: 8px;
  padding: 8px;
  z-index: 99;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-filter: alpha(opacity=0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  will-change: opacity;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -webkit-transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -moz-transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -ms-transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -o-transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}
.socials-wrap a .socials-img img {
  width: 100%;
  height: 100%;
}
.socials-wrap a .socials-img:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 6px 6px 6px;
  border-color: transparent transparent white transparent;
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  margin: auto;
}
.socials-wrap a:hover .socials-img {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -webkit-filter: alpha(opacity=100);
}
.footer {
  --color: #fff;
  color: var(--color);
  background: url(../images/footer-bg.jpg) no-repeat center;
  background-size: cover;
}
.footer .footer-up {
  padding: 1rem 0 1.08rem;
}
@media (max-width: 1024px) {
  .footer .footer-up {
    padding: 0.8rem 0;
  }
}
.footer .footer-down {
  padding-bottom: 0.6rem;
}
.footer .footer-down .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer .footer-down .wrap-box {
    display: block;
  }
}
.footer .footer-down .wrap-box .wrap-left {
  width: 47.14285714%;
  max-width: 660px;
}
@media (max-width: 1024px) {
  .footer .footer-down .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
}
.footer .footer-down .wrap-box .wrap-left .text-body + .text-body {
  margin-top: 0.1rem;
}
.footer .footer-down .wrap-box .wrap-left .text-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.1rem 0.5rem;
}
@media (max-width: 1024px) {
  .footer .footer-down .wrap-box .wrap-left .text-body {
    display: block;
  }
}
.footer .footer-down .wrap-box .wrap-left .text-body dl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
@media (max-width: 1024px) {
  .footer .footer-down .wrap-box .wrap-left .text-body dl {
    margin-bottom: 0.28rem;
  }
}
.footer .footer-down .wrap-box .wrap-left .text-body dl:nth-child(2) {
  flex: 1 1 35.5%;
}
.footer .footer-down .wrap-box .wrap-left .text-body dl dd h6 {
  line-height: 1;
  margin-bottom: 0.1rem;
}
.footer .footer-down .wrap-box .wrap-left .text-body dl dd h6 img,
.footer .footer-down .wrap-box .wrap-left .text-body dl dd h6 svg {
  width: 18px;
  height: auto;
  margin-right: 15px;
  position: relative;
  top: 0.04rem;
}
@media (max-width: 1024px) {
  .footer .footer-down .wrap-box .wrap-left .text-body dl dd h6 img,
  .footer .footer-down .wrap-box .wrap-left .text-body dl dd h6 svg {
    margin-right: 0.15rem;
  }
}
.footer .footer-down .wrap-box .wrap-left .text-body dl dd p {
  font-size: var(--font14);
  color: var(--color);
  line-height: 1.71428571em;
  opacity: 0.4;
  padding-left: 33px;
}
@media (max-width: 1024px) {
  .footer .footer-down .wrap-box {
    display: block;
  }
  .footer .footer-down .wrap-box .wrap-right {
    text-align: center;
  }
}
.footer .foot-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 0 0.6rem;
}
@media (max-width: 1024px) {
  .footer .foot-nav {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.footer .foot-nav .dl a:hover {
  opacity: 1;
}
.footer .foot-nav .dl .dt {
  display: block;
  padding-bottom: 0.26rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .foot-nav .dl .dt a {
  opacity: 1;
  font-size: var(--font18);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .foot-nav .dl .dt .icon {
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  color: var(--color-gray-444);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
}
.footer .foot-nav .dl .dt .icon img,
.footer .foot-nav .dl .dt .icon svg {
  position: relative;
  width: 10px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  .footer .foot-nav .dl .dt {
    padding-top: 0.2rem;
    padding-right: 50px;
    border-bottom: 1px solid #ededed;
  }
  .footer .foot-nav .dl .dt .icon {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .footer .foot-nav .dl .foot-nei-nav {
    display: none;
    margin-top: 0.1rem;
  }
}
.footer .foot-nav .dl .dd {
  opacity: 0.4;
  line-height: 1.71428571em;
  margin-bottom: 0.04rem;
  display: block;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .foot-nav .dl .dd:last-child {
  margin: 0;
}
.footer .text-body p {
  color: #676664;
  white-space: initial;
}
.footer .text-body p a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .text-body p a:hover {
  color: var(--color);
}
@media (max-width: 1024px) {
  .footer .text-body {
    text-align: center;
    line-height: 1.444;
  }
  .footer .text-body p {
    text-align: center;
  }
  .footer .text-body span,
  .footer .text-body a {
    display: block;
  }
}
.footer .socials-wrap {
  margin-top: 0.44rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 1024px) {
  .footer .socials-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0.48rem 0;
  }
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-text1 * {
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-5.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-3.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-6.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-4.png) no-repeat center / 100%;
}
.header-placeholder {
  height: var(--header-height);
}
.wrapper {
  /*overflow: hidden; margin-top: var(--header-height);*/
}
@media (max-width: 1024px) {
  .wrapper {
    margin-top: 50px;
  }
}
.container {
  width: 100%;
  height: auto;
  max-width: 83.33333333%;
  margin: 0 auto;
}
@media (min-width: 1901px) {
  .container {
    max-width: 1600px;
  }
}
@media (max-width: 1880px) {
  .container {
    max-width: 85.10638298%;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
.FASHIM-box {
  width: 100%;
  height: 0;
  position: relative;
  /*transform: translateY(calc(var(--header-height) * -1));*/
}
@-webkit-keyframes h-moreR-anim {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(5px);
  }
  30% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(2px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes h-moreR-anim {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(5px);
  }
  30% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(2px);
  }
  to {
    transform: translateX(0);
  }
}
.h-moreR-anim {
  -webkit-animation-name: h-moreR-anim;
  animation-name: h-moreR-anim;
}
@-webkit-keyframes h-moreL-anim {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(5px);
  }
  30% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(2px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes h-moreL-anim {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(5px);
  }
  30% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(2px);
  }
  to {
    transform: translateX(0);
  }
}
.h-moreL-anim {
  -webkit-animation-name: h-moreL-anim;
  animation-name: h-moreL-anim;
}
.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.btn-container .more-primary {
  position: relative;
  overflow: hidden;
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #fff;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary .more-primary-str {
  position: relative;
  padding: 0 0.68rem 0 0.16rem;
}
.btn-container .more-primary .more-primary-str::before,
.btn-container .more-primary .more-primary-str::after {
  content: '';
  width: 0.63rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 32%;
}
.btn-container .more-primary .more-primary-str::before {
  right: 0;
}
.btn-container .more-primary .more-primary-str::after {
  width: 0.11rem;
  left: 0;
}
.btn-container .more-primary2 {
  position: relative;
  padding-left: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.btn-container .more-primary2:hover .more-primary-str {
  -webkit-transform: translateX(-44px);
  transform: translateX(-44px);
}
.btn-container .more-primary2:hover .more-primary-circle.more-primary-circle-first {
  -webkit-transform: scale(0.5) translateX(100%);
  transform: scale(0.5) translateX(100%);
}
.btn-container .more-primary2:hover .more-primary-circle.more-primary-circle-last {
  right: 0;
  -webkit-animation: h-moreL-anim 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.3s;
  animation: h-moreL-anim 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.3s;
}
.btn-container .more-primary2 .more-primary-str {
  padding: 0 0.32rem;
  height: 40px;
  position: relative;
  z-index: 2;
  border-radius: 99px;
  color: #515859;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.6);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.32rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary2 .more-primary-str .icon img,
.btn-container .more-primary2 .more-primary-str .icon svg {
  width: 19px;
  height: auto;
}
.btn-container .more-primary2 .more-primary-circle {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary2 .more-primary-circle img,
.btn-container .more-primary2 .more-primary-circle svg {
  width: 15px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.btn-container .more-primary2 .more-primary-circle.more-primary-circle-first {
  left: 0;
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-container .more-primary2 .more-primary-circle.more-primary-circle-last {
  right: 0;
}
.btn-container .more-primary3 {
  position: relative;
  min-width: 1.68rem;
  height: 0.42rem;
  min-height: 40px;
  padding: 0 0.36rem;
  overflow: hidden;
  border-radius: 0.06rem;
  background-color: var(--color-active);
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary3.active,
.btn-container .more-primary3:hover {
  background-color: var(--color-black-403);
}
.btn-container .more-primary4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.btn-container .more-primary4.color-white .more-primary-circle {
  background-color: #efefef;
  background-color: rgba(239, 239, 239, 0.9);
}
.btn-container .more-primary4.color-white .more-primary-circle img,
.btn-container .more-primary4.color-white .more-primary-circle svg {
  -webkit-filter: initial;
  filter: initial;
}
.btn-container .more-primary4 .more-primary-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.66);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary4 .more-primary-circle img,
.btn-container .more-primary4 .more-primary-circle svg {
  width: 15px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.btn-container .more-primary5 {
  position: relative;
  min-width: 2.25rem;
  height: 0.6rem;
  min-height: 40px;
  padding: 0 0.36rem;
  overflow: hidden;
  background-color: var(--color-black-514);
  border-radius: 99px;
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.15rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary5.active,
.btn-container .more-primary5:hover {
  background-color: var(--color-black-544);
}
.btn-container .more-primary5 .more-primary-circle {
  line-height: 1;
}
.btn-container .more-primary5 .more-primary-circle img,
.btn-container .more-primary5 .more-primary-circle svg {
  width: 0.34rem;
  min-width: 24px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.btn-container .more-primary6 {
  position: relative;
  width: 100%;
  height: 0.5rem;
  min-height: 40px;
  padding: 0 0.36rem;
  overflow: hidden;
  background-color: #EEEDED;
  border-radius: 99px;
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.1rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary6.active,
.btn-container .more-primary6:hover {
  color: #fff;
  background-color: var(--color-black-514);
}
.btn-container .more-primary6.active .more-primary-circle img,
.btn-container .more-primary6:hover .more-primary-circle img,
.btn-container .more-primary6.active .more-primary-circle svg,
.btn-container .more-primary6:hover .more-primary-circle svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.btn-container .more-primary6 .more-primary-circle {
  line-height: 1;
}
.btn-container .more-primary6 .more-primary-circle img,
.btn-container .more-primary6 .more-primary-circle svg {
  width: 0.19rem;
  min-width: 16px;
  height: auto;
}
.btn-container .more-primary7 {
  position: relative;
  min-width: 2.76rem;
  height: 0.5rem;
  min-height: 40px;
  padding: 0 0.36rem 0 0.3rem;
  overflow: hidden;
  background-color: #403E3D;
  border-radius: 99px;
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.1rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary7.active,
.btn-container .more-primary7:hover {
  background-color: var(--color-black-514);
}
.btn-container .more-primary7 .more-primary-circle {
  line-height: 1;
}
.btn-container .more-primary7 .more-primary-circle img,
.btn-container .more-primary7 .more-primary-circle svg {
  width: 0.2rem;
  min-width: 16px;
  height: auto;
}
.btn-container .more-primary8 {
  position: relative;
  min-width: 1.56rem;
  height: 0.53rem;
  min-height: 40px;
  padding: 0 0.28rem;
  overflow: hidden;
  border: 1px solid #ece8e7;
  border-radius: 99px;
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.06rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary8.active,
.btn-container .more-primary8:hover {
  background-color: var(--color-black-514);
  border-color: var(--color-black-514);
}
.btn-container .more-primary8 .more-primary-circle {
  line-height: 1;
}
.btn-container .more-primary8 .more-primary-circle img,
.btn-container .more-primary8 .more-primary-circle svg {
  width: 0.14rem;
  min-width: 11px;
  height: auto;
  margin-top: 0.04rem;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.page-img-box {
  position: relative;
  overflow: hidden;
}
.page-img-box .page-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.page-img-box .page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-img-box .page-main {
  position: relative;
}
.layout-bg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 200vh;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  .layout-bg {
    background-size: cover;
    background-attachment: initial;
  }
}
.layout-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
@media (max-width: 1024px) {
  .layout-bg img {
    opacity: 1;
  }
}
.page-ban {
  --color: #fff;
  position: relative;
}
.page-ban:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  inset: 0;
  opacity: var(--progress);
  pointer-events: none;
  position: absolute;
}
.page-ban::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
  z-index: 1;
}
.page-ban .img {
  overflow: hidden;
  position: relative;
}
.page-ban .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.page-ban .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.page-ban .container .slogan {
  width: 100%;
}
.page-ban .container .slogan > .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_EB';
  color: var(--color);
  text-transform: uppercase;
}
.page-ban .container .slogan > .text-body {
  color: var(--color);
  line-height: 1.875em;
  margin-top: 0.18rem;
}
@media (max-width: 1024px) {
  .page-ban .container .slogan > .text-body {
    display: none;
  }
}
.page-ban .container .slogan .list {
  width: 66.75%;
  max-width: 1068px;
  margin: auto;
  margin-top: 0.66rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .page-ban .container .slogan .list {
    margin-top: 0.4rem;
    display: none;
  }
}
.page-ban .container .slogan .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.page-ban .container .slogan .list .item .item-box .icon img {
  height: 0.49rem;
  min-height: 34px;
}
.page-ban .container .slogan .list .item .item-box .text-box .title {
  color: var(--color);
  line-height: 1;
  margin-top: 0.32rem;
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
}
.page-ban .container .slogan .list .item .item-box .text-box .text-body {
  color: var(--color);
  opacity: 0.5;
  margin-top: 0.11rem;
}
.page-top-menu {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .page-top-menu {
    display: none;
  }
}
.page-top-menu .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.8rem;
}
.page-top-menu .menu-main {
  line-height: 64px;
  color: #222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0.1rem 0.56rem;
}
.page-top-menu .menu-main a {
  position: relative;
}
.page-top-menu .menu-main a::before {
  content: '';
  width: 0;
  height: 0.03rem;
  background-color: var(--color-active);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.page-top-menu .menu-main .menu-location {
  position: relative;
}
.page-top-menu .menu-main .menu-location.active a {
  color: var(--color-active);
}
.page-top-menu .menu-main .menu-location.active a::before {
  width: 100%;
}
.page-top-menu .menu-main .menu-location-none svg,
.page-top-menu .menu-main .menu-location-none img {
  margin-left: 0.09rem;
}
.page-top-menu .menu-main .menu-location-none svg path {
  fill: #666666;
}
.page-title.color-white .title {
  color: #fff;
}
.page-title.color-white .slogan {
  color: #fff;
  color: rgba(255, 255, 255, 0.5);
}
.page-title .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
  text-transform: uppercase;
}
.page-title .title span {
  display: block;
}
.page-title .slogan {
  color: #000;
  text-transform: uppercase;
  margin-top: 0.08rem;
}
.page-center {
  text-align: center;
}
.page-center * {
  text-align: center;
}
.tab-ul li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tab-ul li .top {
  cursor: pointer;
  padding: 0.21rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tab-ul li .top .tab-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.tab-ul li .top .tab-box .tab-title {
  font-size: var(--font18);
  color: var(--color-black);
  line-height: 1.4;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.tab-ul li .top .tab-box .btn .addBox {
  width: 30px;
  height: 30px;
  background-color: var(--color-black);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab-ul li .top .tab-box .btn .addBox i {
  width: 2px;
  height: 10px;
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab-ul li .top .tab-box .btn .addBox i:last-child {
  transform: rotate(90deg);
  position: absolute;
}
.tab-ul li .bom {
  display: none;
  padding-bottom: 0.5rem;
}
.tab-ul li .bom .text-body h6 {
  font-size: var(--font18);
  color: var(--color-black);
  line-height: 1.4;
  margin-bottom: 0.22rem;
  font-weight: bold;
}
.tab-ul li.active .top {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.tab-ul li.active .top .tab-box .btn .addBox {
  background-color: var(--color-active);
}
.tab-ul li.active .top .tab-box .btn .addBox i:first-child {
  transform: rotate(90deg);
}
.forms {
  /* 验证码 */
  /* 文件上传 */
  /* 单选-多选 */
  /* 隐私条款 */
}
.forms input {
  width: 100%;
  height: 0.44rem;
  min-height: 44px;
  background-color: transparent;
  padding: 0 10px;
  border: none;
  border-bottom: 1px solid #DCDCDD;
  color: #B7B8B9;
}
.forms textarea {
  width: 100%;
  height: 1.2rem;
  min-height: 60px;
  background-color: transparent;
  padding: 10px 10px;
  border: none;
  border-bottom: 1px solid #DCDCDD;
  color: #B7B8B9;
}
.forms select {
  width: 100%;
  height: 0.44rem;
  min-height: 44px;
  background-color: transparent;
  padding: 0 10px;
  border: none;
  border-bottom: 1px solid #DCDCDD;
  color: #B7B8B9;
}
.forms .widget-label label {
  color: #333333;
}
.forms .widget-label label i,
.forms .widget-label label span {
  color: #dd1717;
}
.forms .info-list {
  margin-top: 0.38rem;
}
.forms .info-list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.35rem;
}
@media (max-width: 767px) {
  .forms .info-list2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.forms .info-list3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin: 0;
}
@media (max-width: 767px) {
  .forms .info-list3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.forms .forms-box {
  position: relative;
}
.forms .forms-box.active::before {
  width: 100%;
}
.forms .forms-box::before {
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--color-active);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.forms .forms-box .widget-input > .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 100%;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.forms .btn-container .more-primary3 {
  min-width: 1.85rem;
  height: 0.53rem;
  min-height: 40px;
  margin-top: 0.52rem;
}
.forms .text-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.forms .widget-input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.forms .widget-input-container input {
  padding-right: 120px;
}
.forms .widget-input-container img {
  max-width: 110px;
  height: 100%;
  height: calc(100% - 1px);
  height: initial;
  position: absolute;
  right: 0;
  top: 50%;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.forms .file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.forms .layui-input-block {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.forms .layui-input-block .layui-form-radio:hover > *,
.forms .layui-input-block .layui-form-radioed,
.forms .layui-input-block .layui-form-radioed > i {
  color: var(--color-active);
}
.forms .layui-form-item {
  padding-left: 24px;
  margin: 0;
  margin-top: 0.22rem;
}
.forms .layui-form-item a {
  position: relative;
  z-index: 9;
  color: var(--color-active);
  text-decoration: revert;
}
.forms .layui-form-item .layui-form-checkbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  margin: 0;
}
.forms .layui-form-item .layui-form-checkbox i,
.forms .layui-form-item .layui-form-checkbox span {
  width: 16px;
  height: 16px;
  background-color: white;
  border-color: #a4a4a4;
  border-radius: 4px;
  bottom: -0.03rem;
  margin: auto;
  font-weight: bold;
}
.forms .layui-form-item .layui-form-checked[lay-skin=primary] > i {
  color: var(--color-active);
}
.forms .layui-form-item .layui-form-checkbox[lay-skin=primary]:hover > i,
.forms .layui-form-item .layui-form-checked[lay-skin=primary] > i {
  border-color: var(--color-active) !important;
  background-color: var(--color-active);
}
.forms .layui-form-item .layui-icon-ok:before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/checkbox-icon.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0;
}
.forms .layui-form-item .layui-form-checkbox[lay-skin=primary]:hover > i::before,
.forms .layui-form-item .layui-form-checked .layui-icon-ok:before {
  opacity: 1;
}
.layui-form-select.layui-form-selected .layui-edge {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.layui-form-select .layui-input:hover,
.layui-form-select .layui-input:focus,
.layui-form-select .layui-textarea:focus {
  border-color: #adadad !important;
  box-shadow: none;
}
.layui-form-select .layui-edge {
  width: 46px;
  height: 100%;
  background: url(../svg/select-icon.svg) no-repeat center;
  background-size: 12px 12px;
  border: none;
  right: 0;
  top: 0;
  margin-top: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.layui-form-select dl {
  padding: 10px 0;
  margin-top: 8px;
  border: 1px solid #adadad;
  border-radius: 10px;
  box-shadow: none;
  top: auto;
}
.layui-form-select dl dd:first-child {
  display: none;
}
.layui-form-select dl dt,
.layui-form-select dl dd {
  font-size: var(--font16);
  padding: 0 0.24rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.layui-form-select dl .layui-this {
  color: var(--color-active) !important;
  background-color: transparent !important;
}
.layui-form-select dl dd:hover {
  background: var(--color-gray-eee);
}
.searchform {
  position: relative;
}
.searchform .input {
  font-size: var(--font14);
  color: var(--color-black);
  font-style: normal;
  width: 100%;
  height: 36px;
  padding-left: 20px;
  padding-right: 45px;
  border: 1px solid var(--color-gray-ddd);
  border-radius: 99px;
  background-color: transparent;
}
.searchform .iconfont {
  height: 100%;
  position: absolute;
  right: 0.2rem;
  top: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-black);
}
@keyframes TopBtn {
  0% {
    top: 0;
    opacity: 1;
  }
  35% {
    top: -50%;
    opacity: 0;
  }
  65% {
    top: 50%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@-webkit-keyframes TopBtn {
  0% {
    top: 0;
    opacity: 1;
  }
  35% {
    top: -50%;
    opacity: 0;
  }
  65% {
    top: 50%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.TopBtn {
  -webkit-animation-name: TopBtn;
  animation-name: TopBtn;
}
.kefu-box {
  position: fixed;
  top: 50%;
  right: 0.2rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
}
.kefu-box .item {
  width: 0.52rem;
  height: 0.52rem;
  background-color: #fff;
  margin-top: 0.06rem;
  border-radius: 0.05rem;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 0.3rem rgba(32, 40, 36, 0.15);
}
.kefu-box .item .item-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.kefu-box .item .item-box .img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0.3;
}
.kefu-box .item .item-box .img img {
  max-width: 22px;
  max-height: 22px;
}
@media (max-width: 1580px) {
  .kefu-box .item .item-box .img img {
    max-width: 15px;
    max-height: 15px;
  }
}
.kefu-box .item .info {
  width: auto;
  height: 100%;
  background-color: #fff;
  border-radius: 0.05rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.kefu-box .item .info a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 0.16rem;
  color: var(--color-active);
}
.kefu-box .item .info img {
  max-width: 22px;
  max-height: 22px;
  margin-right: 0.1rem;
}
@media (max-width: 1580px) {
  .kefu-box .item .info img {
    max-width: 15px;
    max-height: 15px;
  }
}
.kefu-box .item#backToTopBtn {
  background-color: white;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.08);
}
.kefu-box .item#backToTopBtn .item-box img {
  position: relative;
  animation: TopBtn 1.5s ease-out infinite;
  -webkit-animation: TopBtn 1.5s ease-out infinite;
}
.kefu-box .item#backToTopBtn:hover .item-box .img {
  opacity: 1;
}
.kefu-box .item:hover .item-box .img {
  opacity: 0;
}
.kefu-box .item:hover .info {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  .kefu-box {
    display: none;
  }
}
.c-close {
  max-width: 0.24rem;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 0.3rem;
  margin-right: 0.3rem;
  cursor: pointer;
  z-index: 2;
}
.c-close img,
.c-close svg {
  width: 100%;
  height: auto;
}
.c-close.c-close-white {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#c-code-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-code-pop .c-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 55px 20px 20px;
  width: 200px;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#c-code-pop .c-img-box > img {
  width: 100%;
}
#c-code-pop .c-img-box .c-text {
  padding-top: 10px;
  line-height: 1;
  text-align: center;
  color: #333;
}
#c-content-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-content-pop .c-content-box {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 473px;
  padding: 0.4rem;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  #c-content-pop .c-content-box {
    width: 90%;
  }
}
#c-content-pop .c-content-box .c-auto {
  height: 40vh;
  overflow: auto;
}
#hi-resume-pop .c-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 1000px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 0.16rem;
}
#hi-resume-pop .c-wrap .c-title {
  color: #222222;
}
#hi-resume-pop .forms {
  margin-top: 0.3rem;
}
#hi-resume-pop .forms .widget-label label {
  position: relative;
  padding-left: 14px;
}
#hi-resume-pop .forms .widget-label label span {
  position: absolute;
  left: 0;
  top: 0;
}
#hi-resume-pop .forms .info-list {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.3rem 0.4rem;
  margin-top: 0.3rem;
}
#hi-resume-pop .forms .btn-box {
  margin-top: 0.15rem;
}
.img-pop .c-close {
  margin-top: 10px;
  margin-right: 10px;
}
.img-pop .c-wrap {
  width: 90%;
  max-width: 1009px;
  min-height: 100vh;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.img-pop .page-main {
  position: relative;
}
.img-pop .page-main .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.img-pop .page-main .item .item-box {
  position: relative;
}
.img-pop .page-main .item .item-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pagerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 1rem;
}
.pagerBox .layui-laypage {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.pagerBox .layui-laypage a,
.pagerBox .layui-laypage span {
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: var(--font14);
  color: #3a3a3a;
  padding: 0;
  margin: 0 0.1rem 5px 0;
  background-color: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 0.05rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.pagerBox .layui-laypage a:hover,
.pagerBox .layui-laypage span:hover {
  color: var(--color-active);
}
.pagerBox .layui-laypage a.layui-laypage-curr,
.pagerBox .layui-laypage span.layui-laypage-curr {
  border-color: var(--color-active);
}
.pagerBox .layui-laypage a.layui-laypage-curr .layui-laypage-em,
.pagerBox .layui-laypage span.layui-laypage-curr .layui-laypage-em {
  background-color: var(--color-active);
}
.pagerBox .layui-laypage a.layui-laypage-first,
.pagerBox .layui-laypage span.layui-laypage-first,
.pagerBox .layui-laypage a.layui-laypage-last,
.pagerBox .layui-laypage span.layui-laypage-last,
.pagerBox .layui-laypage a.layui-laypage-prev,
.pagerBox .layui-laypage span.layui-laypage-prev,
.pagerBox .layui-laypage a.layui-laypage-next,
.pagerBox .layui-laypage span.layui-laypage-next {
  min-width: 70px;
}
.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.55rem;
}
.pager a {
  width: 48px;
  height: 48px;
  margin: 0 6px;
  border: 1px solid #ddd;
  color: #6e6e6e;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1580px) {
  .pager a {
    width: 40px;
    height: 40px;
    margin: 0 4px;
  }
}
@media (max-width: 1024px) {
  .pager a {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 767px) {
  .pager a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.pager a.prev img,
.pager a.prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.pager a img,
.pager a svg {
  width: 0.07rem;
  min-width: 5px;
  height: auto;
}
.pager a:hover,
.pager a.active {
  background: var(--color-active);
  border-color: var(--color-active);
  color: #fff;
}
.pager a:hover img,
.pager a.active img,
.pager a:hover svg,
.pager a.active svg {
  opacity: 1;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.c-play {
  cursor: pointer;
}
@keyframes h_schedule {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes h_schedule {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.h_schedule {
  -webkit-animation-name: h_schedule;
  animation-name: h_schedule;
}
@-webkit-keyframes down-icon {
  0% {
    top: 0;
    opacity: 1;
  }
  35% {
    top: 0.2rem;
    opacity: 0;
  }
  65% {
    top: -0.2rem;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes down-icon {
  0% {
    top: 0;
    opacity: 1;
  }
  35% {
    top: 0.2rem;
    opacity: 0;
  }
  65% {
    top: -0.2rem;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.down-icon {
  -webkit-animation-name: down-icon;
  animation-name: down-icon;
}
.index-swiper {
  --color-white: #fff;
  position: relative;
  overflow: hidden;
}
.index-swiper .swiper-slide {
  height: auto;
  height: 100vh;
}
.index-swiper .swiper-slide::before {
  background-color: rgba(0, 0, 0, 0.9);
  content: "";
  inset: 0;
  opacity: var(--progress);
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.index-swiper .swiper-slide .bg {
  height: 100%;
  background: no-repeat center;
  background-size: cover;
}
.index-swiper .swiper-slide .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 540px;
}
.index-swiper .swiper-slide .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.index-swiper .swiper-slide .container .page-center {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.index-swiper .swiper-slide .container .page-center .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_EB';
  color: var(--color-white);
  line-height: 1.21212121em;
}
.index-swiper .swiper-slide .container .page-center .title span {
  display: block;
}
.index-swiper .swiper-slide .container .page-center .btn-container {
  margin-top: 0.38rem;
}
@media (max-width: 1024px) {
  .index-swiper .swiper-slide .container .page-center .btn-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.index-swiper .videoBox {
  position: relative;
  width: 100%;
}
.index-swiper .videoBox:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0.4;
  filter: alpha(opacity=40);
  -webkit-filter: alpha(opacity=40);
}
.index-swiper .videoBox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
}
.index-swiper .swiper-pagination {
  width: 1.6rem;
  height: 1px;
  text-align: center;
  position: relative;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
}
.index-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 100%;
  height: 1px;
  background-color: transparent;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0 !important;
}
.index-swiper .swiper-pagination .swiper-pagination-bullet::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}
.index-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
}
.index-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: '';
  height: 100%;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  animation: h_schedule 4s 1 linear forwards;
  -webkit-animation: h_schedule 4s 1 linear forwards;
}
.index-swiper .index-slide-down {
  max-width: 110px;
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 9;
  color: #fff;
  text-align: center;
  cursor: pointer;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.index-swiper .index-slide-down .icon img,
.index-swiper .index-slide-down .icon svg {
  position: relative;
  width: 0.21rem;
  height: auto;
  -webkit-animation: down-icon 1.5s ease-out infinite;
  animation: down-icon 1.5s ease-out infinite;
}
.index-swiper .index-slide-down2 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 9;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .index-swiper .index-slide-down2 {
    top: auto;
    bottom: 0.6rem;
    -webkit-transform: initial;
    transform: initial;
  }
}
.index-swiper .index-slide-down2 .slide-num-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.index-swiper .index-slide-down2 .slide-num {
  color: var(--color-white);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.1rem;
}
.index-page1 {
  overflow: hidden;
}
@media (max-width: 1024px) {
  .index-page1 {
    padding-top: 0.8rem;
  }
}
.index-page1 .page-main .wrap-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .index-page1 .page-main .wrap-box {
    display: block;
  }
}
.index-page1 .page-main .wrap-box .wrap-left {
  width: 50%;
  max-width: 800px;
  position: relative;
}
@media (max-width: 1024px) {
  .index-page1 .page-main .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}
.index-page1 .page-main .wrap-box .wrap-left .item-box {
  display: block;
  width: 50.41666667%;
  max-width: 484px;
  height: 100%;
  position: relative;
  text-align: center;
  margin-left: 0.8rem;
  padding-top: 1.38rem;
}
@media (max-width: 1024px) {
  .index-page1 .page-main .wrap-box .wrap-left .item-box {
    margin: auto;
  }
}
.index-page1 .page-main .wrap-box .wrap-left .item-box .public-img-box {
  position: relative;
}
.index-page1 .page-main .wrap-box .wrap-left .item-box .public-img-box .icon {
  width: 0.43rem;
  min-width: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.index-page1 .page-main .wrap-box .wrap-left .item-box .public-img::before {
  padding-top: 127.47933884%;
}
.index-page1 .page-main .wrap-box .wrap-left .item-box .text-box {
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(-42%);
  transform: translateY(-42%);
}
.index-page1 .page-main .wrap-box .wrap-left .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #FAFAFA;
  line-height: 1.13333333em;
  line-height: 1;
  text-transform: uppercase;
}
.index-page1 .page-main .wrap-box .wrap-left .item-box .text-box .text-body {
  color: #FAFAFA;
  margin-top: 0.11rem;
}
.index-page1 .page-main .wrap-box .wrap-right {
  width: 50%;
  max-width: 800px;
}
@media (max-width: 1024px) {
  .index-page1 .page-main .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
  }
}
.index-page1 .page-main .float-title {
  position: absolute;
  left: -0.86rem;
  top: 1.96rem;
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  font-size: 2rem;
  color: #111111;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.06;
  z-index: 1;
}
@media (max-width: 767px) {
  .index-page1 .page-main .float-title {
    left: 0.8rem;
    font-size: 0.8rem;
  }
}
.index-page1 .page-main .float-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  min-width: 960px;
}
.index-page1 .page-main .float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page1 .page-main .wrap-text-up {
  padding: 2.27rem 0 0 1.6rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .index-page1 .page-main .wrap-text-up {
    padding: 0.8rem 0 0;
  }
}
.index-page1 .page-main .wrap-text-down {
  margin-right: -1.6rem;
  margin-top: 2.3rem;
}
@media (max-width: 1024px) {
  .index-page1 .page-main .wrap-text-down {
    margin-right: 0;
    margin-top: 0.8rem;
  }
}
.index-page1 .page-main .wrap-text-down .public-img {
  min-height: 140px;
}
.index-page1 .page-main .wrap-text-down .public-img::before {
  padding-top: 29.47916667%;
}
.index-page1 .page-main .swiper-main .index-swiper1.active .swiper-pagination {
  opacity: 1;
  bottom: 14px;
  text-align: right;
  width: 50%;
  right: 0;
  left: auto;
}
.index-page1 .page-main .swiper-main .index-swiper1 .swiper-slide {
  height: auto;
}
.index-page1 .page-main .swiper-main .index-swiper1 .swiper-slide .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #302F2F;
  line-height: 1.2;
  margin-bottom: 0.12rem;
}
.index-page1 .page-main .swiper-main .index-swiper1 .swiper-slide .text-box .text-body {
  color: #3D3E3E;
  line-height: 1.875em;
}
.index-page1 .page-main .swiper-main .index-swiper1 .swiper-slide .text-box .btn-container {
  margin-top: 0.54rem;
}
.index-page2 .page-main .wrap-box .wrap-left {
  order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .index-page2 .page-main .wrap-box .wrap-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.index-page2 .page-main .wrap-box .wrap-left .item-box {
  margin-left: 0;
}
@media (max-width: 1024px) {
  .index-page2 .page-main .wrap-box .wrap-left .item-box {
    margin: auto;
  }
}
.index-page2 .page-main .float-img {
  right: auto;
  left: 0;
}
.index-page2 .page-main .wrap-text-up {
  padding-left: 0;
  padding-right: 1.5rem;
}
@media (max-width: 1024px) {
  .index-page2 .page-main .wrap-text-up {
    padding: 0.8rem 0 0;
  }
}
.index-page2 .page-main .wrap-text-down {
  margin-right: 0;
  margin-left: -1.6rem;
}
@media (max-width: 1024px) {
  .index-page2 .page-main .wrap-text-down {
    margin-left: 0;
    margin-top: 0.8rem;
  }
}
.index-page3 {
  padding: 1.16rem 0 0.98rem;
}
.index-page3 .page-main .swiper-main {
  padding: 0 1.95rem;
  margin-top: 0.7rem;
  position: relative;
}
.index-page3 .page-main .swiper-main .slide-btn-main{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 9;
  width: 80%;
  justify-content: space-between;
}

.index-page3 .page-main .swiper-main .slide-btn-main .swiper-button-prev{
  position: unset;
}

.index-page3 .page-main .swiper-main .slide-btn-main.swiper-button-next{
  position: unset;
}
@media (max-width: 1024px) {
  .index-page3 .page-main .swiper-main {
    padding: 0 1rem;
  }
}
/* .index-page3 .page-main .swiper-main .slide-btn-main {
  margin-top: 0.75rem;
} */
.index-page3 .page-main .swiper-main .index-swiper3 {
  overflow: visible;
}
.index-page3 .page-main .swiper-main .index-swiper3 .swiper-slide {
  height: auto;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index-page3 .page-main .swiper-main .index-swiper3 .swiper-slide .item-box {
  --height: 0.42rem;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0.06rem;
  text-align: center;
}
.index-page3 .page-main .swiper-main .index-swiper3 .swiper-slide .item-box .public-img::before {
  padding-top: 172.22222222%;
}
.index-page3 .page-main .swiper-main .index-swiper3 .swiper-slide .item-box .text-box {
  width: 100%;
  padding: 0 20px 0.36rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateY(calc(var(--height) + 0.16rem));
  transform: translateY(calc(var(--height) + 0.16rem));
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index-page3 .page-main .swiper-main .index-swiper3 .swiper-slide .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_R';
  color: #fff;
  line-height: 1.875em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index-page3 .page-main .swiper-main .index-swiper3 .swiper-slide .item-box .text-box .btn-container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  margin-top: 0.16rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index-page3 .page-main .swiper-main .index-swiper3 .swiper-slide-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.index-page3 .page-main .swiper-main .index-swiper3 .swiper-slide-active .item-box .text-box {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.index-page3 .page-main .swiper-main .index-swiper3 .swiper-slide-active .item-box .text-box .btn-container {
  opacity: 1;
}
.index-page4 {
  padding: 1.54rem 0 1.16rem;
}
.index-page4 .page-main {
  z-index: 2;
}
.index-page4 .page-main .page-title .slogan {
  width: 42.5%;
  max-width: 680px;
  margin: auto;
  margin-top: 0.08rem;
}
@media (max-width: 1024px) {
  .index-page4 .page-main .page-title .slogan {
    width: 100%;
  }
}
.index-page4 .page-main .swiper-main {
  --color: #fff;
  color: var(--color);
  margin-top: 1.1rem;
}
.index-page4 .page-main .swiper-main .top {
  block-size: 1.6rem;
  position: relative;
}
.index-page4 .page-main .swiper-main .top .current-year .item {
  color: #AC9B87;
  font-size: 3rem;
  font-weight: lighter;
  inset-inline: 0;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  text-align: center;
  inset-block-start: 0;
  opacity: 0.22;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index-page4 .page-main .swiper-main .top .current-year .item:not(.active) {
  opacity: 0;
  visibility: hidden;
}
.index-page4 .page-main .swiper-main .bottom {
  margin-top: 1.2rem;
  position: relative;
}
.index-page4 .page-main .swiper-main .bottom .today {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: 50%;
  transform: translateY(-50%);
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
}
@media (max-width: 767px) {
  .index-page4 .page-main .swiper-main .bottom .today {
    display: none;
  }
}
@media (max-width: 767px) {
  .index-page4 .page-main .swiper-main .bottom .current-year {
    display: none;
  }
}
.index-page4 .page-main .swiper-main .bottom .current-year .item {
  inset-inline-start: 0;
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index-page4 .page-main .swiper-main .bottom .current-year .item:not(.active) {
  opacity: 0;
  visibility: hidden;
}
.index-page4 .page-main .swiper-main .swiper-scrollbar {
  inset-block-end: 0;
  inset-inline-start: 50%;
  max-inline-size: 100%;
  position: relative;
  transform: translate(-50%);
  background-color: transparent;
  border-radius: 0;
}
@media (min-width: 768px) {
  .index-page4 .page-main .swiper-main .swiper-scrollbar {
    max-inline-size: calc(100% - 125px);
  }
}
.index-page4 .page-main .swiper-main .swiper-scrollbar:before {
  background-color: #ADADAD;
  content: "";
  display: block;
  block-size: 1px;
  position: absolute;
  inset-block-start: calc(50% - 0.5px);
  inline-size: 100%;
  opacity: 0.4;
}
.index-page4 .page-main .swiper-main .swiper-scrollbar .swiper-scrollbar-drag {
  block-size: 100%;
  position: relative;
  text-align: center;
  white-space: nowrap;
  background: transparent;
}
.index-page4 .page-main .swiper-main .swiper-scrollbar .swiper-scrollbar-drag:before {
  content: "Drag";
  width: 0.98rem;
  min-width: 98px;
  height: 0.34rem;
  min-height: 34px;
  background-color: #544B42;
  border-radius: 0.17rem;
  color: #fff;
  cursor: grab;
  display: block;
  font-size: var(--font15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.index-page4 .page-main .swiper-main .index-swiper4 {
  overflow: visible;
}
.index-page4 .page-main .swiper-main .index-swiper4 .swiper-slide {
  height: auto;
}
.index-page4 .page-main .swiper-main .index-swiper4 .swiper-slide * {
  pointer-events: none;
}
.index-page4 .page-main .swiper-main .index-swiper4 .swiper-slide:nth-child(odd) {
  -webkit-padding-before: 1rem;
  padding-block-start: 1rem;
}
.index-page4 .page-main .swiper-main .index-swiper4 .swiper-slide .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
}
.index-page4 .page-main .swiper-main .index-swiper4 .swiper-slide .text-box .text-body {
  opacity: 0.4;
  line-height: 1.71428571em;
  margin-top: 0.12rem;
}
.index-page5 {
  padding: 1.33rem 0 1.57rem;
}
.index-page5 .page-main {
  z-index: 2;
}
.index-page5 .page-main .swiper-main {
  margin-top: 0.88rem;
}
@media (min-width: 1025px) {
  .index-page5 .page-main .swiper-main .index-swiper5 .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    grid-gap: 0.1rem;
  }
  .index-page5 .page-main .swiper-main .index-swiper5 .swiper-wrapper .swiper-slide {
    height: 4.9rem;
    min-height: 390px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .index-page5 .page-main .swiper-main .index-swiper5 .swiper-wrapper .swiper-slide.active {
    flex: 1 1 22.1%;
  }
  .index-page5 .page-main .swiper-main .index-swiper5 .swiper-wrapper .swiper-slide.active .item-box .float-icon {
    opacity: 1;
  }
  .index-page5 .page-main .swiper-main .index-swiper5 .swiper-wrapper .swiper-slide.active .item-box .text-box .title {
    font-family: 'AlibabaPuHuiTi_3_35_Thin_R';
    font-size: var(--font24);
  }
  .index-page5 .page-main .swiper-main .index-swiper5 .swiper-wrapper .swiper-slide .item-box .public-img {
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .index-page5 .page-main .swiper-main .index-swiper5 {
    padding-bottom: 40px;
  }
  .index-page5 .page-main .swiper-main .index-swiper5 .swiper-pagination {
    opacity: 1;
  }
}
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide {
  height: auto;
}
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide .item-box .public-img::before {
  padding-top: 74.58143075%;
}
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide .item-box .float-icon {
  width: 0.59rem;
  min-width: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide .item-box .float-icon img,
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide .item-box .float-icon svg {
  width: 100%;
}
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide .item-box .text-box {
  width: 100%;
  height: 100%;
  padding: 0.4rem 0.4rem 0.44rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide .item-box .text-box .num {
  color: #fff;
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
}
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide .item-box .text-box .icon {
  line-height: 1;
}
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide .item-box .text-box .icon img,
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide .item-box .text-box .icon svg {
  width: auto;
  height: 0.41rem;
  min-width: 30px;
}
.index-page5 .page-main .swiper-main .index-swiper5 .swiper-slide .item-box .text-box .title {
  color: #fff;
  margin-top: 0.52rem;
  min-height: 35px;
}
.index-page6 {
  padding: 0.39rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.index-page6 .page-main .swiper-main .index-swiper6 {
  overflow: visible;
}
.index-page6 .page-main .swiper-main .index-swiper6 .swiper-wrapper {
  -webkit-transition-duration: 2500ms;
  transition-duration: 2500ms;
  -o-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.index-page6 .page-main .item-box {
  width: 100%;
  height: 86px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .index-page6 .page-main .item-box {
    height: 60px;
  }
}
.index-page6 .page-main .item-box .img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.index-page6 .page-main .item-box .img::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 0.1rem;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index-page6 .page-main .item-box .img img {
  position: relative;
  z-index: 1;
  max-width: 60%;
  max-height: 90%;
}
@media (max-width: 767px) {
  .index-page6 .page-main .item-box .img img {
    max-height: 80%;
  }
}
.index-page7 {
  padding-top: 0.75rem;
}
.index-page7 .page-main .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .index-page7 .page-main .wrap-box {
    display: block;
  }
}
.index-page7 .page-main .wrap-box .wrap-left {
  width: 50%;
  max-width: 800px;
}
@media (max-width: 1024px) {
  .index-page7 .page-main .wrap-box .wrap-left {
    transform: none !important;
  }
}
@media (max-width: 767px) {
  .index-page7 .page-main .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
}
.index-page7 .page-main .wrap-box .wrap-right {
  width: 50%;
  max-width: 800px;
}
@media (max-width: 1024px) {
  .index-page7 .page-main .wrap-box .wrap-right {
    transform: none !important;
  }
}
@media (max-width: 767px) {
  .index-page7 .page-main .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
  }
}
.index-page7 .page-main .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.index-page7 .page-main .item-box .public-img::before {
  padding-top: 74.25%;
}
.index-page7 .page-main .item-box .text-box {
  width: 100%;
  padding: 0.62rem 1.3rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  .index-page7 .page-main .item-box .text-box {
    padding-top: 0.5rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
}
.index-page7 .page-main .item-box .text-box .page-title .slogan {
  margin-top: 0.15rem;
  text-transform: none;
}
.index-page7 .page-main .item-box .text-box .btn-container {
  margin-top: 0.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.index-page8 {
  padding-top: 1.38rem;
}
@media (max-width: 1024px) {
  .index-page8 {
    padding: 1.2rem 0;
  }
}
.index-page8 .page-main .wrap-box {
  margin-top: 0.69rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .index-page8 .page-main .wrap-box {
    display: block;
  }
}
.index-page8 .page-main .wrap-box .wrap-left {
  width: 50%;
  max-width: 800px;
}
@media (max-width: 1024px) {
  .index-page8 .page-main .wrap-box .wrap-left {
    width: 100%;
  }
}
.index-page8 .page-main .wrap-box .wrap-left .float-img {
  margin-left: -1.6rem;
  height: 100%;
}
@media (max-width: 1024px) {
  .index-page8 .page-main .wrap-box .wrap-left .float-img {
    margin: 0;
  }
}
.index-page8 .page-main .wrap-box .wrap-left .float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page8 .page-main .wrap-box .wrap-right {
  width: 50%;
  max-width: 800px;
  position: relative;
  padding: 0.75rem 0 0.77rem 0.65rem;
}
@media (max-width: 1024px) {
  .index-page8 .page-main .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    padding: 0.6rem 0.4rem;
  }
}
.index-page8 .page-main .wrap-box .wrap-right .float-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-width: 960px;
  height: 100%;
}
.index-page8 .page-main .wrap-box .wrap-right .float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-page8 .page-main .wrap-right .forms {
  position: relative;
  z-index: 1;
}
.index-page8 .page-main .wrap-right .forms .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #544B42;
  margin-bottom: -0.06rem;
}
.about-page {
  padding: 1.58rem 0 1.5rem;
}
.about-page .page-main {
  z-index: 2;
}
.about-page .page-main .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .about-page .page-main .wrap-box {
    display: block;
  }
}
.about-page .page-main .wrap-box .wrap-left {
  width: 55.625%;
  max-width: 890px;
}
@media (max-width: 1024px) {
  .about-page .page-main .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
}
.about-page .page-main .wrap-box .wrap-right {
  width: 28.75%;
  max-width: 460px;
}
@media (max-width: 1024px) {
  .about-page .page-main .wrap-box .wrap-right {
    width: 100%;
    margin-top: 0.8rem;
  }
}
.about-page .page-main .wrap-left .page-title .title {
  line-height: 1.33333333em;
}
.about-page .page-main .wrap-left .text-body {
  color: #3D3E3E;
}
.about-page .page-main .wrap-left .text-body h6 {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  font-size: var(--font28);
  color: #000;
  margin: 0.76rem 0 0.16rem;
}
.about-page .page-main .wrap-left .text-body p {
  line-height: 1.875em;
}
.about-page .page-main .wrap-right .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.about-page .page-main .wrap-right .item-box .public-img::before {
  padding-top: 150%;
}
.about-page .page-main .wrap-right .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
  margin-top: 0.22rem;
}
.about-page .page-main .wrap-right .item-box .text-box .text-body {
  color: #3D3E3E;
  line-height: 1.875em;
  margin-top: 0.02rem;
}
.about-page2 {
  padding: 1rem 0 1.38rem;
  background-color: #EEEAE9;
}
.about-page2 .page-main .swiper-main {
  position: relative;
  margin-top: 0.84rem;
}
.about-page2 .page-main .swiper-main .slide-btn {
  width: 35px;
  height: 35px;
  margin-top: -17.5px;
}
.about-page2 .page-main .swiper-main .slide-btn.swiper-button-prev {
  left: -0.92rem;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.about-page2 .page-main .swiper-main .slide-btn.swiper-button-next {
  right: -0.92rem;
}
@media (max-width: 1024px) {
  .about-page2 .page-main .swiper-main .about-swiper2 {
    padding-bottom: 40px;
  }
  .about-page2 .page-main .swiper-main .about-swiper2 .swiper-pagination {
    opacity: 1;
  }
}
.about-page2 .page-main .swiper-main .about-swiper2 .swiper-slide {
  height: auto;
}
.about-page2 .page-main .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.about-page2 .page-main .item-box .public-img::before {
  padding-top: 122.85714286%;
}
.about-page2 .page-main .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
  line-height: 1;
  margin-top: 0.24rem;
}
.about-page2 .page-main .item-box .text-box .text-body {
  color: #000;
  margin-top: 0.03rem;
}
.business-page6 {
  background-color: transparent;
}
.page-auto {
  padding-right: 0.4rem;
}
.about-page3 {
  padding: 1.56rem 0 1.7rem;
}
.about-page3 .page-main .page-down {
  margin-top: 1.14rem;
}
.about-page3 .page-main .page-down .list-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 1rem;
}
@media (max-width: 1024px) {
  .about-page3 .page-main .page-down .list-main {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.about-page3 .page-main .page-down .list-main .list-con {
  width: 100%;
}
.about-page3 .page-main .page-down .list-main .list-con .list .item {
  margin-bottom: 0.7rem;
}
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
  line-height: 1.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.2rem;
}
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box .title .icon {
  line-height: 1;
  margin-top: 2px;
}
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box .title .icon img,
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box .title .icon svg {
  width: 21px;
  height: auto;
}
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box .title span:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box i{display:block;width:.3rem;height:2px;background:#000;margin-bottom: .3rem}
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box .text-body {
  color: #3D3E3E;
  line-height: 1.875em;
  margin-top: 0.15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.2rem;
}
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box .text-body .icon {
  line-height: 1;
  margin-top: 2px;
}
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box .text-body .icon img,
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box .text-body .icon svg {
  width: 21px;
  height: auto;
}
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box .text-body .text-p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  opacity: 0.8;
}
.about-page3 .page-main .page-down .list-main .list-con .list .item .item-box .text-box .text-body p {
  margin-bottom: 0.3rem;
}
.about-page4 {
  padding: 1.18rem 0 1.32rem;
  background-color: #EEEAE9;
}
.about-page4 .page-main .swiper-down {
  position: relative;
  margin-top: 0.36rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.23rem;
}
.about-page4 .page-main .swiper-down .swiper-pagination {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.about-page4 .page-main .swiper-down .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: var(--color-black-514);
}
.about-page4 .page-main .swiper-down .slide-btn-main {
  grid-gap: 0.15rem;
}
.about-page4 .page-main .swiper-down .slide-btn-main .slide-btn {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.about-page4 .page-main .swiper-down .slide-btn-main .slide-btn:hover {
  background-color: var(--color-black-514);
}
.about-page4 .page-main .swiper-down .slide-btn-main .slide-btn:hover img,
.about-page4 .page-main .swiper-down .slide-btn-main .slide-btn:hover svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-page4 .page-main .swiper-down .slide-btn-main .slide-btn img,
.about-page4 .page-main .swiper-down .slide-btn-main .slide-btn svg {
  width: 19px;
  height: auto;
}
.about-page4 .page-main .swiper-main {
  margin-top: 1rem;
}
.about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide {
  height: auto;
}
.about-page4 .page-main .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.48rem 0.42rem 0.66rem 0.48rem;
  background: #ffffff;
  border-radius: 20px;
}
.about-page4 .page-main .item-box .text-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-page4 .page-main .item-box .text-up .text-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  grid-gap: 0.3rem;
}
.about-page4 .page-main .item-box .text-up .text-left .public-img {
  width: 0.8rem;
  min-width: 60px;
  border-radius: 50%;
}
.about-page4 .page-main .item-box .text-up .text-left .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
}
.about-page4 .page-main .item-box .text-up .text-right .icon {
  line-height: 1;
}
.about-page4 .page-main .item-box .text-up .text-right .icon img,
.about-page4 .page-main .item-box .text-up .text-right .icon svg {
  width: 0.48rem;
  height: auto;
}
.about-page4 .page-main .item-box .text-box .text-body {
  color: #3D3E3E;
  line-height: 1.875em;
  margin-top: 0.2rem;
}
.manufacturing-page {
  padding: 1.44rem 0 1.2rem;
}
.manufacturing-page .page-main {
  z-index: 2;
}
.manufacturing-page .page-main .swiper-main {
  margin-top: 0.85rem;
}
@media (max-width: 1024px) {
  .manufacturing-page .page-main .swiper-main {
    margin-top: 0.58rem;
  }
}
.manufacturing-page .page-main .swiper-main .slide-btn-main {
  margin-top: 0.76rem;
}
@media (max-width: 1024px) {
  .manufacturing-page .page-main .swiper-main .manufacturing-swiper {
    padding-bottom: 40px;
  }
  .manufacturing-page .page-main .swiper-main .manufacturing-swiper .swiper-pagination {
    opacity: 1;
  }
}
.manufacturing-page .page-main .swiper-main .manufacturing-swiper .swiper-slide {
  height: auto;
}
.manufacturing-page .page-main .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 0.27rem;
}
@media (max-width: 1024px) {
  .manufacturing-page .page-main .item-box {
    display: block;
    text-align: center;
    margin-top: 0.28rem;
  }
}
.manufacturing-page .page-main .item-box .public-img-box {
  width: 51.61290323%;
  max-width: 400px;
  position: relative;
}
@media (max-width: 1024px) {
  .manufacturing-page .page-main .item-box .public-img-box {
    width: 100%;
  }
}
.manufacturing-page .page-main .item-box .public-img-box .icon {
  width: 0.48rem;
  min-width: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.manufacturing-page .page-main .item-box .public-img-box .public-img::before {
  padding-top: 60%;
}
.manufacturing-page .page-main .item-box .public-img-box .public-img::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
  z-index: 1;
}
.manufacturing-page .page-main .item-box .text-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .manufacturing-page .page-main .item-box .text-box {
    margin-top: 0.28rem;
  }
}
.manufacturing-page .page-main .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
}
.manufacturing-page .page-main .item-box .text-box .text-body {
  color: #3D3E3E;
  line-height: 1.73333333em;
  margin-top: 0.11rem;
}
.manufacturing-page .page-main .item-box .text-box .text-more {
  color: #3D3E3E;
  line-height: 1;
  text-decoration: underline;
  margin-top: 0.3rem;
  text-transform: uppercase;
}
.manufacturing-page2 {
  padding: 1rem 0 1.22rem;
  background-color: #F3F2F2;
}
.manufacturing-page2 .swiper-main {
  position: relative;
  margin-top: 0.7rem;
}
.manufacturing-page2 .swiper-main .slide-btn {
  width: 62px;
  height: 62px;
  background-color: #403E3D;
  border-radius: 50%;
  margin-top: -31px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.manufacturing-page2 .swiper-main .slide-btn:hover {
  background-color: var(--color-black-514);
}
.manufacturing-page2 .swiper-main .slide-btn:hover img,
.manufacturing-page2 .swiper-main .slide-btn:hover svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.manufacturing-page2 .swiper-main .slide-btn img,
.manufacturing-page2 .swiper-main .slide-btn svg {
  width: 28px;
  height: auto;
}
.manufacturing-page2 .swiper-main .slide-btn.swiper-button-prev {
  left: 0;
}
.manufacturing-page2 .swiper-main .slide-btn.swiper-button-next {
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
@media (max-width: 1024px) {
  .manufacturing-page2 .swiper-main .manufacturing-swiper2 {
    padding-bottom: 40px;
  }
  .manufacturing-page2 .swiper-main .manufacturing-swiper2 .swiper-pagination {
    opacity: 1;
  }
}
.manufacturing-page2 .swiper-main .manufacturing-swiper2 .swiper-slide {
  height: auto;
}
.manufacturing-page2 .page-main .page-up .text-body {
  color: #000;
  line-height: 1.875em;
  margin-top: 0.84rem;
}
.manufacturing-page2 .page-main .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.manufacturing-page2 .page-main .item-box .public-img::before {
  padding-top: 62.74509804%;
}
.manufacturing-page2 .page-main .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_R';
  color: #000;
  margin-top: 0.18rem;
}
.manufacturing-page3 {
  padding: 1.09rem 0 0.73rem;
}
.manufacturing-page3 .swiper-main {
  position: relative;
  margin-top: 0.99rem;
}
.manufacturing-page3 .swiper-main .slide-btn {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  margin-top: -24px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.manufacturing-page3 .swiper-main .slide-btn:hover {
  background-color: var(--color-black-514);
}
.manufacturing-page3 .swiper-main .slide-btn:hover img,
.manufacturing-page3 .swiper-main .slide-btn:hover svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.manufacturing-page3 .swiper-main .slide-btn img,
.manufacturing-page3 .swiper-main .slide-btn svg {
  width: 28px;
  height: auto;
}
.manufacturing-page3 .swiper-main .slide-btn.swiper-button-prev {
  left: 0;
}
.manufacturing-page3 .swiper-main .slide-btn.swiper-button-next {
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.manufacturing-page3 .swiper-main .manufacturing-swiper3 {
  width: 76.25%;
  max-width: 1220px;
  margin: auto;
}
@media (max-width: 1024px) {
  .manufacturing-page3 .swiper-main .manufacturing-swiper3 {
    width: 77%;
    padding-bottom: 40px;
    overflow: visible;
  }
  .manufacturing-page3 .swiper-main .manufacturing-swiper3 .swiper-pagination {
    opacity: 1;
  }
}
.manufacturing-page3 .swiper-main .manufacturing-swiper3 .swiper-slide {
  height: auto;
}
.manufacturing-page3 .page-main .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  background: #ffffff;
  border: 0.02rem solid #ececec;
  border-radius: 0.26rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.manufacturing-page3 .page-main .item-box:hover {
  background-color: var(--color-black-514);
  border-color: var(--color-black-514);
}
.manufacturing-page3 .page-main .item-box:hover .public-img-box::before {
  background-color: #fff;
}
.manufacturing-page3 .page-main .item-box:hover .text-box {
  background-color: var(--color-black-514);
  padding-top: 0;
}
.manufacturing-page3 .page-main .item-box:hover .text-box .title {
  color: #fff;
}
.manufacturing-page3 .page-main .item-box:hover .text-box .text-body {
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
}
.manufacturing-page3 .page-main .item-box:hover .text-box .text-body::before {
  background-color: #fff;
}
.manufacturing-page3 .page-main .item-box .public-img-box {
  padding: 0.55rem;
  position: relative;
}
.manufacturing-page3 .page-main .item-box .public-img-box::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #514941;
  border-radius: 50%;
  position: absolute;
  top: 0.4rem;
  right: 0.36rem;
}
.manufacturing-page3 .page-main .item-box .public-img-box .public-img {
  border: 2px solid #ffffff;
  border-radius: 50%;
}
.manufacturing-page3 .page-main .item-box .text-box {
  padding: 0.33rem 0.4rem 0.4rem;
  background-color: #ECECEC;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.manufacturing-page3 .page-main .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
}
.manufacturing-page3 .page-main .item-box .text-box .text-body {
  color: #000;
  color: rgba(0, 0, 0, 0.7);
  position: relative;
  padding-top: 0.15rem;
  margin-top: 0.2rem;
}
.manufacturing-page3 .page-main .item-box .text-box .text-body::before {
  content: '';
  width: 0.12rem;
  height: 1px;
  background-color: #898989;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.manufacturing-page4 {
  padding: 0.73rem 0 0;
}
.manufacturing-page4 .swiper-main {
  position: relative;
  background-color: #F3F2F2;
  padding-bottom: 1.35rem;
  margin-top: 0.88rem;
}
.manufacturing-page4 .swiper-main .slide-btn {
  width: 62px;
  height: 62px;
  background-color: #403E3D;
  border-radius: 50%;
  margin-top: -31px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.manufacturing-page4 .swiper-main .slide-btn:hover {
  background-color: var(--color-black-514);
}
.manufacturing-page4 .swiper-main .slide-btn:hover img,
.manufacturing-page4 .swiper-main .slide-btn:hover svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.manufacturing-page4 .swiper-main .slide-btn img,
.manufacturing-page4 .swiper-main .slide-btn svg {
  width: 28px;
  height: auto;
}
.manufacturing-page4 .swiper-main .slide-btn.swiper-button-prev {
  left: 0;
}
.manufacturing-page4 .swiper-main .slide-btn.swiper-button-next {
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.manufacturing-page4 .swiper-main .manufacturing-swiper4 {
  width: 60%;
  max-width: 960px;
  margin: auto;
  overflow: visible;
  padding-bottom: 56px;
}
@media (max-width: 1024px) {
  .manufacturing-page4 .swiper-main .manufacturing-swiper4 {
    width: 100%;
  }
}
.manufacturing-page4 .swiper-main .manufacturing-swiper4 .swiper-pagination {
  opacity: 1;
}
.manufacturing-page4 .swiper-main .manufacturing-swiper4 .swiper-pagination .swiper-pagination-bullet {
  width: 34px;
  height: 26px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  position: relative;
}
@media (max-width: 1580px) {
  .manufacturing-page4 .swiper-main .manufacturing-swiper4 .swiper-pagination .swiper-pagination-bullet {
    width: 26px;
    height: 20px;
  }
}
.manufacturing-page4 .swiper-main .manufacturing-swiper4 .swiper-pagination .swiper-pagination-bullet::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #C8C8C8;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1580px) {
  .manufacturing-page4 .swiper-main .manufacturing-swiper4 .swiper-pagination .swiper-pagination-bullet::before {
    width: 4px;
    height: 4px;
  }
}
.manufacturing-page4 .swiper-main .manufacturing-swiper4 .swiper-pagination .swiper-pagination-bullet-active {
  border-color: #403e3d;
}
.manufacturing-page4 .swiper-main .manufacturing-swiper4 .swiper-pagination .swiper-pagination-bullet-active::before {
  background-color: #403E3D;
}
.manufacturing-page4 .swiper-main .manufacturing-swiper4 .swiper-slide {
  height: auto;
}
.manufacturing-page4 .swiper-main .manufacturing-swiper4 .swiper-slide-active .item-box .public-img::after {
  opacity: 0.35;
}
.manufacturing-page4 .swiper-main .manufacturing-swiper4 .swiper-slide-active .item-box .text-box {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.manufacturing-page4 .swiper-main .manufacturing-swiper4 .swiper-slide-active .item-box .text-box .text-body {
  opacity: 1;
}
.manufacturing-page4 .page-main .page-up .text-body {
  color: #302F2F;
  line-height: 1.875em;
  margin-top: 0.06rem;
  text-align: center;
}
.manufacturing-page4 .page-main .item-box {
  --height: 0.6rem;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.manufacturing-page4 .page-main .item-box .public-img {
  min-height: 240px;
}
.manufacturing-page4 .page-main .item-box .public-img::before {
  padding-top: 56.25%;
}
.manufacturing-page4 .page-main .item-box .public-img::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.manufacturing-page4 .page-main .item-box .text-box {
  width: 100%;
  padding: 0 0.68rem 0.62rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  -webkit-transform: translateY(calc(var(--height) + 0.08rem));
  transform: translateY(calc(var(--height) + 0.08rem));
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  .manufacturing-page4 .page-main .item-box .text-box {
    padding: 0 0.4rem 0.4rem;
  }
}
.manufacturing-page4 .page-main .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #fff;
}
.manufacturing-page4 .page-main .item-box .text-box .text-body {
  color: #fff;
  line-height: 1.5em;
  margin-top: 0.08rem;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.manufacturing-page5 {
  padding: 1.36rem 0 1.32rem;
}
.manufacturing-page5 .page-main .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .manufacturing-page5 .page-main .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.manufacturing-page5 .page-main .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.manufacturing-page5 .page-main .list .item .item-box .public-img {
  border-radius: 0.1rem;
}
.manufacturing-page5 .page-main .list .item .item-box .public-img::before {
  padding-top: 65.40880503%;
}
.manufacturing-page5 .page-main .list .item .item-box .text-box {
  padding: 0.56rem 0.56rem 0 0.48rem;
}
@media (max-width: 767px) {
  .manufacturing-page5 .page-main .list .item .item-box .text-box {
    padding: 0.4rem 0 0.6rem;
  }
}
.manufacturing-page5 .page-main .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #000;
}
.manufacturing-page5 .page-main .list .item .item-box .text-box .text-body {
  color: #000;
  line-height: 1.875em;
  opacity: 0.7;
}
.c-img {
  cursor: pointer;
}
.manufacturing-page6 {
  padding: 1.32rem 0 0.34rem;
}
.manufacturing-page6 .swiper-main {
  position: relative;
}
.manufacturing-page6 .swiper-main .slide-btn {
  width: 35px;
  height: 35px;
  margin-top: -17.5px;
}
@media (max-width: 1024px) {
  .manufacturing-page6 .swiper-main .slide-btn {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    display: block !important;
  }
}
.manufacturing-page6 .swiper-main .slide-btn.swiper-button-prev {
  left: 0.22rem;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
@media (max-width: 1024px) {
  .manufacturing-page6 .swiper-main .slide-btn.swiper-button-prev {
    left: -0.2rem;
  }
}
.manufacturing-page6 .swiper-main .slide-btn.swiper-button-next {
  right: 0.22rem;
}
@media (max-width: 1024px) {
  .manufacturing-page6 .swiper-main .slide-btn.swiper-button-next {
    right: -0.2rem;
  }
}
.manufacturing-page6 .swiper-main .manufacturing-swiper6 {
  width: 85.10242086%;
  max-width: 914px;
  margin: auto;
}
.manufacturing-page6 .swiper-main .manufacturing-swiper6 .swiper-slide {
  height: auto;
}
.manufacturing-page6 .swiper-main .manufacturing-swiper6-2 {
  width: 90.875%;
  max-width: 1454px;
  margin: auto;
}
@media (max-width: 1024px) {
  .manufacturing-page6 .swiper-main .manufacturing-swiper6-2 {
    width: 85.10242086%;
  }
}
.manufacturing-page6 .swiper-main .manufacturing-swiper6-2 .swiper-slide {
  height: auto;
}
.manufacturing-page6 .swiper-main .manufacturing-swiper6-2 .swiper-slide .item-box .public-img-box .public-img {
  width: 72.13114754%;
  max-width: 132px;
  top: 0.17rem;
  -webkit-transform: translateX(-0.09rem);
  transform: translateX(-0.09rem);
}
@media (max-width: 1024px) {
  .manufacturing-page6 .swiper-main .manufacturing-swiper6-2 .swiper-slide .item-box .public-img-box .public-img {
    top: 0.25rem;
    width: 79.16666667%;
    max-width: 190px;
  }
}
@media (max-width: 767px) {
  .manufacturing-page6 .swiper-main .manufacturing-swiper6-2 .swiper-slide .item-box .public-img-box .public-img {
    top: 0.12rem;
  }
}
.manufacturing-page6 .swiper-main .manufacturing-swiper6-2 .swiper-slide .item-box .public-img-box .public-img::before {
  padding-top: 145.45454545%;
}
@media (max-width: 1024px) {
  .manufacturing-page6 .swiper-main .manufacturing-swiper6-2 .swiper-slide .item-box .public-img-box .public-img::before {
    padding-top: 145.78947368%;
  }
}
.manufacturing-page6 .page-main .page-up .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .manufacturing-page6 .page-main .page-up .wrap-box {
    display: block;
  }
}
.manufacturing-page6 .page-main .page-up .wrap-box .wrap-left {
  width: 30%;
  max-width: 480px;
}
@media (max-width: 1024px) {
  .manufacturing-page6 .page-main .page-up .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
}
.manufacturing-page6 .page-main .page-up .wrap-box .wrap-right {
  width: 67.125%;
  max-width: 1074px;
}
@media (max-width: 1024px) {
  .manufacturing-page6 .page-main .page-up .wrap-box .wrap-right {
    width: 100%;
    margin-top: 0.8rem;
  }
}
.manufacturing-page6 .page-main .page-up .text-body {
  color: #928F8A;
  line-height: 1.71428571em;
  margin-top: 0.1rem;
}
.manufacturing-page6 .page-main .page-up .swiper-down {
  margin-top: -0.45rem;
}
.manufacturing-page6 .page-main .page-down .swiper-down {
  margin-top: -0.35rem;
}
.manufacturing-page6 .page-main .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.manufacturing-page6 .page-main .item-box .public-img-box {
  position: relative;
}
.manufacturing-page6 .page-main .item-box .public-img-box .public-img {
  width: 79.16666667%;
  max-width: 190px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0.25rem;
  -webkit-transform: translateX(-0.12rem);
  transform: translateX(-0.12rem);
}
@media (max-width: 767px) {
  .manufacturing-page6 .page-main .item-box .public-img-box .public-img {
    top: 0.12rem;
  }
}
.manufacturing-page6 .page-main .item-box .public-img-box .public-img::before {
  padding-top: 145.78947368%;
}
.manufacturing-page6 .page-main .item-box .public-img-box .public-img img {
  height: initial;
}
.business-page {
  padding: 1.55rem 0 1.1rem;
}
.business-page .page-main {
  z-index: 2;
}
.business-page .page-main .page-up .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .business-page .page-main .page-up .wrap-box {
    display: block;
  }
}
.business-page .page-main .page-up .wrap-box .wrap-left {
  width: 22.5%;
  max-width: 360px;
}
@media (max-width: 1024px) {
  .business-page .page-main .page-up .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
}
.business-page .page-main .page-up .wrap-box .wrap-right {
  width: 62.8125%;
  max-width: 1005px;
}
@media (max-width: 1024px) {
  .business-page .page-main .page-up .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 0.8rem;
  }
}
.business-page .page-main .page-up .wrap-left .page-title .title {
  line-height: 1.33333333em;
}
.business-page .page-main .page-up .wrap-right .text-body {
  color: #3D3E3E;
}
.business-page .page-main .page-up .wrap-right .text-body h6 {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
  font-size: var(--font28);
  margin-bottom: 0.14rem;
}
.business-page .page-main .page-up .wrap-right .text-body p {
  line-height: 1.875em;
  margin-bottom: 0.22rem;
}
.business-page .page-main .swiper-main {
  position: relative;
  margin-top: 0.99rem;
}
.business-page .page-main .swiper-main .slide-btn {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  margin-top: -24px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.business-page .page-main .swiper-main .slide-btn:hover {
  background-color: var(--color-black-514);
}
.business-page .page-main .swiper-main .slide-btn:hover img,
.business-page .page-main .swiper-main .slide-btn:hover svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.business-page .page-main .swiper-main .slide-btn img,
.business-page .page-main .swiper-main .slide-btn svg {
  width: 28px;
  height: auto;
}
.business-page .page-main .swiper-main .slide-btn.swiper-button-prev {
  left: -100px;
}
.business-page .page-main .swiper-main .slide-btn.swiper-button-next {
  right: -100px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
@media (max-width: 1024px) {
  .business-page .page-main .swiper-main .business-swiper {
    padding-bottom: 40px;
  }
  .business-page .page-main .swiper-main .business-swiper .swiper-pagination {
    opacity: 1;
  }
}
.business-page .page-main .swiper-main .business-swiper .swiper-slide {
  height: auto;
}
.business-page .page-main .swiper-main .business-swiper .swiper-slide .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.business-page .page-main .swiper-main .business-swiper .swiper-slide .item-box .public-img::before {
  padding-top: 61.61745828%;
}
.business-page2 {
  padding: 1.46rem 0 0.59rem;
}
.business-page2 .page-main .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .business-page2 .page-main .wrap-box {
    display: block;
  }
}
.business-page2 .page-main .wrap-box .wrap-left {
  width: 48.4375%;
  max-width: 775px;
}
@media (max-width: 1024px) {
  .business-page2 .page-main .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
}
.business-page2 .page-main .wrap-box .wrap-right {
  width: 32.25%;
  max-width: 516px;
}
@media (max-width: 1024px) {
  .business-page2 .page-main .wrap-box .wrap-right {
    width: 77%;
    margin-top: 0.8rem;
  }
}
.business-page2 .page-main .public-img-box {
  position: relative;
}
.business-page2 .page-main .public-img-box .icon {
  width: 80px;
  height: 80px;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 1580px) {
  .business-page2 .page-main .public-img-box .icon {
    width: 58px;
    height: 58px;
  }
}
@media (max-width: 1024px) {
  .business-page2 .page-main .public-img-box .icon {
    width: 44px;
    height: 44px;
  }
}
.business-page2 .page-main .public-img-box .icon img,
.business-page2 .page-main .public-img-box .icon svg {
  width: 13px;
  height: auto;
}
@media (max-width: 1580px) {
  .business-page2 .page-main .public-img-box .icon img,
  .business-page2 .page-main .public-img-box .icon svg {
    width: 8px;
  }
}
@media (max-width: 1024px) {
  .business-page2 .page-main .public-img-box .icon img,
  .business-page2 .page-main .public-img-box .icon svg {
    width: 6px;
  }
}
.business-page2 .page-main .public-img-box .public-img {
  border-radius: 50%;
}
.business-page2 .page-main .wrap-left .text-body {
  color: #000;
  line-height: 1.875em;
  margin-top: 0.08rem;
}
.business-page2 .page-main .wrap-left .btn-container {
  margin-top: 0.74rem;
}
.business-page3 {
  padding: 1.05rem 0 0.48rem;
}
.business-page3 .page-main .page-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 0.54rem;
}
@media (max-width: 1024px) {
  .business-page3 .page-main .page-up {
    display: block;
  }
  .business-page3 .page-main .page-up .btn-container {
    display: none;
  }
}
.business-page3 .page-main .btn-container .more-primary6 .more-primary-circle {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.business-page3 .page-main .tab-title-box .tab-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 0.42rem;
}
.business-page3 .page-main .tab-title-box .tab-title .title {
  width: 100%;
  padding: 0.28rem 0.6rem 0.28rem 0.5rem;
  background-color: #F3F2F2;
  border-radius: 0.06rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .business-page3 .page-main .tab-title-box .tab-title .title {
    display: block;
    padding: 0.4rem;
  }
}
.business-page3 .page-main .tab-title-box .tab-title .title.active {
  background-color: #403E3D;
}
.business-page3 .page-main .tab-title-box .tab-title .title.active .text-box {
  color: #fff;
}
.business-page3 .page-main .tab-title-box .tab-title .title.active .text-box span img,
.business-page3 .page-main .tab-title-box .tab-title .title.active .text-box span svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.business-page3 .page-main .tab-title-box .tab-title .title.active > .icon {
  background-color: #343332;
}
.business-page3 .page-main .tab-title-box .tab-title .title.active > .icon img,
.business-page3 .page-main .tab-title-box .tab-title .title.active > .icon svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.business-page3 .page-main .tab-title-box .tab-title .title .text-box {
  color: #000;
  font-family: 'AlibabaPuHuiTi_3_35_Thin_R';
}
.business-page3 .page-main .tab-title-box .tab-title .title .text-box h3 {
  padding-top: 0.06rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 1024px) {
  .business-page3 .page-main .tab-title-box .tab-title .title .text-box h3 {
    margin-bottom: 0.14rem;
  }
}
.business-page3 .page-main .tab-title-box .tab-title .title .text-box span {
  line-height: 1;
}
.business-page3 .page-main .tab-title-box .tab-title .title .text-box span img,
.business-page3 .page-main .tab-title-box .tab-title .title .text-box span svg {
  width: 0.28rem;
  min-width: 18px;
  height: auto;
}
.business-page3 .page-main .tab-title-box .tab-title .title > .icon {
  width: 1.04rem;
  height: 1.04rem;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  order: 2;
}
@media (max-width: 1024px) {
  .business-page3 .page-main .tab-title-box .tab-title .title > .icon {
    margin-bottom: 0.28rem;
  }
}
.business-page3 .page-main .tab-title-box .tab-title .title > .icon img,
.business-page3 .page-main .tab-title-box .tab-title .title > .icon svg {
  width: auto;
  height: 0.36rem;
}
.business-page3 .page-main .swiper-main {
  margin-top: 0.22rem;
}
.business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide {
  height: auto;
}
.business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box {
  padding: 0.58rem 0.5rem 0.62rem;
  background: #ffffff;
  border: 2px solid #f3f2f2;
  border-radius: 0.06rem;
}
@media (max-width: 1024px) {
  .business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box {
    padding: 0.6rem 0.4rem;
  }
}
.business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box .slide-text-up .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #000;
}
.business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box .slide-text-up .text-body {
  color: #000;
  line-height: 1.6em;
  opacity: 0.7;
  margin-top: 0.05rem;
}
.business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box .slide-text-down {
  width: 85.33333333%;
  max-width: 1280px;
  margin: auto;
  margin-top: 0.45rem;
}
@media (max-width: 767px) {
  .business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box .slide-text-down {
    width: 100%;
  }
}
.business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box .slide-text-down .list {
  width: calc(100% + 0.7rem);
  margin: 0 -0.35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box .slide-text-down .list {
    width: calc(100% + 0.4rem);
    margin: 0 -0.2rem;
  }
}
.business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box .slide-text-down .list .item {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  max-width: calc(20% - 0.7rem);
  margin: 0 0.35rem 0.4rem;
}
@media (max-width: 767px) {
  .business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box .slide-text-down .list .item {
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    max-width: calc(33.3333% - 0.4rem);
    margin: 0 0.2rem 0.4rem;
  }
}
.business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box .slide-text-down .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box .slide-text-down .list .item .item-box .public-round {
  border-radius: 50%;
}
.business-page3 .page-main .swiper-main .business-swiper3 .swiper-slide .slide-box .slide-text-down .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_R';
  color: #000;
  margin-top: 0.09rem;
}
.business-page4 {
  padding: 0.48rem 0 1.2rem;
}
.business-page4 .page-main {
  padding: 1rem 1.1rem 1.06rem 0.8rem;
  background-color: #f3f2f2;
  border-radius: 0.2rem;
}
@media (max-width: 1024px) {
  .business-page4 .page-main {
    padding: 0.6rem 0.4rem;
  }
}
.business-page4 .page-main .page-up {
  width: 72.34042553%;
  max-width: 1020px;
  margin: auto;
  margin-bottom: 0.58rem;
}
@media (max-width: 1024px) {
  .business-page4 .page-main .page-up {
    width: 100%;
  }
}
.business-page4 .page-main .page-up .text-body {
  color: #302F2F;
  line-height: 1.875em;
  margin-top: 0.11rem;
}
.business-page4 .page-main .swiper-main {
  position: relative;
}
@media (max-width: 1024px) {
  .business-page4 .page-main .swiper-main .business-swiper4 {
    padding-bottom: 40px;
  }
}
.business-page4 .page-main .swiper-main .business-swiper4 .swiper-pagination {
  opacity: 1;
  width: 45.74468085%;
  max-width: 645px;
  right: 0;
  left: auto;
  bottom: 0.6rem;
  text-align: right;
}
@media (max-width: 1024px) {
  .business-page4 .page-main .swiper-main .business-swiper4 .swiper-pagination {
    width: 100%;
    max-width: 100%;
    bottom: 0;
    text-align: center;
  }
}
.business-page4 .page-main .swiper-main .business-swiper4 .swiper-slide {
  height: auto;
}
.business-page4 .page-main .swiper-main .business-swiper4 .swiper-slide .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .business-page4 .page-main .swiper-main .business-swiper4 .swiper-slide .item-box {
    display: block;
  }
}
.business-page4 .page-main .swiper-main .business-swiper4 .swiper-slide .item-box .public-img {
  width: 47.5177305%;
  max-width: 670px;
  border-radius: 0.2rem;
}
@media (max-width: 1024px) {
  .business-page4 .page-main .swiper-main .business-swiper4 .swiper-slide .item-box .public-img {
    width: 100%;
  }
}
.business-page4 .page-main .swiper-main .business-swiper4 .swiper-slide .item-box .public-img::before {
  padding-top: 54.47761194%;
}
.business-page4 .page-main .swiper-main .business-swiper4 .swiper-slide .item-box .text-box {
  width: 45.74468085%;
  max-width: 645px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .business-page4 .page-main .swiper-main .business-swiper4 .swiper-slide .item-box .text-box {
    width: 100%;
    margin-top: 0.28rem;
  }
}
.business-page4 .page-main .swiper-main .business-swiper4 .swiper-slide .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
}
.business-page4 .page-main .swiper-main .business-swiper4 .swiper-slide .item-box .text-box .text-body {
  color: #3D3E3E;
  line-height: 1.875em;
  margin-top: 0.42rem;
}
.business-page4 .page-main .swiper-main .slide-num {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #E0E0E0;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.03rem;
  position: absolute;
  right: 0;
  top: 1rem;
}
@media (max-width: 1024px) {
  .business-page4 .page-main .swiper-main .slide-num {
    display: none;
  }
}
.business-page4 .page-main .swiper-main .slide-num .current {
  color: #403E3D;
}
.business-page5 {
  padding: 1.08rem 0 1.25rem;
  background-color: #F3F2F2;
}
.business-page5 .page-main .page-up .text-body {
  color: #000;
  margin-top: 0.06rem;
}
.business-page5 .page-main .page-down {
  margin-top: 0.72rem;
}
.business-page5 .page-main .page-down .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .business-page5 .page-main .page-down .wrap-box {
    display: block;
  }
}
.business-page5 .page-main .page-down .wrap-box .wrap-left {
  width: 44.375%;
  max-width: 710px;
}
@media (max-width: 1024px) {
  .business-page5 .page-main .page-down .wrap-box .wrap-left {
    width: 100%;
    margin: auto;
  }
}
.business-page5 .page-main .page-down .wrap-box .wrap-right {
  width: 54.25%;
  max-width: 868px;
}
@media (max-width: 1024px) {
  .business-page5 .page-main .page-down .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 0.8rem;
  }
}
.business-page5 .page-main .page-down .swiper-main .business-swiper5 {
  border-radius: 0.15rem;
}
.business-page5 .page-main .page-down .swiper-main .business-swiper5 .swiper-pagination {
  opacity: 1;
  bottom: 0.22rem;
}
.business-page5 .page-main .page-down .swiper-main .business-swiper5 .swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: transparent;
  border: 1px solid #514941;
}
.business-page5 .page-main .page-down .swiper-main .business-swiper5 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000000;
  border-color: #000000;
}
.business-page5 .page-main .page-down .swiper-main .business-swiper5 .swiper-slide {
  height: auto;
}
.business-page5 .page-main .page-down .swiper-main .business-swiper5 .swiper-slide .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.business-page5 .page-main .page-down .swiper-main .business-swiper5 .swiper-slide .item-box .public-img::before {
  padding-top: 98.16901408%;
}
.business-page5 .page-main .page-down .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.25rem;
  height: 100%;
}
@media (max-width: 767px) {
  .business-page5 .page-main .page-down .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.business-page5 .page-main .page-down .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.52rem 0.3rem 0.5rem;
  background-color: #fff;
  border-radius: 0.15rem;
}
.business-page5 .page-main .page-down .list .item .item-box .icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
  line-height: 1;
}
.business-page5 .page-main .page-down .list .item .item-box .icon-box .icon img,
.business-page5 .page-main .page-down .list .item .item-box .icon-box .icon svg {
  width: auto;
  height: 0.36rem;
}
.business-page5 .page-main .page-down .list .item .item-box .text-box {
  margin-top: 0.47rem;
}
.business-page5 .page-main .page-down .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
}
.business-page5 .page-main .page-down .list .item .item-box .text-box .text-body {
  color: #000;
  line-height: 1.6em;
  opacity: 0.7;
  margin-top: 0.08rem;
}
.business-page7 {
  padding-bottom: 1.6rem;
}
.business-page7 .page-main {
  position: relative;
}
.business-page7 .page-main::before {
  content: '';
  width: 100%;
  height: 0.02rem;
  background-color: #F3F2F2;
  position: absolute;
  top: 0;
  left: 0;
}
.business-page7 .page-main .page-up {
  padding-top: 0.65rem;
}
.business-page7 .page-main .page-up .text-body {
  color: #000;
}
.business-page7 .page-main .page-down {
  margin-top: 0.6rem;
}
.business-page7 .page-main .page-down .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.1rem;
}
@media (max-width: 767px) {
  .business-page7 .page-main .page-down .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.business-page7 .page-main .page-down .list .item:hover .item-box .text-box .text-body {
  display: block;
  -webkit-animation: scrollToTop 0.8s both;
  animation: scrollToTop 0.8s both;
}
.business-page7 .page-main .page-down .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.business-page7 .page-main .page-down .list .item .item-box .public-img {
  min-height: 220px;
  border-radius: 0.1rem;
}
.business-page7 .page-main .page-down .list .item .item-box .public-img::before {
  padding-top: 57.86163522%;
}
.business-page7 .page-main .page-down .list .item .item-box .text-box {
  width: 100%;
  padding: 0 0.78rem 0.45rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  .business-page7 .page-main .page-down .list .item .item-box .text-box {
    padding: 0 0.4rem 0.4rem;
  }
}
.business-page7 .page-main .page-down .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #fff;
}
.business-page7 .page-main .page-down .list .item .item-box .text-box .text-body {
  color: #fff;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.28571429em;
  display: none;
}
.business-page7 .page-main .page-down .list .item .item-box .text-box .text-body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .business-page7 .page-main .page-down .list .item .item-box .text-box .text-body {
    display: block;
    -webkit-animation: none !important;
    animation: none !important;
  }
}
.business-page7 .page-main .page-down .list .item .item-box .text-box .btn-container {
  margin-top: 0.5rem;
}
.exhibition-page {
  padding: 0.97rem 0 1.18rem;
}
.exhibition-page .page-main .tab-title-box .tab-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.2rem;
}
.exhibition-page .page-main .tab-title-box .tab-title .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: var(--color-black-514);
  min-width: 2.2rem;
  height: 0.6rem;
  min-height: 45px;
  padding: 0 0.32rem;
  padding-top: 0.04rem;
  background-color: #F3F2F2;
  border-radius: 99px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.exhibition-page .page-main .tab-title-box .tab-title .title.active {
  color: #fff;
  background-color: var(--color-black-514);
}
.exhibition-page .page-main .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.79rem 0.38rem;
  margin-top: 0.74rem;
}
@media (max-width: 990px) {
  .exhibition-page .page-main .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .exhibition-page .page-main .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.exhibition-page .page-main .list .item:hover .item-box::after {
  width: 100%;
}
.exhibition-page .page-main .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.exhibition-page .page-main .list .item .item-box::before,
.exhibition-page .page-main .list .item .item-box::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #D9D8D8;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.exhibition-page .page-main .list .item .item-box::after {
  width: 0;
  background-color: var(--color-black-514);
}
.exhibition-page .page-main .list .item .item-box .public-img::before {
  padding-top: 55.11811024%;
}
.exhibition-page .page-main .list .item .item-box .text-box {
  padding: 0.31rem 0 0.29rem;
}
.exhibition-page .page-main .list .item .item-box .text-box .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.05rem;
  margin-bottom: 0.24rem;
}
.exhibition-page .page-main .list .item .item-box .text-box .date .icon {
  line-height: 1;
}
.exhibition-page .page-main .list .item .item-box .text-box .date .icon img,
.exhibition-page .page-main .list .item .item-box .text-box .date .icon svg {
  width: auto;
  height: 15px;
}
.exhibition-page .page-main .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #302F2F;
  line-height: 1.36363636em;
  line-height: 1.36;
  min-height: calc(2em * 1.36);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.exhibition-page .page-main .list .item .item-box .text-box .imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0.15rem;
  margin-top: 0.35rem;
}
.exhibition-page .page-main .list .item .item-box .text-box .imgs .icon {
  line-height: 1;
}
.exhibition-page .page-main .list .item .item-box .text-box .imgs .icon:hover img,
.exhibition-page .page-main .list .item .item-box .text-box .imgs .icon:hover svg {
  opacity: 1;
}
.exhibition-page .page-main .list .item .item-box .text-box .imgs .icon img,
.exhibition-page .page-main .list .item .item-box .text-box .imgs .icon svg {
  width: auto;
  height: 22px;
  opacity: 0.5;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.exhibition-page .page-main .advertisement-img {
  margin-top: 0.9rem;
}
.exhibition-page .page-main .advertisement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 150px;
}
.exhibition2-page {
  padding: 0.97rem 0 1.18rem;
}
.exhibition2-page .page-main .tab-title-box .tab-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.2rem;
}
.exhibition2-page .page-main .tab-title-box .tab-title .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: var(--color-black-514);
  min-width: 2.2rem;
  height: 0.6rem;
  min-height: 45px;
  padding: 0 0.32rem;
  background-color: #F3F2F2;
  border-radius: 99px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.exhibition2-page .page-main .tab-title-box .tab-title .title.active {
  color: #fff;
  background-color: var(--color-black-514);
}
.exhibition2-page .page-main .list {
  margin-top: 0.23rem;
}
.exhibition2-page .page-main .list .item:hover .item-box::after {
  width: 100%;
}
.exhibition2-page .page-main .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .exhibition2-page .page-main .list .item .item-box {
    display: block;
  }
}
.exhibition2-page .page-main .list .item .item-box::before,
.exhibition2-page .page-main .list .item .item-box::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #D9D8D8;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.exhibition2-page .page-main .list .item .item-box::after {
  width: 0;
  background-color: var(--color-black-514);
}
.exhibition2-page .page-main .list .item .item-box .public-img {
  order: 2;
  width: 23.75%;
  max-width: 380px;
}
@media (max-width: 767px) {
  .exhibition2-page .page-main .list .item .item-box .public-img {
    width: 100%;
  }
}
.exhibition2-page .page-main .list .item .item-box .public-img::before {
  padding-top: 55.26315789%;
}
.exhibition2-page .page-main .list .item .item-box .text-box {
  width: 68.75%;
  max-width: 1100px;
  padding-top: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .exhibition2-page .page-main .list .item .item-box .text-box {
    display: block;
    width: 100%;
    max-width: 100%;
  }
}
.exhibition2-page .page-main .list .item .item-box .text-box .date-box {
  width: 20.90909091%;
  max-width: 230px;
  padding-left: 0.28rem;
}
@media (max-width: 767px) {
  .exhibition2-page .page-main .list .item .item-box .text-box .date-box {
    display: none;
  }
}
.exhibition2-page .page-main .list .item .item-box .text-box .text-right {
  width: 79.09090909%;
  max-width: 870px;
}
@media (max-width: 767px) {
  .exhibition2-page .page-main .list .item .item-box .text-box .text-right {
    width: 100%;
    max-width: 100%;
  }
}
.exhibition2-page .page-main .list .item .item-box .text-box .date {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_R';
  color: #898684;
  line-height: 1;
  display: inline-block;
  text-align: center;
}
.exhibition2-page .page-main .list .item .item-box .text-box .date span {
  display: block;
}
.exhibition2-page .page-main .list .item .item-box .text-box .date .font12 {
  width: 30px;
  height: 30px;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
  opacity: 0.4;
  font-family: 'SegoeUI_B';
  font-family: 'Arial';
  color: #6E6E6E;
  margin: auto;
  margin-top: 0.49rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.exhibition2-page .page-main .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #302F2F;
  line-height: 1.25em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.exhibition2-page .page-main .list .item .item-box .text-box .text-body {
  color: #9F9F9F;
  line-height: 1.875em;
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.exhibition2-page .page-main .advertisement-img {
  margin-top: 0.9rem;
}
.exhibition2-page .page-main .advertisement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 150px;
}
.exhibition-d-page {
  padding: 1.52rem 0 1.65rem;
  background-color: #fdfdfc;
  overflow: visible;
}
.exhibition-d-page .page-main .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .exhibition-d-page .page-main .wrap-box {
    display: block;
  }
}
.exhibition-d-page .page-main .wrap-box .wrap-left {
  width: 72.75%;
  max-width: 1164px;
}
@media (max-width: 1024px) {
  .exhibition-d-page .page-main .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
}
.exhibition-d-page .page-main .wrap-box .wrap-right {
  width: 23.4375%;
  max-width: 375px;
}
@media (max-width: 1024px) {
  .exhibition-d-page .page-main .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 1.2rem;
  }
}
.exhibition-d-page .page-main .text-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .exhibition-d-page .page-main .text-up {
    display: block;
  }
  .exhibition-d-page .page-main .text-up .btn-container {
    margin-top: 0.28rem;
  }
}
.exhibition-d-page .page-main .text-up .news-title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
  line-height: 1.33333333em;
}
.exhibition-d-page .page-main .text-up .type-box {
  color: #403E3D;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0.3rem;
  margin-top: 0.3rem;
}
.exhibition-d-page .page-main .text-up .type-box .type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.1rem;
}
.exhibition-d-page .page-main .text-up .type-box .type .icon {
  line-height: 1;
}
.exhibition-d-page .page-main .text-up .type-box .type .icon img,
.exhibition-d-page .page-main .text-up .type-box .type .icon svg {
  width: auto;
  height: 16px;
}
.exhibition-d-page .page-main .exhibition-detail-content {
  font-size: var(--font16);
  color: #403E3D;
  line-height: 2.25em;
  margin-top: 0.36rem;
}
.exhibition-d-page .page-main .swiper-main {
  margin-top: 0.62rem;
  position: relative;
}
.exhibition-d-page .page-main .swiper-main .slide-btn {
  width: 35px;
  height: 35px;
  margin-top: -17.5px;
}
.exhibition-d-page .page-main .swiper-main .slide-btn.swiper-button-prev {
  left: -40px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.exhibition-d-page .page-main .swiper-main .slide-btn.swiper-button-next {
  right: -40px;
}
@media (max-width: 1024px) {
  .exhibition-d-page .page-main .swiper-main .exhibition-d-swiper {
    padding-bottom: 40px;
  }
  .exhibition-d-page .page-main .swiper-main .exhibition-d-swiper .swiper-pagination {
    opacity: 1;
  }
}
.exhibition-d-page .page-main .swiper-main .exhibition-d-swiper .swiper-slide {
  height: auto;
}
.exhibition-d-page .page-main .swiper-main .exhibition-d-swiper .swiper-slide .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.exhibition-d-page .page-main .swiper-main .exhibition-d-swiper .swiper-slide .item-box .public-img::before {
  padding-top: 63.95147314%;
}
.exhibition-d-page .page-main .recommended-news {
  padding: 0.3rem 0 0.75rem;
  background: #ffffff;
  box-shadow: 1.81px 0.26rem 0.42rem 0.04rem rgba(81, 73, 65, 0.05);
  position: sticky;
  top: calc(var(--header-height) + 0.4rem);
  right: 0;
}
.exhibition-d-page .page-main .recommended-news .name {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #302F2F;
  line-height: 1;
  position: relative;
  padding: 0.29rem 0.24rem;
}
.exhibition-d-page .page-main .recommended-news .name::before {
  content: '';
  width: 0.02rem;
  height: 100%;
  background-color: var(--color-black-514);
  position: absolute;
  left: 0;
  top: 0;
}
.exhibition-d-page .page-main .recommended-news .list {
  padding: 0 0.2rem;
  margin-top: 0.27rem;
}
.exhibition-d-page .page-main .recommended-news .list .item:hover .item-box::after {
  width: 100%;
}
.exhibition-d-page .page-main .recommended-news .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.exhibition-d-page .page-main .recommended-news .list .item .item-box .public-img::before {
  padding-top: 55.11811024%;
}
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box {
  padding: 0.31rem 0 0.29rem;
}
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.05rem;
  margin-bottom: 0.24rem;
}
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box .date .icon {
  line-height: 1;
}
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box .date .icon img,
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box .date .icon svg {
  width: auto;
  height: 15px;
}
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #302F2F;
  line-height: 1.66666667em;
  line-height: 1.66;
  min-height: calc(2em * 1.66);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box .imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0.15rem;
  margin-top: 0.35rem;
}
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box .imgs .icon {
  line-height: 1;
}
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box .imgs .icon:hover img,
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box .imgs .icon:hover svg {
  opacity: 1;
}
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box .imgs .icon img,
.exhibition-d-page .page-main .recommended-news .list .item .item-box .text-box .imgs .icon svg {
  width: auto;
  height: 22px;
  opacity: 0.5;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.exhibition-d-page .page-main .recommended-news .btn-container {
  padding: 0 0.37rem;
}
.editor-pn {
  position: relative;
  margin-top: 0.74rem;
}
@media (max-width: 1024px) {
  .editor-pn {
    display: none;
  }
}
.editor-pn .editor-btn {
  color: #363636;
  line-height: 1.875em;
  padding: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.editor-pn .editor-btn:hover {
  background-color: var(--color-yellow-fdd);
}
.editor-pn .editor-btn em {
  display: inline-block;
  font-style: normal;
}
.editor-pn .editor-btn a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  flex: 1;
}
.exhibition-d2-page {
  padding: 1.52rem 0 1.65rem;
  overflow: visible;
}
.exhibition-d2-page .page-main .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .exhibition-d2-page .page-main .wrap-box {
    display: block;
  }
}
.exhibition-d2-page .page-main .wrap-box .wrap-left {
  width: 66.9375%;
  max-width: 1071px;
  padding-right: 0.77rem;
  border-right: 1px solid #D9D6D6;
}
@media (max-width: 1024px) {
  .exhibition-d2-page .page-main .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    border: none;
  }
}
.exhibition-d2-page .page-main .wrap-box .wrap-right {
  width: 29.375%;
  max-width: 470px;
}
@media (max-width: 1024px) {
  .exhibition-d2-page .page-main .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 1.2rem;
  }
}
.exhibition-d2-page .page-main .text-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.exhibition-d2-page .page-main .text-up .news-title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
  line-height: 1.33333333em;
  width: 100%;
}
.exhibition-d2-page .page-main .text-up .type-box {
  color: #403E3D;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0.3rem;
  margin-top: 0.3rem;
}
.exhibition-d2-page .page-main .text-up .type-box .type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.1rem;
}
.exhibition-d2-page .page-main .text-up .type-box .type .icon {
  line-height: 1;
}
.exhibition-d2-page .page-main .text-up .type-box .type .icon img,
.exhibition-d2-page .page-main .text-up .type-box .type .icon svg {
  width: auto;
  height: 16px;
}
.exhibition-d2-page .page-main .exhibition-detail-content {
  font-size: var(--font16);
  color: #403E3D;
  line-height: 2.25em;
  margin-top: 0.36rem;
}
.exhibition-d2-page .page-main .swiper-main {
  margin-top: 0.62rem;
  position: relative;
}
.exhibition-d2-page .page-main .swiper-main .slide-btn {
  width: 35px;
  height: 35px;
  margin-top: -17.5px;
}
.exhibition-d2-page .page-main .swiper-main .slide-btn.swiper-button-prev {
  left: -40px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.exhibition-d2-page .page-main .swiper-main .slide-btn.swiper-button-next {
  right: -40px;
}
.exhibition-d2-page .page-main .swiper-main .exhibition-d-swiper2 .swiper-slide {
  height: auto;
}
.exhibition-d2-page .page-main .swiper-main .exhibition-d-swiper2 .swiper-slide .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.exhibition-d2-page .page-main .swiper-main .exhibition-d-swiper2 .swiper-slide .item-box .public-img::before {
  padding-top: 63.95147314%;
}
.exhibition-d2-page .page-main .recommended-news {
  position: sticky;
  top: calc(var(--header-height) + 0.4rem);
  right: 0;
}
.exhibition-d2-page .page-main .recommended-news .name {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #302F2F;
  line-height: 1;
}
.exhibition-d2-page .page-main .recommended-news .list {
  margin-top: 0.3rem;
}
.exhibition-d2-page .page-main .recommended-news .list .item:hover .item-box::after {
  width: 100%;
}
.exhibition-d2-page .page-main .recommended-news .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.15rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.exhibition-d2-page .page-main .recommended-news .list .item .item-box::before,
.exhibition-d2-page .page-main .recommended-news .list .item .item-box::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #D9D8D8;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.exhibition-d2-page .page-main .recommended-news .list .item .item-box::after {
  width: 0;
  background-color: var(--color-black-514);
}
.exhibition-d2-page .page-main .recommended-news .list .item .item-box .public-img {
  width: 38.29787234%;
  max-width: 180px;
}
.exhibition-d2-page .page-main .recommended-news .list .item .item-box .public-img::before {
  padding-top: 63.88888889%;
}
.exhibition-d2-page .page-main .recommended-news .list .item .item-box .text-box {
  width: 56.59574468%;
  max-width: 266px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .exhibition-d2-page .page-main .recommended-news .list .item .item-box .text-box {
    width: 100%;
    max-width: 100%;
    padding-left: 0.28rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
  }
}
.exhibition-d2-page .page-main .recommended-news .list .item .item-box .text-box .text-right {
  width: 79.09090909%;
  max-width: 870px;
}
@media (max-width: 1024px) {
  .exhibition-d2-page .page-main .recommended-news .list .item .item-box .text-box .text-right {
    width: 100%;
    max-width: 100%;
  }
}
.exhibition-d2-page .page-main .recommended-news .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #302F2F;
  line-height: 1.875em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.exhibition-d2-page .page-main .recommended-news .list .item .item-box .text-box .text-body {
  color: #9F9F9F;
  line-height: 1.28571429em;
  margin-top: 0.02rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.exhibition-d2-page .page-main .recommended-news .btn-container {
  padding: 0 0.37rem;
}
@-webkit-keyframes arrow {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0px, 0px, 0px);
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(10px, 0px, 0px);
  }
}
@keyframes arrow {
  0% {
    opacity: 0;
    transform: translate3d(0px, 0px, 0px);
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(10px, 0px, 0px);
  }
}
.arrow {
  -webkit-animation-name: arrow;
  animation-name: arrow;
}
.productm-column {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #fff;
  line-height: 1;
  padding: 0.23rem 0.3rem 0.24rem;
  background-color: #403E3D;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.productm-column .text-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.3rem;
}
.productm-column .text-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.06rem;
}
.productm-column .text-body span {
  line-height: 1;
}
.productm-column .text-body span img,
.productm-column .text-body span svg {
  width: 0.18rem;
  min-width: 14px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-animation: arrow 1500ms linear infinite;
  animation: arrow 1500ms linear infinite;
}
.productm-column .bnt-sub-nav {
  line-height: 1;
}
.productm-column .bnt-sub-nav img,
.productm-column .bnt-sub-nav svg {
  width: 0.2rem;
  min-width: 20px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.productNavBox {
  position: relative;
  background-color: transparent;
  background: -webkit-linear-gradient(-90deg, #fff 0%, transparent 100%);
  background: linear-gradient(180deg, #fff 0%, transparent 100%);
}
@media (max-width: 767px) {
  .productNavBox .productBody {
    display: none;
  }
}
.productNavBox .menu_nav {
  width: 100%;
  height: auto;
  overflow: hidden;
  overflow-y: auto;
}
.productNavBox .menu_nav ul li {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.productNavBox .menu_nav ul li .one {
  padding: 0 0.28rem;
  border-bottom: 1px solid #f4f3f1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
.productNavBox .menu_nav ul li .one a {
  padding: 22px 0;
  display: block;
  color: #000;
  line-height: 1.11111111em;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex: 1;
}
.productNavBox .menu_nav ul li .one .icon .addBox {
  width: 18px;
  height: 18px;
  background-color: #403E3D;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.productNavBox .menu_nav ul li .one .icon .addBox i {
  width: 1px;
  height: 7px;
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.productNavBox .menu_nav ul li .one .icon .addBox i:last-child {
  transform: rotate(90deg);
  position: absolute;
}
.productNavBox .menu_nav ul li .one.active a {
  color: var(--color-active);
}
.productNavBox .menu_nav ul li .one.active .icon .addBox {
  background-color: var(--color-active);
}
.productNavBox .menu_nav ul li .one.active .icon .addBox i:first-child {
  transform: rotate(90deg);
}
.productNavBox .menu_nav ul li ul {
  display: none;
}
.productNavBox .menu_nav ul li ul li {
  padding: 0 0.28rem;
  border: 0;
}
.productNavBox .menu_nav ul li ul li .two {
  cursor: pointer;
  border-bottom: 1px dashed #ededed;
}
.productNavBox .menu_nav ul li ul li a {
  display: block;
  display: inline-block;
  padding: 16px 0;
  color: #666666;
  position: relative;
}
.productNavBox .menu_nav ul li ul li .two.active {
  color: #99674E;
}
.productNavBox .menu_nav ul li ul li .two.active a {
  color: #99674E;
}
.productNavBox .menu_nav ul li ul li ul {
  border: 0;
  display: none;
}
.productNavBox .menu_nav ul li ul li ul li {
  padding: 0;
}
.productNavBox .menu_nav ul li ul li ul li a {
  padding: 10px 0;
  color: #787676;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.productNavBox .menu_nav ul li ul li ul li a:hover {
  color: #99674E;
}
.productNavBox .menu_nav ul li ul li ul.active {
  display: block;
}
.pruducts-page {
  padding: 1.6rem 0 1.22rem;
}
.pruducts-page .page-main .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .pruducts-page .page-main .wrap-box {
    display: block;
  }
}
.pruducts-page .page-main .wrap-box .wrap-left {
  width: 20%;
  max-width: 320px;
  position: relative;
}
@media (max-width: 1024px) {
  .pruducts-page .page-main .wrap-box .wrap-left {
    display: none;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .pruducts-page .page-main .wrap-box .wrap-left {
    display: block;
    margin-bottom: 0.48rem;
  }
}
.pruducts-page .page-main .wrap-box .wrap-right {
  width: 77.75%;
  max-width: 1244px;
}
@media (max-width: 1024px) {
  .pruducts-page .page-main .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
  }
}
.pruducts-page .page-main .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.4rem;
}
@media (max-width: 990px) {
  .pruducts-page .page-main .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .pruducts-page .page-main .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pruducts-page .page-main .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  text-align: center;
}
.pruducts-page .page-main .list .item .item-box .public-img::before {
  padding-top: 77.83505155%;
}
.pruducts-page .page-main .list .item .item-box .text-box {
  padding: 0.39rem 0.2rem 0.4rem;
}
.pruducts-page .page-main .list .item .item-box .text-box .title {
  color: #403E3D;
  line-height: 1.66666667em;
}
.pruducts-page .page-main .list .item .item-box .text-box .text-body {
  width: 30px;
  height: 30px;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
  opacity: 0.4;
  font-family: 'Arial';
  color: #6E6E6E;
  margin: auto;
  margin-top: 0.29rem;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.pruducts-page .page-main .pagerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.pruducts-d-page {
  padding: 1.6rem 0 1.35rem;
}
.pruducts-d-page .page-main .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .wrap-box {
    display: block;
  }
}
.pruducts-d-page .page-main .wrap-box .wrap-left {
  width: 20%;
  max-width: 320px;
  position: relative;
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .wrap-box .wrap-left {
    display: none;
  }
}
.pruducts-d-page .page-main .wrap-box .wrap-right {
  width: 77.75%;
  max-width: 1244px;
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .wrap-box .wrap-right {
    width: 100%;
  }
}
.pruducts-d-page .page-main .pruducts-d-up .pruducts-d-up-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .pruducts-d-up .pruducts-d-up-box {
    display: block;
  }
}
.pruducts-d-page .page-main .pruducts-d-up .pruducts-d-up-box .pruducts-d-up-left {
  width: 49.8392283%;
  max-width: 620px;
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .pruducts-d-up .pruducts-d-up-box .pruducts-d-up-left {
    width: 100%;
  }
}
.pruducts-d-page .page-main .pruducts-d-up .pruducts-d-up-box .pruducts-d-up-right {
  width: 46.22186495%;
  max-width: 575px;
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .pruducts-d-up .pruducts-d-up-box .pruducts-d-up-right {
    width: 100%;
    max-width: 100%;
    margin-top: 0.8rem;
  }
}
.pruducts-d-page .page-main .pruducts-d-up .pruducts-d-swiper {
  border-radius: 0.05rem;
}
.pruducts-d-page .page-main .pruducts-d-up .pruducts-d-swiper .slide-btn.swiper-button-prev {
  left: 0.2rem;
}
.pruducts-d-page .page-main .pruducts-d-up .pruducts-d-swiper .slide-btn.swiper-button-next {
  right: 0.2rem;
}
.pruducts-d-page .page-main .pruducts-d-up .pruducts-d-swiper .slide-btn img,
.pruducts-d-page .page-main .pruducts-d-up .pruducts-d-swiper .slide-btn svg {
  width: 19px;
  height: auto;
}
.pruducts-d-page .page-main .pruducts-d-up .pruducts-d-swiper .swiper-slide {
  height: auto;
}
.pruducts-d-page .page-main .pruducts-d-up .public-img-box {
  position: relative;
}
.pruducts-d-page .page-main .pruducts-d-up .public-img-box .public-img::before {
  padding-top: 80.32258065%;
}
.pruducts-d-page .page-main .pruducts-d-up .public-img-box .icon {
  width: 80px;
  height: 80px;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 1580px) {
  .pruducts-d-page .page-main .pruducts-d-up .public-img-box .icon {
    width: 58px;
    height: 58px;
  }
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .pruducts-d-up .public-img-box .icon {
    width: 44px;
    height: 44px;
  }
}
.pruducts-d-page .page-main .pruducts-d-up .public-img-box .icon img,
.pruducts-d-page .page-main .pruducts-d-up .public-img-box .icon svg {
  width: 13px;
  height: auto;
}
@media (max-width: 1580px) {
  .pruducts-d-page .page-main .pruducts-d-up .public-img-box .icon img,
  .pruducts-d-page .page-main .pruducts-d-up .public-img-box .icon svg {
    width: 8px;
  }
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .pruducts-d-up .public-img-box .icon img,
  .pruducts-d-page .page-main .pruducts-d-up .public-img-box .icon svg {
    width: 6px;
  }
}
.pruducts-d-page .page-main .pruducts-d-up .text-up {
  position: relative;
  padding-top: 0.1rem;
  padding-bottom: 0.15rem;
}
.pruducts-d-page .page-main .pruducts-d-up .text-up::before,
.pruducts-d-page .page-main .pruducts-d-up .text-up::after {
  content: '';
  width: 100%;
  height: 0.02rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.pruducts-d-page .page-main .pruducts-d-up .text-up::before {
  opacity: 0.1;
  background: #838784;
}
.pruducts-d-page .page-main .pruducts-d-up .text-up::after {
  width: 63%;
  background: #403e3d;
}
.pruducts-d-page .page-main .pruducts-d-up .text-up .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #302F2F;
  line-height: 1.15384615em;
}
.pruducts-d-page .page-main .pruducts-d-up .text-up .text-body {
  color: #9F9F9F;
  margin-top: 0.27rem;
}
.pruducts-d-page .page-main .pruducts-d-up .text-down {
  margin-top: 0.48rem;
}
.pruducts-d-page .page-main .pruducts-d-up .text-down .text-body dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 0.26rem;
}
.pruducts-d-page .page-main .pruducts-d-up .text-down .text-body dl dt {
  color: #302F2F;
  min-width: 1.3rem;
}
.pruducts-d-page .page-main .pruducts-d-up .text-down .text-body dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  color: #9F9F9F;
}
.pruducts-d-page .page-main .pruducts-d-up .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  grid-gap: 0.14rem;
  margin-top: 0.64rem;
}
.pruducts-d-page .page-main .pruducts-d-up .btn-container .more-primary6 {
  width: auto;
  min-width: 1.96rem;
  background-color: #403E3D;
  color: #fff;
}
.pruducts-d-page .page-main .pruducts-d-up .btn-container .more-primary6:hover {
  background-color: #000;
}
.pruducts-d-page .page-main .pruducts-d-up .btn-container .more-primary6 .more-primary-circle img,
.pruducts-d-page .page-main .pruducts-d-up .btn-container .more-primary6 .more-primary-circle svg {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.pruducts-d-page .page-main .pruducts-d-page2 {
  padding-top: 0.75rem;
}
.pruducts-d-page .page-main .pruducts-d-page2 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.22rem;
  position: relative;
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .pruducts-d-page2 .list {
    grid-gap: 0.4rem;
  }
}
@media (max-width: 767px) {
  .pruducts-d-page .page-main .pruducts-d-page2 .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.pruducts-d-page .page-main .pruducts-d-page2 .list::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #838784;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.1;
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .pruducts-d-page2 .list::before {
    display: none;
  }
}
.pruducts-d-page .page-main .pruducts-d-page2 .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.42rem 0.4rem 0.56rem;
  background-color: #ffffff;
  border: 1px solid #eae6e4;
  border-radius: 15px;
  text-align: center;
}
.pruducts-d-page .page-main .pruducts-d-page2 .list .item .item-box .icon {
  line-height: 1;
}
.pruducts-d-page .page-main .pruducts-d-page2 .list .item .item-box .icon img,
.pruducts-d-page .page-main .pruducts-d-page2 .list .item .item-box .icon svg {
  width: auto;
  height: 0.33rem;
  min-height: 24px;
}
.pruducts-d-page .page-main .pruducts-d-page2 .list .item .item-box .text-box {
  margin-top: 0.32rem;
}
.pruducts-d-page .page-main .pruducts-d-page2 .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
}
.pruducts-d-page .page-main .pruducts-d-page2 .list .item .item-box .text-box .text-body {
  color: #000;
  opacity: 0.7;
}
.pruducts-d-page .page-main .pruducts-d-page3 {
  padding-top: 0.43rem;
}
.pruducts-d-page .page-main .pruducts-d-page3 .text-up {
  border-bottom: 1px solid #403E3D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.pruducts-d-page .page-main .pruducts-d-page3 .text-up .title {
  position: relative;
  min-width: 3rem;
  height: 0.64rem;
  min-height: 45px;
  padding: 0 0.8rem;
  background-color: #403e3d;
  border-radius: 0.06rem 0.06rem 0px 0px;
  color: #fff;
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.pruducts-d-page .page-main .pruducts-d-page3 .text-up .title::before {
  content: '';
  width: 0.12rem;
  height: 0.12rem;
  background-color: #403e3d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: translateY(50%) rotate(45deg);
  transform: translateY(50%) rotate(45deg);
}
.pruducts-d-page .page-main .pruducts-d-page3 .text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.69rem;
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .pruducts-d-page3 .text-box {
    display: block;
  }
}
.pruducts-d-page .page-main .pruducts-d-page3 .text-box .text-left {
  width: 46.62379421%;
  max-width: 580px;
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .pruducts-d-page3 .text-box .text-left {
    width: 100%;
    max-width: 100%;
  }
}
.pruducts-d-page .page-main .pruducts-d-page3 .text-box .text-right {
  width: 46.62379421%;
  max-width: 580px;
}
@media (max-width: 1024px) {
  .pruducts-d-page .page-main .pruducts-d-page3 .text-box .text-right {
    width: 100%;
    margin-top: 0.48rem;
  }
}
.pruducts-d-page .page-main .pruducts-d-page3 .text-body {
  color: #403E3D;
  line-height: 2.25em;
}
.pruducts-d-page .page-main .pruducts-d-page3 .text-body p {
  margin-bottom: 0.36rem;
}
.pruducts-d-page .page-main .pruducts-d-page3 .public-img::before {
  padding-top: 77.5862069%;
}
.pruducts-d-page .page-main .pruducts-d-page4 {
  padding-top: 0.98rem;
}
.pruducts-d-page .page-main .pruducts-d-page4 .text-up .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.14rem;
}
.pruducts-d-page .page-main .pruducts-d-page4 .text-up .title .icon {
  line-height: 1;
}
.pruducts-d-page .page-main .pruducts-d-page4 .text-up .title .icon img,
.pruducts-d-page .page-main .pruducts-d-page4 .text-up .title .icon svg {
  width: auto;
  height: 0.21rem;
  min-height: 18px;
}
.pruducts-d-page .page-main .pruducts-d-page4 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.4rem;
  margin-top: 0.34rem;
}
@media (max-width: 990px) {
  .pruducts-d-page .page-main .pruducts-d-page4 .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .pruducts-d-page .page-main .pruducts-d-page4 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pruducts-d-page .page-main .pruducts-d-page4 .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  text-align: center;
}
.pruducts-d-page .page-main .pruducts-d-page4 .list .item .item-box .public-img::before {
  padding-top: 77.83505155%;
}
.pruducts-d-page .page-main .pruducts-d-page4 .list .item .item-box .text-box {
  padding: 0.39rem 0.2rem 0.4rem;
  border: 1px solid #f5f4f0;
  border-top: none;
  border-radius: 0px 0px 0.05rem 0.05rem;
}
.pruducts-d-page .page-main .pruducts-d-page4 .list .item .item-box .text-box .title {
  color: #403E3D;
  line-height: 1.66666667em;
}
.pruducts-d-page .page-main .pruducts-d-page4 .list .item .item-box .text-box .text-body {
  width: 30px;
  height: 30px;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
  opacity: 0.4;
  color: #6E6E6E;
  margin: auto;
  margin-top: 0.29rem;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 1%;
}
.project-page {
  padding: 1.6rem 0 1.3rem;
}
.project-page .page-main {
  z-index: 2;
}
.project-page .page-main .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.53rem 0.5rem;
}
@media (max-width: 990px) {
  .project-page .page-main .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .project-page .page-main .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.project-page .page-main .list .item:hover .item-box::after {
  width: 100%;
}
.project-page .page-main .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.project-page .page-main .list .item .item-box::before,
.project-page .page-main .list .item .item-box::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #D9D8D8;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.project-page .page-main .list .item .item-box::after {
  width: 0;
  background-color: var(--color-black-514);
}
.project-page .page-main .list .item .item-box .public-img::before {
  padding-top: 64%;
}
.project-page .page-main .list .item .item-box .text-box {
  padding: 0.24rem 0.18rem 0.18rem;
}
.project-page .page-main .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #302F2F;
}
.project-page .page-main .list .item .item-box .text-box .text-body {
  color: #302F2F;
  margin-top: 0.04rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.09rem;
}
.project-page .page-main .list .item .item-box .text-box .text-body .icon {
  overflow: hidden;
}
.project-page .page-main .list .item .item-box .text-box .text-body .icon img,
.project-page .page-main .list .item .item-box .text-box .text-body .icon svg {
  width: 0.12rem;
  min-width: 9px;
  height: auto;
  filter: drop-shadow(-80px 0 #302F2F);
  transform: translate(80px);
}
.project-d-page {
  padding: 1.52rem 0 1.65rem;
  overflow: visible;
}
.project-d-page .page-main .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .project-d-page .page-main .wrap-box {
    display: block;
  }
}
.project-d-page .page-main .wrap-box .wrap-left {
  width: 66.9375%;
  max-width: 1071px;
  padding-right: 0.77rem;
  border-right: 1px solid #D9D6D6;
}
@media (max-width: 1024px) {
  .project-d-page .page-main .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
    padding: 0;
    border: 0;
  }
}
.project-d-page .page-main .wrap-box .wrap-right {
  width: 29.1875%;
  max-width: 467px;
}
@media (max-width: 1024px) {
  .project-d-page .page-main .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 1.2rem;
  }
}
.project-d-page .page-main .text-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.project-d-page .page-main .text-up .news-title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
  line-height: 1.33333333em;
}
.project-d-page .page-main .text-up .type-box {
  color: #403E3D;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0.3rem;
  margin-top: 0.3rem;
}
.project-d-page .page-main .text-up .type-box .type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.1rem;
}
.project-d-page .page-main .text-up .type-box .type .icon {
  line-height: 1;
  overflow: hidden;
}
.project-d-page .page-main .text-up .type-box .type .icon img,
.project-d-page .page-main .text-up .type-box .type .icon svg {
  width: auto;
  height: 16px;
  filter: drop-shadow(-80px 0 #302F2F);
  transform: translate(80px);
}
.project-d-page .page-main .project-detail-content {
  font-size: var(--font16);
  color: #403E3D;
  line-height: 2.25em;
  margin-top: 0.36rem;
}
.project-d-page .page-main .swiper-main {
  margin-top: 0.62rem;
  position: relative;
}
.project-d-page .page-main .swiper-main .slide-btn {
  width: 35px;
  height: 35px;
  margin-top: -17.5px;
}
.project-d-page .page-main .swiper-main .slide-btn.swiper-button-prev {
  left: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.project-d-page .page-main .swiper-main .slide-btn.swiper-button-next {
  right: 0;
}
.project-d-page .page-main .swiper-main .project-d-swiper {
  width: 76.56395892%;
  max-width: 820px;
  margin: auto;
}
@media (max-width: 1024px) {
  .project-d-page .page-main .swiper-main .project-d-swiper {
    width: 100%;
    padding-bottom: 40px;
  }
  .project-d-page .page-main .swiper-main .project-d-swiper .swiper-pagination {
    opacity: 1;
  }
}
.project-d-page .page-main .swiper-main .project-d-swiper .swiper-slide {
  height: auto;
}
.project-d-page .page-main .swiper-main .project-d-swiper .swiper-slide .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.project-d-page .page-main .swiper-main .project-d-swiper .swiper-slide .item-box .public-img::before {
  padding-top: 64.02439024%;
}
.project-d-page .page-main .recommended-news {
  position: sticky;
  top: calc(var(--header-height) + 0.4rem);
  right: 0;
}
.project-d-page .page-main .recommended-news .name {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #302F2F;
  line-height: 1;
}
.project-d-page .page-main .recommended-news .list {
  margin-top: 0.23rem;
}
.project-d-page .page-main .recommended-news .list .item:hover .item-box::after {
  width: 100%;
}
.project-d-page .page-main .recommended-news .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.project-d-page .page-main .recommended-news .list .item .item-box::before,
.project-d-page .page-main .recommended-news .list .item .item-box::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #D9D8D8;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.project-d-page .page-main .recommended-news .list .item .item-box::after {
  width: 0;
  background-color: var(--color-black-514);
}
.project-d-page .page-main .recommended-news .list .item .item-box .public-img {
  width: 38.54389722%;
  max-width: 180px;
}
.project-d-page .page-main .recommended-news .list .item .item-box .public-img::before {
  padding-top: 63.88888889%;
}
.project-d-page .page-main .recommended-news .list .item .item-box .text-box {
  width: 56.74518201%;
  max-width: 265px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .project-d-page .page-main .recommended-news .list .item .item-box .text-box {
    width: 100%;
    max-width: 100%;
    padding-left: 0.28rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
  }
}
.project-d-page .page-main .recommended-news .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #302F2F;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.project-d-page .page-main .recommended-news .list .item .item-box .text-box .text-body {
  color: #302F2F;
  margin-top: 0.04rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.09rem;
}
.project-d-page .page-main .recommended-news .list .item .item-box .text-box .text-body .icon {
  overflow: hidden;
}
.project-d-page .page-main .recommended-news .list .item .item-box .text-box .text-body .icon img,
.project-d-page .page-main .recommended-news .list .item .item-box .text-box .text-body .icon svg {
  width: 0.12rem;
  min-width: 9px;
  height: auto;
  filter: drop-shadow(-80px 0 #302F2F);
  transform: translate(80px);
}
.project-d-page .page-main .recommended-news .btn-container {
  padding: 0 0.37rem;
}
.catalog-page {
  padding: 0.96rem 0 0.66rem;
}
.catalog-page .page-main .page-con {
  padding: 0.6rem 0 0.94rem;
  border-bottom: 0.02rem solid rgba(208, 207, 206, 0.4);
}
.catalog-page .page-main .page-con:last-child {
  border-bottom: none;
}
.catalog-page .page-main .page-up {
  margin-bottom: 0.58rem;
}
.catalog-page .page-main .page-up .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #000;
}
.catalog-page .page-main .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.catalog-page .page-main .item-box:hover .public-img-box .public-img::after {
  opacity: 0.8;
}
.catalog-page .page-main .item-box:hover .public-img-box .public-icon {
  opacity: 1;
}
.catalog-page .page-main .item-box .public-img-box {
  width: 76.35135135%;
  max-width: 226px;
  margin: auto;
  padding: 0.2rem;
  background-color: #fff;
  position: relative;
}
.catalog-page .page-main .item-box .public-img-box .public-img::before {
  padding-top: 140.7079646%;
}
.catalog-page .page-main .item-box .public-img-box .public-img::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--color-black-514);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.catalog-page .page-main .item-box .public-img-box .public-img img {
  height: auto;
}
.catalog-page .page-main .item-box .public-img-box .public-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  line-height: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.catalog-page .page-main .item-box .public-img-box .public-icon img,
.catalog-page .page-main .item-box .public-img-box .public-icon svg {
  width: 0.3rem;
  min-width: 20px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.catalog-page .page-main .item-box .icon {
  margin-top: -0.2rem;
}
.catalog-page .page-main .item-box .text-box {
  color: #403E3D;
  line-height: 1.71428571em;
  position: relative;
  padding-top: 0.22rem;
  margin-top: -0.38rem;
}
.catalog-page .page-main .item-box .text-box::before {
  content: '';
  width: 0.17rem;
  height: 0.04rem;
  background-color: var(--color-black-514);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.catalog-page .page-main .swiper-main {
  position: relative;
}
.catalog-page .page-main .swiper-main .slide-btn {
  width: 35px;
  height: 35px;
  margin-top: -17.5px;
}
.catalog-page .page-main .swiper-main .slide-btn.swiper-button-prev {
  left: -0.95rem;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.catalog-page .page-main .swiper-main .slide-btn.swiper-button-next {
  right: -0.95rem;
}
@media (max-width: 767px) {
  .catalog-page .page-main .swiper-main .catalog-swiper {
    width: 77%;
    overflow: visible;
  }
}
.catalog-page .page-main .swiper-main .catalog-swiper .swiper-slide {
  height: auto;
}
@media (max-width: 767px) {
  .catalog-page .page-main .swiper-main .catalog-swiper2 {
    width: 77%;
    overflow: visible;
  }
}
.catalog-page .page-main .swiper-main .catalog-swiper2 .swiper-slide {
  height: auto;
}
.certificate-page {
  padding: 1.24rem 0 0.9rem;
}
.certificate-page .page-main .list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 0.55rem 0.75rem;
}
@media (max-width: 1024px) {
  .certificate-page .page-main .list {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.4rem;
  }
}
@media (max-width: 990px) {
  .certificate-page .page-main .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .certificate-page .page-main .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.certificate-page .page-main .list .item:hover .item-box .public-img-box::before {
  opacity: 0.8;
}
.certificate-page .page-main .list .item:hover .item-box .public-img-box .icon {
  opacity: 1;
}
.certificate-page .page-main .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.certificate-page .page-main .list .item .item-box .public-img-box {
  position: relative;
}
.certificate-page .page-main .list .item .item-box .public-img-box::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--color-black-514);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.certificate-page .page-main .list .item .item-box .public-img-box .public-img {
  width: 80%;
  max-width: 132px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0.17rem;
}
.certificate-page .page-main .list .item .item-box .public-img-box .public-img::before {
  padding-top: 145.45454545%;
}
.certificate-page .page-main .list .item .item-box .public-img-box .public-img img {
  margin: 0;
  height: initial;
}
.certificate-page .page-main .list .item .item-box .public-img-box .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  line-height: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.certificate-page .page-main .list .item .item-box .public-img-box .icon img,
.certificate-page .page-main .list .item .item-box .public-img-box .icon svg {
  width: 0.25rem;
  min-width: 18px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.contact-page {
  padding: 1.45rem 0 1.22rem;
}
.contact-page .page-main {
  z-index: 2;
}
.contact-page .page-main .page-up {
  width: 75%;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1024px) {
  .contact-page .page-main .page-up {
    width: 100%;
  }
}
.contact-page .page-main .page-up .text-body {
  color: #403E3D;
  line-height: 1.875em;
  margin-top: 0.16rem;
}
.contact-page .page-main .page-down {
  margin-top: 0.8rem;
}
.contact-page .page-main .page-down .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .contact-page .page-main .page-down .wrap-box {
    display: block;
  }
}
.contact-page .page-main .page-down .wrap-box .wrap-left {
  width: 31.25%;
  max-width: 500px;
}
@media (max-width: 1024px) {
  .contact-page .page-main .page-down .wrap-box .wrap-left {
    width: 100%;
    margin: auto;
  }
}
.contact-page .page-main .page-down .wrap-box .wrap-right {
  width: 66.375%;
  max-width: 1062px;
}
@media (max-width: 1024px) {
  .contact-page .page-main .page-down .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 0.8rem;
  }
}
.contact-page .page-main .page-down .forms input {
  height: 0.6rem;
  min-height: 44px;
  padding: 0 0.16rem;
  background: #ffffff;
  border: 1px solid #e1e3e4;
  color: #000;
}
.contact-page .page-main .page-down .forms .widget-textarea {
  height: 2.65rem;
  min-height: 120px;
}
.contact-page .page-main .page-down .forms textarea {
  height: 2.65rem;
  min-height: 120px;
  padding: 0.16rem 0.16rem;
  background: #ffffff;
  border: 1px solid #e1e3e4;
  color: #000;
}
.contact-page .page-main .page-down .forms input::-webkit-input-placeholder {
  color: #3D3E3E;
}
.contact-page .page-main .page-down .forms input:-moz-placeholder {
  color: #3D3E3E;
}
.contact-page .page-main .page-down .forms input::-moz-placeholder {
  color: #3D3E3E;
}
.contact-page .page-main .page-down .forms input:-ms-input-placeholder {
  color: #3D3E3E;
}
.contact-page .page-main .page-down .forms textarea::-webkit-input-placeholder {
  color: #3D3E3E;
}
.contact-page .page-main .page-down .forms textarea:-moz-placeholder {
  color: #3D3E3E;
}
.contact-page .page-main .page-down .forms textarea::-moz-placeholder {
  color: #3D3E3E;
}
.contact-page .page-main .page-down .forms textarea:-ms-input-placeholder {
  color: #3D3E3E;
}
.contact-page .page-main .page-down .forms .info-list {
  margin-top: 0.2rem;
}
.contact-page .page-main .page-down .forms .info-list:first-child {
  margin: 0;
}
.contact-page .page-main .page-down .forms .info-list2 {
  grid-gap: 0.2rem;
}
.contact-page .page-main .page-down .forms .forms-box .widget-input {
  position: relative;
}
.contact-page .page-main .page-down .forms .forms-box .widget-input > .icon {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.06rem;
}
.contact-page .page-main .page-down .forms .forms-box .widget-input > .icon img,
.contact-page .page-main .page-down .forms .forms-box .widget-input > .icon svg {
  width: 0.25rem;
  min-width: 20px;
  height: auto;
}
.contact-page .page-main .page-down .forms .forms-box-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.contact-page .page-main .page-down .forms .forms-box-main .forms-box {
  width: 100%;
  margin-bottom: 0.2rem;
}
.contact-page .page-main .page-down .forms .widget-input-container img {
  right: 0.2rem;
}
.contact-page .page-main .page-down .forms .tips {
  color: #3D3E3E;
  opacity: 0.4;
  text-align: center;
  margin-top: 0.1rem;
}
.contact-page .page-main .page-down .forms .btn-container {
  width: 100%;
}
.contact-page .page-main .page-down .forms .btn-container .more-primary3 {
  min-width: 100%;
  margin: 0;
  grid-gap: 0.12rem;
}
.contact-page .page-main .page-down .forms .btn-container .more-primary3 .more-primary-circle {
  line-height: 1;
}
.contact-page .page-main .page-down .forms .btn-container .more-primary3 .more-primary-circle img,
.contact-page .page-main .page-down .forms .btn-container .more-primary3 .more-primary-circle svg {
  width: 0.23rem;
  min-width: 18px;
  height: auto;
}
.contact-page .page-main .page-down .public-img {
  height: 100%;
}
.contact-page .page-main .page-down .public-img::before {
  padding-top: 85%;
}
.contact-page2 {
  padding: 0.88rem 0 1.04rem;
}
.contact-page2 .page-main {
  z-index: 2;
}
.contact-page2 .page-main .page-down {
  margin-top: 0.88rem;
}
.contact-page2 .page-main .page-down .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .contact-page2 .page-main .page-down .wrap-box {
    display: block;
  }
}
.contact-page2 .page-main .page-down .wrap-box .wrap-left {
  width: 42.5%;
  max-width: 680px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .contact-page2 .page-main .page-down .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
    margin-top: 0.48rem;
  }
}
.contact-page2 .page-main .page-down .wrap-box .wrap-right {
  width: 52.375%;
  max-width: 838px;
  order: 2;
}
@media (max-width: 1024px) {
  .contact-page2 .page-main .page-down .wrap-box .wrap-right {
    width: 100%;
    margin: auto;
  }
}
.contact-page2 .page-main .page-down .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';
  color: #fff;
  line-height: 1.2em;
  padding-right: 0.6rem;
}
.contact-page2 .page-main .page-down .text-box .text-body {
  color: #fff;
  line-height: 2em;
  margin-top: 0.46rem;
}
.contact-page2 .page-main .page-down .text-box .text-body img,
.contact-page2 .page-main .page-down .text-box .text-body svg {
  width: 0.16rem;
  min-width: 11px;
  height: auto;
}
.contact-page2 .page-main .page-down .text-box .text-body dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.16rem;
}
.contact-page2 .page-main .page-down .text-box .text-body dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.contact-page2 .page-main .page-down .text-box .text-body dl dd .link {
  color: #DAAE87;
  font-size: var(--font16);
  overflow: hidden;
  display: inline-table;
}
.contact-page2 .page-main .page-down .text-box .text-body dl dd .link img,
.contact-page2 .page-main .page-down .text-box .text-body dl dd .link svg {
  margin-right: 0.05rem;
  filter: drop-shadow(-380px 0 #DAAE87);
  transform: translate(380px);
}
.contact-page2 .page-main .page-down .public-img {
  border-radius: 0.1rem;
}
.contact-page2 .page-main .page-down .public-img::before {
  padding-top: 46.30071599%;
}
.contact-page3 {
  padding: 1.1rem 0 1.56rem;
}
.contact-page3 .page-main .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 1.7rem;
}
@media (max-width: 1024px) {
  .contact-page3 .page-main .list {
    grid-gap: 0.6rem 0.4rem;
  }
}
@media (max-width: 767px) {
  .contact-page3 .page-main .list {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.contact-page3 .page-main .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.contact-page3 .page-main .list .item .item-box .icon {
  line-height: 1;
}
.contact-page3 .page-main .list .item .item-box .icon img,
.contact-page3 .page-main .list .item .item-box .icon svg {
  width: auto;
  height: 0.63rem;
}
.contact-page3 .page-main .list .item .item-box .text-box {
  margin-top: 0.3rem;
}
.contact-page3 .page-main .list .item .item-box .text-box .title {
  font-family: 'AlibabaPuHuiTi_3_35_Thin_M';
  color: #3D3E3E;
}
.contact-page3 .page-main .list .item .item-box .text-box .text-body {
  color: #3D3E3E;
  line-height: 1.875em;
  margin-top: 0.14rem;
}

.zs_more {
    border: 1px solid #777;
    border-radius: 50%;
    width: .3rem;
    height: .3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .2rem 0 0 0;
    transition: all .5s ease;
}

.zs_more a{
    font-size: .05rem;
    line-height: normal;
    color: #777;
    transition: all .5s ease;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zs_more:hover{
    background: #666;
    border: #666;
}

.zs_more:hover a{
    color: #fff;
}
/*.btn-container .more-primary2 .more-primary-str span:nth-child(1){margin-top: .05rem;}*/
.index-page4 .page-main .swiper-main .swiper-scrollbar{display: block !important;}
/*.forms .btn-container .more-primary3 .more-primary-str{margin-top: .05rem;}*/
/*.btn-container .more-primary7 span:nth-child(1){margin-top: .05rem;}*/
.btn-container .more-primary7 .more-primary-circle{display: flex;align-items: center;}
/*.btn-container .more-primary6 span:nth-child(1){margin-top: .05rem;}*/
.btn-container .more-primary6 .more-primary-circle{display: flex;align-items: center;}
/*.btn-container .more-primary8 span:nth-child(1){margin-top: .05rem;}*/
.btn-container .more-primary8 .more-primary-circle{display: flex;align-items: center;}
.business-page7 .page-main .page-down .list .item .item-box .text-box .title{margin-bottom: .1rem;}
/*.exhibition-page .page-main .tab-title-box .tab-title .title{padding-top: .05rem;}*/
/*.exhibition2-page .page-main .tab-title-box .tab-title .title{padding-top: .05rem;}*/
.exhibition-page .page-main .list .item .item-box .text-box .imgs .icon:nth-child(2) svg{height: 30px;}
.exhibition-page .page-main .list .item .item-box .text-box .imgs{align-items: center;}
.pruducts-d-page .page-main .pruducts-d-page4 .text-up .title{font-weight: bold;}
.pruducts-d-page .page-main .pruducts-d-up .text-up .title{font-weight: bold;}
.project-d-page .page-main .recommended-news .name{font-weight: bold;}
.project-d-page .page-main .text-up .news-title{font-weight: bold;}
.page-ban .container .slogan .list .item .item-box .text-box .title{font-family: 'AlibabaPuHuiTi_3_35_Thin_L';}
.page-title .slogan{color: #514941;text-transform: none;}
.about-page4 .page-main .item-box .text-up .text-right{display: flex;align-items: center;}
.advertisement-img{display: grid;grid-template-columns: repeat(2,1fr);gap: .1rem;border-radius: .1rem;}
.advertisement-img .public-img{border-radius: 0.1rem;}
.advertisement-img .public-img::before{padding-top: 57.86163522%;}
.advertisement-img .text-box{width: 100%;padding: 0 0.78rem 0.45rem;position: absolute;left: 0;bottom: 0;z-index: 1;}
.advertisement-img .text-box .title{font-family: 'AlibabaPuHuiTi_3_35_Thin_BD';color: #fff;margin-bottom: .1rem;}
.advertisement-img .text-box .text-body{color: rgba(255, 255, 255, 0.5);line-height: 1.28571429em;display: none;}
.advertisement-img .text-box .text-body p{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.advertisement-img .item-box:hover .text-box .text-body{display: block;-webkit-animation: scrollToTop 0.8s both;animation: scrollToTop 0.8s both;}
/*.advertisement-img .btn-container{margin-top: 0.5rem;}*/
@media (max-width: 768px) {
    .pruducts-page{padding: 1rem 0 0 0;}
    .exhibition-d2-page,.business-page{padding: 1rem 0;}
    .about-page2{padding: 1rem 0 0 0;}
    .advertisement-img{grid-template-columns: repeat(1, 1fr);}
    .exhibition-page .page-main .list .item .item-box .text-box .title{min-height: 100%;}
    .exhibition-d2-page .page-main .wrap-box .wrap-right{margin-top: .4rem;}
    .manufacturing-page .page-main .item-box .text-box .text-more{text-align: left;}
    .manufacturing-page3 .page-main .item-box .public-img-box{padding: 0.35rem;}
    .manufacturing-page4 .swiper-main .manufacturing-swiper4{padding-bottom: 0;}
    .manufacturing-page2 .swiper-main .manufacturing-swiper2{padding-bottom: 0;}
    .advertisement-img .text-box{padding: 0 0.38rem 0.45rem;}
}
