@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;

  }

}



/*

插件：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);

  }

}



@keyframes fadeInLeftBig {

  0% {

    opacity: 0;

    -webkit-transform: translateX(-20%);

    -ms-transform: translateX(-20%);

    transform: translateX(-20%);

  }



  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);

  }

}



@keyframes fadeInRightBig {

  0% {

    opacity: 0;

    -webkit-transform: translateX(20%);

    -ms-transform: translateX(20%);

    transform: translateX(20%);

  }



  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;

}







.fadeInLeftBig {

  -webkit-animation-name: fadeInLeftBig;

  animation-name: fadeInLeftBig;

}



.fadeInRightBig {

  -webkit-animation-name: fadeInRightBig;

  animation-name: fadeInRightBig;

}









.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-green-008 {

  color: #00833e;

}



.color-blue-045 {

  color: #045ebf;

}



.bg-green-008 {

  background-color: #00833e;

}



.bg-blue-045 {

  background-color: #045ebf;

}



:root {

  /* 导航高度 */

  --header-height: 0.8rem;

  /* COLOR */

  --color-active: #00833e;

  --color-green-008: #00833e;

  --color-blue-045: #045ebf;

  --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);

  --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);

  --font68: clamp(31px, 0.68rem, 68px);

  /* --- font70以及以上 */

  --font70: clamp(32px, 0.7rem, 70px);

  --font72: clamp(32px, 0.72rem, 72px);

  --font80: clamp(32px, 0.8rem, 80px);

  --font88: clamp(32px, 0.88rem, 88px);

  --font100: 1rem;

  --font120: 1.2rem;

  --font160: 1.6rem;

  --font230: 2.3rem;

}



@media (max-width: 1580px) {

  :root {

    --header-height: 50px;

  }

}



/* 公共字体 */

.font12 {

  font-size: var(--font12);

}



.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);

}



.font68 {

  font-size: var(--font68);

}



.font70 {

  font-size: var(--font70);

}



.font72 {

  font-size: var(--font72);

}



.font80 {

  font-size: var(--font80);

}



.font88 {

  font-size: var(--font88);

}



.font100 {

  font-size: var(--font100);

}



.font120 {

  font-size: var(--font120);

}



.font160 {

  font-size: var(--font160);

}



.font230 {

  font-size: var(--font230);

}



/* 字体 */

@font-face {

  font-family: "Montserrat-Light";

  src: url('../fonts/Montserrat-Light-6.otf');

  font-style: normal;

  font-display: swap;

}



.Montserrat_L {

  font-family: 'Montserrat_L';

}



@font-face {

  font-family: "Montserrat-Bold";

  src: url('../fonts/Montserrat-Bold-3.otf');

  font-style: normal;

  font-display: swap;

}



.Montserrat_B {

  font-family: 'Montserrat_B';

}



@font-face {

  font-family: 'Alibaba-PuHuiTi-B';

  src: url('../fonts/AlibabaPuHuiTi_2_115_Black.woff2') format('woff2'), url('../fonts/AlibabaPuHuiTi_2_115_Black.woff') format('woff');

  font-weight: 900;

  font-style: normal;

  font-display: swap;

}



.Alibaba-PuHuiTi-B {

  font-family: 'Alibaba-PuHuiTi-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: 'PingFang SC', '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: #999999;

}



input:-moz-placeholder {

  color: #999999;

}



input::-moz-placeholder {

  color: #999999;

}



input:-ms-input-placeholder {

  color: #999999;

}



textarea::-webkit-input-placeholder {

  color: #999999;

}



textarea:-moz-placeholder {

  color: #999999;

}



textarea::-moz-placeholder {

  color: #999999;

}



textarea:-ms-input-placeholder {

  color: #999999;

}



body::-webkit-scrollbar-track,

html::-webkit-scrollbar-track {

  /*滚动条-背景*/

  background: #ededed;

}



::-webkit-scrollbar {

  width: 4px;

  height: 1px;

}



::-webkit-scrollbar-thumb {

  /*滚动条-滑块*/

  background-color: var(--color-active);

  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);

}



::-webkit-scrollbar-track {

  /*滚动条-背景*/

  background: rgba(0, 32, 96, 0.06);

}



.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;

}



.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);

}



.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: 6px;

  height: 6px;

  background-color: #000;

  opacity: 0.2;

  margin: 0 0.07rem;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {

  opacity: 1;

  background-color: var(--color-active);

}



.slide-btn {

  width: 46px;

  height: 46px;

  margin-top: -23px;

  background: no-repeat center;

  border-radius: 50%;

  cursor: pointer;

  overflow: hidden;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

}



@media (max-width: 1024px) {

  .slide-btn {

    display: none;

  }

}



.slide-btn svg {

  width: 100%;

  height: 100%;

}



.slide-btn svg circle {

  cx: 50%;

  cy: 50%;

  r: calc(50% - 2px);

  fill: none;

  stroke: #cccccc;

  stroke-width: 1;

}



.slide-btn svg path {

  fill: #cccccc;

}



.slide-btn svg .active {

  position: relative;

  z-index: 5;

  stroke: var(--color-active);

  stroke-dasharray: calc(3.14 * 60);

  stroke-dashoffset: calc(3.14 * 60);

  transform: rotate(-90deg);

  transform-origin: center;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.slide-btn:hover {

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

}



.slide-btn:hover svg .active {

  stroke-dashoffset: 0;

}



.slide-btn:hover svg circle {

  stroke: transparent;

}



.slide-btn:hover svg path {

  fill: #fff;

}



.slide-btn-main {

  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.24rem;

}



.slide-btn-main .slide-btn {

  width: 56px;

  height: 56px;

  margin-top: 0;

  background: no-repeat center;

  cursor: pointer;

  overflow: hidden;

  position: relative;

  top: 0;

  left: 0;

  right: 0;

}



@media (max-width: 1024px) {

  .slide-btn-main .slide-btn {

    display: none;

  }

}



.slide-btn-main .slide-btn svg {

  width: 100%;

  height: 100%;

}



.slide-btn-main .slide-btn svg circle {

  cx: 50%;

  cy: 50%;

  r: calc(50% - 2px);

  fill: none;

  stroke: #cccccc;

  stroke-width: 1;

}



.slide-btn-main .slide-btn svg path {

  fill: #cccccc;

}



.slide-btn-main .slide-btn svg .active {

  position: relative;

  z-index: 5;

  stroke: var(--color-active);

  stroke-dasharray: calc(3.14 * 60);

  stroke-dashoffset: calc(3.14 * 60);

  transform: rotate(-90deg);

  transform-origin: center;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.slide-btn-main .slide-btn:hover svg .active {

  stroke-dashoffset: 0;

}



.slide-btn-main .slide-btn:hover svg path {

  fill: var(--color-active);

}



.slide-down {

  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.05rem;

}



.slide-down .slide-btn {

  position: relative;

  top: 0;

  left: 0;

  right: 0;

  margin: 0;

}



.slide-down .swiper-pagination {

  height: 46px;

  opacity: 1;

  position: relative;

  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;

}



/* 公共样式 - 结束 */

#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);*/

}



.container {

  width: 100%;

  height: auto;

  max-width: 80%;

  margin: 0 auto;

}



@media (min-width: 1901px) {

  .container {

    max-width: 1536px;

  }

}



@media (max-width: 1816px) {

  .container {

    max-width: 84.5814978%;

  }

}



@media (max-width: 1024px) {

  .container {

    max-width: 100%;

    padding: 0 20px;

  }

}



.TYN-box {

  width: 100%;

  height: 0;

  position: relative;

  transform: translateY(-70px);

  /*transform: translateY(calc(var(--header-height) * -1));*/

}



.btn-container {

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

}



.btn-container .more-primary {

  position: relative;

  min-width: 1.46rem;

  min-height: 38px;

  padding: 0 0.2rem;

  overflow: hidden;

  border-radius: 0.1rem;

  background-color: rgba(230, 230, 230, 0.3);

  color: #666666;

  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;

  -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::before {

  content: '';

  width: 100%;

  height: 100%;

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.btn-container .more-primary.active,

.btn-container .more-primary:hover {

  color: #fff;

}



.btn-container .more-primary.active::before,

.btn-container .more-primary:hover::before {

  opacity: 1;

}



.btn-container .more-primary.active .more-primary-circle img,

.btn-container .more-primary:hover .more-primary-circle img,

.btn-container .more-primary.active .more-primary-circle svg,

.btn-container .more-primary:hover .more-primary-circle svg {

  filter: drop-shadow(-80px 0 #fff);

  transform: translate(80px);

}



.btn-container .more-primary .more-primary-str {

  z-index: 3;

  position: relative;

}



.btn-container .more-primary .more-primary-circle {

  position: relative;

  margin-right: 0.1rem;

  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;

}



.btn-container .more-primary .more-primary-circle img,

.btn-container .more-primary .more-primary-circle svg {

  z-index: 2;

  width: 0.14rem;

  min-width: 11px;

  height: auto;

  filter: drop-shadow(-80px 0 #666666);

  transform: translate(80px);

}



.btn-container .more-primary2 {

  position: relative;

  min-width: 1.72rem;

  height: 0.48rem;

  min-height: 45px;

  padding: 0 0.42rem;

  overflow: hidden;

  border-radius: 0.24rem;

  background-color: transparent;

  border: 1px solid rgba(204, 204, 204, 0.5);

  color: #999999;

  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-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.btn-container .more-primary2::before {

  content: '';

  width: 100%;

  height: 100%;

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.btn-container .more-primary2.active,

.btn-container .more-primary2:hover {

  color: #fff;

}



.btn-container .more-primary2.active::before,

.btn-container .more-primary2:hover::before {

  opacity: 1;

}



.btn-container .more-primary2.active .more-primary-circle,

.btn-container .more-primary2:hover .more-primary-circle {

  -webkit-transform: rotate(135deg);

  transform: rotate(135deg);

}



.btn-container .more-primary2.active .more-primary-circle img,

.btn-container .more-primary2:hover .more-primary-circle img,

.btn-container .more-primary2.active .more-primary-circle svg,

.btn-container .more-primary2:hover .more-primary-circle svg {

  filter: drop-shadow(-80px 0 #fff);

  transform: translate(80px);

}



.btn-container .more-primary2 .more-primary-str {

  z-index: 3;

  position: relative;

}



.btn-container .more-primary2 .more-primary-circle {

  position: relative;

  margin-left: 0.15rem;

  overflow: hidden;

  -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;

  -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 {

  z-index: 2;

  width: 0.09rem;

  min-width: 9px;

  height: auto;

  filter: drop-shadow(-80px 0 #666666);

  transform: translate(80px);

}



.btn-container .more-primary3 {

  position: relative;

  overflow: hidden;

  color: #666666;

  cursor: pointer;

  opacity: 0.5;

  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;

}



.btn-container .more-primary3.active .more-primary-str,

.btn-container .more-primary3:hover .more-primary-str {

  color: var(--color-black);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.btn-container .more-primary3.active .more-primary-circle img,

.btn-container .more-primary3:hover .more-primary-circle img,

.btn-container .more-primary3.active .more-primary-circle svg,

.btn-container .more-primary3:hover .more-primary-circle svg {

  filter: drop-shadow(-80px 0 var(--color-active));

  transform: translate(80px);

}



.btn-container .more-primary3 .more-primary-str {

  z-index: 3;

  position: relative;

}



.btn-container .more-primary3 .more-primary-circle {

  position: relative;

  margin-left: 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;

}



.btn-container .more-primary3 .more-primary-circle img,

.btn-container .more-primary3 .more-primary-circle svg {

  z-index: 2;

  width: 0.09rem;

  min-width: 9px;

  height: auto;

  filter: drop-shadow(-80px 0 #666666);

  transform: translate(80px);

}



.btn-container .more-primary4 {

  position: relative;

  min-width: 2.4rem;

  height: 0.62rem;

  min-height: 45px;

  padding: 0 0.7rem;

  overflow: hidden;

  border-radius: 0.1rem;

  background-color: rgba(230, 230, 230, 0.3);

  color: #666666;

  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;

  -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-primary4::before {

  content: '';

  width: 100%;

  height: 100%;

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.btn-container .more-primary4.active,

.btn-container .more-primary4:hover {

  color: #fff;

}



.btn-container .more-primary4.active::before,

.btn-container .more-primary4:hover::before {

  opacity: 1;

}



.btn-container .more-primary4.active .more-primary-circle img,

.btn-container .more-primary4:hover .more-primary-circle img,

.btn-container .more-primary4.active .more-primary-circle svg,

.btn-container .more-primary4:hover .more-primary-circle svg {

  filter: drop-shadow(-80px 0 #fff);

  transform: translate(80px);

}



.btn-container .more-primary4 .more-primary-str {

  z-index: 3;

  position: relative;

}



.btn-container .more-primary4 .more-primary-circle {

  position: relative;

  margin-left: 0.15rem;

  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;

}



.btn-container .more-primary4 .more-primary-circle img,

.btn-container .more-primary4 .more-primary-circle svg {

  z-index: 2;

  width: 0.2rem;

  min-width: 14px;

  height: auto;

  filter: drop-shadow(-80px 0 #666666);

  transform: translate(80px);

}



.btn-container .more-primary5 {

  position: relative;

  min-width: 1.72rem;

  height: 0.48rem;

  min-height: 45px;

  padding: 0 0.3rem;

  overflow: hidden;

  border-radius: 0.24rem;

  background-color: rgba(230, 230, 230, 0.3);

  color: #666666;

  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;

  -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-primary5::before {

  content: '';

  width: 100%;

  height: 100%;

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0;

  -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 {

  color: #fff;

}



.btn-container .more-primary5.active::before,

.btn-container .more-primary5:hover::before {

  opacity: 1;

}



.btn-container .more-primary5.active .more-primary-circle img,

.btn-container .more-primary5:hover .more-primary-circle img,

.btn-container .more-primary5.active .more-primary-circle svg,

.btn-container .more-primary5:hover .more-primary-circle svg {

  filter: drop-shadow(-80px 0 #fff);

  transform: translate(80px);

}



.btn-container .more-primary5.active:hover .more-primary-circle {

  -webkit-transform: rotate(45deg);

  transform: rotate(45deg);

}



.btn-container .more-primary5 .more-primary-str {

  z-index: 3;

  position: relative;

}



.btn-container .more-primary5 .more-primary-circle {

  position: relative;

  margin-left: 0.11rem;

  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;

}



.btn-container .more-primary5 .more-primary-circle img,

.btn-container .more-primary5 .more-primary-circle svg {

  z-index: 2;

  width: 0.09rem;

  min-width: 9px;

  height: auto;

  filter: drop-shadow(-80px 0 #666666);

  transform: translate(80px);

}



.btn-container .more-primary6 {

  position: relative;

  width: 36px;

  height: 36px;

  overflow: hidden;

  border-radius: 50%;

  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;

  -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) {

  .btn-container .more-primary6 {

    width: 26px;

    height: 26px;

  }

}



.btn-container .more-primary6.active,

.btn-container .more-primary6:hover {

  background-color: #fff;

}



.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 {

  opacity: 1;

}



.btn-container .more-primary6.active .more-primary-circle svg path,

.btn-container .more-primary6:hover .more-primary-circle svg path {

  fill: var(--color-active);

}



.btn-container .more-primary6 .more-primary-circle {

  position: relative;

  overflow: hidden;

  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;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.btn-container .more-primary6 .more-primary-circle img,

.btn-container .more-primary6 .more-primary-circle svg {

  z-index: 2;

  width: 0.09rem;

  min-width: 9px;

  height: auto;

  opacity: 0.2;

}



@media (max-width: 1580px) {



  .btn-container .more-primary6 .more-primary-circle img,

  .btn-container .more-primary6 .more-primary-circle svg {

    min-width: 6px;

  }

}



.btn-container .more-primary6 .more-primary-circle svg path {

  fill: #5f5f5f;

}



.page-img-box {

  position: relative;

}



.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;

}



.page-ban {

  position: relative;

  z-index: 10;

}



.page-ban:before {

  content: "";

  background-color: rgba(0, 0, 0, 0.9);

  inset: 0;

  opacity: var(--progress);

  pointer-events: none;

  position: absolute;

}



.page-ban .img {

  overflow: hidden;

  position: relative;

}



.page-ban .img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  min-height: 400px;

}



.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 {

  color: var(--color-white);

  font-weight: bold;

  line-height: 1;

  text-transform: capitalize;

}



.page-ban .container .slogan .text-body {

  color: var(--color-white);

  line-height: 2em;

  margin-top: 0.04rem;

}



.page-ban .container .slogan .searchform {

  margin-top: 0.24rem;

}



@media (max-width: 1024px) {

  .page-ban2 .container .slogan .title {

    font-size: var(--font32);

  }

}



.page-ban2 .container .slogan .text-body {

  margin-top: 0.32rem;

  width: 45.44270833%;

  max-width: 698px;

  line-height: 1.55555556em;

}



@media (max-width: 1024px) {

  .page-ban2 .container .slogan .text-body {

    width: 100%;

  }

}



.page-ban2 .container .slogan .btn-container {

  margin-top: 0.54rem;

}



@media (max-width: 1024px) {

  .page-ban2 .container .slogan .btn-container {

    margin-top: 0.4rem;

  }

}



.page-ban3::after {

  content: '';

  width: 100%;

  height: 100%;

  background-color: #000;

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0.7;

}



.page-ban3 .img img {

  min-height: 520px;

}



.page-ban3 .container .slogan .stock-box {

  width: 69.98697917%;

  max-width: 1075px;

}



@media (max-width: 1024px) {

  .page-ban3 .container .slogan .stock-box {

    width: 100%;

  }

}



.page-ban3 .container .slogan .stock-box .text-body {

  line-height: initial;

  margin: 0;

}



.page-ban3 .container .slogan .stock-box .text-up {

  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.4rem;

}



.page-ban3 .container .slogan .stock-box .text-up .num {

  font-family: 'Alibaba-PuHuiTi-B';

  color: var(--color-white);

  line-height: 1;

}



@media (max-width: 1024px) {

  .page-ban3 .container .slogan .stock-box .text-up .num {

    font-size: var(--font60);

  }

}



.page-ban3 .container .slogan .stock-box .text-up .num.descend .icon img,

.page-ban3 .container .slogan .stock-box .text-up .num.descend .icon svg {

  -webkit-transform: none;

  transform: none;

}



.page-ban3 .container .slogan .stock-box .text-up .num.rise .icon img,

.page-ban3 .container .slogan .stock-box .text-up .num.rise .icon svg {

  -webkit-transform: scaleY(-1);

  transform: scaleY(-1);

}



.page-ban3 .container .slogan .stock-box .text-up .num .icon {

  line-height: 1;

}



.page-ban3 .container .slogan .stock-box .text-up .num .icon img,

.page-ban3 .container .slogan .stock-box .text-up .num .icon svg {

  height: 0.54rem;

  min-height: 30px;

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

  margin-left: 0.18rem;

}



.page-ban3 .container .slogan .stock-box .text-center {

  padding-top: 0.7rem;

  margin-top: 0.66rem;

  border-top: 1px solid rgba(204, 204, 204, 0.1);

}



@media (max-width: 767px) {

  .page-ban3 .container .slogan .stock-box .text-center {

    padding-top: 0.48rem;

    margin-top: 0.48rem;

  }

}



.page-ban3 .container .slogan .stock-box .text-center .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;

}



@media (max-width: 767px) {

  .page-ban3 .container .slogan .stock-box .text-center .list {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-gap: 20px;

  }

}



.page-ban3 .container .slogan .stock-box .text-center .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

}



.page-ban3 .container .slogan .stock-box .text-center .list .item .item-box .text-box .title {

  font-family: 'Alibaba-PuHuiTi-B';

  line-height: 1;

}



.page-ban3 .container .slogan .stock-box .text-center .list .item .item-box .text-box .text-body {

  line-height: 1.75em;

}



.page-ban3 .container .slogan .stock-box .text-down {

  margin-top: 1.22rem;

}



@media (max-width: 767px) {

  .page-ban3 .container .slogan .stock-box .text-down {

    margin-top: 0.48rem;

  }

}



.page-top-menu {

  position: sticky;

  top: 0;

  left: 0;

  z-index: 11;

  background-color: white;

  box-shadow: 0 0.07rem 0.39rem 0.08rem rgba(0, 0, 0, 0.05);

}



@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: 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.8rem;

}



.page-top-menu .menu-main {

  line-height: 80px;

  color: #333333;

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  -ms-flex-wrap: wrap;

  grid-gap: 0.1rem 0.69rem;

}



.page-top-menu .menu-main a {

  position: relative;

  padding: 0 0.69rem;

}



.page-top-menu .menu-main a span {

  position: relative;

  padding-left: 18px;

}



.page-top-menu .menu-main a span::before {

  content: '';

  width: 6px;

  height: 6px;

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  border-radius: 50%;

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  margin: auto;

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.page-top-menu .menu-main a::before {

  content: '';

  width: 0;

  height: 1px;

  background: url(../images/page-top-line.png) no-repeat center;

  background-size: 100% 100%;

  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:hover a,

.page-top-menu .menu-main .menu-location.active a {

  color: var(--color-active);

}



.page-top-menu .menu-main .menu-location:hover a span::before,

.page-top-menu .menu-main .menu-location.active a span::before {

  opacity: 1;

}



.page-top-menu .menu-main .menu-location:hover a::before,

.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;

}



@media (max-width: 1024px) {

  .page-top-menu2 {

    display: none;

  }

}



.page-top-menu2 .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-menu2 .menu-main {

  line-height: 0.9rem;

  color: #666666;

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  -ms-flex-wrap: wrap;

  grid-gap: 0.1rem 0.74rem;

}



.page-top-menu2 .menu-main a {

  position: relative;

}



.page-top-menu2 .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-menu2 .menu-main .menu-location {

  position: relative;

}



.page-top-menu2 .menu-main .menu-location::before {

  content: '';

  width: 1px;

  height: 0.16rem;

  background-color: #999999;

  position: absolute;

  right: -0.37rem;

  top: 0;

  bottom: 0;

  margin: auto;

}



.page-top-menu2 .menu-main .menu-location:last-child::before {

  display: none;

}



.page-top-menu2 .menu-main .menu-location.active a {

  color: var(--color-active);

}



.page-top-menu2 .menu-main .menu-location.active a::before {

  width: 100%;

}



.page-top-menu2 .menu-main .menu-location-none svg,

.page-top-menu2 .menu-main .menu-location-none img {

  margin-left: 0.09rem;

}



.page-top-menu2 .menu-main .menu-location-none svg path {

  fill: #666666;

}



.page-top-menu2 .menu-nav {

  width: 100%;

  line-height: 0.9rem;

  color: #666666;

  border-bottom: 1px solid rgba(204, 204, 204, 0.5);

}



.page-top-menu2 .menu-nav img {

  height: 0.12rem;

  min-height: 12px;

  margin-right: 0.03rem;

  margin-right: 3px;

}



.page-top-menu2 .menu-nav a {

  position: relative;

}



.page-top-menu2 .menu-nav a:first-child,

.page-top-menu2 .menu-nav a.active {

  color: #666666;

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.page-top-menu2 .menu-nav a+a {

  padding-left: 14px;

  margin-left: 11px;

}



.page-top-menu2 .menu-nav a+a::before {

  content: '>';

  color: #999999;

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  margin: auto;

  -webkit-background-clip: text;

  -webkit-text-fill-color: initial;

}



.page-title .slogan {

  line-height: 1.23076923em;

  font-weight: bold;

  margin-bottom: 0.14rem;

}



.page-title .slogan span {

  color: var(--color-black);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.page-title .title-en {

  color: #666666;

  line-height: 1.77777778em;

  position: relative;

}



.page-title .title-en::before {

  content: '';

  width: 6px;

  height: 6px;

  background-color: var(--color-green-008);

  border-radius: 50%;

  position: absolute;

  left: -17px;

  top: 0;

  bottom: 0;

  margin: auto;

}



@media (max-width: 1580px) {

  .page-title .title-en::before {

    width: 4px;

    height: 4px;

    left: -11px;

  }

}



.page-title .title {

  line-height: 1.22727273em;

  font-weight: bold;

}



.page-title .title span {

  color: var(--color-black);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.page-center {

  text-align: center;

}



.page-center * {

  text-align: center;

}



.forms {

  /* 验证码 */

  /* 文件上传 */

  /* 单选-多选 */

  /* 隐私条款 */

}



.forms input {

  width: 100%;

  height: 0.58rem;

  min-height: 45px;

  background-color: #fff;

  padding: 0 0.28rem;

  border: 1px solid #cccccc;

  border-radius: 0.14rem;

  color: #666666;

}



.forms textarea {

  width: 100%;

  height: 1.2rem;

  min-height: 60px;

  background-color: #fff;

  padding: 10px 0.28rem;

  border: 1px solid #cccccc;

  border-radius: 0.14rem;

  color: #666666;

}



.forms select {

  width: 100%;

  height: 0.58rem;

  min-height: 45px;

  background-color: #fff;

  padding: 0 0.28rem;

  border: 1px solid #cccccc;

  border-radius: 0.14rem;

  color: #666666;

}



.forms .widget-label label {

  color: #333333;

}



.forms .widget-label label i,

.forms .widget-label label span {

  color: #dd1717;

}



.forms .info-list {

  margin-top: 20px;

}



.forms .info-list2 {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  grid-gap: 20px;

}



@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 .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;

}



.forms .verification-img {

  width: 170px;

  height: 100%;

  border-radius: 6px;

  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-left: 0.12rem;

  cursor: pointer;

}



.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;

  opacity: 0.5;

  -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;

  width: 46.61458333%;

  max-width: 716px;

  margin: auto;

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

}



@media (max-width: 767px) {

  .searchform {

    width: 100%;

    max-width: 100%;

  }

}



.searchform * {

  text-align: left;

}



.searchform .form-control1 {

  width: 21.7877095%;

  min-width: 130px;

  max-width: 156px;

  margin-right: -1px;

}



.searchform .form-control1 input {

  border-radius: 0.1rem 0 0 0.1rem;

}



.searchform .form-control2 {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  -webkit-flex: 1;

  flex: 1;

}



.searchform .form-control2 input {

  border-radius: 0 0.1rem 0.1rem 0;

}



.searchform .iconfont {

  width: 1.2rem;

  height: 100%;

  position: absolute;

  right: 0;

  top: 0;

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  border: none;

  border-radius: 0 0.1rem 0.1rem 0;

  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;

}



.searchform .iconfont img,

.searchform .iconfont svg {

  width: 0.21rem;

  min-width: 14px;

  height: auto;

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

}



@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;

}



.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: 0.6rem;

}



.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 {

  height: auto;

  font-size: var(--font16);

  color: #999999;

  padding: 0 10px;

  background-color: transparent;

  -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: #333333;

}



.pagerBox .swiper_but {

  z-index: 2;

  cursor: pointer;

  flex-shrink: 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;

  -webkit-box-align: center;

  -ms-flex-align: center;

  -webkit-align-items: center;

  align-items: center;

  width: 0.48rem;

  height: 0.48rem;

  min-width: 34px;

  min-height: 34px;

  border: 1px solid #cacaca;

  border-radius: 0.14rem;

}



.pagerBox .swiper_but img,

.pagerBox .swiper_but svg {

  width: 0.12rem;

  min-width: 8px;

  height: auto;

}



.pagerBox .swiper_but:hover {

  background-color: var(--color-active);

  border-color: var(--color-active);

}



.pagerBox .swiper_but:hover img,

.pagerBox .swiper_but:hover svg {

  opacity: 1;

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

}



.pagerBox .swiper_but.prev img,

.pagerBox .swiper_but.prev svg {

  -webkit-transform: scaleX(-1);

  transform: scaleX(-1);

}



.pagerBox .layui-laypage a,

.pagerBox .layui-laypage button,

.pagerBox .layui-laypage input,

.pagerBox .layui-laypage select,

.pagerBox .layui-laypage span {

  border: 0;

}



.pagerBox .layui-laypage .layui-laypage-curr em {

  color: var(--color-active);

  background: none;

}



.pagerBox .layui-laypage-skip {

  padding: 0 !important;

  margin-left: 0.54rem;

  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;

}



.pagerBox .layui-laypage-skip .layui-input {

  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;

  width: 0.48rem;

  height: 0.48rem;

  min-width: 34px;

  min-height: 34px;

  margin: 0 0.17rem 0 0.12rem;

  background-color: transparent;

  border: 1px solid #cacaca;

  border-radius: 0.14rem;

}



.pagerBox .layui-laypage-skip .layui-input img,

.pagerBox .layui-laypage-skip .layui-input svg {

  width: 0.06rem;

  min-width: 4px;

  height: auto;

  opacity: 0.4;

}



.pagerBox .layui-laypage-skip .layui-input:hover,

.pagerBox .layui-laypage-skip .layui-input:focus {

  color: #fff;

  background-color: var(--color-active);

  border-color: var(--color-active) !important;

}



.pagerBox .layui-laypage-skip .layui-input:hover img,

.pagerBox .layui-laypage-skip .layui-input:focus img,

.pagerBox .layui-laypage-skip .layui-input:hover svg,

.pagerBox .layui-laypage-skip .layui-input:focus svg {

  opacity: 1;

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

}



.pagerBox .layui-laypage-skip .layui-laypage-btn {

  padding: 0;

  margin-left: 0.3rem;

  background-color: transparent;

}



.pagerBox .layui-laypage-skip .layui-laypage-btn span {

  padding: 0;

  margin-left: 0.09rem;

  overflow: hidden;

}



.pagerBox .layui-laypage-skip .layui-laypage-btn img,

.pagerBox .layui-laypage-skip .layui-laypage-btn svg {

  width: 0.06rem;

  min-width: 4px;

  height: auto;

  filter: drop-shadow(-80px 0 var(--color-active));

  transform: translate(80px);

}



.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);

}



.pagination {

  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;

  grid-gap: 0.06rem;

  margin-top: 0.6rem;

}



.pagination>span,

.pagination>a {

  min-width: 40px;

  height: 40px;

  background-color: rgba(235, 235, 235, 0.5);

  font-size: var(--font14);

  color: #666;

  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.12rem;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.pagination>span:hover,

.pagination>a:hover,

.pagination>span.active,

.pagination>a.active {

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  color: #fff;

}



.pagination .prev {

  margin-right: 0.02rem;

}



.pagination .prev img,

.pagination .prev svg {

  -webkit-transform: scaleX(-1);

  transform: scaleX(-1);

}



.pagination .next {

  margin-left: 0.02rem;

}



.pagination .prev,

.pagination .next {

  padding: 0 0.2rem;

}



.pagination .prev img,

.pagination .next img,

.pagination .prev svg,

.pagination .next svg {

  width: auto;

  height: 0.09rem;

  min-height: 9px;

  display: none;

}



.pagination .prev svg path,

.pagination .next svg path {

  fill: #666;

}



.pagination .prev:hover svg path,

.pagination .next:hover svg path {

  fill: #fff;

}



.pagination .more {

  background-color: transparent;

}



.pagination .total {

  padding: 0 0.2rem;

  background-color: transparent;

}



.pagination .pagelist {

  position: relative;

  cursor: pointer;

  font-size: var(--font14);

  color: #666;

}



.pagination .pagelist:hover .current-page {

  color: #fff;

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

}



.pagination .pagelist:hover .current-page::after {

  -webkit-filter: drop-shadow(-80px 0 #fff);

  filter: drop-shadow(-80px 0 #fff);

  -webkit-transform: rotate(90deg) translate(80px);

  transform: rotate(90deg) translate(80px);

}



.pagination .pagelist .current-page {

  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;

  width: 0.6rem;

  height: 40px;

  border: 1px solid rgba(235, 235, 235, 0.3);

  padding: 0 36px 0 0.19rem;

  overflow: hidden;

  position: relative;

}



.pagination .pagelist .current-page:after {

  content: "";

  width: 9px;

  height: 100%;

  background: url(../svg/icon-arrow1.svg) no-repeat center;

  background-size: 9px 9px;

  position: absolute;

  right: 11px;

  top: 0;

  -webkit-filter: drop-shadow(-80px 0 #666);

  filter: drop-shadow(-80px 0 #666);

  -webkit-transform: rotate(90deg) translate(80px);

  transform: rotate(90deg) translate(80px);

}



.pagination .pagelist.active ul {

  opacity: 1;

  visibility: visible;

}



.pagination .pagelist ul {

  position: absolute;

  bottom: 100%;

  left: 0;

  width: 100%;

  background-color: #fff;

  border: 1px solid rgba(235, 235, 235, 0.3);

  overflow: auto;

  text-align: center;

  line-height: 2.6;

  max-height: calc(6em * 2.6);

  opacity: 0;

  visibility: hidden;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.pagination .pagelist ul a {

  display: block;

  width: 100%;

  height: 100%;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.pagination .pagelist ul a:hover {

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  color: #fff;

}



.index-swiper {

  --color-white: #fff;

  position: relative;

  overflow: hidden;

}



.index-swiper .swiper-slide {

  height: auto;

}



.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 .ani .title {

  color: var(--color-white);

}



.index-swiper .swiper-slide .container .ani .text-body {

  color: var(--color-white);

  margin-top: 10px;

}



.index-swiper .videoBox {

  position: relative;

  width: 100%;

  height: 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 {

  height: 0;

  text-align: center;

  position: absolute;

  right: 0;

  left: 0;

  bottom: 40px;

  margin: auto;

  opacity: 1;

}



.index-swiper .swiper-pagination .swiper-pagination-bullet {

  width: 60px;

  height: 2px;

  position: relative;

  background-color: transparent;

  margin: 0 4px;

}



.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.4;

}



.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 .slide-num {

  position: absolute;

  right: 50%;

  bottom: 50px;

  z-index: 9;

  color: var(--color-white);

  font-size: var(--font20);

  line-height: 1;

}



.index-swiper .slide-num .all {

  font-size: var(--font48);

}



.about-page1 {

  padding: 1.3rem 0 1.1rem;

}



/* 修改 */

.about-page1 .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;

  align-items: flex-start;

}



@media (max-width: 1024px) {

  .about-page1 .page-main .wrap-box {

    display: block;

  }

}



.about-page1 .page-main .wrap-box .wrap-left {

  width: 39.0625%;

  max-width: 600px;

  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;

  /* 2025-1-15 修改 */

  position: sticky;

  top: calc(80px + 30px);

}



@media (max-width: 1024px) {

  .about-page1 .page-main .wrap-box .wrap-left {

    width: 100%;

    max-width: 100%;

    /* 2025-1-15 修改 */

    position: static;

  }

}



.about-page1 .page-main .wrap-box .wrap-right {

  width: 53.38541667%;

  max-width: 820px;

  margin-top: 1.18rem;

}



@media (max-width: 1024px) {

  .about-page1 .page-main .wrap-box .wrap-right {

    width: 100%;

    max-width: 100%;

    margin-top: 0.48rem;

  }

}



.about-page1 .page-main .public-img {

  width: 100%;

  border-radius: 0.1rem;

  margin-top: 0.8rem;

}



.about-page1 .page-main .public-img::before {

  padding-top: 114.75095785%;

}



/* 修改 */

.about-page1 .page-main .text-body {

  color: #b7b7b7;

  line-height: 1.6875;

}



.about-page1 .page-main .text-body>div {

  margin-bottom: 0.28rem;

}



.about-page1 .page-main .text-body>div:first-child,

.about-page1 .page-main .text-body>div:last-child {

  margin: 0;

}



@media (max-width: 1024px) {

  .about-page1 .page-main .text-body {

    font-size: var(--font20);

    line-height: 1.6;

  }

}



.about-page2 {

  padding: 6.43rem 0 1.7rem;

  padding: 3.22rem 0;

}



.about-page2 .page-img::before {

  content: '';

  width: 100%;

  height: 100%;

  background-color: #000;

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0.5;

  z-index: 1;

}



.about-page2 .page-main {

  z-index: 2;

}



.about-page2 .page-main .list {

  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;

}



.about-page2 .page-main .list .item {

  width: 100%;

}



.about-page2 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  position: relative;

  text-align: center;

}



.about-page2 .page-main .list .item .item-box .title {

  color: #fff;

  line-height: 1;

  font-weight: bold;

}



@media (max-width: 767px) {

  .about-page2 .page-main .list .item .item-box .title {

    font-size: var(--font20);

  }

}



.about-page2 .page-main .list .item .item-box .title .font90 {

  font-size: 0.9rem;

}



@media (max-width: 767px) {

  .about-page2 .page-main .list .item .item-box .title .font90 {

    font-size: var(--font40);

  }

}



.about-page2 .page-main .list .item .item-box .title sup {

  margin-left: 0.06rem;

  top: -0.09rem;

  position: relative;

}



@media (max-width: 767px) {

  .about-page2 .page-main .list .item .item-box .title sup {

    font-size: var(--font20);

  }

}



.about-page2 .page-main .list .item .item-box .text-body {

  margin-top: 0.14rem;

  color: #fff;

}



@media (max-width: 767px) {

  .about-page2 .page-main .list .item .item-box .text-body {

    font-size: var(--font18);

  }

}



.about-page3 {

  padding-top: 1.2rem;

}



.about-page3 .page-main {

  position: relative;

}



.about-page3 .page-main .up .wrap-box .wrap-left {

  /* width: 70.63802083%; */

  /* max-width: 1085px; */

  width: 100%;

  margin: auto;

}



@media (max-width: 1024px) {

  .about-page3 .page-main .up .wrap-box .wrap-left {

    width: 100%;

    max-width: 100%;

  }

}



.about-page3 .page-main .up .text-body {

  margin-top: 0.5rem;

  color: #666666;

  line-height: 1.88888889em;

}



.about-page3 .page-main .up .text-body p {

  margin-bottom: 0.18rem;

}



.about-page3 .page-main .swiper-main {

  margin-top: 0.54rem;

}



.about-page3 .page-main .swiper-main .about-swiper3 {

  border-radius: 0.1rem;

}



.about-page3 .page-main .swiper-main .about-swiper3 .swiper-pagination {

  opacity: 1;

  bottom: 0.2rem;

}



.about-page3 .page-main .swiper-main .about-swiper3 .swiper-pagination .swiper-pagination-bullet {

  width: 12px;

  height: 12px;

  background-color: #fff;

  opacity: 0.5;

}



.about-page3 .page-main .swiper-main .about-swiper3 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {

  background-color: var(--color-active);

  opacity: 1;

}



@media (max-width: 1024px) {

  .about-page3 .page-main .swiper-main .about-swiper3 .swiper-pagination .swiper-pagination-bullet {

    width: 6px;

    height: 6px;

  }

}



.about-page3 .page-main .swiper-main .about-swiper3 .swiper-slide {

  position: relative;

}



.about-page3 .page-main .swiper-main .about-swiper3 .swiper-slide::before {

  content: '';

  width: 100%;

  height: 40%;

  background-color: transparent;

  background: -webkit-linear-gradient(-90deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);

  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);

  position: absolute;

  left: 0;

  bottom: 0;

  z-index: 1;

}



.about-page4 {

  padding: 1.54rem 0 1.16rem;

}



.about-page4 .page-main {

  z-index: 2;

}



.about-page4 .page-main .page-title .slogan {

  width: 42.5%;

  max-width: 680px;

  margin: auto;

  margin-top: 0.08rem;

}



@media (max-width: 1024px) {

  .about-page4 .page-main .page-title .slogan {

    width: 100%;

  }

}



.about-page4 .page-main .swiper-main {

  --color: #000;

  color: var(--color);

  margin-top: 1.1rem;

}



.about-page4 .page-main .swiper-main .top {

  block-size: 1.6rem;

  position: relative;

}



.about-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;

}



.about-page4 .page-main .swiper-main .top .current-year .item:not(.active) {

  opacity: 0;

  visibility: hidden;

}



.about-page4 .page-main .swiper-main .bottom {

  margin-top: 1.2rem;

  position: relative;

}



.about-page4 .page-main .swiper-main .bottom .today {

  position: absolute;

  inset-inline-end: 0;

  inset-block-start: 50%;

  transform: translateY(-50%);

}



@media (max-width: 767px) {

  .about-page4 .page-main .swiper-main .bottom .today {

    display: none;

  }

}



@media (max-width: 767px) {

  .about-page4 .page-main .swiper-main .bottom .current-year {

    display: none;

  }

}



.about-page4 .page-main .swiper-main .bottom .current-year .item {

  inset-inline-start: 0;

  position: absolute;

  inset-block-start: 50%;

  transform: translateY(-50%);

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.about-page4 .page-main .swiper-main .bottom .current-year .item:not(.active) {

  opacity: 0;

  visibility: hidden;

}



.about-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) {

  .about-page4 .page-main .swiper-main .swiper-scrollbar {

    max-inline-size: calc(100% - 125px);

  }

}



.about-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;

}



.about-page4 .page-main .swiper-main .swiper-scrollbar .swiper-scrollbar-drag {

  block-size: 100%;

  position: relative;

  text-align: center;

  white-space: nowrap;

  background: transparent;

}



.about-page4 .page-main .swiper-main .swiper-scrollbar .swiper-scrollbar-drag:before {

  content: "拖动";

  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;

}



.about-page4 .page-main .swiper-main .about-swiper4 {

  overflow: visible;

}



@media (max-width: 1024px) {

  .about-page4 .page-main .swiper-main .about-swiper4 {

    padding-bottom: 40px;

  }



  .about-page4 .page-main .swiper-main .about-swiper4 .swiper-pagination {

    opacity: 1;

  }

}



.about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide {

  height: auto;

}



.about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide::before {

  content: '';

  width: 100%;

  width: calc(100% + 100px);

  height: 0.09rem;

  background-color: var(--color-active);

  position: absolute;

  left: 0;

  top: 0;

}



.about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide * {

  pointer-events: none;

}



.about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide .text-box {

  margin-top: 0.8rem;

}



.about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide .text-box .icon {

  width: 0.24rem;

  position: absolute;

  left: -2px;

  top: 0.04rem;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

}



.about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide .text-box .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.1rem;

}



.about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide .text-box .title .font18 {

  opacity: 0.5;

}



.about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide .text-box .public-img {

  border-radius: 0.06rem;

  margin-top: 0.28rem;

}



@media (max-width: 1024px) {

  .about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide .text-box .public-img {

    width: 100%;

    margin-bottom: 0.2rem;

  }

}



.about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide .text-box .public-img::before {

  padding-top: 77.30769231%;

}



.about-page4 .page-main .swiper-main .about-swiper4 .swiper-slide .text-box .text-body {

  opacity: 0.4;

  line-height: 1.71428571em;

  margin-top: 0.12rem;

}



.about-page4 .page-main .swiper-main .slide-btn-main {

  margin-top: 1rem;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  -webkit-justify-content: center;

  justify-content: center;

}



@-webkit-keyframes bgani {

  0% {

    opacity: 0;

  }



  50% {

    opacity: 1;

  }



  to {

    opacity: 0;

  }

}



@keyframes bgani {

  0% {

    opacity: 0;

  }



  50% {

    opacity: 1;

  }



  to {

    opacity: 0;

  }

}



.bgani {

  -webkit-animation-name: bgani;

  animation-name: bgani;

}



.about-page5 {

  background-color: #f4f4f4;

  padding-top: 1.2rem;

  overflow: hidden;

}



@media (max-width: 1024px) {

  .about-page5 {

    overflow: hidden;

  }

}



.about-page5 .page-main .page-down {

  position: relative;

  margin-top: 1rem;

}



.about-page5 .page-main .page-down canvas {

  width: 100% !important;

  height: 100% !important;

  margin: auto;

}



@media (max-width: 1024px) {

  .about-page5 .page-main .page-down canvas {

    width: 100% !important;

    height: 50% !important;

  }

}



.about-page5 .page-main .page-down .steam-img {

  position: absolute;

  z-index: 9;

  pointer-events: none;

}



.about-page5 .page-main .page-down .steam-img.steam-img1 {

  width: 3.37rem;

  left: 2.83rem;

  top: 2rem;

  opacity: 0;

  -webkit-animation: bgani 9s ease-in-out infinite;

  animation: bgani 9s ease-in-out infinite;

}



.about-page5 .page-main .page-down .steam-img.steam-img2 {

  width: 6.28rem;

  right: 0.8rem;

  top: 0;

  opacity: 0;

  -webkit-animation: bgani 9s 2.4s ease-in-out infinite;

  animation: bgani 9s 2.4s ease-in-out infinite;

}



@media (max-width: 767px) {

  .about-page5 .page-main .page-down .steam-img.steam-img2 {

    display: none;

  }

}



.about-page5 .page-main .page-down .steam-img.steam-img3 {

  width: 4.75rem;

  left: 1.33rem;

  top: 3.89rem;

  opacity: 0;

  -webkit-animation: bgani 9s 1.5s ease-in-out infinite;

  animation: bgani 9s 1.5s ease-in-out infinite;

}



@media (max-width: 767px) {

  .about-page5 .page-main .page-down .steam-img.steam-img3 {

    display: none;

  }

}



.about-page5 .page-main .page-down .steam-img.steam-img4 {

  width: 4.45rem;

  right: -1.33rem;

  top: 4.32rem;

  opacity: 0;

  -webkit-animation: bgani 9s 3.1s ease-in-out infinite;

  animation: bgani 9s 3.1s ease-in-out infinite;

}



.about-page5 .page-main .page-down .steam-img.steam-img5 {

  width: 4.75rem;

  left: -2.79rem;

  bottom: -0.74rem;

  opacity: 0;

  -webkit-animation: bgani 9s 1.8s ease-in-out infinite;

  animation: bgani 9s 1.8s ease-in-out infinite;

}



.about-page5 .page-main .page-down .earth {

  position: absolute;

  left: 0;

  top: 0;

  text-align: center;

}



.about-page5 .page-main .page-down .load-el {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  background-color: #f1f1f1;

  z-index: 9999;

}



.about-page5 .page-main .page-down .load-el .common-model-load {

  padding-top: 0;

}



.about-page5 .page-main .page-down .load-el .common-model-load .load-progress {

  background-color: #333;

}



.about-page5 .page-main .page-down .load-el .common-model-load .load-text {

  color: #333;

}



.about-page5 .page-main .page-down #labels {

  position: absolute;

  z-index: 0;

  left: 50%;

  top: 50%;

  left: 0;

  top: 0;

  color: white;

  width: 100%;

  height: 100%;

  pointer-events: none;

}



.about-page5 .page-main .page-down #labels>div {

  position: absolute;

  left: 0;

  top: 0;

  cursor: pointer;

  user-select: none;

  pointer-events: initial;

  transition-property: visibility, opacity;

  transition-duration: 0.4s;

  z-index: 2 !important;

}



.about-page5 .page-main .page-down #labels>div:hover {

  z-index: 3 !important;

}



.about-page5 .page-main .page-down #labels>div:hover .item-box .text-box {

  pointer-events: initial;

  opacity: 1;

}



.about-page5 .page-main .page-down #labels>div.show {

  opacity: 1;

  visibility: visible;

}



.about-page5 .page-main .page-down #labels>div.hide {

  opacity: 0;

  visibility: hidden;

}



.about-page5 .page-main .page-down #labels>div .item-box .icon {

  width: 0.34rem;

}



.about-page5 .page-main .page-down #labels>div .item-box .text-box {

  width: 3.16rem;

  padding: 0.28rem 0.23rem 0.3rem 0.32rem;

  background-color: #fff;

  box-shadow: 0 0.23rem 0.8rem 0 rgba(0, 0, 0, 0.06);

  border-radius: 0.1rem;

  position: absolute;

  left: 100%;

  top: -0.5rem;

  margin-left: 0.27rem;

  pointer-events: none;

  opacity: 0;

  text-align: left;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



/* 修改 */

.about-page5 .page-main .page-down #labels>div .item-box .text-box::before {

  content: '';

  width: 0.2rem;

  height: 0.2rem;

  background-color: #fff;

  position: absolute;

  /* top: 41%; */

  top: 20%;

  left: 0;

  -webkit-transform: rotate(45deg) translateX(-100%) translateY(-50%);

  transform: rotate(45deg) translateX(-100%) translateY(-50%);

}



.about-page5 .page-main .page-down #labels>div .item-box .text-box .title {

  color: #333333;

  line-height: 1.58333333em;

}



.about-page5 .page-main .page-down #labels>div .item-box .text-box .text-body {

  color: #666666;

  line-height: 1.57142857em;

  margin-top: 0.06rem;

}



.about-page5 .page-main .img-box {

  min-height: 240px;

  margin: auto;

  position: relative;

  opacity: 0;

}



.about-page5 .page-main .img-box .map-box {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  z-index: 1;

}



.about-page5 .page-main .img-box .map-box .item {

  position: absolute;

}



.about-page5 .page-main .img-box .map-box .item:hover .item-box .text-box {

  pointer-events: initial;

  opacity: 1;

}



.about-page5 .page-main .img-box .map-box .item .item-box {

  display: block;

  height: 100%;

  position: relative;

}



.about-page5 .page-main .img-box .map-box .item .item-box .icon {

  width: 0.34rem;

}



.about-page5 .page-main .img-box .map-box .item .item-box .text-box {

  width: 3.16rem;

  padding: 0.28rem 0.23rem 0.3rem 0.32rem;

  background-color: #fff;

  box-shadow: 0 0.23rem 0.8rem 0 rgba(0, 0, 0, 0.06);

  border-radius: 0.1rem;

  position: absolute;

  left: 100%;

  top: -0.5rem;

  margin-left: 0.27rem;

  pointer-events: none;

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.about-page5 .page-main .img-box .map-box .item .item-box .text-box::before {

  content: '';

  width: 0.2rem;

  height: 0.2rem;

  background-color: #fff;

  position: absolute;

  top: 41%;

  left: 0;

  -webkit-transform: rotate(45deg) translateX(-100%) translateY(-50%);

  transform: rotate(45deg) translateX(-100%) translateY(-50%);

}



.about-page5 .page-main .img-box .map-box .item .item-box .text-box .title {

  color: #333333;

  line-height: 1.58333333em;

}



.about-page5 .page-main .img-box .map-box .item .item-box .text-box .text-body {

  color: #666666;

  line-height: 1.57142857em;

  margin-top: 0.06rem;

}



.about-page5 .page-main .img-box .map-box .item1 {

  left: 50.4%;

  top: 14.3%;

}



.about-page5 .page-main .img-box .map-box .item2 {

  left: 78.2%;

  top: 24.6%;

}



.about-page5 .page-main .img-box .map-box .item3 {

  left: 84.6%;

  top: 46.3%;

}



.about-page5 .page-main .img-box .map-box .item4 {

  left: 55.6%;

  top: 79.5%;

}



.about-page5 .page-main .img-box .map-box .item5 {

  left: 27.6%;

  top: 53.3%;

}



.about-page5 .page-main .img-box .map-box .item6 {

  left: 33.4%;

  top: 18.1%;

}



.index-section2 .load-el {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  background-color: #f1f1f1;

  z-index: 9999;

}



.index-section2 .load-el .common-model-load {

  padding-top: 0;

}



.index-section2 .load-el .common-model-load .load-progress {

  background-color: #333;

}



.index-section2 .load-el .common-model-load .load-text {

  color: #333;

}



.index-section2 #labels {

  position: absolute;

  z-index: 0;

  left: 50%;

  top: 50%;

  color: white;

  width: 100vw;

  height: 100vh;

  transform: translate(-50%, -50%);

  pointer-events: none;

}



.index-section2 #labels>div {

  position: absolute;

  left: 0;

  top: 0;

  cursor: pointer;

  user-select: none;

  pointer-events: initial;

  transition-property: visibility, opacity;

  transition-duration: 0.4s;

}



.index-section2 #labels>div.show {

  opacity: 1;

  visibility: visible;

}



.index-section2 #labels>div.hide {

  opacity: 0;

  visibility: hidden;

}



.index-section2 #labels .title {

  text-align: center;

  font-size: 0.2rem;

  color: #000;

  background-color: rgba(255, 255, 255, 0.6);

  padding: 0.03rem 0.07rem;

  margin-bottom: 0.07rem;

  border-radius: 0.07rem;

}



.index-section2 #labels .icon {

  background: url(../images/about/about-icon5-1.png) no-repeat center;

  background-size: 100%;

  width: 0.42rem;

  height: 0.42rem;

  margin-left: auto;

  margin-right: auto;

}



.download-page1 {

  padding: 1.2rem 0 1.22rem;

}



.download-page1 .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;

  margin-top: 0.6rem;

}



@media (max-width: 1024px) {

  .download-page1 .page-main .wrap-box {

    display: block;

  }

}



.download-page1 .page-main .wrap-box .wrap-left {

  width: 26.10677083%;

  max-width: 401px;

}



@media (max-width: 1024px) {

  .download-page1 .page-main .wrap-box .wrap-left {

    width: 100%;

    margin-bottom: 0.48rem;

    display: none;

  }

}



.download-page1 .page-main .wrap-box .wrap-right {

  width: 66.6015625%;

  max-width: 1023px;

}



@media (max-width: 1024px) {

  .download-page1 .page-main .wrap-box .wrap-right {

    width: 100%;

    max-width: 100%;

  }

}



.download-page1 .page-main .productNavBox {

  padding: 0.16rem 0.33rem 0.16rem 0.4rem;

  background-color: #fff;

  border: 1px solid rgba(204, 204, 204, 0.5);

  border-radius: 0.1rem;

  position: relative;

}



.download-page1 .page-main .productNavBox .menu_nav {

  width: 100%;

  height: auto;

  overflow: hidden;

  overflow-y: auto;

}



.download-page1 .page-main .productNavBox .menu_nav ul li {

  width: 100%;

  height: auto;

  border-bottom: 1px solid rgba(0, 70, 127, 0.1);

  overflow: hidden;

}



.download-page1 .page-main .productNavBox .menu_nav ul li:last-child {

  border-bottom: none;

}



.download-page1 .page-main .productNavBox .menu_nav ul li:last-child .one a::before {

  display: none;

}



.download-page1 .page-main .productNavBox .menu_nav ul li .one {

  width: 100%;

  height: auto;

  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;

}



.download-page1 .page-main .productNavBox .menu_nav ul li .one a {

  width: 100%;

  padding: 20px 26px;

  display: block;

  color: #666666;

  line-height: 1;

  position: relative;

  -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;

}



.download-page1 .page-main .productNavBox .menu_nav ul li .one a::before {

  content: '';

  width: 100%;

  height: 2px;

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  position: absolute;

  left: 0;

  bottom: 0;

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.download-page1 .page-main .productNavBox .menu_nav ul li .one>.icon {

  width: 20px;

  height: 20px;

  border-radius: 50%;

  position: absolute;

  left: 0;

  top: 50%;

  -webkit-transform: translateY(-50%);

  transform: translateY(-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;

}



.download-page1 .page-main .productNavBox .menu_nav ul li .one>.icon img,

.download-page1 .page-main .productNavBox .menu_nav ul li .one>.icon svg {

  position: relative;

  width: 8px;

  height: auto;

  opacity: 0.5;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.download-page1 .page-main .productNavBox .menu_nav ul li .one>.icon svg path {

  -webkit-fill: #000000;

  fill: #000000;

}



.download-page1 .page-main .productNavBox .menu_nav ul li .one.active a {

  color: var(--color-active);

}



.download-page1 .page-main .productNavBox .menu_nav ul li .one.active a::before {

  opacity: 1;

}



.download-page1 .page-main .productNavBox .menu_nav ul li .one.active .icon {

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

}



.download-page1 .page-main .productNavBox .menu_nav ul li .one.active .icon img,

.download-page1 .page-main .productNavBox .menu_nav ul li .one.active .icon svg {

  opacity: 1;

}



.download-page1 .page-main .productNavBox .menu_nav ul li .one.active .icon svg path {

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul {

  display: none;

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li {

  border: 0;

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li .two {

  cursor: pointer;

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li a {

  display: block;

  display: inline-block;

  padding: 10px 0.22rem;

  color: #666666;

  position: relative;

}



.download-page1 .page-main .productNavBox .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);

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li a .icon img,

.download-page1 .page-main .productNavBox .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;

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li .two.active {

  color: var(--color-active);

  background-color: rgba(27, 77, 179, 0.1);

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li .two.active a {

  color: var(--color-active);

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li .two.active svg {

  -webkit-transform: rotate(90deg);

  transform: rotate(90deg);

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li .two.active svg path {

  fill: var(--color-active);

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li ul {

  border: 0;

  display: none;

  padding: 5px 0;

  background-color: rgba(27, 77, 179, 0.03);

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li ul li a {

  padding: 10px 0.22rem;

  color: #666666;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li ul li a:hover {

  color: var(--color-active);

}



.download-page1 .page-main .productNavBox .menu_nav ul li ul li ul.active {

  display: block;

}



.download-page1 .page-main .list .item:hover .item-box::before {

  opacity: 1;

}



.download-page1 .page-main .list .item:first-child .item-box {

  padding-top: 0;

}



.download-page1 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  padding: 0.52rem 0;

  border-bottom: 1px solid rgba(145, 150, 143, 0.2);

  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;

}



.download-page1 .page-main .list .item .item-box::before {

  content: '';

  width: 100%;

  height: 1px;

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  position: absolute;

  left: 0;

  bottom: 0;

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.download-page1 .page-main .list .item .item-box .public-img {

  width: 15.6402737%;

  max-width: 160px;

  border: 1px solid rgba(204, 204, 204, 0.5);

  border-radius: 0.1rem;

}



.download-page1 .page-main .list .item .item-box .public-img::before {

  padding-top: 133.125%;

}



@media (max-width: 767px) {

  .download-page1 .page-main .list .item .item-box .public-img {

    display: none;

  }

}



.download-page1 .page-main .list .item .item-box .text-box {

  width: 78.78787879%;

  max-width: 806px;

}



@media (max-width: 767px) {

  .download-page1 .page-main .list .item .item-box .text-box {

    width: 100%;

    max-width: 100%;

  }

}



.download-page1 .page-main .list .item .item-box .text-box .title {

  line-height: 1.16666667em;

}



.download-page1 .page-main .list .item .item-box .text-box .title span {

  color: var(--color-black);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.download-page1 .page-main .list .item .item-box .text-box .date {

  margin-top: 0.18rem;

  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.09rem;

  color: rgba(102, 102, 102, 0.5);

  line-height: 1;

}



.download-page1 .page-main .list .item .item-box .text-box .date .icon {

  overflow: hidden;

  opacity: 0.5;

}



.download-page1 .page-main .list .item .item-box .text-box .date .icon img,

.download-page1 .page-main .list .item .item-box .text-box .date .icon svg {

  width: 12px;

  filter: drop-shadow(-80px 0 #999999);

  transform: translate(80px);

}



.download-page1 .page-main .list .item .item-box .text-box .text-body {

  color: #666666;

  line-height: 1.75em;

  margin-top: 0.28rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;

}



.download-page1 .page-main .list .item .item-box .text-box .btn-container {

  margin-top: 0.27rem;

}



.contact-page1 {

  overflow: hidden;

}



.contact-page1 .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) {

  .contact-page1 .page-main .wrap-box {

    display: block;

  }

}



.contact-page1 .page-main .wrap-box .wrap-left {

  width: 50%;

  max-width: 768px;

  position: relative;

  padding: 1.6rem 0 1.75rem;

}



@media (max-width: 1024px) {

  .contact-page1 .page-main .wrap-box .wrap-left {

    width: 100%;

    max-width: 100%;

  }

}



.contact-page1 .page-main .wrap-box .wrap-right {

  width: 54.296875%;

  max-width: 834px;

  padding-left: 1.12rem;

  margin-right: -0.66rem;

  position: relative;

  padding-top: 1.6rem;

  padding-bottom: 1rem;

}



.contact-page1 .page-main .wrap-box .wrap-right::before {

  content: '';

  width: 100%;

  min-width: 1920px;

  height: 100%;

  background-color: #f5f5f5;

  position: absolute;

  left: 0;

  top: 0;

}



@media (max-width: 1024px) {

  .contact-page1 .page-main .wrap-box .wrap-right {

    width: 100%;

    max-width: 100%;

    padding-left: 0;

    margin-right: 0;

  }



  .contact-page1 .page-main .wrap-box .wrap-right::before {

    left: -20px;

  }

}



.contact-page1 .page-main .float-img {

  position: absolute;

  right: 0;

  bottom: 0;

  width: 2.47rem;

}



@media (max-width: 1024px) {

  .contact-page1 .page-main .float-img {

    display: none;

  }

}



.contact-page1 .page-main .list {

  width: 61.19791667%;

  max-width: 470px;

}



.contact-page1 .page-main .list .item {

  margin-bottom: 0.64rem;

}



.contact-page1 .page-main .list .item:last-child {

  margin-bottom: 0;

}



.contact-page1 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  position: relative;

}



.contact-page1 .page-main .list .item .item-box .text-box .text-body {

  color: #666666;

  line-height: 2em;

  margin-top: 0.08rem;

}



.contact-page1 .page-main .forms {

  margin-top: 0.38rem;

}



.contact-page1 .page-main .forms .info-list {

  margin-top: 0.3rem;

}



.contact-page1 .page-main .forms .info-list2 {

  grid-gap: 0.3rem;

}



.contact-page1 .page-main .forms input,

.contact-page1 .page-main .forms select {

  height: 0.68rem;

  min-height: 45px;

  border-color: #e0e0e0;

  border-radius: 0.06rem;

  color: #999999;

  padding: 0 19px;

}



.contact-page1 .page-main .forms textarea {

  height: 2.14rem;

  min-height: 120px;

  border-color: #e0e0e0;

  border-radius: 0.06rem;

  color: #999999;

  padding: 10px 19px;

}



.contact-page1 .page-main .btn-container {

  margin-top: 0.2rem;

}



.contact-page1 .page-main .btn-container .more-primary {

  width: 100%;

  height: 0.68rem;

  min-height: 45px;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  -webkit-justify-content: center;

  justify-content: center;

}



.contact-page2 .page-main .img-box {

  text-align: center;

}



.contact-page2 .page-main .img-box img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  min-height: 200px;

}



.contactMap {

  margin-top: 1rem;

  height: 5.75rem;

  max-height: 575px;

}



.contactMap .gdMap-marker {

  position: relative;

}



.contactMap .gdMap-marker .ic {

  width: 0.29rem;

}



.contactMap .gdMap-marker::after {

  content: '';

  position: absolute;

  border-radius: 50%;

  width: 0.7rem;

  height: 0.7rem;

  background: #242c98;

  left: -0.2rem;

  top: -0.18rem;

  -webkit-transform-origin: center center;

  transform-origin: center center;

  -webkit-animation: pulse 4s linear infinite;

  animation: pulse 4s linear infinite;

}



.contactMap .gdMap-marker .pos {

  position: absolute;

  background: #fff;

  width: 2.1rem;

  max-width: 210px;

  border-radius: 0.06rem;

  padding: 0.25rem 0;

  text-align: center;

  left: 0.7rem;

  top: -0.25rem;

}



.contactMap .gdMap-marker .pos::before {

  content: '';

  position: absolute;

  left: -10px;

  border-bottom: 15px solid #fff;

  border-left: 5px solid transparent;

  border-right: 5px solid transparent;

  transform: rotate(-100deg);

}



.contactMap .gdMap-marker .pos img {

  width: calc(100% - 0.2rem);

  max-width: 188px;

  display: block;

  margin: auto;

}



.product-page1 {

  padding: 1rem 0 1.42rem;

}



.product-page1.product-bg {

  background-color: #f8f8f8;

}



.product-page1 .page-main .swiper-main {

  margin-top: 0.8rem;

}



.product-page1 .page-main .swiper-main .product-swiper {

  width: 39.0625%;

  max-width: 600px;

  margin: auto;

  overflow: visible;

}



@media (max-width: 1024px) {

  .product-page1 .page-main .swiper-main .product-swiper {

    width: 100%;

    padding-bottom: 40px;

  }



  .product-page1 .page-main .swiper-main .product-swiper .swiper-pagination {

    opacity: 1;

  }

}



.product-page1 .page-main .swiper-main .product-swiper .swiper-pagination {

  pointer-events: none;

}



.product-page1 .page-main .swiper-main .product-swiper .swiper-slide {

  height: auto;

  -webkit-transform: scale(0.7);

  transform: scale(0.7);

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.product-page1 .page-main .swiper-main .product-swiper .swiper-slide .item-box {

  opacity: 0.1;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.product-page1 .page-main .swiper-main .product-swiper .swiper-slide .item-box .text-box {

  opacity: 0;

}



.product-page1 .page-main .swiper-main .product-swiper .swiper-slide.swiper-slide-active {

  -webkit-transform: scale(1);

  transform: scale(1);

}



.product-page1 .page-main .swiper-main .product-swiper .swiper-slide.swiper-slide-active .item-box {

  opacity: 1;

}



.product-page1 .page-main .swiper-main .product-swiper .swiper-slide.swiper-slide-active .item-box .text-box {

  opacity: 1;

}



.product-page1 .page-main .swiper-main .slide-btn {

  top: 45%;

}



.product-page1 .page-main .swiper-main .slide-btn.swiper-button-prev {

  margin-left: -0.68rem;

}



.product-page1 .page-main .swiper-main .slide-btn.swiper-button-next {

  margin-right: -0.68rem;

}



.product-page1 .page-main .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  text-align: center;

}



.product-page1 .page-main .item-box .img-box {

  position: relative;

  height: 4rem;

  height: initial;

}



.product-page1 .page-main .item-box .img-box .img-bg {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  z-index: -1;

}



.product-page1 .page-main .item-box .img-box .img-bg img {

  height: 4rem;

  height: 100%;

  -webkit-filter: brightness(0);

  filter: brightness(0);

  opacity: 0.03;

}



.product-page1 .page-main .item-box .img-box .img {

  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;

}



.product-page1 .page-main .item-box .text-box {

  margin-top: 0.3rem;

}



.product-page1 .page-main .item-box .text-box .title {

  color: #333333;

  font-weight: bold;

}



.product-page1 .page-main .item-box .text-box .text-body {

  color: #333333;

  line-height: 1.75em;

  margin-top: 0.08rem;

}



.product-page1 .page-main .item-box .text-box .btn-container {

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  -webkit-justify-content: center;

  justify-content: center;

  margin-top: 0.28rem;

}



.product-page2 {

  padding: 1.2rem 0;

}



.product-page2 .page-main .list {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid rgba(204, 204, 204, 0.5);

  margin-top: 0.58rem;

}



@media (max-width: 1024px) {

  .product-page2 .page-main .list {

    grid-template-columns: repeat(1, 1fr);

  }

}



.product-page2 .page-main .list .item:nth-of-type(odd) .item-box {

  padding-right: 0.58rem;

}



@media (max-width: 1024px) {

  .product-page2 .page-main .list .item:nth-of-type(odd) .item-box {

    border-right: none;

    padding-right: 0;

  }

}



.product-page2 .page-main .list .item:nth-of-type(even) .item-box {

  border-right: none;

  padding-left: 0.58rem;

}



@media (max-width: 1024px) {

  .product-page2 .page-main .list .item:nth-of-type(even) .item-box {

    padding-left: 0;

  }

}



.product-page2 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  padding: 0.66rem 0;

  border-right: 1px solid rgba(204, 204, 204, 0.5);

  border-bottom: 1px solid rgba(204, 204, 204, 0.5);

  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: 767px) {

  .product-page2 .page-main .list .item .item-box {

    -webkit-box-orient: vertical;

    -ms-flex-direction: column;

    -webkit-flex-direction: column;

    flex-direction: column;

    text-align: center;

  }

}



.product-page2 .page-main .list .item .item-box .public-box {

  width: 45.25520833%;

  max-width: 217px;

}



@media (max-width: 767px) {

  .product-page2 .page-main .list .item .item-box .public-box {

    width: 100%;

    margin: auto;

  }

}



.product-page2 .page-main .list .item .item-box .public-box .public-img {

  border-radius: 50%;

}



.product-page2 .page-main .list .item .item-box .public-box .public-img-plus:hover img {

  -webkit-transform: scale(1.1);

  transform: scale(1.1);

}





.product-page2 .page-main .list .item .item-box .text-box {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  -webkit-flex: 1;

  flex: 1;

}



.product-page2 .page-main .list .item .item-box .text-box .title {

  color: #333333;

  font-weight: bold;

}



.product-page2 .page-main .list .item .item-box .text-box .slogan span {

  color: var(--color-black);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.product-page2 .page-main .list .item .item-box .text-box .text-body {

  color: #666666;

  line-height: 1.5em;

  margin-top: 0.12rem;

}



.product-page2 .page-main .list .item .item-box .text-box .text-body p {

  margin-bottom: 0.1rem;

}



.product-d-page1 {

  padding-top: 1.22rem;

  position: relative;

  padding-bottom: 1.22rem;

}



.product-d-page1 .float-icon {

  width: 15rem;

  position: absolute;

  top: -4.62rem;

  right: -5.4rem;

  opacity: 0.2;

}



.product-d-page1 .page-main {

  position: relative;

}



.product-d-page1 .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) {

  .product-d-page1 .page-main .wrap-box {

    display: block;

  }

}



.product-d-page1 .page-main .wrap-box .wrap-left {

  width: 58.85416667%;

  max-width: 904px;

}



@media (max-width: 1024px) {

  .product-d-page1 .page-main .wrap-box .wrap-left {

    width: 100%;

    max-width: 100%;

  }

}



.product-d-page1 .page-main .wrap-box .wrap-right {

  width: 39.0625%;

  max-width: 600px;

}



@media (max-width: 1024px) {

  .product-d-page1 .page-main .wrap-box .wrap-right {

    width: 100%;

    max-width: 100%;

  }

}



.product-d-page1 .page-main .swiper-main {

  padding-top: 1.19rem;

  background-color: #f8f8f8;

  border-radius: 0.1rem;

  height: 100%;

}



.product-d-page1 .page-main .swiper-main .product-d-swiper {

  width: 55.30973451%;

  max-width: 500px;

  margin: auto;

}



@media (max-width: 767px) {

  .product-d-page1 .page-main .swiper-main .product-d-swiper {

    width: 100%;

  }

}



.product-d-page1 .page-main .swiper-main .product-d-swiper .swiper-slide {

  height: auto;

}



.product-d-page1 .page-main .swiper-main .product-d-swiper .swiper-slide .item-box {

  display: block;

  height: 100%;

  position: relative;

  text-align: center;

}



.product-d-page1 .page-main .swiper-main .product-d-swiper .swiper-slide .item-box .img-box {

  position: relative;

  height: 4.63rem;

}



@media (max-width: 1024px) {

  .product-d-page1 .page-main .swiper-main .product-d-swiper .swiper-slide .item-box .img-box {

    height: initial;

  }

}



.product-d-page1 .page-main .swiper-main .product-d-swiper .swiper-slide .item-box .img-box .img-bg {

  position: absolute;

  left: 0;

  top: 50%;

  width: 100%;

  height: 100%;

  z-index: -1;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

}



.product-d-page1 .page-main .swiper-main .product-d-swiper .swiper-slide .item-box .img-box .img-bg img {

  height: 4.63rem;

  -webkit-filter: brightness(0);

  filter: brightness(0);

  opacity: 0.03;

}



@media (max-width: 1024px) {

  .product-d-page1 .page-main .swiper-main .product-d-swiper .swiper-slide .item-box .img-box .img-bg img {

    height: 100%;

  }

}



.product-d-page1 .page-main .swiper-main .product-d-swiper .swiper-slide .item-box .img-box .img {

  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;

}



.product-d-page1 .page-main .swiper-main .slide-down {

  margin-top: 1.16rem;

}



@media (max-width: 1024px) {

  .product-d-page1 .page-main .swiper-main .slide-down {

    margin-top: 0.4rem;

  }

}



.product-d-page1 .page-main .text-up {

  padding: 0.54rem 0.6rem 1rem;

}



@media (max-width: 1024px) {

  .product-d-page1 .page-main .text-up {

    padding-left: 0;

    padding-right: 0;

  }

}



.product-d-page1 .page-main .text-up .type-box {

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  -ms-flex-wrap: wrap;

  margin-bottom: 0.09rem;

}



.product-d-page1 .page-main .text-up .type-box .type {

  padding: 0 0.2rem;

  height: 0.42rem;

  min-height: 34px;

  color: var(--color-black);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  border: 1px solid var(--color-active);

  border-radius: 0.21rem;

  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;

}



.product-d-page1 .page-main .text-up .text-body {

  color: #333333;

  line-height: 1.75em;

  margin-top: 0.4rem;

}



.product-d-page1 .page-main .text-down {

  background: url(../images/product/product-d-bg1-1.jpg) no-repeat center;

  background-size: cover;

  border-radius: 0.1rem;

  padding: 0.33rem 0.6rem 0.68rem;

}



@media (max-width: 1024px) {

  .product-d-page1 .page-main .text-down {

    padding: 0.6rem 0.4rem;

  }

}



.product-d-page1 .page-main .text-down .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  padding: 0.3rem 0 0.28rem;

  border-bottom: 1px solid #cccccc;

}



.product-d-page1 .page-main .text-down .list .item .item-box .text-box .title {

  line-height: 1.16666667em;

}



.product-d-page1 .page-main .text-down .list .item .item-box .text-box .title span {

  color: var(--color-black);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.product-d-page1 .page-main .text-down .list .item .item-box .text-box .text-body {

  color: #666666;

  line-height: 1.75em;

}



.product-d-page2 {

  padding: 1.2rem 0;

}



.product-d-page2 .page-main .list {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-gap: 0.3rem;

  margin-top: 0.6rem;

}



@media (max-width: 990px) {

  .product-d-page2 .page-main .list {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 767px) {

  .product-d-page2 .page-main .list {

    grid-template-columns: repeat(1, 1fr);

  }

}



.product-d-page2 .page-main .list .item:hover .item-box::before {

  opacity: 0.4;

}



.product-d-page2 .page-main .list .item:hover .item-box .img-box {

  opacity: 0.4;

}



.product-d-page2 .page-main .list .item:hover .item-box .text-box {

  top: 50%;

  opacity: 1;

}



.product-d-page2 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  text-align: center;

  padding: 0.76rem 0.82rem;

  background-color: #f8f8f8;

  border-radius: 0.1rem;

}



.product-d-page2 .page-main .list .item .item-box::before {

  content: '';

  width: 100%;

  height: 100%;

  background-color: #fff;

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.product-d-page2 .page-main .list .item .item-box .img-box {

  position: relative;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.product-d-page2 .page-main .list .item .item-box .img-box .img-bg {

  position: absolute;

  left: 0;

  top: 50%;

  width: 100%;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

}



.product-d-page2 .page-main .list .item .item-box .img-box .img-bg img {

  -webkit-filter: brightness(0);

  filter: brightness(0);

  opacity: 0.02;

}



.product-d-page2 .page-main .list .item .item-box .img-box .img {

  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;

}



.product-d-page2 .page-main .list .item .item-box .text-box {

  width: 100%;

  padding: 0 20px;

  position: absolute;

  top: 60%;

  left: 0;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.product-d-page2 .page-main .list .item .item-box .text-box .title span {

  color: var(--color-black);

  font-weight: bold;

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.product-d-page2 .page-main .list .item .item-box .text-box .btn-container {

  margin-top: 0.2rem;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  -webkit-justify-content: center;

  justify-content: center;

}



.news-recommendations-page {

  padding: 0.5rem 0 0.6rem;

  background-color: #f3f3f3;

}



.news-recommendations-page .page-main {

  width: 79.8828125%;

  max-width: 1227px;

  margin: auto;

  position: relative;

}



@media (max-width: 1024px) {

  .news-recommendations-page .page-main {

    width: 100%;

  }

}



.news-recommendations-page .page-main .swiper-main .news-recommendations-swiper {

  overflow: visible;

}



.news-recommendations-page .page-main .swiper-main .news-recommendations-swiper .swiper-slide.swiper-slide-active .item-box .public-img::after {

  opacity: 0;

}



@media (max-width: 767px) {

  .news-recommendations-page .page-main .float-box {

    display: none;

  }

}



.news-recommendations-page .page-main .float-box .list {

  display: none;

}



.news-recommendations-page .page-main .float-box .list .item {

  display: none;

}



.news-recommendations-page .page-main .float-box .list .item.active {

  display: block;

}



.news-recommendations-page .page-main .float-box .slide-down {

  position: absolute;

  right: 0.12rem;

  bottom: 0.16rem;

}



.news-recommendations-page .page-main .float-box .slide-down .slide-btn.swiper-button-prev {

  margin-right: -0.1rem;

}



.news-recommendations-page .page-main .float-box .slide-down .slide-btn:hover {

  background: transparent;

}



.news-recommendations-page .page-main .float-box .slide-down .slide-btn:hover svg path {

  fill: var(--color-active);

}



.news-recommendations-page .page-main .float-box .slide-down .slide-btn svg path {

  fill: rgba(105, 105, 105, 0.5);

}



.news-recommendations-page .page-main .float-box .slide-down .slide-btn svg circle {

  display: none;

}



.news-recommendations-page .page-main .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  background-color: #fff;

  border-radius: 0.1rem;

}



.news-recommendations-page .page-main .item-box .public-img {

  border-radius: 0.1rem;

}



@media (max-width: 767px) {

  .news-recommendations-page .page-main .item-box .public-img {

    margin-bottom: 0.28rem;

  }

}



.news-recommendations-page .page-main .item-box .public-img::before {

  padding-top: 58.10920945%;

}



.news-recommendations-page .page-main .item-box .public-img::after {

  content: '';

  width: 100%;

  height: 100%;

  background-color: #000;

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0.5;

  z-index: 1;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.news-recommendations-page .page-main .item-box .text-box {

  padding: 0.3rem;

  display: block;

}



.news-recommendations-page .page-main .item-box .text-box .type-box {

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  -ms-flex-wrap: wrap;

  grid-gap: 0.1rem;

  margin-bottom: 0.04rem;

}



.news-recommendations-page .page-main .item-box .text-box .type-box .type {

  color: #fff;

  line-height: 1;

  height: 20px;

  padding: 0 0.06rem;

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  border-radius: 0.03rem;

  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;

}



.news-recommendations-page .page-main .item-box .text-box .title {

  color: #333333;

  line-height: 1.45454545em;

  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;

}



.news-recommendations-page .page-main .item-box .text-box .title span {

  color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.news-recommendations-page .page-main .item-box .text-box .date {

  color: #999999;

  line-height: 1;

  margin-top: 0.11rem;

}



.news-recommendations-page .page-main .item-box .text-box .text-body {

  color: #666666;

  line-height: 1.71428571em;

  opacity: 0.5;

  margin-top: 0.18rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;

}



.news-recommendations-page .page-main .item-box .text-box .btn-container {

  margin-top: 0.28rem;

}



.news-page1 {

  padding: 0.9rem 0 1.2rem;

}



@media (max-width: 1024px) {

  .news-page1 .page-main .list-up .list {

    grid-template-columns: repeat(1, 1fr);

  }

}



.news-page1 .page-main .list-up .list .item .item-box .text-box .btn-container {

  margin-top: 0.11rem;

}



.news-page1 .page-main .list-down {

  margin-top: 0.6rem;

}



.news-page1 .page-main .list {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-gap: 0.62rem 0.29rem;

  padding-bottom: 0.6rem;

  border-bottom: 0.07rem solid rgba(204, 204, 204, 0.3);

}



@media (max-width: 990px) {

  .news-page1 .page-main .list {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 767px) {

  .news-page1 .page-main .list {

    grid-template-columns: repeat(1, 1fr);

  }

}



.news-page1 .page-main .list .item:hover .item-box .text-box .title span {

  color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.news-page1 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

}



.news-page1 .page-main .list .item .item-box .public-img {

  border-radius: 0.06rem;

  margin-bottom: 0.36rem;

}



.news-page1 .page-main .list .item .item-box .public-img::before {

  padding-top: 111.38211382%;

}



.news-page1 .page-main .list .item .item-box .text-box {

  padding-right: 0.52rem;

}



@media (max-width: 1024px) {

  .news-page1 .page-main .list .item .item-box .text-box {

    padding-right: 0;

  }

}



.news-page1 .page-main .list .item .item-box .text-box .type-box {

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  -ms-flex-wrap: wrap;

  grid-gap: 0.1rem;

  margin-bottom: 0.04rem;

}



.news-page1 .page-main .list .item .item-box .text-box .type-box .type {

  color: #fff;

  line-height: 1;

  height: 20px;

  padding: 0 0.06rem;

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  border-radius: 0.03rem;

  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;

}



.news-page1 .page-main .list .item .item-box .text-box .title {

  color: #333333;

  line-height: 1.45454545em;

  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;

}



.news-page1 .page-main .list .item .item-box .text-box .date {

  color: #999999;

  line-height: 1;

  margin-top: 0.16rem;

}



.news-page1 .page-main .list .item .item-box .text-box .text-body {

  color: #666666;

  line-height: 1.71428571em;

  opacity: 0.5;

  margin-top: 0.21rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;

}



.news-page1 .page-main .list .item .item-box .text-box .btn-container {

  margin-top: 0.47rem;

}



.related-news-page {

  padding: 1.2rem 0;

}



.related-news-page .page-main .list {

  padding-bottom: 0;

  border: none;

}



.video-recommendations-page {

  padding-top: 0.8rem;

}



.video-recommendations-page .page-main {

  position: relative;

  border-radius: 0.1rem;

  overflow: hidden;

}



.video-recommendations-page .page-main::before {

  content: '';

  width: 6.05rem;

  height: 4.77rem;

  background: url(../images/news/video-bg1-1.png) no-repeat center;

  background-size: 100% 100%;

  position: absolute;

  left: 0;

  bottom: 0;

  z-index: 2;

  opacity: 0.6;

}



@media (max-width: 1024px) {

  .video-recommendations-page .page-main::before {

    display: none;

  }

}



.video-recommendations-page .page-main::after {

  content: '';

  width: 1.51rem;

  height: 1.79rem;

  background: url(../images/news/video-bg1-2.png) no-repeat center;

  background-size: 100% 100%;

  position: absolute;

  right: 0;

  bottom: 0;

  z-index: 2;

  opacity: 0.6;

}



@media (max-width: 1024px) {

  .video-recommendations-page .page-main::after {

    display: none;

  }

}



@media (max-width: 1024px) {

  .video-recommendations-page .page-main .swiper-main .video-recommendations-swiper {

    padding-bottom: 40px;

  }



  .video-recommendations-page .page-main .swiper-main .video-recommendations-swiper .swiper-pagination {

    opacity: 1;

  }

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper .swiper-slide {

  height: auto;

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper .swiper-slide .item-box .text-box {

  display: none;

}



@media (max-width: 1024px) {

  .video-recommendations-page .page-main .swiper-main .video-recommendations-swiper .swiper-slide .item-box .text-box {

    display: -webkit-box;

    display: -ms-flexbox;

    display: -webkit-flex;

    display: flex;

  }

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper2 {

  height: 214px;

  height: 2.14rem;

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper2::before {

  content: '';

  width: 0.04rem;

  height: 100%;

  background-color: #fff;

  border-radius: 0.02rem;

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0.2;

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper2 .swiper-slide {

  height: auto;

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper2 .swiper-slide.active .item-box::before {

  opacity: 1;

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper2 .swiper-slide.active .item-box .text-box .icon {

  opacity: 1;

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper2 .swiper-slide.active .item-box .text-box .title {

  font-size: var(--font22);

  line-height: 1.45454545em;

  color: #fff;

  opacity: 1;

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper2 .swiper-slide.active .item-box .text-box .date {

  opacity: 0.5;

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper2 .swiper-slide .item-box {

  padding-left: 0.3rem;

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper2 .swiper-slide .item-box::before {

  content: '';

  width: 0.04rem;

  height: 100%;

  background-color: #fff;

  border-radius: 0.02rem;

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0;

}



.video-recommendations-page .page-main .swiper-main .video-recommendations-swiper2 .swiper-slide .item-box .text-box .icon {

  opacity: 0;

}



@media (max-width: 1024px) {

  .video-recommendations-page .page-main .float-box {

    display: none;

  }

}



.video-recommendations-page .page-main .float-box>.swiper-main {

  width: 6.05rem;

  padding-left: 0.24rem;

  padding-right: 1.2rem;

  position: absolute;

  left: 0;

  bottom: 0.38rem;

  z-index: 3;

}



.video-recommendations-page .page-main .float-box .slide-down {

  position: absolute;

  right: 0.26rem;

  bottom: 0.18rem;

  z-index: 3;

}



.video-recommendations-page .page-main .float-box .slide-down .slide-btn.swiper-button-prev {

  margin-right: -0.1rem;

}



.video-recommendations-page .page-main .float-box .slide-down .slide-btn:hover {

  background: transparent;

}



.video-recommendations-page .page-main .float-box .slide-down .slide-btn:hover svg path {

  fill: #fff;

}



.video-recommendations-page .page-main .float-box .slide-down .slide-btn svg path {

  fill: #fff;

}



.video-recommendations-page .page-main .float-box .slide-down .slide-btn svg circle {

  display: none;

}



.video-recommendations-page .page-main .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  cursor: pointer;

}



@media (max-width: 1024px) {

  .video-recommendations-page .page-main .item-box {

    background-color: #fff;

  }

}



.video-recommendations-page .page-main .item-box .public-img {

  border-radius: 0.1rem;

  min-height: 240px;

}



.video-recommendations-page .page-main .item-box .public-img::before {

  padding-top: 46.41927083%;

}



.video-recommendations-page .page-main .item-box .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;

  -webkit-box-align: center;

  -ms-flex-align: center;

  -webkit-align-items: center;

  align-items: center;

  grid-gap: 0.12rem;

}



@media (max-width: 1024px) {

  .video-recommendations-page .page-main .item-box .text-box {

    margin-top: 0.2rem;

  }

}



.video-recommendations-page .page-main .item-box .text-box .icon {

  line-height: 1;

}



.video-recommendations-page .page-main .item-box .text-box .icon img,

.video-recommendations-page .page-main .item-box .text-box .icon svg {

  width: 0.29rem;

  min-width: 20px;

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

}



@media (max-width: 1024px) {



  .video-recommendations-page .page-main .item-box .text-box .icon img,

  .video-recommendations-page .page-main .item-box .text-box .icon svg {

    -webkit-filter: initial;

    filter: initial;

  }

}



.video-recommendations-page .page-main .item-box .text-box .text-con {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  -webkit-flex: 1;

  flex: 1;

}



.video-recommendations-page .page-main .item-box .text-box .title {

  color: #fff;

  line-height: 2em;

  opacity: 0.5;

  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;

}



@media (max-width: 1024px) {

  .video-recommendations-page .page-main .item-box .text-box .title {

    color: #333;

  }

}



.video-recommendations-page .page-main .item-box .text-box .date {

  color: #fff;

  line-height: 1;

  opacity: 0.3;

}



@media (max-width: 1024px) {

  .video-recommendations-page .page-main .item-box .text-box .date {

    color: #333;

  }

}



.video-page1 {

  padding: 0.3rem 0 1.2rem;

}



@media (max-width: 1024px) {

  .video-page1 {

    padding-top: 1.2rem;

  }

}



.video-page1 .page-main .list {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-gap: 0.3rem;

}



@media (max-width: 990px) {

  .video-page1 .page-main .list {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 767px) {

  .video-page1 .page-main .list {

    grid-template-columns: repeat(1, 1fr);

  }

}



.video-page1 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  cursor: pointer;

}



.video-page1 .page-main .list .item .item-box .public-img {

  border-radius: 0.06rem;

}



.video-page1 .page-main .list .item .item-box .public-img::before {

  padding-top: 58.7398374%;

}



.video-page1 .page-main .list .item .item-box .public-img::after {

  content: '';

  width: 100%;

  height: 100%;

  background-color: #000;

  background: -webkit-linear-gradient(-90deg, transparent 0%, #000 100%);

  background: linear-gradient(180deg, transparent 0%, #000 100%);

  opacity: 0.5;

  position: absolute;

  left: 0;

  top: 0;

  z-index: 1;

}



.video-page1 .page-main .list .item .item-box .text-box {

  width: 100%;

  padding: 0 0.32rem 0.28rem;

  position: absolute;

  left: 0;

  bottom: 0;

  z-index: 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;

  grid-gap: 0.25rem;

}



.video-page1 .page-main .list .item .item-box .text-box .icon {

  line-height: 1;

}



.video-page1 .page-main .list .item .item-box .text-box .icon img,

.video-page1 .page-main .list .item .item-box .text-box .icon svg {

  width: 0.29rem;

  min-width: 20px;

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

}



.video-page1 .page-main .list .item .item-box .text-box .icon svg .f18dc47e-bfb2-4ec7-a39f-2e884ebe1ce9 {

  clip-path: url(#a32ce9a6-d940-43c0-8071-8bf190e83e3b--inject-1);

}



.video-page1 .page-main .list .item .item-box .text-box .text-con {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  -webkit-flex: 1;

  flex: 1;

}



.video-page1 .page-main .list .item .item-box .text-box .title {

  color: #fff;

  line-height: 1.77777778em;

  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;

}



.video-page1 .page-main .list .item .item-box .text-box .date {

  color: #999999;

  line-height: 1;

}



.editor-pn {

  position: relative;

  padding-top: 0.62rem;

  margin-top: 0.56rem;

  border-top: 1px solid rgba(111, 111, 111, 0.2);

}



@media (max-width: 1024px) {

  .editor-pn {

    display: none;

  }

}



.editor-pn .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;

  -webkit-box-align: center;

  -ms-flex-align: center;

  -webkit-align-items: center;

  align-items: center;

  grid-gap: 50px;

}



.editor-pn .wrap-box .wrap-left {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  -webkit-flex: 1;

  flex: 1;

}



.editor-pn .editor-btn {

  text-align: center;

  color: #666666;

  line-height: 1.5em;

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

}



.editor-pn .editor-btn.return a {

  color: #fff;

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  border-radius: 99px;

  padding: 0 0.5rem;

  height: 46px;

  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;

}



.editor-pn .editor-btn.return a:hover {

  color: #fff;

}



.editor-pn .editor-btn.return a .icon {

  background-color: var(--color-active);

}



.editor-pn .editor-btn.return a .icon img,

.editor-pn .editor-btn.return a .icon svg {

  height: 14px;

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

}



.editor-pn .editor-btn.next {

  margin-top: 0.2rem;

}



.editor-pn .editor-btn:hover a {

  color: var(--color-active);

}



.editor-pn .editor-btn:hover a .icon {

  background-color: var(--color-active);

}



.editor-pn .editor-btn:hover a .icon img,

.editor-pn .editor-btn:hover a .icon svg {

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

}



.editor-pn .editor-btn a {

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

  display: block;

  position: relative;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 1;

  overflow: hidden;

}



.editor-pn .editor-btn a .icon {

  width: 38px;

  height: 38px;

  border: 1px solid var(--color-active);

  border-radius: 50%;

  margin: auto;

  margin-bottom: 0.12rem;

  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;

}



.editor-pn .editor-btn a .icon img,

.editor-pn .editor-btn a .icon svg {

  height: 11px;

}



.news-d-page {

  padding: 0.35rem 0 1.2rem;

}



.news-d-page .page-main {

  width: 79.81770833%;

  max-width: 1226px;

  margin: auto;

}



@media (max-width: 1024px) {

  .news-d-page .page-main {

    width: 100%;

    max-width: 100%;

  }

}



.news-d-page .page-main .news-title {

  text-align: center;

  color: #000000;

  margin-top: 0.84rem;

}



.news-d-page .page-main .news-title span {

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.news-d-page .page-main .type-box {

  color: #666666;

  line-height: 1;

  padding: 0.12rem 0 0.45rem;

  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.3rem;

}



.news-d-page .page-main .news-detail-content {

  font-size: var(--font16);

  color: #666666;

  line-height: 1.5em;

  margin-top: 0.45rem;

}



.news-d-page .page-main .news-detail-content p {

  margin-bottom: 0.24rem;

}



.news-d-page .page-main .disclaimer-box {

  padding: 0.44rem 0.46rem 0.4rem;

  margin-top: 0.7rem;

  background-color: rgba(248, 248, 248, 0.5);

  border: 1px dashed rgba(0, 131, 62, 0.5);

  border-radius: 0.1rem;

}



.news-d-page .page-main .disclaimer-box .title {

  line-height: 1.09090909em;

}



.news-d-page .page-main .disclaimer-box .title span {

  color: var(--color-black);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.news-d-page .page-main .disclaimer-box .text-body {

  color: #666666;

  line-height: 1.5em;

  opacity: 0.5;

  margin-top: 0.19rem;

}



.join-us-page1 {

  padding-top: 0.84rem;

}



.join-us-page1 .page-main .list {

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  grid-gap: 0.3rem;

}



@media (max-width: 767px) {

  .join-us-page1 .page-main .list {

    -webkit-box-orient: vertical;

    -ms-flex-direction: column;

    -webkit-flex-direction: column;

    flex-direction: column;

  }

}



.join-us-page1 .page-main .list .item:first-child {

  flex: 1 1 32%;

}



.join-us-page1 .page-main .list .item:last-child {

  flex: 1 1 65.8%;

}



.join-us-page1 .page-main .list .item:last-child .item-box .public-img::before {

  padding-top: 39.62450593%;

}



.join-us-page1 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  border-radius: 0.1rem;

}



.join-us-page1 .page-main .list .item .item-box .public-img {

  height: 100%;

  min-height: 220px;

}



.join-us-page1 .page-main .list .item .item-box .public-img::before {

  padding-top: 81.50406504%;

}



.join-us-page1 .page-main .list .item .item-box .text-box {

  width: 100%;

  padding: 0.66rem 0.66rem 0;

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1;

}



@media (max-width: 1024px) {

  .join-us-page1 .page-main .list .item .item-box .text-box {

    padding: 0.6rem 0.4rem 0;

  }

}



.join-us-page1 .page-main .list .item .item-box .text-box .title {

  color: #fff;

}



.join-us-page1 .page-main .list .item .item-box .text-box .text-body {

  color: #fff;

  line-height: 1.45454545em;

  margin-top: 0.16rem;

}



.join-us-page2 {

  padding-top: 0.3rem;

}



.join-us-page2 .page-main {

  padding: 0.98rem 0.68rem 1.28rem;

  border-radius: 0.1rem;

  overflow: hidden;

}



@media (max-width: 1024px) {

  .join-us-page2 .page-main {

    padding: 1.2rem 0.4rem;

  }

}



.join-us-page2 .page-main .up {

  width: 72.92857143%;

  max-width: 1021px;

  position: relative;

  padding-bottom: 0.58rem;

  margin-bottom: 0.6rem;

}



@media (max-width: 767px) {

  .join-us-page2 .page-main .up {

    width: 100%;

    max-width: 100%;

  }

}



.join-us-page2 .page-main .up::before {

  content: '';

  width: 100%;

  height: 1px;

  background: url(../images/join-us/join-us-line.png) no-repeat center;

  background-size: 100% 100%;

  position: absolute;

  left: 0;

  bottom: 0;

}



.join-us-page2 .page-main .up .text-body {

  color: #333333;

  line-height: 1.45454545em;

  margin-top: 0.16rem;

}



.join-us-page2 .page-main .list {

  width: 72.35714286%;

  max-width: 1013px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  grid-gap: 0.6rem 1.25rem;

}



@media (max-width: 1024px) {

  .join-us-page2 .page-main .list {

    grid-gap: 0.6rem;

  }

}



@media (max-width: 767px) {

  .join-us-page2 .page-main .list {

    width: 100%;

    max-width: 100%;

    grid-template-columns: repeat(1, 1fr);

  }

}



.join-us-page2 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

}



.join-us-page2 .page-main .list .item .item-box .icon {

  width: 0.44rem;

  height: 0.47rem;

  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;

}



.join-us-page2 .page-main .list .item .item-box .text-box .title {

  color: #333333;

  line-height: 1.45454545em;

  margin-top: 0.08rem;

}



.join-us-page2 .page-main .list .item .item-box .text-box .text-body {

  color: #666666;

  line-height: 1.625em;

  margin-top: 0.15rem;

}



.join-us-page3 {

  padding-top: 0.3rem;

}



.join-us-page3 .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) {

  .join-us-page3 .page-main .wrap-box {

    display: block;

  }

}



.join-us-page3 .page-main .wrap-box .wrap-left {

  width: 40.95052083%;

  max-width: 629px;

  border-radius: 0.1rem;

  overflow: hidden;

}



@media (max-width: 767px) {

  .join-us-page3 .page-main .wrap-box .wrap-left {

    width: 100%;

  }

}



.join-us-page3 .page-main .wrap-box .wrap-left .img {

  height: 100%;

}



.join-us-page3 .page-main .wrap-box .wrap-left .img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  -webkit-transition: all 0.8s;

  transition: all 0.8s;

}



.join-us-page3 .page-main .wrap-box .wrap-right {

  width: 57.16145833%;

  max-width: 878px;

  padding: 0.8rem 2.06rem 1.15rem 0.85rem;

  background: url(../images/join-us/join-us-img3-2.jpg) no-repeat center;

  background-size: cover;

  border-radius: 0.1rem;

  overflow: hidden;

}



@media (max-width: 1024px) {

  .join-us-page3 .page-main .wrap-box .wrap-right {

    padding: 0.6rem;

  }

}



@media (max-width: 767px) {

  .join-us-page3 .page-main .wrap-box .wrap-right {

    width: 100%;

    max-width: 100%;

    padding: 0.6rem 0.4rem;

    margin-top: 0.48rem;

  }

}



.join-us-page3 .page-main .up .text-body {

  color: #333333;

  line-height: 1.45454545em;

  margin-top: 0.18rem;

}



.join-us-page3 .page-main .list {

  margin-top: 0.6rem;

}



.join-us-page3 .page-main .list .item:first-child .item-box {

  border-top: 1px solid #cccccc;

}



.join-us-page3 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  padding: 0.38rem 0;

  border-bottom: 1px solid #cccccc;

  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.3rem;

}



@media (max-width: 767px) {

  .join-us-page3 .page-main .list .item .item-box {

    -webkit-box-orient: vertical;

    -ms-flex-direction: column;

    -webkit-flex-direction: column;

    flex-direction: column;

  }

}



.join-us-page3 .page-main .list .item .item-box .icon {

  width: 0.46rem;

  height: 0.46rem;

  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;

}



.join-us-page3 .page-main .list .item .item-box .text-box {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  -webkit-flex: 1;

  flex: 1;

}



.join-us-page3 .page-main .list .item .item-box .text-box .title {

  color: #333333;

  line-height: 1.45454545em;

}



.join-us-page3 .page-main .list .item .item-box .text-box .text-body {

  color: #666666;

  line-height: 1.625em;

}



.join-us-page4 {

  padding: 1.2rem 0;

}



.join-us-page4 .page-main .searchform {

  margin-bottom: 0.58rem;

  position: relative;

  z-index: 1;

}



.join-us-page4 .page-main .searchform .form-control1 input {

  background-color: #f8f8f8;

}



.join-us-page4 .page-main .tab-header {

  padding: 0.26rem 0.29rem 0.3rem 0.45rem;

  background-color: #fff;

  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;

  color: #333333;

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.join-us-page4 .page-main .tab-header::before,

.join-us-page4 .page-main .tab-header::after {

  content: '';

  width: 100%;

  height: 1px;

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  position: absolute;

  left: 0;

}



.join-us-page4 .page-main .tab-header::before {

  height: 0.03rem;

  top: 0;

}



.join-us-page4 .page-main .tab-header::after {

  bottom: 0;

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-header {

    display: none;

  }

}



.join-us-page4 .page-main .tab-header .public-w1 {

  width: 5.47195622%;

  max-width: 80px;

  color: #999999;

}



.join-us-page4 .page-main .tab-header .public-w2 {

  width: 19.63064295%;

  max-width: 287px;

  padding-right: 10px;

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-header .public-w2 {

    padding: 0;

  }

}



.join-us-page4 .page-main .tab-header .public-w3 {

  width: 14.36388509%;

  max-width: 210px;

  padding-right: 10px;

  color: rgba(51, 51, 51, 0.5);

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-header .public-w3 {

    padding: 0;

  }

}



.join-us-page4 .page-main .tab-header .public-w4 {

  width: 19.63064295%;

  max-width: 287px;

  text-align: center;

  overflow: hidden;

}



.join-us-page4 .page-main .tab-header .public-w4 img,

.join-us-page4 .page-main .tab-header .public-w4 svg {

  width: 13px;

  filter: drop-shadow(-380px 0 var(--color-active));

  transform: translate(380px);

  opacity: 0.1;

  margin-right: 0.05rem;

  position: relative;

  top: 0.02rem;

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-header .public-w4 {

    text-align: left;

  }

}



.join-us-page4 .page-main .tab-header .public-w5 {

  width: 19.28864569%;

  max-width: 282px;

  text-align: center;

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-header .public-w5 {

    text-align: left;

  }

}



.join-us-page4 .page-main .tab-header .public-w6 {

  width: 19.35704514%;

  max-width: 283px;

  text-align: center;

  color: rgba(51, 51, 51, 0.5);

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-header .public-w6 {

    text-align: left;

  }

}



.join-us-page4 .page-main .tab-header .btn-box {

  overflow: hidden;

}



.join-us-page4 .page-main .tab-header .btn-box .btn {

  width: 32px;

  height: 32px;

  background-color: #fff;

  border-radius: 50%;

  overflow: hidden;

  opacity: 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;

  -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;

}



.join-us-page4 .page-main .tab-header .btn-box .btn img,

.join-us-page4 .page-main .tab-header .btn-box .btn svg {

  width: 8px;

  opacity: 0.5;

}



.join-us-page4 .page-main .tab-ul ul {

  display: flex;

  justify-content: space-between;

  /* 自动分配间距 */

}



.join-us-page4 .page-main .tab-ul li {

  background-color: #fff;

  overflow: hidden;

  color: #333333;

  width: 19.28864569%;

  max-width: 282px;

  text-align: center;

  line-height: 45px;

}



.join-us-page4 .page-main .tab-ul li:hover {

  color: #00833e;

}



.join-us-page4 .page-main .tab-ul li:hover .top::before {

  opacity: 1;

}



.join-us-page4 .page-main .tab-ul li:hover .top .tab-main .public-w1,

.join-us-page4 .page-main .tab-ul li:hover .top .tab-main .public-w3,

.join-us-page4 .page-main .tab-ul li:hover .top .tab-main .public-w6 {

  color: #fff;

}



.join-us-page4 .page-main .tab-ul li:hover .top .tab-main .public-w4 img,

.join-us-page4 .page-main .tab-ul li:hover .top .tab-main .public-w4 svg {

  filter: drop-shadow(-380px 0 #fff);

  transform: translate(380px);

  opacity: 0.2;

}



.join-us-page4 .page-main .tab-ul li:hover .top .tab-main .btn-box .btn img,

.join-us-page4 .page-main .tab-ul li:hover .top .tab-main .btn-box .btn svg {

  opacity: 1;

  filter: drop-shadow(-80px 0 var(--color-active));

  transform: translate(80px);

}



.join-us-page4 .page-main .tab-ul li.active .top::before {

  opacity: 1;

}



.join-us-page4 .page-main .tab-ul li.active .top .tab-main .btn-box {

  background-color: var(--color-active-a68);

}



.join-us-page4 .page-main .tab-ul li.active .top .tab-main .btn-box .btn {

  transform: rotate(-180deg);

  -webkit-transform: rotate(-180deg);

}



.join-us-page4 .page-main .tab-ul li.active .top .tab-main .btn-box .btn img {

  filter: drop-shadow(-80px 0 var(--color-active));

  transform: translate(80px);

}



.join-us-page4 .page-main .tab-ul li:nth-child(n+7) {

  display: none;

}



.join-us-page4 .page-main .tab-ul li .top {

  display: block;

  cursor: pointer;

  padding: 0.22rem 0.29rem 0.22rem 0.45rem;

  position: relative;

  border-bottom: 1px solid rgba(0, 32, 96, 0.1);

}



.join-us-page4 .page-main .tab-ul li .top::before {

  content: '';

  width: 100%;

  height: 100%;

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.join-us-page4 .page-main .tab-ul li .top .tab-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;

  -webkit-box-align: center;

  -ms-flex-align: center;

  -webkit-align-items: center;

  align-items: center;

  position: relative;

}



.join-us-page4 .page-main .tab-ul li .top .tab-main .tab-name {

  display: none;

  font-weight: bold;

}



.join-us-page4 .page-main .tab-ul li .top .tab-main .public-w1 {

  width: 5.47195622%;

  max-width: 80px;

  color: #999999;

}



.join-us-page4 .page-main .tab-ul li .top .tab-main .public-w2 {

  width: 19.63064295%;

  max-width: 287px;

  padding-right: 10px;

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-ul li .top .tab-main .public-w2 {

    padding: 0;

  }

}



.join-us-page4 .page-main .tab-ul li .top .tab-main .public-w3 {

  width: 14.36388509%;

  max-width: 210px;

  padding-right: 10px;

  color: rgba(51, 51, 51, 0.5);

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-ul li .top .tab-main .public-w3 {

    padding: 0;

  }

}



.join-us-page4 .page-main .tab-ul li .top .tab-main .public-w4 {

  width: 19.63064295%;

  max-width: 287px;

  text-align: center;

  overflow: hidden;

}



.join-us-page4 .page-main .tab-ul li .top .tab-main .public-w4 img,

.join-us-page4 .page-main .tab-ul li .top .tab-main .public-w4 svg {

  width: 13px;

  filter: drop-shadow(-380px 0 var(--color-active));

  transform: translate(380px);

  opacity: 0.1;

  margin-right: 0.05rem;

  position: relative;

  top: 0.02rem;

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-ul li .top .tab-main .public-w4 {

    text-align: left;

  }

}



.join-us-page4 .page-main .tab-ul li .top .tab-main .public-w5 {

  width: 19.28864569%;

  max-width: 282px;

  text-align: center;

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-ul li .top .tab-main .public-w5 {

    text-align: left;

  }

}



.join-us-page4 .page-main .tab-ul li .top .tab-main .public-w6 {

  width: 19.35704514%;

  max-width: 283px;

  text-align: center;

  color: rgba(51, 51, 51, 0.5);

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-ul li .top .tab-main .public-w6 {

    text-align: left;

  }

}



.join-us-page4 .page-main .tab-ul li .top .tab-main .btn-box {

  overflow: hidden;

}



.join-us-page4 .page-main .tab-ul li .top .tab-main .btn-box .btn {

  width: 32px;

  height: 32px;

  background-color: #fff;

  border-radius: 50%;

  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;

}



.join-us-page4 .page-main .tab-ul li .top .tab-main .btn-box .btn img,

.join-us-page4 .page-main .tab-ul li .top .tab-main .btn-box .btn svg {

  width: 8px;

  opacity: 0.5;

}



@media (max-width: 1024px) {

  .join-us-page4 .page-main .tab-ul li .top .tab-main {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-gap: 10px 20px;

  }



  .join-us-page4 .page-main .tab-ul li .top .tab-main .public-w {

    width: 100% !important;

  }



  .join-us-page4 .page-main .tab-ul li .top .tab-main .public-w1 {

    grid-column: span 2;

    display: none;

  }



  .join-us-page4 .page-main .tab-ul li .top .tab-main .public-w1 .tab-name {

    display: inline-block;

  }



  .join-us-page4 .page-main .tab-ul li .top .tab-main .public-w2 {

    grid-column: span 2;

    padding-right: 30px;

  }



  .join-us-page4 .page-main .tab-ul li .top .tab-main .btn-box {

    position: absolute;

    right: 0;

    top: 0;

    width: auto !important;

  }



  .join-us-page4 .page-main .tab-ul li .top .tab-main .tab-name {

    display: block;

  }

}



.join-us-page4 .page-main .tab-ul li .bom {

  display: none;

  padding: 0.2rem 0.3rem 0.3rem;

}



.join-us-page4 .page-main .tab-ul li .bom .text-body h6 {

  margin: 0.24rem 0 0.04rem;

}



.join-us-page4 .page-main .tab-ul li .bom .text-body h6:first-child {

  margin-top: 0;

}



.join-us-page4 .page-main .tab-ul li .bom .text-body p {

  font-size: var(--font16);

  line-height: 2em;

}



.join-us-page4 .page-main .tab-ul li .bom .btn-container {

  grid-gap: 0.1rem 0.3rem;

  flex-wrap: wrap;

  -ms-flex-wrap: wrap;

}



.join-us-d-page1 {

  padding: 0.9rem 0 1.4rem;

  position: relative;

}



.join-us-d-page1 .float-icon {

  width: 15rem;

  position: absolute;

  top: 0.9rem;

  left: -1.33rem;

  opacity: 0.4;

}



.join-us-d-page1 .page-main {

  position: relative;

}



.join-us-d-page1 .page-main .up {

  padding-bottom: 0.62rem;

  margin-bottom: 0.98rem;

  border-bottom: 0.03rem solid #f8f8f8;

}



.join-us-d-page1 .page-main .up .title span {

  color: var(--color-black);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.join-us-d-page1 .page-main .up .text-body {

  color: #666666;

  margin-top: 0.18rem;

}



.join-us-d-page1 .page-main .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) {

  .join-us-d-page1 .page-main .down .wrap-box {

    display: block;

  }

}



.join-us-d-page1 .page-main .down .wrap-box .wrap-left {

  width: 55.98958333%;

  max-width: 860px;

}



@media (max-width: 1024px) {

  .join-us-d-page1 .page-main .down .wrap-box .wrap-left {

    width: 100%;

    max-width: 100%;

  }

}



.join-us-d-page1 .page-main .down .wrap-box .wrap-right {

  width: 31.96614583%;

  max-width: 491px;

}



@media (max-width: 1024px) {

  .join-us-d-page1 .page-main .down .wrap-box .wrap-right {

    width: 100%;

    margin-top: 0.8rem;

  }

}



.join-us-d-page1 .page-main .down .wrap-left .text-auto {

  padding-right: 0.7rem;

  max-height: 7.54rem;

  overflow: auto;

}



@media (max-width: 1024px) {

  .join-us-d-page1 .page-main .down .wrap-left .text-auto {

    padding-right: 0;

    max-height: initial;

    overflow: visible;

  }

}



.join-us-d-page1 .page-main .down .wrap-left .text-box:first-child .title {

  margin-top: 0;

}



.join-us-d-page1 .page-main .down .wrap-left .text-box .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.1rem;

  padding-bottom: 0.18rem;

  margin-bottom: 0.34rem;

  margin-top: 0.96rem;

  border-bottom: 1px solid rgba(0, 32, 96, 0.1);

}



.join-us-d-page1 .page-main .down .wrap-left .text-box .title .icon img,

.join-us-d-page1 .page-main .down .wrap-left .text-box .title .icon svg {

  height: 0.23rem;

  min-height: 18px;

}



.join-us-d-page1 .page-main .down .wrap-left .text-box .title span {

  color: var(--color-black);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.join-us-d-page1 .page-main .down .wrap-left .text-box .text-body {

  color: #666666;

  line-height: 1.7em;

}



.join-us-d-page1 .page-main .down .wrap-left .text-box .text-body * {

  margin-bottom: 0.3rem;

}



.join-us-d-page1 .page-main .down .wrap-left .btn-container {

  margin-top: 1.06rem;

}



.join-us-d-page1 .page-main .down .page-img-box {

  padding: 0.76rem 0.74rem 2.54rem 0.68rem;

  border-radius: 0.1rem;

  overflow: hidden;

}



@media (max-width: 1024px) {

  .join-us-d-page1 .page-main .down .page-img-box {

    padding: 0.8rem 0.4rem 2.2rem;

  }

}



.join-us-d-page1 .page-main .down .page-img-box .text-box {

  position: relative;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-up {

  padding-bottom: 0.35rem;

  border-bottom: 1px solid rgba(243, 249, 254, 0.2);

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-up .title {

  color: #fff;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down {

  margin-top: 0.28rem;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li {

  width: 100%;

  height: auto;

  border-bottom: 1px solid rgba(243, 249, 254, 0.2);

  overflow: hidden;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li:last-child {

  border-bottom: none;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li:last-child .one a::before {

  display: none;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one {

  width: 100%;

  height: auto;

  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;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one a {

  width: 100%;

  padding: 24px 30px 24px 0;

  display: block;

  color: #f3f9fe;

  line-height: 1;

  position: relative;

  -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;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one a::before {

  content: '';

  width: 100%;

  height: 2px;

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  position: absolute;

  left: 0;

  bottom: 0;

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one>.icon {

  position: absolute;

  right: 0;

  top: 50%;

  -webkit-transform: translateY(-50%);

  transform: translateY(-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;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one>.icon img,

.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one>.icon svg {

  position: relative;

  width: 12px;

  height: auto;

  opacity: 0.5;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one>.icon svg path {

  -webkit-fill: #f3f9fe;

  fill: #f3f9fe;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one.active a {

  color: var(--color-active);

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one.active a::before {

  opacity: 1;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one.active .icon {

  background-color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one.active .icon img,

.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one.active .icon svg {

  opacity: 1;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li .one.active .icon svg path {

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul {

  display: none;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li {

  border: 0;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li .two {

  cursor: pointer;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li a {

  display: block;

  display: inline-block;

  padding: 10px 0.22rem;

  color: #666666;

  position: relative;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down 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);

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li a .icon img,

.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down 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;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li .two.active {

  color: var(--color-active);

  background-color: rgba(27, 77, 179, 0.1);

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li .two.active a {

  color: var(--color-active);

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li .two.active svg {

  -webkit-transform: rotate(90deg);

  transform: rotate(90deg);

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li .two.active svg path {

  fill: var(--color-active);

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li ul {

  border: 0;

  display: none;

  padding: 5px 0;

  background-color: rgba(27, 77, 179, 0.03);

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li ul li a {

  padding: 10px 0.22rem;

  color: #666666;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li ul li a:hover {

  color: var(--color-active);

}



.join-us-d-page1 .page-main .down .page-img-box .text-box .text-down ul li ul li ul.active {

  display: block;

}



.join-us-d-page2 {

  padding: 1.14rem 0 1.2rem;

}



.join-us-d-page2 .page-main {

  padding: 0 1.1rem;

}



@media (max-width: 1024px) {

  .join-us-d-page2 .page-main {

    padding: 0;

  }

}



.join-us-d-page2 .page-main .up .text-body {

  color: #666666;

  line-height: 1.54545455em;

  text-align: center;

}



@media (max-width: 1024px) {

  .join-us-d-page2 .page-main .up .text-body {

    font-size: var(--font20);

  }

}



.join-us-d-page2 .page-main .up .text-body span {

  color: var(--color-active);

}



.join-us-d-page2 .page-main .up .text-body p {

  text-align: center;

}



.join-us-d-page2 .page-main .down .list {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  grid-gap: 0.3rem;

  margin-top: 0.4rem;

}



@media (max-width: 1024px) {

  .join-us-d-page2 .page-main .down .list {

    grid-template-columns: repeat(1, 1fr);

  }

}



.join-us-d-page2 .page-main .down .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  background-color: #fff;

  border-radius: 0.1rem;

  padding: 0.64rem 0.66rem 0.47rem;

}



@media (max-width: 1024px) {

  .join-us-d-page2 .page-main .down .list .item .item-box {

    padding-left: 0.4rem;

    padding-right: 0.4rem;

  }

}



.join-us-d-page2 .page-main .down .list .item .item-box .text-box .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.1rem;

}



@media (max-width: 1024px) {

  .join-us-d-page2 .page-main .down .list .item .item-box .text-box .title {

    font-size: var(--font20);

  }

}



.join-us-d-page2 .page-main .down .list .item .item-box .text-box .title .icon img,

.join-us-d-page2 .page-main .down .list .item .item-box .text-box .title .icon svg {

  height: 0.24rem;

  min-height: 20px;

}



.join-us-d-page2 .page-main .down .list .item .item-box .text-box .title span {

  color: var(--color-black);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.join-us-d-page2 .page-main .down .list .item .item-box .text-box .text-body {

  color: #666666;

  line-height: 1.25em;

  margin-top: 0.5rem;

}



.join-us-d-page2 .page-main .down .list .item .item-box .text-box .text-body strong {

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  font-size: var(--font26);

  color: var(--color-active);

  font-weight: bold;

  margin-bottom: 0.2rem;

}



@media (max-width: 1024px) {

  .join-us-d-page2 .page-main .down .list .item .item-box .text-box .text-body strong {

    font-size: var(--font20);

  }

}



.join-us-d-page2 .page-main .down .list .item .item-box .text-box .text-body dl {

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  margin-bottom: 0.14rem;

}



.join-us-d-page2 .page-main .down .list .item .item-box .text-box .text-body dl dd {

  -webkit-box-flex: 1;

  -ms-flex: 1;

  -webkit-flex: 1;

  flex: 1;

}



.sustainable-development-page1 {

  padding: 1.2rem 0;

}



.sustainable-development-page1 .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) {

  .sustainable-development-page1 .page-main .wrap-box {

    display: block;

  }

}



.sustainable-development-page1 .page-main .wrap-box .wrap-left {

  width: 25.390625%;

  max-width: 390px;

}



@media (max-width: 1024px) {

  .sustainable-development-page1 .page-main .wrap-box .wrap-left {

    width: 100%;

    max-width: 100%;

  }

}



.sustainable-development-page1 .page-main .wrap-box .wrap-right {

  width: 62.56510417%;

  max-width: 961px;

}



@media (max-width: 1024px) {

  .sustainable-development-page1 .page-main .wrap-box .wrap-right {

    width: 100%;

    margin-top: 0.8rem;

  }

}



.sustainable-development-page2 {

  position: relative;

}



.sustainable-development-page2 .sustainable-development-swiper2 .swiper-slide {

  height: auto;

}



.sustainable-development-page2 .sustainable-development-swiper2 .swiper-slide .img-box {

  height: 100%;

  min-height: 520px;

}



.sustainable-development-page2 .sustainable-development-swiper2 .swiper-slide .img-box img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.sustainable-development-page2 .container {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  margin: auto;

  z-index: 1;

  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;

}



.sustainable-development-page2 .container .swiper-pagination {

  width: 0.04rem;

  height: 100%;

  background-color: rgba(255, 255, 255, 0.3);

  opacity: 1;

}



.sustainable-development-page2 .container .swiper-pagination .swiper-pagination-progressbar-fill {

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

}



.sustainable-development-page2 .page-main {

  width: 100%;

}



.sustainable-development-page2 .page-main .tab-ul {

  width: 36.00260417%;

  max-width: 553px;

  margin-left: 0.64rem;

}



@media (max-width: 767px) {

  .sustainable-development-page2 .page-main .tab-ul {

    width: auto;

    max-width: 100%;

    margin-left: 0.4rem;

  }

}



.sustainable-development-page2 .page-main .tab-ul li:first-child .top {

  border: none;

}



.sustainable-development-page2 .page-main .tab-ul li.active .top .tab-box .tab-title {

  font-size: var(--font36);

}



.sustainable-development-page2 .page-main .tab-ul li.active .top .tab-box .btn {

  opacity: 0;

}



.sustainable-development-page2 .page-main .tab-ul li.active .bom {

  display: block;

}



.sustainable-development-page2 .page-main .tab-ul li .top {

  cursor: pointer;

  padding: 0.34rem 0;

  border-top: 1px solid rgba(255, 255, 255, 0.3);

}



.sustainable-development-page2 .page-main .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;

  grid-gap: 0.8rem;

}



.sustainable-development-page2 .page-main .tab-ul li .top .tab-box .tab-title {

  color: #fff;

  -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;

}



.sustainable-development-page2 .page-main .tab-ul li .top .tab-box .btn {

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.sustainable-development-page2 .page-main .tab-ul li .top .tab-box .btn img,

.sustainable-development-page2 .page-main .tab-ul li .top .tab-box .btn svg {

  width: 0.16rem;

  min-width: 12px;

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

  opacity: 0.5;

}



.sustainable-development-page2 .page-main .tab-ul li .bom {

  display: none;

  padding-bottom: 0.4rem;

}



.sustainable-development-page2 .page-main .tab-ul li .bom .text-body {

  color: #fff;

  line-height: 1.55555556em;

}



.sustainable-development-page2 .page-main .tab-ul li .bom .btn-container {

  margin-top: 0.36rem;

}



.sustainable-development-page2 .page-main .tab-ul li .bom .btn-container .more-primary5 {

  padding: 0 0.42rem;

}



.sustainable-development-page3 {

  padding: 1.2rem 0;

  background-color: #f8f8f8;

}



.sustainable-development-page3 .page-main .page-up .text-body {

  color: #666666;

  line-height: 1.77777778em;

  margin-top: 0.2rem;

}



.sustainable-development-page3 .page-main .list {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-gap: 0.3rem;

  margin-top: 0.6rem;

}



@media (max-width: 990px) {

  .sustainable-development-page3 .page-main .list {

    grid-template-columns: repeat(2, 1fr);

  }

}



.sustainable-development-page3 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  background-color: #fff;

  border-radius: 0.1rem;

}



.sustainable-development-page3 .page-main .list .item .item-box .img {

  height: 1.3rem;

  min-height: 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;

}



.sustainable-development-page3 .page-main .list .item .item-box .img img {

  max-width: 65.7%;

  max-height: 70.7%;

}



.sustainable-development-page4 {

  padding: 1.2rem 0;

  background-color: #f8f8f8;

}



.sustainable-development-page4 .page-img::before {

  content: '';

  width: 100%;

  height: 100%;

  background-color: #000;

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0.6;

  z-index: 1;

}



.sustainable-development-page4 .page-main {

  z-index: 2;

}



.sustainable-development-page4 .page-main .page-up .page-title .title-en {

  color: #fff;

}



.sustainable-development-page4 .page-main .page-up .page-title .title-en::before {

  background-color: #fff;

}



.sustainable-development-page4 .page-main .page-up .page-title .title {

  color: #fff;

}



.sustainable-development-page4 .page-main .page-up .page-title .title span {

  color: #fff;

  background: none;

  -webkit-background-clip: initial;

  -webkit-text-fill-color: initial;

}



.sustainable-development-page4 .page-main .page-up .text-body {

  color: #fff;

  line-height: 1.77777778em;

  margin-top: 0.2rem;

}



.sustainable-development-page4 .page-main .list {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-gap: 0.3rem;

  margin-top: 0.6rem;

}



@media (max-width: 990px) {

  .sustainable-development-page4 .page-main .list {

    grid-template-columns: repeat(2, 1fr);

  }

}



.sustainable-development-page4 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  background-color: #fff;

  border-radius: 0.1rem;

}



.sustainable-development-page4 .page-main .list .item .item-box .img {

  height: 1.3rem;

  min-height: 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;

}



.sustainable-development-page4 .page-main .list .item .item-box .img img {

  max-width: 65.7%;

  max-height: 70.7%;

}



.sustainable-development-page5 {

  padding: 1.2rem 0;

}



.sustainable-development-page5 .page-main .page-up .text-body {

  width: 35.546875%;

  max-width: 546px;

  color: #666666;

  line-height: 1.77777778em;

  margin-top: 0.2rem;

}



@media (max-width: 1024px) {

  .sustainable-development-page5 .page-main .page-up .text-body {

    width: 100%;

    max-width: 100%;

  }

}



.sustainable-development-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;

  margin-top: 0.3rem;

}



@media (max-width: 1024px) {

  .sustainable-development-page5 .page-main .page-down .wrap-box {

    display: block;

  }

}



.sustainable-development-page5 .page-main .page-down .wrap-box .wrap-left {

  width: 49.0234375%;

  max-width: 753px;

}



@media (max-width: 1024px) {

  .sustainable-development-page5 .page-main .page-down .wrap-box .wrap-left {

    width: 100%;

  }

}



.sustainable-development-page5 .page-main .page-down .wrap-box .wrap-left .public-img {

  overflow: hidden;

  border-radius: 0.1rem;

}



.sustainable-development-page5 .page-main .page-down .wrap-box .wrap-left .public-img::before {

  padding-top: 81.00929615%;

}



.sustainable-development-page5 .page-main .page-down .wrap-box .wrap-right {

  width: 49.0234375%;

  max-width: 753px;

}



@media (max-width: 1024px) {

  .sustainable-development-page5 .page-main .page-down .wrap-box .wrap-right {

    width: 100%;

    max-width: 100%;

    margin-top: 0.48rem;

  }

}



.sustainable-development-page5 .page-main .list {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  grid-gap: 0.3rem;

}



.sustainable-development-page5 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  background-color: #f8f8f8;

  border-radius: 0.1rem;

}



.sustainable-development-page5 .page-main .list .item .item-box .img {

  height: 1.3rem;

  min-height: 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;

}



.sustainable-development-page5 .page-main .list .item .item-box .img img {

  max-width: 65.7%;

  max-height: 70.7%;

}



.sustainable-development-page6 {

  padding: 1.2rem 0;

  background: -webkit-linear-gradient(-90deg, #f8f8f8 0%, #fff 100%);

  background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);

}



.sustainable-development-page6 .page-main .page-up .text-body {

  color: #666666;

  line-height: 1.55555556em;

  margin-top: 0.2rem;

}



.sustainable-development-page6 .page-main .list {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  grid-gap: 0.3rem;

  margin-top: 0.62rem;

}



@media (max-width: 990px) {

  .sustainable-development-page6 .page-main .list {

    grid-template-columns: repeat(1, 1fr);

  }

}



.sustainable-development-page6 .page-main .list .item:hover .item-box {

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

}



.sustainable-development-page6 .page-main .list .item:hover .item-box .icon svg path {

  fill: #fff;

}



.sustainable-development-page6 .page-main .list .item:hover .item-box .text-box .date {

  color: #fff;

}



.sustainable-development-page6 .page-main .list .item:hover .item-box .text-box .title {

  color: #fff;

}



.sustainable-development-page6 .page-main .list .item:hover .item-box .btn-container .more-primary6 {

  background-color: #fff;

}



.sustainable-development-page6 .page-main .list .item:hover .item-box .btn-container .more-primary6 .more-primary-circle img,

.sustainable-development-page6 .page-main .list .item:hover .item-box .btn-container .more-primary6 .more-primary-circle svg {

  opacity: 1;

}



.sustainable-development-page6 .page-main .list .item:hover .item-box .btn-container .more-primary6 .more-primary-circle svg path {

  fill: var(--color-active);

}



.sustainable-development-page6 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  padding: 0.26rem 0.28rem;

  background-color: rgba(210, 210, 210, 0.1);

  border: 1px solid rgba(204, 204, 204, 0.5);

  border-radius: 0.1rem;

  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;

  grid-gap: 0.24rem;

}



.sustainable-development-page6 .page-main .list .item .item-box .icon {

  line-height: 1;

}



.sustainable-development-page6 .page-main .list .item .item-box .icon img,

.sustainable-development-page6 .page-main .list .item .item-box .icon svg {

  width: 0.38rem;

  min-width: 30px;

  height: auto;

}



.sustainable-development-page6 .page-main .list .item .item-box .icon svg path {

  fill: #d7d7d7;

}



.sustainable-development-page6 .page-main .list .item .item-box .text-box {

  padding-right: 50px;

  -webkit-box-flex: 1;

  -ms-flex: 1;

  -webkit-flex: 1;

  flex: 1;

}



@media (max-width: 767px) {

  .sustainable-development-page6 .page-main .list .item .item-box .text-box {

    padding: 0;

  }

}



.sustainable-development-page6 .page-main .list .item .item-box .text-box .date {

  color: #666666;

}



.sustainable-development-page6 .page-main .list .item .item-box .text-box .title {

  color: #333333;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 1;

  overflow: hidden;

}



.sustainable-development-page6 .page-main .list .item .item-box .btn-container {

  position: absolute;

  right: 0.27rem;

  top: 0;

  height: 100%;

  -webkit-box-align: center;

  -ms-flex-align: center;

  -webkit-align-items: center;

  align-items: center;

}



@media (max-width: 767px) {

  .sustainable-development-page6 .page-main .list .item .item-box .btn-container {

    display: none;

  }

}



.sustainable-development-page7 {

  padding: 1.9rem 0 1.2rem;

}



.sustainable-development-page7 .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;

  -webkit-box-align: end;

  -ms-flex-align: end;

  -webkit-align-items: flex-end;

  align-items: flex-end;

  grid-gap: 0.48rem;

  margin-top: 0.5rem;

  overflow: hidden;

}



@media (max-width: 1024px) {

  .sustainable-development-page7 .page-main .page-up .wrap-box {

    -webkit-box-orient: vertical;

    -ms-flex-direction: column;

    -webkit-flex-direction: column;

    flex-direction: column;

  }

}



.sustainable-development-page7 .page-main .page-up .wrap-box .wrap-left .title {

  color: #666666;

  white-space: nowrap;

}



.sustainable-development-page7 .page-main .page-up .wrap-box .wrap-right {

  position: relative;

  width: 92.96875%;

  max-width: 1428px;

}



@media (max-width: 1024px) {

  .sustainable-development-page7 .page-main .page-up .wrap-box .wrap-right {

    width: 100%;

    max-width: 100%;

  }

}



.sustainable-development-page7 .page-main .page-up .wrap-box .wrap-right .slide-btn {

  margin-top: -10px;

}



.sustainable-development-page7 .page-main .page-up .wrap-box .wrap-right .slide-btn.swiper-button-prev {

  left: 0;

}



.sustainable-development-page7 .page-main .page-up .wrap-box .wrap-right .slide-btn.swiper-button-next {

  right: 0;

}



.sustainable-development-page7 .page-main .page-up .wrap-box .wrap-right .slide-btn:hover {

  background: none;

}



.sustainable-development-page7 .page-main .page-up .wrap-box .wrap-right .slide-btn svg circle {

  display: none;

}



.sustainable-development-page7 .page-main .page-up .wrap-box .wrap-right .slide-btn svg path {

  fill: var(--color-active);

}



.sustainable-development-page7 .page-main .page-up .tab-title-box {

  width: 89.97395833%;

  max-width: 1382px;

  margin: auto;

  position: relative;

}



@media (max-width: 1024px) {

  .sustainable-development-page7 .page-main .page-up .tab-title-box {

    width: 100%;

    max-width: 100%;

  }

}



.sustainable-development-page7 .page-main .page-up .tab-title-box::before {

  content: '';

  width: 100%;

  height: 1px;

  background-color: #cccccc;

  position: absolute;

  left: 0;

  bottom: 0;

  bottom: 5px;

  opacity: 0.5;

}



.sustainable-development-page7 .page-main .page-up .tab-title-box .tab-title {

  width: 100%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  -webkit-box-sizing: border-box;

  box-sizing: border-box;

  overflow-x: scroll;

  text-overflow: inherit;

  white-space: nowrap;

}



.sustainable-development-page7 .page-main .page-up .tab-title-box .tab-title::-webkit-scrollbar {

  width: 2px;

  height: 5px;

  background-color: transparent;

  -webkit-border-radius: 50%;

  -moz-border-radius: 50%;

  border-radius: 0;

  display: none;

}



.sustainable-development-page7 .page-main .page-up .tab-title-box .tab-title::-webkit-scrollbar-thumb {

  background-color: transparent;

  -webkit-border-radius: 4px;

  -moz-border-radius: 4px;

  border-radius: 0;

}



.sustainable-development-page7 .page-main .page-up .tab-title-box .tab-title .title {

  min-height: 46px;

  color: #666666;

  padding: 0 0.32rem;

  cursor: pointer;

  position: relative;

  padding-bottom: 16px;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.sustainable-development-page7 .page-main .page-up .tab-title-box .tab-title .title::before {

  content: '';

  width: 10px;

  height: 10px;

  background-color: #fff;

  border: 1px solid rgba(204, 204, 204, 0.5);

  border-radius: 50%;

  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;

}



.sustainable-development-page7 .page-main .page-up .tab-title-box .tab-title .title.active {

  font-size: var(--font22);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.sustainable-development-page7 .page-main .page-up .tab-title-box .tab-title .title.active::before {

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  border-color: var(--color-active);

}



.sustainable-development-page7 .page-main .page-up .slide-num {

  position: absolute;

  right: 0;

  bottom: 0;

  z-index: 2;

  color: #fff;

  line-height: 46px;

  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) {

  .sustainable-development-page7 .page-main .page-up .slide-num {

    right: 0.4rem;

  }

}



.sustainable-development-page7 .page-main .page-up .slide-num .slide-btn {

  position: relative;

  margin: 0;

}



.sustainable-development-page7 .page-main .page-up .slide-num .slide-btn.swiper-button-prev {

  left: 0;

}



.sustainable-development-page7 .page-main .page-up .slide-num .slide-btn.swiper-button-next {

  right: 0;

}



.sustainable-development-page7 .page-main .page-up .slide-num .slide-btn:hover {

  background: none;

}



.sustainable-development-page7 .page-main .page-up .slide-num .slide-btn svg circle {

  display: none;

}



.sustainable-development-page7 .page-main .page-up .slide-num .slide-btn svg path {

  fill: #fff;

}



.sustainable-development-page7 .page-main .page-up .slide-num .line {

  background: none;

  height: auto;

}



.sustainable-development-page7 .page-main .page-up .swiper-main .sustainable-development-swiper7 {

  margin-top: 0.54rem;

  -webkit-animation-delay: 0.3s;

  -o-animation-delay: 0.3s;

  animation-delay: 0.3s;

}



.sustainable-development-page7 .page-main .page-up .swiper-main .sustainable-development-swiper7 div.swiper-slide.swiper-slide-active .swiper-box,

.sustainable-development-page7 .page-main .page-up .swiper-main .sustainable-development-swiper7 div.swiper-slide.swiper-slide-active .swiper-pagination {

  opacity: 1;

}



.sustainable-development-page7 .page-main .page-up .swiper-main .sustainable-development-swiper7 .swiper-wrapper .swiper-pagination {

  opacity: 1;

}



.sustainable-development-page7 .page-main .page-up .swiper-main .sustainable-development-swiper7 .swiper-box {

  opacity: 0;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.sustainable-development-page7 .page-main .page-up .swiper-main .sustainable-development-swiper7 .swiper-wrapper .swiper-pagination {

  position: relative;

  width: 100%;

  height: 0.08rem;

  background-color: rgba(204, 204, 204, 0.5);

  border-radius: 0.03rem;

  opacity: 0;

  margin-top: 0.2rem;

  overflow: hidden;

}



.sustainable-development-page7 .page-main .page-up .swiper-main .sustainable-development-swiper7 .swiper-wrapper .swiper-pagination .swiper-pagination-progressbar-fill {

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  border-radius: 0.03rem;

}



.sustainable-development-page7 .page-main .page-up .swiper-main .sustainable-development-swiper7 .swiper-box {

  position: relative;

}



.sustainable-development-page7 .page-main .page-up .swiper-main .sustainable-development-swiper7 .swiper-box .swiper-slide .item-box {

  opacity: 0.5;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.sustainable-development-page7 .page-main .page-up .swiper-main .sustainable-development-swiper7 .swiper-box .swiper-slide.swiper-slide-visible .item-box {

  opacity: 1;

}



.sustainable-development-page7 .page-main .page-up .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) {

  .sustainable-development-page7 .page-main .page-up .item-box {

    display: block;

  }

}



.sustainable-development-page7 .page-main .page-up .item-box .public-img {

  width: 62.109375%;

  max-width: 954px;

  border-radius: 0.1rem;

  overflow: hidden;

  order: 2;

}



@media (max-width: 1024px) {

  .sustainable-development-page7 .page-main .page-up .item-box .public-img {

    width: 100%;

    max-width: 100%;

    min-height: 200px;

  }

}



.sustainable-development-page7 .page-main .page-up .item-box .public-img::before {

  padding-top: 54.92662474%;

}



.sustainable-development-page7 .page-main .page-up .item-box .text-box {

  width: 37.23958333%;

  max-width: 572px;

  padding: 0.65rem 0.44rem 0.78rem 0.48rem;

  background: url(../images/sustainable-development/sustainable-development-img7-bg.jpg) no-repeat center;

  background-size: cover;

  border-radius: 0.1rem;

  overflow: hidden;

  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;

}



@media (max-width: 1024px) {

  .sustainable-development-page7 .page-main .page-up .item-box .text-box {

    width: 100%;

    max-width: 100%;

    padding: 0.6rem 0.4rem;

    margin-top: 0.2rem;

  }

}



.sustainable-development-page7 .page-main .page-up .item-box .text-box .title {

  color: #fff;

  line-height: 1.41666667em;

}



.sustainable-development-page7 .page-main .page-up .item-box .text-box .title span {

  display: block;

}



.sustainable-development-page7 .page-main .page-up .item-box .text-box .text-body {

  color: #fff;

  line-height: 1.75em;

  font-weight: lighter;

  margin-top: 0.34rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 3;

  overflow: hidden;

}



.sustainable-development-page7 .page-main .page-up .item-box .text-box .btn-container {

  margin-top: 0.48rem;

}



.sustainable-development-page7 .page-main .page-up .item-box .text-box .btn-container .more-primary {

  min-width: 140px;

  height: 0.46rem;

  padding: 0 0.38rem;

  background-color: #fff;

  border-radius: 99px;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  -webkit-justify-content: center;

  justify-content: center;

}



.sustainable-development-page7 .page-main .page-up .item-box .text-box .btn-container .more-primary .more-primary-str {

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



.sustainable-development-page7 .page-main .page-up .item-box .text-box .btn-container .more-primary:hover {

  background-color: transparent;

}



.sustainable-development-page7 .page-main .page-up .item-box .text-box .btn-container .more-primary:hover .more-primary-str {

  color: #fff;

  background: none;

  -webkit-background-clip: initial;

  -webkit-text-fill-color: initial;

}



.sustainable-development-page7 .page-main .page-down .list {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-gap: 0.3rem;

  margin-top: 0.62rem;

}



@media (max-width: 990px) {

  .sustainable-development-page7 .page-main .page-down .list {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 767px) {

  .sustainable-development-page7 .page-main .page-down .list {

    grid-template-columns: repeat(1, 1fr);

  }

}



.sustainable-development-page7 .page-main .page-down .list .item:hover .item-box .text-box .title {

  color: var(--color-active);

}



.sustainable-development-page7 .page-main .page-down .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  text-align: center;

}



.sustainable-development-page7 .page-main .page-down .list .item .item-box .public-img {

  overflow: hidden;

  border-radius: 0.1rem;

  margin-bottom: 0.2rem;

}



.sustainable-development-page7 .page-main .page-down .list .item .item-box .public-img::before {

  padding-top: 55.28455285%;

}



.sustainable-development-page7 .page-main .page-down .list .item .item-box .text-box .title {

  color: #333333;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 1;

  overflow: hidden;

}



.investor-relations-page1 {

  padding: 1.2rem 0;

}



.investor-relations-page1 .page-img {

  width: 100%;

  background: url(../images/investor-relations/investor-relations-bg.jpg) no-repeat center bottom;

  background-attachment: fixed;

  background-size: 100%;

}



.investor-relations-page1 .page-img img {

  display: none;

}



.investor-relations-page1 .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) {

  .investor-relations-page1 .page-main .wrap-box {

    display: block;

  }

}



.investor-relations-page1 .page-main .wrap-box .wrap-left {

  width: 31.90104167%;

  max-width: 490px;

}



@media (max-width: 1024px) {

  .investor-relations-page1 .page-main .wrap-box .wrap-left {

    width: 100%;

    max-width: 100%;

  }

}



.investor-relations-page1 .page-main .wrap-box .wrap-right {

  width: 66.015625%;

  max-width: 1014px;

}



@media (max-width: 1024px) {

  .investor-relations-page1 .page-main .wrap-box .wrap-right {

    width: 100%;

    max-width: 100%;

    margin-top: 0.8rem;

  }

}



.investor-relations-page1 .page-main .page-title {

  margin-top: 0.84rem;

  position: sticky;

  top: 180px;

  left: 0;

}



.investor-relations-page1 .page-main .text-body {

  color: #666666;

  line-height: 2em;

}



.investor-relations-page1 .page-main .text-body p {

  margin-bottom: 0.3rem;

}



.search-page1 {

  padding: 1.2rem 0;

}



.search-page1 .page-main .searchform {

  margin-bottom: 0.58rem;

  position: relative;

  z-index: 1;

}



.search-page1 .page-main .searchform .form-control1 input {

  background-color: #f8f8f8;

}



.search-page1 .page-main .list {

  width: 66.6015625%;

  max-width: 1023px;

  margin: auto;

}



@media (max-width: 1024px) {

  .search-page1 .page-main .list {

    width: 100%;

    max-width: 100%;

  }

}



.search-page1 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  padding: 0.6rem 0 0.52rem;

  border-bottom: 1px solid rgba(145, 150, 143, 0.2);

  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) {

  .search-page1 .page-main .list .item .item-box {

    display: block;

  }

}



.search-page1 .page-main .list .item .item-box .public-img {

  width: 18.67057674%;

  max-width: 191px;

  background-color: #f6f6f6;

  border-radius: 0.06rem;

}



@media (max-width: 1024px) {

  .search-page1 .page-main .list .item .item-box .public-img {

    width: 100%;

    margin-bottom: 0.28rem;

  }

}



.search-page1 .page-main .list .item .item-box .public-img::before {

  padding-top: 111.51832461%;

}



.search-page1 .page-main .list .item .item-box .text-box {

  width: 78.98338221%;

  max-width: 808px;

}



@media (max-width: 1024px) {

  .search-page1 .page-main .list .item .item-box .text-box {

    width: 100%;

    max-width: 100%;

  }

}



.search-page1 .page-main .list .item .item-box .text-box .title {

  color: #333333;

  line-height: 1.16666667em;

  margin-top: 0.06rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 1;

  overflow: hidden;

}



.search-page1 .page-main .list .item .item-box .text-box .title span {

  color: var(--color-active);

}



.search-page1 .page-main .list .item .item-box .text-box .date {

  color: #666666;

  opacity: 0.5;

  line-height: 1;

  margin-top: 0.15rem;

  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.09rem;

}



.search-page1 .page-main .list .item .item-box .text-box .date .icon {

  overflow: hidden;

}



.search-page1 .page-main .list .item .item-box .text-box .date .icon img,

.search-page1 .page-main .list .item .item-box .text-box .date .icon svg {

  width: 12px;

}



.search-page1 .page-main .list .item .item-box .text-box .text-body {

  color: #666666;

  line-height: 2em;

  margin-top: 0.22rem;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  overflow: hidden;

}



.search-page1 .page-main .list .item .item-box .text-box .text-body span {

  color: var(--color-active);

}



.search-page1 .page-main .list .item .item-box .text-box .type-box {

  display: -webkit-box;

  display: -ms-flexbox;

  display: -webkit-flex;

  display: flex;

  flex-wrap: wrap;

  -ms-flex-wrap: wrap;

  grid-gap: 0.2rem;

  margin-top: 0.19rem;

}



.search-page1 .page-main .list .item .item-box .text-box .type-box .type {

  padding: 0 0.2rem;

  color: var(--color-active);

  height: 38px;

  background-color: rgba(153, 153, 153, 0.1);

  border-radius: 0.06rem;

  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;

}



.search-page1 .page-main .list .item .item-box .text-box .type-box .type span {

  color: var(--color-active);

  background: -webkit-linear-gradient(0deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  background: linear-gradient(90deg, var(--color-blue-045) 0%, var(--color-green-008) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}



body.loadingshow {

  height: 100vh;

  overflow: hidden;

}



.loading {

  position: fixed;

  left: 0;

  top: 0;

  z-index: -99;

  width: 100%;

  height: 100vh;

  text-align: center;

  background-color: #ffffff;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  padding-top: 40px;

  box-sizing: border-box;

  /* opacity: 0; */

  visibility: hidden;

}



body.loadingshow .loading {

  /* opacity: 1; */

  z-index: 16;

  visibility: visible;

}



/*#mainbox.ymove{

	-webkit-transform: translateY(100vh);

	transform: translateY(100vh);

}

#mainbox{

	-webkit-transform: translateY(0);

	transform: translateY(0);

	-webkit-transition: all 0.4s ease;

	transition: all 0.4s ease;

}*/

.mainbox {

  opacity: 0;

  /*margin-top: 100vh;*/

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.loadingend .mainbox {

  opacity: 1;

  /*margin-top: 0;*/

}



.loading-container {

  position: relative;

  display: inline-block;

  max-width: 98%;

  margin: auto;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

}



.loading.active .loading-container {

  -webkit-transform: translateY(-100%);

  transform: translateY(-100%);

  opacity: 0;

}



.lines,

.active-lines {

  display: flex;

  align-items: stretch;

  flex-wrap: wrap;

  margin: auto;

  height: 50px;

  overflow: hidden;

  justify-content: space-between;

  gap: 30px;

}



.line {

  display: inline-block;

  width: 15px;

  height: 50px;

  /*margin-right: 30px;*/

  background-color: #ecedeb;

}



.active-lines {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 50px;

}



.lineactive {

  display: inline-block;

  width: 15px;

  height: 50px;

  /*margin-right: 30px;*/

  background-color: #00833d;

  opacity: 0;

  transition: opacity 0.5s;

}



.loading-content {

  /*overflow: hidden;*/

  box-sizing: border-box;

  height: 100vh;

  -webkit-transform: translateY(70vh);

  transform: translateY(70vh);

  -webkit-transition: all 1s ease;

  transition: all 1s ease;

}



.loading.active .loading-content {

  /* -webkit-transform: translateY(5%);

	transform: translateY(5%); */

  /*-webkit-transform: translateY(0);

	transform: translateY(0);*/

  -webkit-transform: translateY(-40px);

  transform: translateY(-40px);

  padding-top: 40px;

}



.loading-content .logozi {

  width: 98%;

  margin: auto;

  -webkit-transform: translateY(100%);

  transform: translateY(100%);

  opacity: 0;

  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 4s ease-in-out;

  transition: opacity 1s ease-in-out, transform 4s ease-in-out;

}



.loading-content .logozi.active {

  opacity: 1;

  -webkit-transform: translateY(0%);

  transform: translateY(0%);

}



.loading-content .logozi img {

  width: 100%;

}



.loading-content .imgbox {

  position: relative;

  width: 100%;

  -webkit-transform: translateY(100%);

  transform: translateY(100%);

}



.loading.active .loading-content .imgbox {

  -webkit-transition: all 3s ease;

  transition: all 3s ease;

  -webkit-transform: translateY(-10%);

  transform: translateY(-10%);

}



.loading-content .imgbox .img {

  width: 100%;

  text-align: center;

  position: relative;

  z-index: 2;

}



.loading-content .imgbox .img img {

  width: 87%;

}



.loading-content .imgbox .img.active img {

  animation: shake 2s linear infinite alternate;

}



.loading-content .btns {

  position: fixed;

  bottom: 15vh;

  left: 50%;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  z-index: 10;

}



.loading-content .btns span,

.loading-content .btns #loadhide {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 280px;

  height: 70px;

  border-radius: 35px;

  padding: 0 20px;

  box-sizing: border-box;

  background: #ffffff;

  color: #00833d;

  font-family: "Montserrat-Bold";

  font-size: 24px;

  font-weight: bold;

  text-transform: uppercase;

  cursor: pointer;

}



@media screen and (max-width: 1816px) and (min-width: 1025px) {



  .loading-content .btns span,

  .loading-content .btns #loadhide {

    min-width: 14.58333333vw;

    height: 3.64583333vw;

    border-radius: 1.82291667vw;

    font-size: 1.25vw;

    padding: 0 1vw;

  }

}



.linebox {

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100vh;

  mix-blend-mode: multiply;

  z-index: 1;

}



.linebox ul {

  display: flex;

}



.linebox ul li {

  position: absolute;

  top: 0;

  transform: translateY(110vh);

  list-style: none;

}



.linebox.active ul li {

  animation: slide-up 4s infinite linear;

}



.linebox ul li:nth-child(1) {

  left: 9%;

  animation-delay: 1s;

}



.linebox ul li:nth-child(2) {

  left: 40%;

  animation-delay: 0.4s;

}



.linebox ul li:nth-child(3) {

  left: 70%;

  animation-delay: 0.8s;

}



.linebox ul li:nth-child(4) {

  left: 92%;

}



.linebox ul li img {

  width: 12px;

}



@media screen and (max-width: 1024px) {

  .loading {

    display: flex;

    align-items: center;

    justify-content: center;

  }



  .loading .box {

    position: relative;

    overflow: hidden;

  }



  .loading-container {

    transform: translateY(20vh);

  }



  .loading-content {

    height: auto;

    /* overflow: hidden; */

  }



  .loading-content .imgbox {

    padding-bottom: 30px;

  }



  .loading-content .btns {

    bottom: 50px;

  }



  .loading-content .btns span,

  .loading-content .btns #loadhide {

    min-width: 240px;

    height: 60px;

    border-radius: 30px;

    font-size: 20px;

  }



  .lines,

  .active-lines {

    gap: 24px;

    height: 40px;

  }



  .line,

  .lineactive {

    width: 10px;

    height: 40px;

  }



  .linebox ul li img {

    max-width: 8px;

  }

}



@media screen and (max-width: 640px) {



  .loading-content .btns span,

  .loading-content .btns #loadhide {

    min-width: 200px;

    height: 50px;

    font-size: 16px;

  }



  .loading-container {

    transform: translateY(15vh);

  }



  .lines,

  .active-lines {

    gap: 20px;

    height: 36px;

  }



  .line,

  .lineactive {

    width: 8px;

    height: 36px;

  }



  .linebox ul li img {

    max-width: 6px;

  }

}



@media screen and (max-width: 480px) {



  .loading-content .btns span,

  .loading-content .btns #loadhide {

    min-width: 41vmin;

    height: 10.5vmin;

    font-size: 3.33333333vmin;

    padding: 0 4vmin;

  }



  .loading-container {

    transform: translateY(12vh);

  }



  .lines,

  .active-lines {

    gap: 4.2vmin;

    height: 7.5vmin;

  }



  .line,

  .lineactive {

    width: 1.7vmin;

    height: 7.5vmin;

  }



  .linebox ul li img {

    max-width: 1.25vmin;

  }

}



@keyframes slide-up {

  from {

    transform: translateY(100vh);

  }



  to {

    transform: translateY(-100%);

  }

}



@keyframes shake {

  0% {

    transform: translateY(0);

  }



  100% {

    transform: translateY(-30px);

  }

}



.header {

  /* position: absolute; */

  position: fixed;

  left: 0;

  top: 0;

  z-index: 15;

  width: 100%;

  border-bottom: rgba(255, 255, 255, 0.16) solid 1px;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;
  background-color: rgba(148, 148, 148, 0.3);

}



body.loadingshow #mainbox {

  position: relative;

}



body.loadingshow .header {

  position: absolute;

}



.header.white,

.header.header-bg,

.header.act,

.mbox .header {

  -webkit-backdrop-filter: saturate(100%);

  backdrop-filter: saturate(100%);

}



.header:before {

  content: '';

  display: block;

  position: absolute;

  left: 0;

  width: 100%;

  top: 0;

  z-index: -1;

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  background-color: #fff;

  transition: height 0.7s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;

  height: 0;

}



.header.white:before,

.mbox .header:before,

.header.header-bg:before {

  height: 100%;

}



.header.act:before,

.header.hover_on:before,

.header.white.hover_on:before,

.mbox .header.hover_on:before,

.mbox .header-bg.hover_on:before {

  max-height: 280px;

  height: 100%;

}



.header.displace {

  top: 0;

}



@media screen and (max-width: 1920px) and (min-width: 1025px) {

  .header.displace {

    top: 0;

  }

}



@media screen and (max-width: 1024px) {

  .header.displace {

    top: 0;

  }

}



@media screen and (max-width: 1024px) {

  .header.displace {

    top: 0;

  }

}



.header .box {

  display: flex;

  align-items: center;

  justify-content: space-between;

  /*width: 80%;*/

  max-width: 1536px;

  width: 90%;

  margin-left: auto;

  margin-right: auto;

}



.header .box>div {

  flex-grow: 1;

}



.header .box .logo {

  flex: 1;

}



.header .box .logo a img {

  max-height: 70px;

}



.header .box .nav {

  flex: 0;

}



.header .box .headright {

  flex: 1;

}



.header .box .nav ul {

  display: flex;

  align-items: center;

}



.header .box .nav ul li {

  position: relative;

  display: inline-flex;

  align-items: center;

  padding: 0 20px;

  height: 99px;

}



.header .box .nav ul li:before {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  margin: auto;

  width: 0%;

  height: 3px;

  background: #00833e;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.header .box .nav ul li:hover:before {

  width: calc(100% - 40px);

}



.header .box .nav ul li>a {

  color: #ffffff;

  font-size: 16px;

  white-space: nowrap;

}



.header .box .nav>ul>li:hover>a {

  color: #00833e !important;

}



.header.white .box .nav ul li a,

.header.header-bg .box .nav ul li a,

.header.hover_on .box .nav ul li a {

  color: #333333;

}



.header .navcell {

  display: none;

  position: absolute;

  top: 100%;

  left: 50%;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  padding: 12px 0px;

  min-width: 160px;

  background: #ffffff;

}



.header .navcell.act {

  display: block;

}



.header .navcell a {

  display: flex;

  justify-content: center;

  align-items: center;

  width: 100%;

  min-height: 40px;

  text-align: center;

  color: #333333;

  font-size: 16px;

  padding: 6px 15px;

  box-sizing: border-box;

  -webkit-transform: translate3d(0, 15px, 0);

  transform: translate3d(0, 15px, 0);

  opacity: 0;

}



.header .navcell.act a {

  -webkit-animation: fadeUpSmall 1s forwards cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;

  -webkit-animation-delay: calc(0.1s * var(--i));

  animation: fadeUpSmall 1s forwards cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;

  animation-delay: calc(0.1s * var(--i));

}



.header .navcell a:hover {

  color: #00833e !important;

}



@-webkit-keyframes fadeUpSmall {

  0% {

    opacity: 0;

    -webkit-transform: translate3d(0, 15px, 0);

    transform: translate3d(0, 15px, 0);

  }



  100% {

    opacity: 1;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}



@keyframes fadeUpSmall {

  0% {

    opacity: 0;

    -webkit-transform: translate3d(0, 15px, 0);

    -ms-transform: translate3d(0, 15px, 0);

    transform: translate3d(0, 15px, 0);

  }



  100% {

    opacity: 1;

    -webkit-transform: translate3d(0, 0, 0);

    -ms-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}



.header .box .headright {

  display: flex;

  justify-content: flex-end;

  align-items: center;

}



.header .box .headright .wrap {

  position: relative;

  z-index: 1;

  display: inline-flex;

  align-items: center;

  padding: 0 20px;

}



.header .box .headright .wrap:before {

  content: '';

  position: absolute;

  left: 0;

  top: 50%;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  z-index: -1;

  width: 100%;

  height: 36px;

  border-radius: 18px;

  background: -webkit-linear-gradient(to right, #045ebf, #00833e);

  background: linear-gradient(to right, #045ebf, #00833e);

}



.header .searchdiv {

  position: relative;

  padding-right: 10px;

  margin-right: 15px;

}



.header .searchdiv:before {

  content: '';

  position: absolute;

  right: 0;

  top: 50%;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  width: 1px;

  height: 18px;

  background: rgba(255, 255, 255, 0.16);

}



.header .show-search-btn {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 24px;

  height: 36px;

  transition-duration: 0.3s;

  text-align: center;

  color: #fff;

  overflow: hidden;

  cursor: pointer;

}



.header .show-search-btn img {

  cursor: pointer;

  max-width: 14px;

}



.header .search {

  position: fixed;

  z-index: 6;

  top: 100px;

  right: 0;

  height: auto;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";

  opacity: 0;

  visibility: hidden;

  transition-property: opacity, visibility;

}



.header .search.search-is-open {

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

  opacity: 1;

  visibility: visible;

  transition-delay: 0s;

}



.header .search.search-is-open .search__container {

  transform: translateY(0) translateZ(0);

}



.header .search__container {

  position: relative;

  z-index: 2;

  transform: translateY(-100%) translateZ(0);

  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);

}



.header .search__overlay {

  position: fixed;

  z-index: 1;

  top: 0;

  right: 0;

  width: 100%;

  height: 100%;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";

  opacity: 0.2;

}



.header .search,

.search__overlay {

  left: 0;

}



.header .search-header {

  position: relative;

  padding-top: 60px;

  padding-bottom: 60px;

}



.header .row {

  position: relative;

}



.header .search-header .search-loader {

  position: absolute;

  top: 17px;

  left: 2.6vw;

}



.header .search-header .search-btn-close {

  position: absolute;

  top: 0;

  right: 0;

}



.header .search-header .search-input {

  font-size: 24px;

  width: 100%;

  -webkit-appearance: none;

  -moz-appearance: none;

  border: 0;

  background: none;

}



.header .search-header .search-input__wrapper:after {

  content: "";

  position: absolute;

  z-index: 1;

  bottom: 0;

  left: 0;

  right: 0;

  height: 1px;

  background-color: #d9d9d9;

  width: 100%;

}



.header .search-item {

  position: relative;

  display: block;

  overflow: hidden;

  transition: background-color 0.2s, opacity 0.3s, color 0.3s;

  transform-origin: 0 0;

  color: #1d1d1d;

}



.header .search-item:after {

  content: "";

  position: absolute;

  z-index: 1;

  bottom: 0;

  left: 8.333%;

  right: 8.333%;

  height: 1px;

  background-color: #d9d9d9;

}



.header .search-item .solr-highlight {

  background-color: rgba(101, 32, 142, 0.2);

}



.header .search-close {

  position: absolute;

  display: block;

  top: 0;

  right: 0;

  width: 28px;

  height: 72px;

  background: url(../images/close.png) no-repeat center;

  background-size: 100% auto;

  cursor: pointer;

  z-index: 6;

  transition-duration: 0.5s;

}



.header .search-close:hover {

  transform: rotate(90deg);

}



.header .search .submit0 {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 5;

  width: 28px;

  height: 75px;

  background: url(../images/searchf.png) no-repeat center;

  border: none;

  background-size: 100% auto;

  box-sizing: border-box;

  display: block;

}



.header .search-header .search-input {

  display: block;

  text-indent: 80px;

  line-height: 75px;

  font-size: 24px;

  color: #333;

  width: 100%;

  -webkit-appearance: none;

  -moz-appearance: none;

  border: 0;

  border-bottom: 1px solid #d9d9d9;

}



@media screen and (max-width: 1024px) {

  .header .search {

    top: 70px;

  }



  .header .search-header {

    padding-top: 40px;

    padding-bottom: 50px;

  }



  .header .search .submit0,

  .header .search-close {

    width: 22px;

    height: 50px;

  }



  .header .search-header .search-input {

    text-indent: 36px;

    line-height: 50px;

    font-size: 18px;

  }



  .header:before {

    display: none;

  }



  .header .search {

    transition-duration: 0.5s;

    transition-delay: 0.5s;

  }



  .header .search-header .search-input {

    border-bottom: 1px solid #d9d9d9;

  }



  .header .search__container {

    background: #FFFFFF;

  }

}



@media screen and (max-width: 768px) {

  .header .search-header {

    padding-top: 30px;

    padding-bottom: 40px;

  }



  .header .search .submit0,

  .header .search-close {

    width: 20px;

    height: 45px;

  }



  .header .search-header .search-input {

    text-indent: 30px;

    line-height: 45px;

    font-size: 16px;

  }

}



@media screen and (max-width: 640px) {

  .header .search {

    top: 60px;

  }

}



@media screen and (max-width: 480px) {

  .header .search-header {

    padding-top: 9vmin;

    padding-bottom: 9vmin;

  }



  .header .search .submit0,

  .header .search-close {

    width: 4.8vmin;

    height: 10.87vmin;

  }



  .header .search-header .search-input {

    text-indent: 7.25vmin;

    line-height: 10.87vmin;

    font-size: 3.865vmin;

  }



  .header .show-search-btn {

    width: 9.5vmin;

  }

}



.head-nation {

  position: relative;

}



.header .head-nation .current {

  cursor: pointer;

  display: flex;

  align-items: center;

  height: 99px;

  text-align: center;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  padding-left: 20px;

  background: url(../images/language.png) left center no-repeat;

  background-size: 16px auto;

}



.mbox .header .head-nation .current,

.header.white .head-nation .current,

.header.header-bg .head-nation .current {

  background: url(../images/language.png) left center no-repeat;

  background-size: 16px auto;

}



.header .head-nation .current .name {

  padding-right: 12px;

  background: url(../images/arrow.png) right center no-repeat;

  background-size: 8px auto;

  font-size: 14px;

  color: #ffffff;

  margin-top: 2px;

  -webkit-transition: all 0.3s ease;

  transition: all 0.3s ease;

  text-align: center;

}



.head-nation ul {

  position: absolute;

  left: 0;

  left: 50%;

  -webkit-transform: translate(-50%, 10px);

  transform: translate(-50%, 10px);

  top: 90%;

  z-index: 100;

  background-color: #ffffff;

  padding: 10px 0px;

  text-align: left;

  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);

  opacity: 0;

  visibility: hidden;

  z-index: -1;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.head-nation:hover ul {

  opacity: 1;

  visibility: visible;

  z-index: 1;

  -webkit-transform: translate(-50%, 0);

  transform: translate(-50%, 0);

}



.head-nation ul li a {

  display: block;

  font-size: 14px;

  color: #666666;

  line-height: 2.2;

  min-width: 90px;

  text-align: center;

  padding: 0px 20px;

  white-space: nowrap;

  box-sizing: border-box;

}



.head-nation ul li a:hover {

  color: #0363ae;

}



.header.act .box .nav ul li a {

  color: #333333;

}



.menubtn {

  display: none;

  position: relative;

  width: 30px;

  height: 50px;

  cursor: pointer;

}



.menubtn .menu-i {

  width: 23px;

  height: 2px;

  right: 0;

  position: absolute;

  font-style: normal;

  background-color: #FFFFFF;

  display: block;

  transition: all 0.5s;

  border-radius: 2px;

}



.mbox .header .menubtn .menu-i,

.header.white .menubtn .menu-i,

.header.header-bg .menubtn .menu-i,

.header.act .menubtn .menu-i {

  background-color: #333333;

}



.menubtn .menu-i-1 {

  top: 15px;

}



.menubtn .menu-i-2 {

  top: 23px;

}



.menubtn .menu-i-3 {

  top: 31px;

}



.mbox .menubtn .menu-i-1,

.menubtn.on .menu-i-1 {

  transform: translateY(8px) rotate(45deg);

}



.mbox .menubtn .menu-i-2,

.menubtn.on .menu-i-2 {

  opacity: 0;

}



.mbox .menubtn .menu-i-3,

.menubtn.on .menu-i-3 {

  transform: translateY(-8px) rotate(-45deg);

}



.m-nav {

  /*position: fixed;*/

  position: absolute;

  top: 70px;

  left: 0;

  width: 100%;

  height: 0px;

  z-index: 99;

  background-color: #FFFFFF;

  overflow-y: scroll;

  box-sizing: border-box;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

}



.mbox .m-nav {

  height: calc(100vh - 70px);

}



.m-nav ul {

  padding-left: 20px;

  padding-top: 5px;

  padding-bottom: 10px;

}



.m-nav>ul {

  padding-top: 25px;

  padding-left: 5%;

  padding-right: 5%;

}



.m-nav>ul>li {

  width: 100%;

  text-align: left;

  border-bottom: #e5e5e5 solid 1px;

  box-sizing: border-box;

  list-style: none;

}



.m-nav ul li a,

.m-nav ul li .headtitle {

  display: block;

  /*font-family: "SourceHanSansCN-Regular";*/

  line-height: 1.7;

  color: #333333;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.m-nav ul li .headtitle a {

  display: inline-block;

}



.m-nav>ul>li>a,

.m-nav>ul>li>.headtitle {

  font-size: 17px;

  padding: 14px 0px;

}



.m-nav ul li:hover>a,

.m-nav ul li .headtitle.on,

.m-nav ul li .headtitle.on>a {

  color: #00833e;

}



.m-nav ul li ul li .headtitle,

.m-nav>ul>li>ul>li>a {

  font-size: 16px;

  padding: 7px 0px;

}



.m-nav ul li .headtitle {

  position: relative;

  padding-right: 40px;

}



.m-nav>ul>li>a {

  position: relative;

}



.m-nav ul li .headtitle i,

.m-nav>ul>li>a i {

  position: absolute;

  right: 0;

  top: 0;

  width: 40px;

  height: 100%;

  background: url(../images/icon27a.png) center no-repeat;

  background-size: 7px auto;

  transition: all 0.4s ease;

}



.m-nav ul li .headtitle.on i {

  background: url(../images/icon27b.png) center no-repeat;

  background-size: 7px auto;

  -webkit-transform: rotate(90deg);

  transform: rotate(90deg);

}



.m-nav ul li ul {

  display: none;

}



.m-nav>ul>li>ul {

  border-top: #e5e5e5 solid 1px;

  padding-top: 15px;

  padding-bottom: 15px;

}



.m-nav ul li ul li ul li a {

  font-size: 15px;

  padding: 8px 0px;

}



.msearch {

  display: flex;

  margin: 40px auto 0px;

  width: 90%;

  overflow: hidden;

  box-sizing: border-box;

}



.msearch form {

  display: flex;

  width: 100%;

  border-radius: 25px;

  padding: 0px 25px;

  background: #EEEEEE;

  box-sizing: border-box;

  overflow: hidden;

}



.msearch .text {

  border: none;

  outline: none;

  background: none;

  font-size: 15px;

  color: #00a6ca;

  width: calc(100% - 40px);

  height: 42px;

  box-sizing: border-box;

}



.msearch .btns {

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  box-sizing: inherit;

  background: none;

  border: none;

}



.msearch .btns img {

  max-width: 18px;

}



.istop {

  position: fixed;

  bottom: 20vh;

  right: 2.8vw;

  z-index: 11;

}



.istop a {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  width: 46px;

  height: 46px;

  font-family: "Montserrat-Light";

  font-size: 10px;

  color: #FFFFFF;

  border-radius: 50%;

  box-sizing: border-box;

  background: -webkit-linear-gradient(to right, #045ebf, #00833e);

  background: linear-gradient(to right, #045ebf, #00833e);

}



.istop a img {

  max-width: 9px;

}



@media screen and (max-width: 480px) {

  .istop a {

    width: 42px;

    height: 42px;

  }

}



.footer {

  padding-top: 6.25%;

  background: #333333;

}



.footer .box {

  margin-bottom: 2.60416667%;

}



.footer .box .container {

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

}



.footer .box .footernav {

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  width: 70%;

}



.footer .box .footernav .title {

  position: relative;

  font-family: "PingFangBold";

  color: #ffffff;

  font-size: 18px;

  margin-bottom: 20px;

}



.footer .box .footernav .title i {

  right: 0;

  width: 50px;

  height: 50px;

  position: absolute;

  right: -10px;

  top: 0;

  bottom: 0;

  margin: auto;

  cursor: pointer;

  transition: all 0.5s;

  display: none;

}



.footer .box .footernav .item.on .title i {

  -webkit-transform: rotate(45deg);

  transform: rotate(45deg);

}



.footer .box .footernav .title i::before {

  content: '';

  width: 12px;

  position: absolute;

  height: 2px;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  margin: auto;

  background: #333333;

}



.footer .box .footernav .title i::after {

  content: '';

  height: 12px;

  position: absolute;

  width: 2px;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  margin: auto;

  background: #333333;

}



.footer .box .footernav .item ul li {

  margin-bottom: 15px;

}



.footer .box .footernav .item ul li a {

  display: block;

  font-family: "PingFangRegular";

  color: #cccccc;

  font-size: 14px;

  cursor: pointer;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.footer .box .footernav .item ul li a:hover {

  color: #00833e;

}



.footer .footinfor {

  width: 22%;

}



.footer .footinfor ul li {

  display: flex;

  align-items: baseline;

  margin-bottom: 20px;

}



.footer .footinfor ul li .ic {

  margin-right: 5px;

}



.footer .footinfor ul li .ic img {

  max-width: 16px;

}



.footer .footinfor ul li .text-body {

  flex: 1;

}



.footer .footinfor ul li .text-body .t1 {

  color: rgba(102, 102, 102, 0.6);

  font-size: 14px;

}



.footer .footinfor ul li .text-body .t2 {

  color: #cccccc;

  font-size: 18px;

}



.footer .footinfor ul li .text-body .t3 {

  color: #cccccc;

  font-size: 16px;

}



.footer .footinfor .follow {

  display: flex;

  align-items: flex-start;

  margin-top: 5px;

}



.footer .footinfor .follow dd {

  position: relative;

  margin-right: 10px;

}



.footer .footinfor .follow dd a {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 32px;

  height: 32px;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.06);

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.footer .footinfor .follow dd a img {

  width: 68.75%;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.footer .footinfor .follow dd:hover a {

  background: #00833e;

}



.footer .footinfor .follow dd:hover a img {

  -webkit-filter: brightness(0) invert(1);

  filter: brightness(0) invert(1);

}



.footer .footinfor .follow dd .qrcode {

  position: absolute;

  left: 50%;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: 100%;

  width: 100px;

  opacity: 0;

  visibility: hidden;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.footer .footinfor .follow dd:hover .qrcode {

  opacity: 1;

  visibility: visible;

}



.footer .footinfor .follow dd .qrcode .img {

  overflow: hidden;

  background-color: #FFFFFF;

}



.footer .footinfor .follow dd .qrcode .img img {

  width: 100%;

}



.footer .footinfor .follow dd .qrcode .sjx {

  display: block;

  width: 0;

  height: 0;

  margin: auto;

  border-style: solid;

  border-width: 8px;

  border-color: #FFFFFF transparent transparent transparent;

}



.footer .footerbottom .container {

  display: flex;

  justify-content: space-between;

  padding-top: 30px;

  padding-bottom: 30px;

  border-top: rgba(204, 204, 204, 0.5) solid 1px;

}



.footer .copylink {

  display: flex;

  align-items: center;

  justify-content: flex-start;

  flex: 1;

  color: #cccccc;

  font-size: 14px;

  line-height: 1.7;

}



.footer .copylink a {

  color: #999999;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.footer .copylink .copyright a {

  margin-left: 20px;

}



.footer .copylink a:hover {

  color: #cccccc;

}



.footer .poweredBy {

  margin-left: 45px;

}



.footer .poweredBy:hover,

.footer .poweredBy:hover a {

  color: #333333;

}



.footer .footerbottom .text a {

  color: #999999;

  font-size: 14px;

  line-height: 1.7;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.footer .footerbottom .text a:hover {

  color: #333333;

}



@media screen and (max-width: 1024px) {

  .footer .box .footernav {

    width: 100%;

    flex-wrap: wrap;

    display: none;

  }



  .footer .box .footernav .item {

    width: 100%;

  }



  .footer .box .footernav .title {

    padding-top: 20px;

    padding-bottom: 20px;

    margin-bottom: 0;

    border-bottom: rgba(255, 255, 255, 0.1) solid 1px;

  }



  .footer .box .footernav .title {

    font-size: 19px;

  }



  .footer .box .footernav .title i {

    display: block;

  }



  .footer .box .footernav .item ul {

    display: none;

  }



  .footer .box .footernav .item ul li a {

    font-size: 16px;

    line-height: 1.7;

  }



  .footer .box .footernav .item>ul>li:last-child {

    margin-bottom: 10px;

  }



  .footer .footinfor {

    width: 100%;

    margin-top: 30px;

  }



  .footer .footinfor ul li .ic img {

    max-width: 20px;

  }



  .footer .footinfor ul li .text-body .t1 {

    font-size: 16px;

  }



  .footer .footinfor ul li .text-body .t2 {

    font-size: 20px;

    margin-top: 5px;

  }



  .footer .footinfor ul li .text-body .t3 {

    font-size: 18px;

    margin-top: 5px;

  }



  .footer .footinfor .follow {

    margin-top: 10px;

  }



  .footer .footerbottom .container {

    padding-top: 20px;

    padding-bottom: 20px;

    display: block;

    text-align: center;

  }



  .footer .copylink,

  .footer .text {

    display: inline;

  }



  .footer .copylink .copyright a {

    margin-left: 10px;

    display: block;

  }



  .footer .poweredBy {

    margin-left: 20px;

  }

}



@media screen and (max-width: 768px) {

  .footer {

    padding-top: 40px;

  }



  .footer .box .footernav .title {

    padding-top: 15px;

    padding-bottom: 15px;

    font-size: 18px;

  }



  .footer .box .footernav .item ul li a {

    font-size: 14px;

  }



  .footer .footinfor {

    margin-top: 20px;

  }



  .footer .footinfor ul li .ic img {

    max-width: 16px;

  }



  .footer .footinfor ul li .text-body .t1 {

    font-size: 14px;

  }



  .footer .footinfor ul li .text-body .t2 {

    font-size: 16px;

  }



  .footer .footinfor ul li .text-body .t3 {

    font-size: 16px;

  }

}



.lunbotu {

  position: relative;

  transform: translate3d(0, 0, 0);

  overflow: hidden;

}



.lunbotu .swiper-slide {

  transform: translate3d(0, 0, 0);

}



.lunbotu .swiper-slide-active {

  pointer-events: auto;

}



.lunbotu .swiper-slide a {

  display: block;

  width: 100%;

  overflow: hidden;

}



.lunbotu .swiper-slide a>img {

  width: 100%;

  height: 100vh;

  object-fit: cover;

  -webkit-transform: scale(1.2);

  transform: scale(1.2);

  -webkit-transition: all 2s cubic-bezier(0.34, 0.34, 0.27, 0.91);

  transition: all 2s cubic-bezier(0.34, 0.34, 0.27, 0.91);

}



.lunbotu .swiper-slide-active a>img {

  -webkit-transform: scale(1);

  transform: scale(1);

}



.lunbotu .video-box {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  z-index: 5;

}



.lunbotu .video-box video {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.swiper-button {

  position: absolute;

  bottom: 20%;

  left: 50%;

  -webkit-transform: translate(-50%, 0);

  transform: translate(-50%, 0);

  /*width: 80%;*/

  max-width: 1536px;

  width: 90%;

  z-index: 10;

}



.swiper-button span {

  display: inline-flex;

  align-items: center;

  flex-direction: row-reverse;

}



.lunbotu .swiper-button-next,

.lunbotu .swiper-button-prev {

  position: relative;

  top: 0;

  left: auto;

  right: auto;

  transform: none;

  width: 56px;

  height: 56px;

  box-sizing: border-box;

  border-radius: 50%;

  background: none;

}



.lunbotu .swiper-button-next:before,

.lunbotu .swiper-button-prev:before {

  content: '';

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  border-radius: 50%;

  border: #ffffff solid 1px;

  box-sizing: border-box;

  opacity: 0.5;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.lunbotu .swiper-button-prev,

.lunbotu.swiper-container-rtl .swiper-button-next {

  margin-right: 22px;

}



.lunbotu .swiper-button-next i,

.lunbotu .swiper-button-prev i {

  position: absolute;

  left: 0;

  top: 0;

  display: block;

  width: 100%;

  height: 100%;

  border-radius: 50%;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.lunbotu .swiper-button-prev i,

.lunbotu.swiper-container-rtl .swiper-button-next i {

  background: url(../images/icon1.png) center no-repeat;

  background-size: 12px auto;

  opacity: 0.5;

}



.lunbotu .swiper-button-next i,

.lunbotu.swiper-container-rtl .swiper-button-prev i {

  background: url(../images/icon2.png) center no-repeat;

  background-size: 12px auto;

}



.lunbotu .swiper-button-prev:hover:before {

  opacity: 1;

}



.lunbotu .swiper-button-next:hover i,

.lunbotu .swiper-button-prev:hover i {

  opacity: 1;

}



.lunbotu .swiper-button svg {

  display: block;

  margin: auto;

  width: 56px;

  height: 56px;

  position: relative;

  z-index: 5;

  transform: rotate(-45deg);

  -webkit-transform: rotate(-45deg);

}



.lunbotu .swiper-button svg circle {

  stroke-width: 1px;

  stroke: #fff;

  stroke-dasharray: 300%;

  stroke-dashoffset: 300%;

  opacity: 0;

}



.lunbotu .swiper-button svg.active circle {

  opacity: 1;

  stroke-dashoffset: 0;

  animation: draw 4s ease-out forwards;

}



@keyframes draw {

  0% {

    stroke-dashoffset: 300%;

  }



  100% {

    stroke-dashoffset: 0%;

  }

}



.mImg {

  display: none;

}



.bannerText {

  position: absolute;

  bottom: 35%;

  left: 50%;

  -webkit-transform: translate(-50%, 0);

  transform: translate(-50%, 0);

  z-index: 7;

  box-sizing: border-box;

}



.bannerText .box {

  width: 100%;

}



.bannerText .box h2 {

  color: #FFFFFF;

  line-height: 1.1;

  font-weight: bold;

}



@media (max-width: 767px) {

  .bannerText .box h2 {

    font-size: var(--font38);

  }

}



.bannerText .box .text-body {

  font-family: "Montserrat-Light";

  margin-top: 24px;

  color: #FFFFFF;

  line-height: 1.4;

}



.size88 {

  font-size: 88px;

}



.size68 {

  font-size: 68px;

}



.size44 {

  font-size: 44px;

}



.size36 {

  font-size: 36px;

}



.size32 {

  font-size: 32px;

}



.size24 {

  font-size: 24px;

}



.size22 {

  font-size: 22px;

}



.size18 {

  font-size: 18px;

}



.size16 {

  font-size: 16px;

}



.size14 {

  font-size: 14px;

}



.padt120 {

  padding-top: 120px;

}



.padt150 {

  padding-top: 150px;

}



.padb120 {

  padding-bottom: 120px;

}



/**/

.i-title .font18 {

  position: relative;

  font-family: "Montserrat-Light";

  color: #666666;

}



.i-title .font18:before {

  content: '';

  position: absolute;

  left: -12px;

  top: 8px;

  width: 4px;

  height: 4px;

  background: #00833e;

  border-radius: 50%;

}



.i-title .font44 {

  color: #333333;

  line-height: 1.2;

  font-weight: bold;

  margin-top: 8px;

}



.i-title .font44 span {

  color: transparent;

  background: -webkit-linear-gradient(to right, #045ebf, #00833e);

  background: linear-gradient(to right, #045ebf, #00833e);

  -webkit-background-clip: text;

  background-clip: text;

  -webkit-text-fill-color: transparent;

  text-fill-color: transparent;

  -webkit-box-decoration-break: clone;

  box-decoration-break: clone;

}



.i-title.white .font18,

.i-title.white .font44 {

  color: #FFFFFF;

}



.i-title .font18:before {

  background: #FFFFFF;

}



.i-title.white .font44 span {

  color: #FFFFFF;

  background: none;

  -webkit-text-fill-color: #FFFFFF;

  text-fill-color: #FFFFFF;

}



.index_section1 {

  position: relative;

  z-index: 12;

}



.index_section1 .lunbotu {

  position: absolute;

  left: 0;

  top: 0;

  z-index: 10;

  width: 100%;

  height: 100vh;

  background: #ffffff;

}



.index_section1 .circle {

  position: absolute;

  left: -50vw;

  top: calc(50vh - 100vw);

  z-index: 12;

  width: 200vw;

  height: 200vw;

  border: 96.5vw solid #fff;

  border-radius: 50%;

  box-sizing: border-box;

  transform: scale(1);

  -webkit-transform: scale(1);

  pointer-events: none;

  opacity: 0;

}



.index_about {

  width: 100%;

  min-height: 100vh;

  box-sizing: border-box;

  background: #fcfcfc;

}



.index_about .box {

  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  background: #ffffff;

}



@media screen and (min-width: 1025px) {

  .index_about .box {

    padding-top: 45vh;

  }

}



.index_about .box .textbox {

  width: 48.7%;

  padding-left: calc(48.7% - 745px);

  box-sizing: border-box;

  position: relative;

  left: calc(26.5% - ((48.7% - 745px) / 2));

  top: -30vh;

}



@media screen and (max-width: 1816px) and (min-width: 1025px) {

  .index_about .box .textbox {

    padding-left: 10%;

    left: 21.5%;

  }

}



.index_about .box .textbox .i-title {

  /*padding-top: 97vh;*/

  /* padding-top: 85vh; */

  padding-top: 46vh;

  position: relative;

}



.index_about .box .textbox .i-title .font44 {

  text-align: left;

  -webkit-transform: translateY(50px);

  transform: translateY(50px);

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

}



.index_about .box.on .textbox .i-title .font44 {

  -webkit-transform: translateY(0);

  transform: translateY(0);

}



.index_about .box .textbox .text-body {

  position: relative;

  margin-top: 30px;

  color: #cccccc;

  line-height: 1.7;

}



.index_about .box .textbox .i-title .font44 span {

  display: inline-block;

  transform: translateX(19%);

}



@media screen and (max-width: 1536px) {



  .index_about .box .textbox .i-title .size44 span,

  .index_about .box .textbox .i-title .font44 span {

    transform: translateX(19%);

  }

}



/*.index_about .box .textbox .i-title .font44 span{

	padding-left: 2vw;

}*/

.index_about .box .textbox .i-title .font18,

.index_about .box .textbox .text-body {

  opacity: 0;

}



.index_about .box .textbox .text-body .t2 {

  position: absolute;

  left: 0;

  top: 0;

  padding-bottom: 150%;

  width: 100%;

  color: #00833e;

  clip-path: polygon(0% 0%, 0% 0%, 0% 0%);

}



.index_about .box .imgbox {

  position: sticky;

  top: 45vh;

  /*margin-top: 38vh;*/

  margin-top: 0;

  /*margin-right: 46.53645833333333vw;*/

  margin-right: 46vw;

  width: 6.92708333vw;

  -webkit-transform: translateY(50px);

  transform: translateY(50px);

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

}



.index_about .box.on .imgbox {

  -webkit-transform: translateY(0);

  transform: translateY(0);

}



.index_about .box .imgbox .logo_i {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

}



.index_about .box .imgbox .logo_i img {

  display: block;

  width: 100%;

}



.index_about .box .imgbox ul {

  position: relative;

  display: block;

  width: 100%;

}



.index_about .box .imgbox ul li {

  opacity: 0;

}



.index_about .box .imgbox ul li.ic1 {

  position: absolute;

  left: 0;

  top: 0;

  z-index: 3;

  width: 100%;

  clip-path: inset(0% 0% 0%);

}



/*.index_about .box .imgbox ul li.ic2{

	position: relative;

}

.index_about .box .imgbox ul li.ic2:before{

	content: '';

	position: absolute;

	left: 0;

	top: 0;

	width: 100%;

	height: 100%;

	background: url(../images/img22.svg) center no-repeat;

	background-size: 100% 100%;

}*/

.index_about .box .imgbox ul li img {

  display: block;

  width: 100%;

}



.index-section2 {

  position: relative;

  /* z-index: 67; */

  z-index: 6;

  min-height: 100vh;

}



.index-section2 .pin-spacer {

  max-width: 100%;

}



.index-section2 .box {

  pointer-events: none;

  position: absolute;

  width: 100%;

  height: 100vh;

  top: 0;

  left: 0;

  z-index: 30;

}



.index-section2 .box .wrap {

  position: absolute;

  top: 18%;

  left: 40%;

  transform: translate(-50%, -50%);

  display: flex;

  align-items: center;

  justify-content: center;

}



@media screen and (max-width: 1921px) {

  .index-section2 .box .wrap {

    left: 30%;

  }

}



.index-section2 .box .item {

  /*width: 25.625vw;

	height: 25.625vw;*/

  width: 492px;

  height: 492px;

  position: relative;

  display: flex;

  flex-flow: column;

  justify-content: center;

  align-items: center;

  margin-left: -0.15625vw;

}



.index-section2 .box .item:nth-child(2) .icon i {

  transform: rotate(270deg);

}



.index-section2 .box .item:nth-child(3) .icon i {

  transform: rotate(180deg);

}



.index-section2 .box .item .icon {

  position: absolute;

  width: 100%;

  height: 100%;

  pointer-events: none;

  transform: rotate(0);

}



.index-section2 .box .item .icon i {

  display: block;

  width: 100%;

  height: 100%;

  background: url(../images/img9.png) center no-repeat;

  background-size: 100%;

}



.index-section2 .box .item .info {

  text-align: center;

}



.index-section2 .box .item .info .text1 {

  width: 100%;

  position: relative;

  font-size: 3.02083333vw;

  font-family: "Montserrat-Bold";

  line-height: 1.4;

  display: flex;

  align-items: flex-start;

}



.index-section2 .box .item .info .text1 .s1 {

  font-size: 3.33333333vw;

}



.index-section2 .box .item .info .text1 .s2 {

  font-size: 1.71875vw;

}



.index-section2 .box .item .info .text1 .s3 {

  font-size: 2.60416667vw;

  font-weight: bold;

}



.index-section2 .box .item .info .text1 .s4 {

  font-size: 1.71875vw;

  font-weight: bold;

}



.index-section2 .box .item .info .text2 {

  font-size: 0.72916667vw;

  line-height: 1.2;

}



.aboutimg {

  display: none;

}



@media screen and (min-width: 1100px) {

  .index-section2 .index_num {

    margin-top: -2vw;

    padding-top: 11.46vw;

    max-width: 100%;

  }

}



.index_product .box {

  display: flex;

  justify-content: space-between;

  align-items: center;

}



.index_product .box .left_w {

  width: 38%;

}



.index_product .box .right_w {

  width: 57.6%;

}



.index_product .box .textbox {

  margin-top: 20%;

  max-width: 465px;

  width: 100%;

}



.index_product .box .textbox ul li {

  margin-bottom: 36px;

}



.index_product .box .textbox ul li:last-child {

  margin-bottom: 0;

}



.index_product .box .textbox ul li .t1 {

  display: flex;

  align-items: center;

  color: #666666;

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  cursor: pointer;

}



.index_product .box .textbox ul li.on .t1 {

  color: #00833e;

}



.index_product .box .textbox ul li .t1 .t1-1 {

  width: 30px;

  font-family: "Montserrat-Bold";

}



.index_product .box .textbox ul li .t1 .t1-2 {

  position: relative;

  flex: 1;

  padding: 12px 0px;

}



.index_product .box .textbox ul li .t1 .t1-2:before {

  content: '';

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 1px;

  background: #cccccc;

}



.index_product .box .textbox ul li .t1 .t1-2:after {

  content: '';

  position: absolute;

  left: 0;

  bottom: 0;

  width: 0;

  height: 1px;

  background: -webkit-linear-gradient(to right, #045ebf, #00833e);

  background: linear-gradient(to right, #045ebf, #00833e);

  -webkit-transition: all 1s ease;

  transition: all 1s ease;

}



.index_product .box .textbox ul li.on .t1 .t1-2:after {

  width: 100%;

}



.index_product .box .textbox ul li .t2 {

  padding-left: 30px;

  padding-top: 30px;

  padding-bottom: 30px;

  display: none;

}



.index_product .box .textbox ul li .t2 .t2-1 {

  color: #333333;

  font-weight: bold;

  margin-bottom: 15px;

}



.index_product .box .textbox ul li .t2 .t2-2 {

  color: #666666;

  line-height: 1.7;

}



.index_product .swiper {

  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius: 10px;

  border: rgba(204, 204, 204, 0.5) solid 1px;

  box-sizing: border-box;

}



.index_product .swiper a {

  display: block;

  width: 100%;

  overflow: hidden;

}



.index_product .swiper a img {

  display: block;

  width: 100%;

}



@media (max-width: 1024px) {

  .index-section4 {

    padding-top: 0 !important;

  }

}



.index_application {

  position: relative;

  overflow: hidden;

  margin-top: 0.8rem;

}



.index_application .section_bg {

  position: relative;

  display: block;

  width: 100%;

}



.index_application .section_bg .swiper {

  position: relative;

  width: 100%;

  overflow: hidden;

}



.index_application .section_bg .swiper-slide {

  position: relative;

  width: 100%;

  height: 100%;

}



.index_application .section_bg .swiper-slide:before {

  content: '';

  position: absolute;

  left: 0;

  top: 0;

  z-index: 1;

  width: 100%;

  height: 100%;

  background: url(../images/img12.png) center no-repeat;

  background-size: cover;

}



.index_application .section_bg .swiper-slide img,

.index_application .section_bg .swiper-slide video {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.index_application .box .swiper {

  position: relative;

  width: 100%;

  height: 100%;

  overflow: hidden;

  padding-top: 6.25%;

}



.index_application .box {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

}



.index_application .box .swiper-slide .container {

  display: flex;

  justify-content: space-between;

  align-items: stretch;

  height: 100%;

}



.index_application .box .left_w {

  width: 54%;

}



.movearea {

  position: relative;

  z-index: 1;

  width: 100%;

  height: 100%;

}



.movearea a {

  position: absolute;

  z-index: 3;

  display: block;

  width: 100%;

  height: 100%;

  cursor: none;

}



.index_application .box .right_w {

  width: 46%;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding-right: 5%;

  padding-bottom: 12.5vw;

  box-sizing: border-box;

}



@media (max-width: 1900px) {

  .index_application .box .right_w {

    padding-bottom: 240px;

  }

}



.index_application .box .right_w .textbox {

  display: flex;

  flex-wrap: wrap;

  justify-content: flex-end;

  /*min-height: 19vw;*/

  /*min-height: 365px;*/

}



.index_application .box .right_w .text1 {

  width: 100%;

  color: #FFFFFF;

  line-height: 1.7;

}



.index_application .box .right_w .text2 {

  margin-top: 12%;

  width: 67.7%;

  color: #FFFFFF;

  line-height: 1.7;

}



.index_application .arrowbox {

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  bottom: 140px;

  z-index: 12;

  /*width: 27.34375%;*/

  max-width: 1536px;

  width: 100%;

  box-sizing: border-box;

  display: flex;

  justify-content: flex-end;

}



.index_application .arrowbox .arrow {

  display: flex;

  align-items: center;

  justify-content: flex-end;

  flex-direction: row-reverse;

  gap: 10px;

  width: 46%;

  padding-left: 13.2%;

  box-sizing: border-box;

}



.index_application .swiper-button-next,

.index_application .swiper-button-prev {

  position: static;

  transform: none;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.index_application .swiper-button-prev {

  left: 0;

  right: auto;

}



.index_application .swiper-button-next {

  right: auto;

  left: 56px;

}



.button-next,

.button-prev {

  width: 46px;

  height: 46px;

}



.button-prev {

  background: url(../images/icon11a.png) center no-repeat;

  background-size: 100% 100%;

}



.button-next {

  background: url(../images/icon12a.png) center no-repeat;

  background-size: 100% 100%;

}



.button-next.swiper-button-disabled {

  opacity: 0.5;

  background: url(../images/icon12.png) center no-repeat;

  background-size: 100% 100%;

}



.button-prev.swiper-button-disabled {

  opacity: 0.5;

  background: url(../images/icon11.png) center no-repeat;

  background-size: 100% 100%;

}



.maskbox {

  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  width: 23.17708333vw;

  height: 23.17708333vw;

  max-width: 445px;

  max-height: 445px;

  border-radius: 50%;

  opacity: 0;

  pointer-events: none;

  position: absolute;

  transform: translate(-50%, -50%);

  transition: opacity 0.5s ease, transform 0.2s ease;

}



.maskbox:before {

  content: '';

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: url(../images/img15.png) center no-repeat;

  background-size: 100% 100%;

  -webkit-transform: scale(0.5);

  transform: scale(0.5);

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  opacity: 0;

  animation: rotate360 3s infinite linear;

}



@keyframes rotate360 {

  0% {

    transform: rotate(0);

  }



  100% {

    transform: rotate(360deg);

  }

}



.maskbox .displayarea {

  width: 100%;

  text-align: center;

  padding: 6.85%;

  overflow: hidden;

  box-sizing: border-box;

  -webkit-transform: scale(0.5);

  transform: scale(0.5);

  -webkit-transition: all 0.5s ease;

  transition: all 0.5s ease;

  opacity: 0;

}



.movearea.hidden-cursor .maskbox:before,

.movearea.hidden-cursor .maskbox .displayarea {

  opacity: 1;

  -webkit-transform: scale(1);

  transform: scale(1);

}



.maskbox .maskbg {

  position: absolute;

  left: 50%;

  top: 50%;

  -webkit-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

  z-index: -1;

  width: 86.3%;

  height: 86.3%;

  border-radius: 50%;

  overflow: hidden;

}



.maskbox .maskbg:before {

  content: '';

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.5);

}



.maskbox .maskbg img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.maskbox .displayarea .icon {

  text-align: center;

}



.maskbox .displayarea .icon img {

  max-width: 47px;

}



.maskbox .displayarea .text-body {

  margin-top: 24px;

  font-size: var(--font34);

  color: #FFFFFF;

}



.hidden-cursor {

  cursor: none;

}



.index_news {

  background: #fcfefd;

}



.index_news .box {

  position: relative;

  margin-top: 1.2rem;

  /*width: 80%;*/

}



@media (max-width: 1024px) {

  .index_news .box {

    margin-top: 0.8rem;

  }

}



.index_news .box .swiper {

  position: relative;

  width: 100%;

  overflow: hidden;

}



.index_news .swiper-wrapper {

  align-items: stretch;

}



.index_news .swiper-slide {

  height: auto;

}



.newli {

  display: flex;

  flex-direction: column;

  width: 100%;

  height: 100%;

}



.newli .imgbox {

  position: relative;

  width: 100%;

  padding-bottom: 111.38211382%;

  overflow: hidden;

  border-radius: 4px;

}



.newli .imgbox img {

  position: absolute;

  left: 0;

  top: 0;

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.newli:hover .imgbox img {

  -webkit-transform: scale(1.1);

  transform: scale(1.1);

}



.newli .textbox {

  flex: 1;

  display: flex;

  flex-direction: column;

  padding-top: 35px;

  box-sizing: border-box;

}



.newli .textbox .t1 {

  color: #333333;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}



.newli:hover .textbox .t1 {

  color: #00833e;

}



.newli .textbox .t2 {

  margin-top: 10px;

  color: #999999;

}



.newli .textbox .t3 {

  margin-top: 18px;

  color: rgba(102, 102, 102, 0.5);

  line-height: 1.7;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;

}



.newli .textbox .more {

  margin-top: 42px;

}



.newli .textbox .more span {

  font-family: "Montserrat-Light";

  color: #999999;

}



.index_news .swiper-button-next,

.index_news .swiper-button-prev {

  position: absolute;

  top: 35%;

  transform: none;

  border-radius: 50%;

  -webkit-transition: all 0.4s ease;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



@media (max-width: 1024px) {



  .index_news .swiper-button-next,

  .index_news .swiper-button-prev {

    display: none;

  }

}



@media (max-width: 1024px) {

  .index_news .swiper {

    padding-bottom: 40px;

  }



  .index_news .swiper .swiper-pagination {

    opacity: 1;

  }

}



.index_news .swiper-button-next {

  right: -0.9rem;

  left: auto;

}



.index_news .swiper-button-prev {

  left: -0.9rem;

  right: auto;

}



.index_news .swiper-button-next.swiper-button-disabled:before,

.index_news .swiper-button-prev.swiper-button-disabled:before {

  content: '';

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  border: #cccccc solid 1px;

  border-radius: 50%;

  box-sizing: border-box;

}



.index_sustainability {

  position: relative;

  z-index: 1;

}



.index_sustainability .sectionbg {

  position: absolute;

  left: 0;

  top: 0;

  z-index: -1;

  width: 100%;

  height: 100%;

}



.index_sustainability .sectionbg img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.index_sustainability .box {

  display: flex;

  justify-content: space-between;

  align-items: center;

}



.index_sustainability .box .left_w {

  width: 32%;

}



.index_sustainability .box .text-body {

  color: #FFFFFF;

  line-height: 1.7;

  margin-top: 15px;

}



.index_sustainability .box .btns {

  margin-top: 30px;

  display: flex;

}



.index_sustainability .box .btns a {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 90px;

  height: 90px;

  border: #FFFFFF solid 1px;

  border-radius: 50%;

  box-sizing: border-box;

  opacity: 0.5;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.index_sustainability .box .btns a img {

  max-width: 18.18181818%;

}



.index_sustainability .box .btns a:hover {

  opacity: 1;

  transform: rotate(48deg);

}



.index_sustainability .box .right_w {

  display: flex;

  justify-content: flex-end;

  min-width: 20%;

}



.index_sustainability .box .right_w ul li {

  color: #FFFFFF;

  margin-bottom: 20px;

  font-weight: bold;

}



.index_sustainability .box .right_w ul li:last-child {

  margin-bottom: 0;

}



@media screen and (min-width: 1816px) {

  .header .search-header {

    padding-top: 1vw;

    padding-bottom: 2vw;

  }

}



@media screen and (max-width: 1816px) and (min-width: 1025px) {



  .header .box,

  .swiper-button {

    max-width: 84.5814978%;

    width: 84.5814978%;

  }



  .swiper-button {

    bottom: 17%;

  }



  .size88 {

    font-size: 4.58333333vw;

  }



  .size68 {

    font-size: 3.54166667vw;

  }



  .size44 {

    font-size: 2.29166667vw;

  }



  .size36 {

    font-size: 1.875vw;

  }



  .size32 {

    font-size: 1.66666667vw;

  }



  .size24 {

    font-size: 1.25vw;

  }



  .size22 {

    font-size: 1.14583333vw;

  }



  .size18 {

    font-size: 0.9375vw;

  }



  .size16 {

    font-size: 0.83333333vw;

  }



  .size14 {

    font-size: 0.72916667vw;

  }



  .padt120 {

    padding-top: 6.25vw;

  }



  .padt150 {

    padding-top: 7.8125vw;

  }



  .padb120 {

    padding-bottom: 6.25vw;

  }



  .header .box .logo a img {

    max-height: 3.125vw;

  }



  .header .box .nav ul li {

    padding: 0 1.04166667vw;

    height: 5.15625vw;

  }



  .header .box .nav ul li:before {

    height: 0.15625vw;

  }



  .header .box .nav ul li:hover:before {

    width: calc(100% - 2.08333333vw);

  }



  .header .box .nav ul li a {

    font-size: 1.13333333vw;
    /*font-family: 'Dharma Gothic E';
    font-weight: bold;*/
  }



  .header .navcell {

    padding: 0.625vw 0;

    min-width: 10vw;

  }



  .header .navcell a {

    padding: 0.3125vw 0.78125vw;

    min-height: 2.08333333vw;

  }



  .header .box .headright .wrap {

    padding: 0 1.04166667vw;

  }



  .header .box .headright .wrap:before {

    height: 1.875vw;

    border-radius: 0.9375vw;

  }



  .header .searchdiv {

    padding-right: 0.52083333vw;

    margin-right: 0.78125vw;

  }



  .header .searchdiv:before {

    height: 0.9375vw;

  }



  .header .show-search-btn {

    width: 1.25vw;

    height: 1.875vw;

  }



  .header .show-search-btn img {

    max-width: 0.72916667vw;

  }



  .header .search {

    top: 5.20833333vw;

  }



  .header .search-header {

    padding-top: 1vw;

    padding-bottom: 2vw;

  }



  .header .search-header .search-loader {

    top: 0.88541667vw;

    left: 2.6vw;

  }



  .header .search-header .search-input {

    font-size: 1.25vw;

  }



  .header .search-close {

    width: 1.45833333vw;

    height: 3.75vw;

  }



  .header .search .submit0 {

    width: 1.45833333vw;

    height: 3.75vw;

  }



  .header .search-header .search-input {

    text-indent: 4.16666667vw;

    line-height: 3.90625vw;

    font-size: 1.25vw;

  }



  .header .head-nation .current {

    height: 5.15625vw;

    padding-left: 1.04166667vw;

    background: url(../images/language.png) left center no-repeat;

    background-size: 0.83333333vw auto;

  }



  .mbox .header .head-nation .current,

  .header.white .head-nation .current,

  .header.header-bg .head-nation .current {

    background: url(../images/language.png) left center no-repeat;

    background-size: 0.83333333vw auto;

  }



  .header .head-nation .current .name {

    padding-right: 0.625vw;

    background: url(../images/arrow.png) right center no-repeat;

    background-size: 0.41666667vw auto;

    font-size: 0.72916667vw;

  }



  .head-nation ul {

    padding: 0.52083333vw 0;

  }



  .head-nation ul li a {

    font-size: 0.72916667vw;

    min-width: 4.6875vw;

    padding: 0 1.04166667vw;

  }



  .istop a {

    width: 2.39583333vw;

    height: 2.39583333vw;

    /*font-size: 0.5208333333333333vw;*/

  }



  .istop a img {

    max-width: 0.46875vw;

  }



  .footer .box .footernav .title {

    font-size: 0.9375vw;

    margin-bottom: 1.04166667vw;

  }



  .footer .box .footernav .title i {

    width: 2.60416667vw;

    height: 2.60416667vw;

    right: -0.52083333vw;

  }



  .footer .box .footernav .title i::before {

    width: 0.625vw;

    height: 0.10416667vw;

  }



  .footer .box .footernav .title i::after {

    height: 0.625vw;

    width: 0.10416667vw;

  }



  .footer .box .footernav .item ul li {

    margin-bottom: 0.78125vw;

  }



  .footer .box .footernav .item ul li a {

    font-size: 0.72916667vw;

  }



  .footer .footinfor ul li {

    margin-bottom: 1.04166667vw;

  }



  .footer .footinfor ul li .ic {

    margin-right: 0.26041667vw;

  }



  .footer .footinfor ul li .ic img {

    max-width: 0.83333333vw;

  }



  .footer .footinfor ul li .text-body .t1 {

    font-size: 0.82916667vw;

    color: #ffffff;

  }



  .footer .footinfor ul li .text-body .t2 {

    font-size: 0.9375vw;

  }



  .footer .footinfor ul li .text-body .t3 {

    font-size: 0.83333333vw;

  }



  .footer .footinfor .follow {

    margin-top: 0.26041667vw;

  }



  .footer .footinfor .follow dd {

    margin-right: 0.52083333vw;

  }



  .footer .footinfor .follow dd a {

    width: 1.66666667vw;

    height: 1.66666667vw;

  }



  .footer .footinfor .follow dd .qrcode {

    width: 5.20833333vw;

  }



  .footer .footinfor .follow dd .qrcode .sjx {

    border-width: 0.41666667vw;

    border-color: #FFFFFF transparent transparent transparent;

  }



  .footer .footerbottom .container {

    padding-top: 1.5625vw;

    padding-bottom: 1.5625vw;

  }



  .footer .copylink {

    font-size: 0.72916667vw;

  }



  .footer .copylink .copyright a {

    margin-left: 1.04166667vw;

  }



  .footer .poweredBy {

    margin-left: 2.34375vw;

    color: #cccccc;

  }



  .footer .footerbottom .text a {

    font-size: 0.72916667vw;

    color: #cccccc;

  }



  .swiper-button {

    max-width: 80vw;

  }



  .lunbotu .swiper-button-next,

  .lunbotu .swiper-button-prev {

    width: 2.91666667vw;

    height: 2.91666667vw;

  }



  .lunbotu .swiper-button-prev,

  .lunbotu.swiper-container-rtl .swiper-button-next {

    margin-right: 1.14583333vw;

  }



  .lunbotu .swiper-button-prev i,

  .lunbotu.swiper-container-rtl .swiper-button-next i {

    background: url(../images/icon1.png) center no-repeat;

    background-size: 0.625vw auto;

  }



  .lunbotu .swiper-button-next i,

  .lunbotu.swiper-container-rtl .swiper-button-prev i {

    background: url(../images/icon2.png) center no-repeat;

    background-size: 0.625vw auto;

  }



  .lunbotu .swiper-button svg {

    width: 2.91666667vw;

    height: 2.91666667vw;

  }



  .bannerText .box .text-body {

    margin-top: 1.25vw;

  }



  .i-title .font18:before {

    left: -0.625vw;

    top: 0.41666667vw;

    width: 0.20833333vw;

    height: 0.20833333vw;

  }



  .i-title .font44 {

    margin-top: 0.41666667vw;

  }



  .index_about .box .textbox .text-body {

    margin-top: 1.5625vw;

  }



  .index-section2 .box .item {

    width: 25.625vw;

    height: 25.625vw;

    margin-left: -0.15625vw;

  }



  .index_product .box .textbox {

    max-width: 24.21875vw;

  }



  .index_product .box .textbox ul li {

    margin-bottom: 1.875vw;

  }



  .index_product .box .textbox ul li .t1 .t1-1 {

    width: 1.5625vw;

  }



  .index_product .box .textbox ul li .t1 .t1-2 {

    padding: 0.625vw 0;

  }



  .index_product .box .textbox ul li .t2 {

    padding-left: 1.5625vw;

    padding-top: 1.5625vw;

    padding-bottom: 1.5625vw;

  }



  .index_product .box .textbox ul li .t2 .t2-1 {

    margin-bottom: 0.78125vw;

  }



  .index_product .swiper {

    border-radius: 0.52083333vw;

  }



  .index_application .box .right_w {

    padding-bottom: 12.5vw;

  }



  .index_application .arrowbox {

    bottom: 7.29166667vw;

    max-width: 80vw;

  }



  .index_application .swiper-button-next {

    left: 2.91666667vw;

  }



  .button-next,

  .button-prev {

    width: 2.39583333vw;

    height: 2.39583333vw;

  }



  .maskbox .displayarea .icon img {

    max-width: 2.44791667vw;

  }



  .maskbox .displayarea .text-body {

    margin-top: 1.25vw;

  }



  .newli .imgbox {

    border-radius: 0.20833333vw;

  }



  .newli .textbox {

    padding-top: 1.82291667vw;

  }



  .newli .textbox .t2 {

    margin-top: 0.52083333vw;

  }



  .newli .textbox .t3 {

    margin-top: 0.9375vw;

  }



  .newli .textbox .more {

    margin-top: 2.1875vw;

  }



  .index_sustainability .box .text-body {

    margin-top: 0.78125vw;

  }



  .index_sustainability .box .btns {

    margin-top: 1.5625vw;

  }



  .index_sustainability .box .btns a {

    width: 4.6875vw;

    height: 4.6875vw;

  }



  .index_sustainability .box .right_w ul li {

    margin-bottom: 1.04166667vw;

  }

}



@media screen and (max-width: 1024px) {

  .menubtn {

    display: block;

  }



  .header.white,

  .header.header-bg,

  .mbox .header,

  .header.act {

    background: #ffffff;

    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);

  }



  .header .box .nav {

    display: none;

  }



  .header .box .headright .wrap {

    /* display: none; */

    padding: 0 5px;

    margin-right: 20px;

  }



  .header .box .headright .wrap:before {

    height: 32px;

  }



  .header .searchdiv {

    padding-right: 0;

    margin-right: 0;

  }



  .header .show-search-btn {

    width: 40px;

    height: 32px;

  }



  .header .head-nation .current {

    height: 70px;

    padding-left: 40px;

    background: url(../images/language.png) center no-repeat;

    background-size: 16px auto;

  }



  .mbox .header .head-nation .current,

  .header.white .head-nation .current,

  .header.header-bg .head-nation .current {

    background: url(../images/language.png) center no-repeat;

    background-size: 16px auto;

  }



  .header .head-nation .current .name {

    display: none;

  }



  .header .box .logo a {

    display: inline-flex;

    align-items: center;

    height: 70px;

  }



  .header .box .logo a img {

    max-height: 40px;

  }



  .header .box,

  .swiper-button {

    max-width: 90%;

    width: 90%;

  }



  .bannerText {

    bottom: auto;

    top: 50%;

    -webkit-transform: translate(-50%, -50%);

    transform: translate(-50%, -50%);

  }



  .padt120 {

    padding-top: 10%;

  }



  .padt150 {

    padding-top: 10%;

  }



  .padb120 {

    padding-bottom: 10%;

  }



  .index_section1 .lunbotu {

    position: relative;

  }



  .bannerText .box .size88 {

    font-size: 42px;

    line-height: 1.4;

  }



  .bannerText .box .text-body {

    font-size: 18px;

    margin-top: 20px;

    line-height: 1.7;

  }



  .swiper-button {

    -webkit-transform: translate(-50%, 0) scale(0.9);

    transform: translate(-50%, 0) scale(0.9);

    transform-origin: left center;

  }



  .index_section1 .circle {

    display: none;

  }



  .index_about {

    min-height: 1px;

    background: #FFFFFF;

  }



  .index_about .box {

    display: block;

    width: 90%;

    margin: auto;

  }



  .index_about .box .textbox {

    width: 100%;

    padding-left: 0%;

    left: 0;

    top: 0;

    margin: auto;

  }



  .index_about .box .textbox .wrap {

    transform: translateX(0);

  }



  .index_about .box .textbox .i-title {

    padding-top: 0;

  }



  .index_about .box .textbox .i-title .font44 {

    text-align: left;

    -webkit-transform: translateY(0);

    transform: translateY(0);

  }



  .index_about .box .textbox .i-title .font44 span {

    transform: translateX(0);

  }



  .index_about .box .textbox .text-body {

    color: #666666;

  }



  .index_about .box .textbox .text-body .t2 {

    padding-bottom: 0;

  }



  .index_about .box .textbox .i-title .font18,

  .index_about .box .textbox .text-body {

    opacity: 1;

  }



  .index_about .box .imgbox {

    position: relative;

    top: 45vh;

    width: 100%;

    margin-right: 0;

    display: none;

  }



  .index_about .box .imgbox .logo_i,

  .index_about .box .imgbox ul li.ic1 {

    display: none;

  }



  .index_about .box .imgbox ul li {

    opacity: 1;

  }



  .index_about .box .imgbox ul li img {

    /*max-width: 90%;

		width: 90%;

		margin: auto;*/

  }



  .index-section2 {

    min-height: 1px;

  }



  .aboutimg {

    display: block;

  }



  .index_num {

    padding-top: 9%;

    padding-bottom: 9%;

  }



  .index-section2 .box {

    position: static;

    height: auto;

  }



  .index-section2 .box .wrap {

    position: relative;

    top: 0;

    left: 0;

    transform: none;

    width: 90%;

    margin: auto;

  }



  .index-section2 .box .item {

    position: relative;

    width: 33.33%;

    height: 0;

    padding-bottom: 33.33%;

  }



  .index-section2 .box .item .icon {

    top: 0;

  }



  .index-section2 .box .item .info {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 80%;

  }



  .index-section2 .box .item .info .text1 {

    justify-content: center;

    font-size: 64px;

  }



  .index-section2 .box .item .info .text1 .s1 {

    font-size: 50px;

  }



  .index-section2 .box .item .info .text1 .s2 {

    font-size: 42px;

  }



  .index-section2 .box .item .info .text1 .s3 {

    font-size: 58px;

  }



  .index-section2 .box .item .info .text1 .s4 {

    font-size: 32px;

  }



  .index-section2 .box .item .info .text2 {

    font-size: 18px;

  }



  .index_product .box {

    flex-wrap: wrap;

  }



  .index_product .box .left_w,

  .index_product .box .right_w {

    width: 100%;

  }



  .index_product .box .textbox {

    margin-top: 40px;

    max-width: 100%;

  }



  .index_product .box .right_w {

    margin-top: 7%;

  }



  .index_application .section_bg {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

  }



  .index_application .section_bg .swiper {

    height: 100%;

  }



  .index_application .box {

    position: relative;

  }



  .index_application .box .mySwiper2 {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

  }



  .index_application .box .swiper-slide .container {

    flex-wrap: wrap;

    flex-direction: column-reverse;

    padding-bottom: 160px;

  }



  .index_application .box .left_w {

    margin-top: 5%;

    width: 100%;

  }



  .index_application .box .swiper {

    padding-top: 12%;

  }



  .movearea {

    display: inline-block;

    width: auto;

    height: auto;

  }



  .maskbox {

    position: relative;

    background: none;

    opacity: 1;

    width: 100%;

    height: auto;

    max-width: 100%;

    justify-content: flex-start;

    flex-direction: row;

    transform: none;

  }



  .maskbox:before {

    animation: none;

  }



  .maskbox .displayarea .text-body {

    font-size: var(--font16);

  }



  .maskbox .displayarea {

    opacity: 1;

    transform: scale(1);

  }



  .maskbox .maskbg {

    display: none;

  }



  .maskbox .displayarea {

    display: inline-flex;

    flex-direction: row-reverse;

    align-items: baseline;

    padding: 5px 0px;

  }



  .maskbox .displayarea .text-body {

    margin-top: 0;

  }



  .maskbox .displayarea .ic {

    display: inline-block;

    margin-left: 10px;

  }



  .maskbox .displayarea .ic img {

    max-width: 20px;

  }



  .index_application .box .right_w {

    width: 100%;

    padding-bottom: 0%;

  }



  .index_application .box .right_w .text1 {

    font-size: 24px;

  }



  .index_application .box .right_w .text2 {

    margin-top: 20px;

    width: 100%;

  }



  .index_application .arrowbox {

    bottom: 70px;

  }



  .index_application .arrowbox .arrow {

    padding-left: 0;

    width: calc(100% - 40px);

    margin: auto;

  }



  .index_news .swiper-button-next {

    right: 0;

  }



  .index_news .swiper-button-prev {

    left: 0;

  }



  .index_sustainability .box {

    flex-wrap: wrap;

  }



  .index_sustainability .box .left_w {

    width: 100%;

  }



  .index_sustainability .box .btns a {

    width: 60px;

    height: 60px;

  }



  .index_sustainability .box .right_w {

    width: 100%;

    margin-top: 6%;

  }



  .index_sustainability .box .right_w ul {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    width: 100%;

  }



  .index_sustainability .box .right_w ul li {

    font-size: 48px;

    margin-bottom: 0;

  }

}



@media screen and (max-width: 1024px) and (max-width: 1024px) {

  .index_about .box .textbox .text-body .font30 {

    font-size: var(--font20);

  }

}



@media screen and (max-width: 768px) {

  .bannerText .box .size88 {

    font-size: 36px;

  }



  .bannerText .box .text-body {

    font-size: 16px;

    margin-top: 20px;

  }



  .index-section2 .box .item .info .text1 {

    font-size: 50px;

  }



  .index-section2 .box .item .info .text1 .s1 {

    font-size: 40px;

  }



  .index-section2 .box .item .info .text1 .s2 {

    font-size: 34px;

  }



  .index-section2 .box .item .info .text1 .s3 {

    font-size: 42px;

  }



  .index-section2 .box .item .info .text1 .s4 {

    font-size: 24px;

  }



  .index-section2 .box .item .info .text2 {

    font-size: 16px;

  }



  .index_product .size24 {

    font-size: 20px;

  }



  .index_product .size18 {

    font-size: 16px;

  }



  .index_product .box .textbox ul li {

    margin-bottom: 20px;

  }



  .index_product .box .textbox ul li .t1 .t1-1 {

    width: 25px;

  }



  .index_product .box .textbox ul li .t2 {

    padding-left: 25px;

    padding-top: 25px;

    padding-bottom: 0;

  }



  .index_application .box .right_w .text1 {

    font-size: 20px;

  }



  .index_application .box .right_w .text2 .size16,

  .maskbox .displayarea .ic img {

    max-width: 15px;

  }



  .button-next,

  .button-prev {

    width: 42px;

    height: 42px;

  }



  .newli .textbox {

    padding-top: 30px;

  }



  .newli .textbox .t1 {

    font-size: 20px;

  }



  .newli .textbox .more {

    margin-top: 20px;

  }



  .index_sustainability .box .text-body {

    font-size: 16px;

  }



  .index_sustainability .box .btns a {

    width: 50px;

    height: 50px;

  }



  .index_sustainability .box .right_w ul li {

    font-size: 40px;

  }

}



@media screen and (max-width: 640px) {

  .header .box .logo a {

    height: 60px;

  }



  .header .logo a img {

    max-height: 36px;

  }



  .header .head-nation .current {

    height: 60px;

  }



  .m-nav {

    top: 60px;

  }



  .mbox .m-nav {

    height: calc(100vh - 60px);

  }



  .bannerText .box .size88 {

    font-size: 28px;

  }



  .bannerText .box .text-body {

    font-size: 14px;

    margin-top: 15px;

  }



  .swiper-button {

    -webkit-transform: translate(-50%, 0) scale(0.75);

    transform: translate(-50%, 0) scale(0.75);

  }



  .index_about .box .textbox .text-body {

    margin-top: 20px;

  }



  /*.index-section2 .box .item .info .text1 {

		font-size: 40px;

	}

	.index-section2 .box .item .info .text1 .s1{

		font-size: 30px;

	}

	.index-section2 .box .item .info .text1 .s2{

		font-size: 24px;

	}

	.index-section2 .box .item .info .text1 .s3{

		font-size: 35px;

	}

	.index-section2 .box .item .info .text1 .s4{

		font-size: 18px;

	}

	.index-section2 .box .item .info .text2 {

		font-size: 14px;

	}*/

  .index-section2 .box .item .info .text1 {

    font-size: 7.4vmin;

  }



  .index-section2 .box .item .info .text1 .s1 {

    font-size: 5.55555556vmin;

  }



  .index-section2 .box .item .info .text1 .s2 {

    font-size: 4.44444444vmin;

  }



  .index-section2 .box .item .info .text1 .s3 {

    font-size: 6.48148148vmin;

  }



  .index-section2 .box .item .info .text1 .s4 {

    font-size: 3.33333333vmin;

  }



  .index-section2 .box .item .info .text2 {

    font-size: 2.5vmin;

  }



  .index_application .box .swiper-slide .container {

    padding-bottom: 150px;

  }



  .index_product .box .textbox {

    margin-top: 30px;

  }



  .index_product .box .textbox ul li {

    margin-bottom: 15px;

  }



  .index_product .box .textbox ul li .t1 .t1-1 {

    width: 20px;

  }



  .index_product .box .textbox ul li .t2 {

    padding-left: 20px;

    padding-top: 20px;

  }



  .index_product .box .textbox ul li .t2 .t2-1 {

    margin-bottom: 15px;

  }



  .index_product .size24 {

    font-size: 18px;

  }



  .index_product .size18 {

    font-size: 14px;

  }



  .index_application .box .left_w {

    margin-top: 20px;

  }



  .index_application .box .right_w .text1 {

    font-size: 18px;

  }



  .index_application .box .right_w .text2 {

    margin-top: 15px;

  }



  .index_application .arrowbox {

    bottom: 80px;

  }



  .button-next,

  .button-prev {

    width: 40px;

    height: 40px;

  }



  .index_sustainability .box .right_w ul li {

    font-size: 5.625vmin;

  }



  .newli .textbox .t3 {

    margin-top: 12px;

  }



  .index_sustainability .box .btns a {

    width: 44px;

    height: 44px;

  }



  .index_sustainability .box .text-body {

    font-size: 14px;

  }

}



@media screen and (max-width: 540px) {

  .msearch {

    margin-top: 20px;

  }



  .m-nav>ul {

    padding-top: 10px;

  }

}



@media screen and (max-width: 480px) {

  .padt120 {

    padding-top: 12%;

  }



  .padt150 {

    padding-top: 12%;

  }



  .padb120 {

    padding-bottom: 12%;

  }



  .bannerText .box .size88 {

    font-size: 26px;

  }



  .index_application .box .swiper {

    padding-top: 15%;

  }



  .index_application .box .right_w .text1 {

    font-size: 16px;

  }



  .index_product .box .textbox {

    margin-top: 15px;

  }



  .index_product .box .textbox ul li .t2 .t2-1 {

    margin-bottom: 8px;

  }



  .index_product .box .textbox ul li .t2 {

    padding-top: 16px;

  }



  .button-next,

  .button-prev {

    width: 36px;

    height: 36px;

  }



  .newli .textbox {

    padding-top: 20px;

  }



  .newli .textbox .t1 {

    font-size: 18px;

  }



  .newli .textbox .t2 {

    margin-top: 5px;

  }



  .newli .textbox .t3 {

    margin-top: 8px;

  }



  .newli .textbox .more {

    margin-top: 15px;

  }



  .index_sustainability .box .btns {

    margin-top: 20px;

  }



  .index_sustainability .box .btns a {

    width: 40px;

    height: 40px;

  }



  .index-section2 .box .item .info .text1 {

    font-size: 6.7vmin;

  }



  .index-section2 .box .item .info .text1 .s1 {

    font-size: 4.8vmin;

  }



  .index-section2 .box .item .info .text1 .s2 {

    font-size: 3.8vmin;

  }



  .index-section2 .box .item .info .text1 .s3 {

    font-size: 5.8vmin;

  }



  .index-section2 .box .item .info .text1 .s4 {

    font-size: 2.8vmin;

  }



  .index-section2 .box .item .info .text2 {

    font-size: 2.6vmin;

  }

}



@media (max-width: 1024px) {

  .index_application .box .mySwiper2 {

    position: relative;

    height: auto;

    padding-top: 3.5rem;

  }

}



@media (max-width: 480px) {

  .index_application .box .mySwiper2 {

    padding-top: 2.5rem;

  }

}



@media (max-width: 1024px) {

  .index_application .box .mySwiper2 .swiper-slide .container {

    height: auto;

  }

}



@media (max-width: 1024px) {

  .index_sustainability .container .box .right_w ul li {

    font-size: var(--font50);

  }

}



@media (max-width: 767px) {

  .index_sustainability .container .box .right_w ul li {

    font-size: var(--font36);

  }

}



@media (max-width: 480px) {

  .index_sustainability .container .box .right_w ul li {

    font-size: var(--font24);

  }

}























/* carter */

* {

  padding: 0;

  margin: 0;

  box-sizing: border-box;

  outline: none;

}



ul,

li {

  list-style: none;

}



/* 图片限制 */

.img_box img,

.img_box iframe,

.img_box video {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

}



.img_box {

  overflow: hidden;

  position: relative;

  display: block;

}



.img_box img {

  transition: all 0.5s;

}



/* 图片限制 end*/

@font-face {

  font-family: 'Dharma Gothic E';

  src: local('Dharma Gothic E Bold'), local('DharmaGothicE-Bold'), url('fonts/DharmaGothicE-Bold.woff2') format('woff2'), url('fonts/DharmaGothicE-Bold.woff') format('woff'), url('fonts/DharmaGothicE-Bold.ttf') format('truetype');

  font-weight: bold;

  font-style: normal;

  font-display: swap;

}



:root {

  --padding100: 100px;

}



.content-1240 {

  width: 1240px;

  margin: 0 auto;

  max-width: 100%;

}



.cs-about {

  margin-bottom: var(--padding100);

  overflow: hidden;

}



.cs-about .flexs {

  display: flex;

  align-items: flex-start;

}



.cs-about .lefts {

  width: calc(100% - 33.8541666%);

  padding-left: calc((100% - 1240px) / 2);

  align-self: center;

}



.cs-about .lefts .contents {

  width: 619px;

  max-width: 80%;

}



.cs-about .lefts .contents .texts {

  margin-top: 24px;

}



.cs-about .rights {

  width: 33.8541666%;

  padding-right: 50px;

  padding-left: 50px;

  padding-top: 70px;

  padding-bottom: 70px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  background-color: #136530;

  /*border-radius: 0 0 0 90px;*/

}



.cs-about .rights .lists {

  width: 220px;

}



.cs-about .rights .items {

  width: 100%;

  padding: 25px 0;

  border-bottom: 1px solid #f1f1f1;

  text-align: center;

}



.cs-about .rights .items:last-child {

  border-bottom: none;

}



.cs-about .rights .numbers {

  font-size: 48px;

  color: #fff;

  line-height: 1.2;

  font-weight: bold;

  font-family: 'Dharma Gothic E';

}



.cs-about .rights .texts {

  font-size: 16px;

  color: #fff;

  line-height: 1.56;

  margin-top: 10px;

}



.mod-titles {

  font-size: 72px;

  line-height: 1.15277777;

  font-weight: bold;

  color: #002920;

  /*font-family: 'Dharma Gothic E';*/

}



.mod-texts p {

  font-size: 16px;

  line-height: 1.65;

  color: #333;

}



.cs-product {

  margin-bottom: var(--padding100);

  display: flex;

  justify-content: space-between;

  align-items: center;

  overflow: hidden;

}



.cs-product .lefts {

  width: 48.69791666%;

}



.cs-product .lefts .img_box {

  padding-top: 74.9360613%;

  border-radius: 0;

}



.cs-product .rights {

  width: 45%;

  padding-right: calc((100% - 1240px) / 2);

}



.cs-product .rights .subtits {

  font-size: 20px;

  line-height: 1.3;

  color: #3c7e0a;

  margin-bottom: 10px;

}



.cs-product .rights .titles {

  color: #333;

}



.cs-product .rights .texts {

  margin-top: 10px;

}



.cs-product .rights .links {

  width: 160px;

  height: 42px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background-color: #3c7e0a;

  color: #fff;

  font-size: 16px;

  text-align: center;

  margin-top: 40px;

  text-decoration: none;

  border-radius: 12px;

  transition: all 0.5s;

}



.cs-product .rights .links:hover {

  color: #fff;

  background-color: #00833e;

  transform: scale(1.1);

}



.mod-subtit {

  line-height: 1.4;

  margin-bottom: 20px;

  font-size: 20px;

}



.cs-investors {

  margin-bottom: var(--padding100);

}



.cs-investors .flexs {

  display: flex;

  border-radius: 0;

  overflow: hidden;

}



.cs-investors .lefts,

.cs-investors .rights {

  width: 50%;

}



.cs-investors .lefts {

  background-color: #136530;

  padding: 40px 50px 40px 100px;

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.cs-investors .lefts .subtit {

  color: #fff;

}



.cs-investors .lefts .titles {

  color: #fff;

}



.cs-investors .lefts .texts {

  margin-top: 20px;

}



.cs-investors .lefts .texts p {

  color: #fff;

}



.cs-investors .lefts .links {

  width: 150px;

  height: 42px;

  border-radius: 12px;

  background-color: #fff;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-size: 16px;

  color: #333;

  margin-top: 40px;

  transition: all 0.5s;

}



.cs-investors .lefts .links:hover {

  background-color: #3c7e0a;

  color: #fff;

}



.cs-investors .rights .img_box {

  padding-top: 83.3333333%;

  height: 100%;

}



.cs-investors .rights .img_box img {

  object-fit: cover;

}



.mod-tit2 {

  font-size: 48px;

  font-weight: bold;

  line-height: 1.35;

  /*font-family: 'Dharma Gothic E';*/

}



.cs-news {

  margin-bottom: var(--padding100);

}



.cs-news .lists {

  display: flex;

  flex-wrap: wrap;

  margin-bottom: -40px;

  padding: 0 40px;

}



.cs-news .items {

  width: 50%;

  padding: 0 20px;

  margin-bottom: 40px;

}



.cs-news .links {

  background-color: #F7F7F7;

  height: 100%;

  display: block;

  padding: 48px;

  border-radius: 0;

  text-decoration: none;

}



.cs-news .links:hover .titles {

  color: #3c7e0a;

}



.cs-news .items.first-item .links {

  border-radius: 0;

}



.cs-news .types {

  font-size: 16px;

  background-color: #3c7e0a;

  color: #fff;

  padding: 8px 12px;

  display: inline-block;

  line-height: 1.35;

  margin-bottom: 20px;

  border-radius: 0;

}



.cs-news .times {

  font-size: 16px;

  color: #000;

  line-height: 1.35;

  margin-bottom: 20px;

}



.cs-news .titles {

  font-size: 28px;

  color: #000;

  line-height: 1.3;

  margin-bottom: 20px;

  transition: all 0.5s;

}



.cs-news .mores {

  font-size: 16px;

  color: #4C9E0D;

  text-decoration: underline;

  line-height: 1.35;

}



.cs-feed {

  margin-bottom: var(--padding100);

}



.cs-feed .cs-feed-jumb-imgs {

  width: 82.2916666%;

}



.cs-feed .cs-feed-jumb-imgs .img_box {

  padding-top: 40.50632911%;

  border-radius: 0;

}



.cs-feed-info {

  width: 60.72916666%;

  margin-top: -16vw;

  position: relative;

  z-index: 1;

  border-radius: 0;

  background-color: #fff;

  overflow: hidden;

  padding: 90px 60px 70px calc((100% - 1240px) / 2);

}



.cs-feed-info .subtit {

  color: #3c7e0a;

  margin-bottom: 10px;

}



.cs-feed-info .titles {

  color: #002920;

  margin-bottom: 20px;

}



.cs-feed-info .texts p {

  color: #333;

}



.cs-feed-info .links {

  background-color: #3c7e0a;

  color: #fff;

  padding: 10px 30px;

  font-size: 16px;

  line-height: 1.2;

  transition: all 0.5s;

  text-align: center;

  display: inline-block;

  text-decoration: none;

  border-radius: 12px;

  margin-top: 40px;

}

.cs-feed-info .links:hover {

  color: #fff;

  background-color: #00833e;

  transform: scale(1.1);

}

.cs-feed-info .des {

  font-size: 14px;

  color: #7f7f7f;

  line-height: 1.7;

  margin-top: 40px;

}



.cs-case {

  display: flex;

  justify-content: space-between;

  margin-bottom: var(--padding100);

  --x: 60px;

}



.cs-case .items {

  width: 47%;

}



.cs-case .items:nth-child(even) .contents {

  margin-right: auto;

  margin-left: var(--x);

}



.cs-case .img_box {

  padding-top: 57.729729%;

}



.cs-case .contents {

  width: 400px;

  margin-right: var(--x);

  margin-left: auto;

  margin-top: 40px;

}



.cs-case .contents .subtits {

  color: #3c7e0a;

  margin-bottom: 10px;

}



.cs-case .contents .tits {

  font-size: 28px;

  line-height: 1.5;

  color: #000;

  transition: all 0.5s;

}



.cs-case .contents .texts {

  margin-top: 15px;

}



.cs-case .contents .links {

  background-color: #3c7e0a;

  color: #fff;

  padding: 10px 30px;

  font-size: 16px;

  line-height: 1.2;

  transition: all 0.5s;

  text-align: center;

  display: inline-block;

  text-decoration: none;

  border-radius: 12px;

  margin-top: 35px;

}

.cs-case .contents .links:hover {

  color: #fff;

  background-color: #00833e;

  transform: scale(1.1);

}

.cs-blog {

  overflow: hidden;

  padding-bottom: var(--padding100);

  padding-top: 20px;

}



.cs-blog .subtits {

  text-align: center;

  margin-bottom: 15px;

  color: #3c7e0a;

}



.cs-blog .titles {

  text-align: center;

}



.cs-blog .flexs {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 60px;

}



.cs-blog .flexs .mores {

  padding: 8px 12px;

  border-radius: 0;

  border: 1px solid #002920;

  font-size: 15px;

  color: #002920;

  line-height: 1.25;

  display: inline-block;

  text-decoration: none;

  transition: all 0.5s;

}



.cs-blog .flexs .mores:hover {

  background-color: #3c7e0a;

  border-color: #3c7e0a;

  color: #fff;

}



.mod-arrows {

  display: flex;

  align-items: center;

}



.mod-arrows .mod-prevs,

.mod-arrows .mod-nexts {

  width: 56px;

  height: 51px;

  display: flex;

  align-items: center;

  justify-content: center;

  background-color: #3c7e0a;

  cursor: pointer;

  transition: all 0.5s;

}



.mod-arrows .mod-prevs svg,

.mod-arrows .mod-nexts svg {

  width: 20px;

}



.mod-arrows .mod-prevs svg path,

.mod-arrows .mod-nexts svg path {

  fill: #fff;

}



.mod-arrows .mod-prevs {

  margin-right: 14px;

  transform: rotate(180deg);

}



.mod-arrows .mod-prevs:hover {

  transform: scale(1.1) rotate(180deg);

}



.mod-arrows .mod-nexts:hover {

  transform: scale(1.1);

}



.cs-blog-slick {

  margin: 35px -15px 0;

}



.cs-blog-slick .slick-list {

  overflow: initial;

}



.cs-blog-item {

  padding: 0 15px;

}



.cs-blog-link {

  transition: all 0.5s;

}



.cs-blog-link .img_box {

  padding-top: 75%;

  margin-bottom: 20px;

}



.cs-blog-link .types {

  display: inline-block;

  padding: 5px 16px;

  background-color: #3c7e0a;

  color: #fff;

  font-size: 14px;

  line-height: 1.35;

  transition: all 0.5s;

  text-align: center;

  border-radius: 10px;

  text-decoration: none;

  margin-bottom: 15px;

}



.cs-blog-link .times {

  font-size: 16px;

  color: #000;

  line-height: 1.65;

  margin-bottom: 10px;

}



.cs-blog-link .tits {

  font-size: 22px;

  color: #333;

  line-height: 1.25;

  margin-bottom: 26px;

}



.cs-blog-link .more {

  font-size: 16px;

  text-decoration: underline;

  color: #3c7e0a;

}



.cs-blog-slick .slick-slide.slick-current .cs-blog-link {

  overflow: hidden;

  /*border-radius: 80px 0 0 0;*/

}



.cs-blog .content-1240 {

  position: relative;

  z-index: 1;

}



.cs-blog .content-1240::after {

  content: "";

  position: absolute;

  width: 100vw;

  height: 100%;

  right: 100%;

  top: 0;

  background-color: #fff;

}



/* carter end */









@media screen and (max-width:1680px) {

  .mod-titles {

    font-size: 45px;

  }



  .cs-about .rights {

    padding-top: 60px;

    padding-bottom: 60px;

  }



  .cs-news .titles {

    font-size: 24px;

  }



  .cs-feed-info .titles {

    margin-bottom: 10px;

  }



  .cs-feed-info .des {

    margin-top: 30px;

  }



  .cs-feed-info {

    border-radius: 0 100px 0 0;

    padding: 90px 60px 40px calc((100% - 1240px) / 2);

  }



  .cs-case .contents .tits {

    font-size: 24px;

  }



  .cs-case {

    --x: 50px;

  }



  .cs-case .contents .links {

    margin-top: 30px;

  }









}



@media screen and (max-width:1440px) {

  .content-1240 {

    width: 1120px;

  }



  .cs-about .lefts {

    padding-left: calc((100% - 1120px) / 2);

  }



  .cs-product .rights {

    padding-right: calc((100% - 1120px) / 2);

  }



  .cs-feed-info {

    padding: 90px 60px 20px calc((100% - 1120px) / 2);

  }



  .mod-arrows .mod-prevs, .mod-arrows .mod-nexts {

    width: 48px;

    height: 48px;

  }



  .mod-arrows .mod-prevs svg, .mod-arrows .mod-nexts svg {

    width: 18px;

  }



  .cs-blog-link .tits {

    font-size: 20px;

    margin-bottom: 25px;

  }



  .cs-blog .flexs {

    margin-top: 50px;

  }



  .cs-case .contents .links {

    padding: 9px 22px;

  }



  .cs-case .contents {

    margin-top: 30px;

  }



  .cs-case {

    --x: 40px;

  }



  .mod-subtit {

    font-size: 18px;

  }



  .cs-case .contents .tits {

    font-size: 22px;

  }



  .cs-news .titles {

    font-size: 22px;

  }



  :root {

    --padding100: 90px;

  }



  .cs-news .links {

    padding: 40px;

    border-radius: 16px;

  }



  .mod-tit2 {

    font-size: 40px;

    line-height: 1.2;

  }



  .mod-titles {

    font-size: 40px;

  }



  .cs-about .rights .texts {

    font-size: 16px;

    margin-top: 0px;

  }



  .cs-about .rights .numbers {

    font-size: 44px;

  }



  .cs-about .rights {

    padding-top: 40px;

    padding-bottom: 40px;

  }



  .cs-product .rights .subtits {

    font-size: 18px;

  }



  .cs-product .rights .links {

    margin-top: 30px;

  }

}



@media screen and (max-width:1200px) {

  .content-1240 {

    width: 940px;

  }



  .cs-about .lefts {

    padding-left: calc((100% - 940px) / 2);

  }



  .cs-product .rights {

    padding-right: calc((100% - 940px) / 2);

  }



  .cs-feed-info {

    padding: 90px 60px 10px calc((100% - 940px) / 2);

  }



  .cs-investors .lefts {

    padding: 40px 50px 40px 70px;

  }



  .mod-tit2 {

    font-size: 38px;

    line-height: 1.2;

  }



  .mod-subtit {

    line-height: 1.4;

    margin-bottom: 15px;

  }



  .cs-investors .lefts .texts {

    margin-top: 15px;

  }



  .cs-investors .lefts .links {

    width: 140px;

    height: 42px;

    margin-top: 35px;

  }



  .cs-news .titles {

    font-size: 20px;

  }



  .cs-news .links {

    padding: 30px;

    border-radius: 16px;

  }



  :root {

    --padding100: 80px;

  }



  .cs-about .lefts .contents {

    width: 619px;

    max-width: 87%;

  }



  .cs-case .contents .tits {

    font-size: 20px;

  }



  .cs-blog-slick {

    margin: 30px -15px 0;

  }



}



@media screen and (max-width:991px) {

  .content-1240 {

    width: 100%;

    padding: 0 40px;

  }



  :root {

    --padding100: 70px;

  }



  .cs-about .lefts {

    padding-left: 40px;

  }



  .cs-product .rights {

    padding-right: 40px;

  }



  .cs-feed-info {

    padding: 90px 60px 10px 40px;

  }



  .cs-case .contents {

    width: 100%;

    margin-left: 0 !important;

    margin-right: 0 !important;

  }



  .cs-case {

    padding: 0 40px;

  }



  .cs-case .contents {

    margin-top: 20px;

  }



  .cs-news .lists {

    margin-bottom: -40px;

    padding: 0 0px;

  }



  .cs-news .types {

    font-size: 14px;

    padding: 8px 12px;

    margin-bottom: 12px;

    border-radius: 12px;

  }



  .cs-news .titles {

    font-size: 18px;

  }



  .mod-tit2 {

    font-size: 34px;

  }



  .cs-investors .lefts {

    padding: 40px 40px 40px 50px;

  }



  .cs-investors .lefts .links {

    width: 140px;

    height: 42px;

    margin-top: 26px;

  }



  .cs-product .rights .links {

    width: 140px;

    height: 40px;

  }

}



@media screen and (max-width:768px) {

  .content-1240 {

    padding: 0 20px;

  }



  .cs-case {

    padding: 0 20px;

  }



  .cs-about .lefts {

    padding-left: 20px;

  }



  .cs-product .rights {

    padding-right: 20px;

  }



  .cs-feed-info {

    padding: 90px 60px 10px 20px;

  }



  :root {

    --padding100: 60px;

  }



  .cs-about .flexs {

    flex-direction: column;

  }



  .cs-about .lefts {

    width: 100%;

    padding-left: 20px;

    padding-right: 20px;

    padding-top: 60px;

  }



  .cs-about .lefts .contents {

    width: 100%;

    max-width: 100%;

  }



  .mod-titles {

    font-size: 38px;

  }



  .cs-about .lefts .contents .texts {

    margin-top: 12px;

  }



  .cs-about .rights {

    width: 80%;

    margin-left: auto;

    margin-top: 40px;

    padding-top: 0px;

  }



  .cs-product {

    flex-direction: column;

  }





  .cs-product .rights {

    width: 100%;

    padding-right: 20px;

    padding-left: 20px;

    padding-top: 35px;

  }



  .cs-product .lefts {

    width: 100%;

  }



  .cs-product .lefts .imgs {

    width: 85%;

  }



  .cs-investors .rights .img_box {

    border-radius: 80px 0 0 0;

  }



  .cs-investors .flexs {

    flex-direction: column;

    background-color: #136530;

  }



  .cs-investors .lefts,

  .cs-investors .rights {

    width: 100%;

  }



  .cs-news .lists {

    flex-direction: column;

  }



  .cs-news .items {

    width: 100%;

    margin-bottom: 35px;

  }



  .cs-news .items:last-child {

    margin-bottom: 0;

  }



  .cs-feed {

    padding-top: 50px;

  }



  .cs-feed .cs-feed-jumb-imgs {

    width: 92.291667%;

  }



  .cs-feed .cs-feed-jumb-imgs .img_box {

    padding-top: 40.50632911%;

    border-radius: 0 0 60px 0;

  }



  .cs-feed-info {

    width: 100%;

    margin-top: 0vw;

    border-radius: 0 50px 0 0;

  }



  .cs-feed-info {

    padding: 40px 60px 10px 20px;

  }





  .cs-feed-info .links {

    margin-top: 30px;

  }



  .cs-feed-info {

    padding: 40px 20px 10px 20px;

  }



  .cs-case {

    flex-direction: column;

  }



  .cs-case .items {

    width: 100%;

    margin-bottom: 40px;

  }



  .cs-case .items:last-child {

    margin-bottom: 0;

  }



  .cs-case .contents .links {

    margin-top: 23px;

  }



  .cs-case .contents .tits {

    font-size: 18px;

    font-weight: bold;

  }



  .cs-news .items {

    padding: 0 0px;

  }



  .cs-about .rights {

    border-radius: 70px 0 0 70px;

  }

}











.about-page6 {

  padding: 1.2rem 0;

  background-color: #f8f8f8;

}



.about-page6 .page-main .page-up .text-body {

  color: #666666;

  line-height: 1.77777778em;

  margin-top: 0.2rem;

}



.about-page6 .page-main .list {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-gap: 0.3rem;

  margin-top: 0.6rem;

}



@media (max-width: 990px) {

  .about-page6 .page-main .list {

    grid-template-columns: repeat(2, 1fr);

  }

}



.about-page6 .page-main .list .item .item-box {

  display: block;

  height: 100%;

  overflow: hidden;

  position: relative;

  background-color: #fff;

  border-radius: 0.1rem;

}



.about-page6 .page-main .list .item .item-box .img a{

  height: 3.3rem;

  min-height: 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;

}

.about-page6 .page-main .list .item .item-box .img a{

  display: block;

  width: 100%;

  height: 100%;

}

.about-page6 .page-main .list .item .item-box .img img{

  max-width: 98%;

  max-height: 70.7%;

}




.about-page6 .page-main .list .item .item-box .title {

  max-width: 98%;
  line-height: 23px;
  text-align: center;
  font-size: 12px;

}