@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 ink {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
  }
}
@keyframes ink {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
  }
}
@-webkit-keyframes right-img-animate {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes right-img-animate {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@-webkit-keyframes right-animate {
  from {
    opacity: 0;
    transform: translate(100%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@keyframes right-animate {
  from {
    opacity: 0;
    transform: translate(100%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes up-animate {
  0% {
    opacity: 0;
    transform: matrix(1, 0.1, 0, 1, 0, 20);
  }
  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@keyframes up-animate {
  0% {
    opacity: 0;
    transform: matrix(1, 0.1, 0, 1, 0, 20);
  }
  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@-webkit-keyframes scaleInImg {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleInImg {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes icon-video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes icon-video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes icon_video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes icon_video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes h-line {
  0% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  20% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  30% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 0;
  }
  31% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 0;
  }
  50% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
}
@keyframes h-line {
  0% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  20% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  30% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 0;
  }
  31% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 0;
  }
  50% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
}
.scroll-animate.animated {
  visibility: hidden;
}
.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.ink {
  -webkit-animation-name: ink;
  animation-name: ink;
}
.right-img-animate {
  display: inline-block;
  -webkit-animation-name: right-img-animate;
  animation-name: right-img-animate;
}
.right-animate {
  display: inline-block;
  -webkit-animation-name: right-animate;
  animation-name: right-animate;
}
.up-animate {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-animation: up-animate 1.2s cubic-bezier(0.49, 0.54, 0.16, 1);
  animation: up-animate 1.2s cubic-bezier(0.49, 0.54, 0.16, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.scaleInImg {
  -webkit-animation-name: scaleInImg;
  animation-name: scaleInImg;
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.icon-video {
  -webkit-animation-name: icon-video;
  animation-name: icon-video;
}
.icon_video {
  -webkit-animation-name: icon_video;
  animation-name: icon_video;
}
.h-line {
  -webkit-animation-name: h-line;
  animation-name: h-line;
}
/*
插件：swiper轮播swiper.min.css
版本：4.5.0
官网：https://www.swiper.com.cn
*/
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform,height;
  transition-property: transform,height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}
.color-blue-002 {
  color: #002fa7;
}
.color-green-72f {
  color: #72ffae;
}
.color-green-7cd {
  color: #7cd29a;
}
.bg-blue-002 {
  background-color: #002fa7;
}
.bg-green-72f {
  background-color: #72ffae;
}
.bg-green-7cd {
  background-color: #7cd29a;
}
.b--aw {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
}
.b--awc {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
}
.b--aw::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  z-index: 2;
}
:root {
  /* 导航高度 */
  --header-height: 1rem;
  /* COLOR */
  --color-active: #002fa7;
  --color-blue-002: #002fa7;
  --color-blue-72b: #09172b;
  --color-blue-02F: #14202F;
  --color-blue-A29: #101A29;
  --color-green-72f: #72ffae;
  --color-green-7cd: #7cd29a;
  --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);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font98: clamp(32px, 0.98rem, 98px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
}
/* 公共字体 */
.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);
}
.font64 {
  font-size: var(--font64);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font98 {
  font-size: var(--font98);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
/* 字体 */

/*@font-face {*/
/*  font-family: 'HarmonyOS_Sans_SC_L';*/
/*  src: url('../fonts/HarmonyOS_Sans_SC_Light.woff2') format('truetype');*/
/*  font-weight: 500;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
/*.HarmonyOS_Sans_SC_L {*/
/*  font-family: 'HarmonyOS_Sans_SC_L';*/
/*}*/

/*@font-face {*/
/*  font-family: 'HarmonyOS_Sans_SC_R';*/
/*  src: url('../fonts/HarmonyOS_Sans_SC.woff2') format('truetype');*/
/*  font-weight: 500;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
/*.HarmonyOS_Sans_SC_R,*/
/*.font-R {*/
/*  font-family: 'HarmonyOS_Sans_SC_R' !important;*/
/*}*/

/*@font-face {*/
/*  font-family: 'HarmonyOS_Sans_SC_B';*/
/*  src: url('../fonts/HarmonyOS_Sans_SC_Bold.woff2') format('truetype');*/
/*  font-weight: 500;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
/*.HarmonyOS_Sans_SC_B {*/
/*  font-family: 'HarmonyOS_Sans_SC_B';*/
/*}*/

/*@font-face {*/
/*  font-family: 'HarmonyOS_Sans_SC_M';*/
/*  src: url('../fonts/HarmonyOS_Sans_SC_Medium.woff2') format('truetype');*/
/*  font-weight: 500;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
.HarmonyOS_Sans_SC_M {
  font-family: 'HarmonyOS_Sans_SC_M';
}
/* 初始化 */
* {
  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: 'HarmonyOS_Sans_SC_R', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  color: #fff;
  background: #000000;
}
@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;
}
p {
  text-align: justify;
}
.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: 3px;
  height: 1px;
}
::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  background-color: var(--color-active);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-track {
  /*滚动条-背景*/
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.6);
}
.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;
}

/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: all 0.45s ease;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}

/* 文字超出隐藏 */
.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;
}
/* 布局 */
.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: 8px;
  height: 4px;
  background-color: var(--color-gray-ddd);
  border-radius: 0;
  opacity: 1;
  margin: 0 2px;
  -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 {
  width: 30px;
  background-color: var(--color-active);
}
.slide-btn {
  width: 0.6rem;
  height: 0.6rem;
  background: no-repeat center var(--color-gray-666);
  border-radius: 50%;
  margin-top: -0.3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.slide-btn img,
.slide-btn svg {
  width: 0.22rem;
  height: auto;
}
@media (max-width: 1024px) {
  .slide-btn {
    display: none;
  }
}
/* 公共样式 - 结束 */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  margin: auto;
  /* ----------------------------------------------------------    手机端导航 */
}
#header .header-pc {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
#header .header-pc .beforebg {
  display: block;
  position: absolute;
  left: 0;
  width: 120%;
  left: -10%;
  top: 0;
  backdrop-filter: blur(16px);
  transition: height 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;
  height: 0;
  z-index: 10;
  background: rgba(0, 47, 167, 0.1);
}
#header .header-pc::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 11;
}
#header .header-pc .header-wrap {
  margin: auto;
  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-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
#header .header-pc .header-wrap .logo {
  position: relative;
  height: var(--header-height);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .header-pc .header-wrap .logo img,
#header .header-pc .header-wrap .logo svg {
  width: auto;
  height: 0.52rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#header .header-pc .header-wrap .logo svg path {
  fill: #fff;
  opacity: 1;
}
#header .header-pc .header-wrap .logo .panellogo {
  position: absolute;
  top: var(--header-height);
  left: 1.45rem;
  width: 2.8rem;
  height: 2.8rem;
  opacity: 0;
visibility: hidden;
  z-index: 10;
}
#header .header-pc .header-wrap .logo .panellogo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#header .header-pc .header-wrap .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0 40px;
}
#header .header-pc .header-wrap .header-right .nav {
  position: relative;
  transition: all 0.4s ease-in-out;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#header .header-pc .header-wrap .header-right .nav .bor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 0.03rem;
  background-color: var(--color-active);
  display: none;
  visibility: hidden;
  opacity: 0;
}
#header .header-pc .header-wrap .header-right .nav dl {
  position: relative;
  z-index: 10;
  /* 添加额外的样式来保持下拉菜单显示 */
}
#header .header-pc .header-wrap .header-right .nav dl:hover {
  z-index: 20;
}
#header .header-pc .header-wrap .header-right .nav dl .dep2 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  padding: 0 0.26rem;
  margin-top: 0.2rem;
}
#header .header-pc .header-wrap .header-right .nav dl .dep2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.09rem;
  font-size: var(--font18);
  line-height: calc(48/18);
  opacity: 0.8;
  text-align: center;
}
#header .header-pc .header-wrap .header-right .nav dl .dep2 li a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  white-space: nowrap;
  opacity: 0.8;
  color: #fff;
}
#header .header-pc .header-wrap .header-right .nav dl .dep2 li a span {
  position: relative;
  display: inline;
  width: 100%;
  height: 100%;
}
#header .header-pc .header-wrap .header-right .nav dl .dep2 li a span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  left: 50%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s;
}
#header .header-pc .header-wrap .header-right .nav dl .dep2 li:hover a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
}
#header .header-pc .header-wrap .header-right .nav dl .dep2 li:hover a span:before {
  width: 100%;
  left: 0;
  transition: all 0.3s;
}
#header .header-pc .header-wrap .header-right .nav dl:visible ~ .dep2 {
  display: block;
}
#header .header-pc .header-wrap .header-right .nav dt a {
  font-size: var(--font18);
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  height: var(--header-height);
  padding: 0 0.26rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .header-pc .header-wrap .header-right .nav dt a.active {
  color: #fff;
}
#header .header-pc .header-wrap .header-right .nav dt a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  border-bottom: solid 0.03rem inherit;
}
#header .header-pc .header-wrap .header-right .nav dt a span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0.03rem;
  background-color: var(--color-active);
  transition: all 0.3s;
}
#header .header-pc .header-wrap .header-right .nav dt a span:hover:after {
  width: 100%;
  left: 0;
}
#header .header-pc .header-wrap .header-right .nav dd {
  display: none;
  width: 140px;
  background-color: var(--color-white);
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -70px;
}
#header .header-pc .header-wrap .header-right .nav dd .ovs {
  height: 100%;
  padding: 20px 0 10px;
}
#header .header-pc .header-wrap .header-right .nav dd .ovs a {
  display: block;
  font-size: var(--font14);
  color: var(--color-black);
  line-height: 1.5em;
  margin-bottom: 15px;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .header-pc .header-wrap .header-right .nav dd .ovs a:hover {
  color: var(--color-active);
}
#header .header-pc .header-wrap .header-right .nav dd.nav-open {
  width: 100%;
  position: fixed;
  top: var(--header-height);
  left: 0;
  margin-left: 0;
}
#header .header-pc .header-wrap .header-right .nav dd.nav-open .container-custom {
  width: 50.652%;
  min-width: 970px;
  margin: auto;
}
#header .header-pc .header-wrap .header-right .nav dd.nav-open .container-custom .row {
  margin-left: -15px;
  margin-right: -15px;
}
#header .header-pc .header-wrap .header-right .nav dd.nav-open .container-custom .ovs {
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}
#header .header-pc .header-wrap .header-right .nav dd.nav-open .container-custom .ovs h3 {
  font-weight: bold;
  border-bottom: 1px solid var(--color-gray-100);
  margin-top: 6px;
  margin-bottom: 20px;
}
#header .header-pc .header-wrap .header-right .nav dd.nav-open .container-custom .ovs h3 a {
  margin-bottom: 6px;
}
#header .header-pc .header-wrap .header-right .nav dd.nav-open .container-custom .ovs a {
  text-align: left;
}
#header .header-pc .header-wrap .header-right .nav .specialdep {
  left: -0.35rem;
}
#header .header-pc .header-wrap .header-right .nav .specialdep li a {
  width: 100%;
  text-align: center;
}
#header .header-pc .header-wrap .header-right .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0 0.3rem;
  z-index: 10;
}
#header .header-pc .header-wrap .header-right .column .header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  height: var(--header-height);
  cursor: pointer;
}
#header .header-pc .header-wrap .header-right .column .header-search {
  line-height: 1;
}
#header .header-pc .header-wrap .header-right .column .header-search:hover .search-btn svg path {
  fill: var(--color-active);
}
#header .header-pc .header-wrap .header-right .column .header-search .search-btn img,
#header .header-pc .header-wrap .header-right .column .header-search .search-btn svg {
  width: 0.18rem;
  min-width: 12px;
  height: auto;
  margin-top: 0.04rem;
  opacity: 0.8;
}
#header .header-pc .header-wrap .header-right .column .header-search .search-btn svg path {
  fill: #fff;
}
#header .header-pc .header-wrap .header-right .column .search-panel {
  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;
  position: fixed;
  width: 100%;
  left: 0;
  top: 1rem;
  padding: 0.64rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
#header .header-pc .header-wrap .header-right .column .search-panel .innerbox {
  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;
  border-bottom: solid 1px #fff;
  width: 34.88372093%;
}
#header .header-pc .header-wrap .header-right .column .search-panel .innerbox input {
  width: 100%;
  padding: 0.19rem 0;
  color: #fff;
  opacity: 0.8;
}
#header .header-pc .header-wrap .header-right .column .search-panel .innerbox input::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.9;
}
#header .header-pc .header-wrap .header-right .column .search-panel .innerbox input:-moz-placeholder {
  color: #fff;
  opacity: 0.9;
}
#header .header-pc .header-wrap .header-right .column .search-panel .innerbox input::-moz-placeholder {
  color: #fff;
  opacity: 0.9;
}
#header .header-pc .header-wrap .header-right .column .search-panel .innerbox input:-ms-input-placeholder {
  color: #fff;
  opacity: 0.9;
}
#header .header-pc .header-wrap .header-right .column .header-language:before {
  position: absolute;
  content: '';
  top: 0.26rem;
  left: -0.14rem;
  width: 0.46rem;
  height: 0;
  background-color: #111726;
  border-radius: 23px;
  transition: height 0.2s ease-in-out;
}
#header .header-pc .header-wrap .header-right .column .header-language:hover::before {
  height: 126px;
}
#header .header-pc .header-wrap .header-right .column .header-language:hover .round {
  z-index: 10;
}
#header .header-pc .header-wrap .header-right .column .header-language:hover .round .header-language-icon img,
#header .header-pc .header-wrap .header-right .column .header-language:hover .round .header-language-icon svg {
  opacity: 1;
  -webkit-filter: drop-shadow(-80px 0 var(--color-white));
  filter: drop-shadow(-80px 0 var(--color-white));
  -webkit-transform: translate(80px);
  transform: translate(80px);
}
#header .header-pc .header-wrap .header-right .column .header-language:hover .language-con {
  display: block;
}
#header .header-pc .header-wrap .header-right .column .header-language .round {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  grid-gap: 0.06rem;
}
#header .header-pc .header-wrap .header-right .column .header-language .round .header-language-icon {
  overflow: hidden;
}
#header .header-pc .header-wrap .header-right .column .header-language .round .header-language-icon img,
#header .header-pc .header-wrap .header-right .column .header-language .round .header-language-icon svg {
  width: 0.18rem;
  min-width: 12px;
  height: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}
#header .header-pc .header-wrap .header-right .column .header-language .language-con {
  position: absolute;
  top: 27%;
  left: 10%;
  transform: translateX(-50%);
  box-shadow: 8px 0 50px rgba(0, 0, 0, 0.08);
  padding: 0.24rem 0;
  text-align: center;
  display: none;
}
#header .header-pc .header-wrap .header-right .column .header-language .language-con a {
  color: #FFFFFF;
  opacity: 0.3;
  display: block;
  line-height: 2;
  width: 0.46rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .header-pc .header-wrap .header-right .column .header-language .language-con a:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  opacity: 1 !important;
}
#header .header-pc .header-wrap .header-right .column .header-language .language-con a:first-child {
  margin-top: 0.23rem;
}
@media (max-width: 990px) {
  #header .header-pc {
    display: none;
  }
}
#header .mask-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 29, 44, 0.2);
  display: none;
}
#header .mask-bg.active {
  display: block;
}
#header .m_header_box {
  width: 100%;
  height: auto;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
}
#header .m_header_box .header_title {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  position: relative;
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
#header .m_header_box .header_title .logo {
  height: 100%;
  overflow: hidden;
}
#header .m_header_box .header_title .logo a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .m_header_box .header_title .logo img,
#header .m_header_box .header_title .logo svg {
  min-height: 40%;
  max-height: 50%;
  width: auto;
  height: auto;
}
#header .m_header_box .header_title .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#header .m_header_box .header_title .menu_btn {
  width: 30px;
  height: 30px;
  position: relative;
  overflow: hidden;
}
#header .m_header_box .header_title .menu_btn::after,
#header .m_header_box .header_title .menu_btn::before,
#header .m_header_box .header_title .menu_btn i {
  width: 70%;
  height: 2px;
  display: block;
  background: var(--color-black);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -35%;
  transform-origin: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .m_header_box .header_title .menu_btn::before {
  content: '';
  margin-top: -8px;
}
#header .m_header_box .header_title .menu_btn::after {
  content: '';
  margin-top: 6px;
}
#header .m_header_box .header_title .menu_btn.active i {
  opacity: 0;
}
#header .m_header_box .header_title .menu_btn.active::before {
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 5px;
  background: var(--color-active);
}
#header .m_header_box .header_title .menu_btn.active::after {
  margin-top: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 5px;
  background: var(--color-active);
}
#header .m_header_box .header_title .head_btn {
  width: auto;
  height: 30px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}
#header .m_header_box .header_title .head_btn .icon {
  max-width: 14px;
  height: 14px;
  font-size: 0;
  margin-right: 5px;
  filter: invert(1);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .m_header_box .header_title .head_btn .link {
  line-height: 1;
  font-size: 12px;
  color: var(--color-black);
  margin-top: 3px;
}
#header .m_header_box .header_title .head_btn .link span {
  opacity: 0.6;
}
#header .m_header_box .header_title .head_btn .link a {
  color: var(--color-black);
  opacity: 0.6;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .m_header_box .header_title .head_btn .link a:hover {
  opacity: 1;
}
#header .m_header_box .header_title .head_btn:hover .icon {
  filter: invert(1);
}
#header .m_header_box .header_title .head_btn:hover .link {
  color: var(--color-black);
}
#header .m_header_box .header_title .head_btn:hover .link a,
#header .m_header_box .header_title .head_btn:hover .link span {
  color: var(--color-black);
}
#header .m_header_box .header_body {
  width: 100%;
  height: calc(100vh - 50px);
  background: var(--color-gray-f6);
  display: none;
  overflow: hidden;
}
#header .m_header_box .header_body .menu_info {
  width: 100%;
  height: 100%;
  padding: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
#header .m_header_box .header_body .menu_nav {
  width: 100%;
  height: auto;
  padding: 20px;
  overflow: hidden;
  overflow-y: auto;
}
#header .m_header_box .header_body .menu_nav ul {
  padding: 0;
  margin: 0;
}
#header .m_header_box .header_body .menu_nav ul li {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
#header .m_header_box .header_body .menu_nav ul li .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
#header .m_header_box .header_body .menu_nav ul li .one a {
  padding: 15px 0;
  display: block;
  font-size: 14px;
  color: var(--color-gray-444);
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex: 1;
  position: relative;
}
#header .m_header_box .header_body .menu_nav ul li .one a .subtitle {
  font-size: 14px;
  margin-right: 10px;
}
#header .m_header_box .header_body .menu_nav ul li .one a .title {
  font-size: 14px;
}
#header .m_header_box .header_body .menu_nav ul li .one .icon {
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  color: var(--color-gray-444);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .m_header_box .header_body .menu_nav ul li .one .icon img,
#header .m_header_box .header_body .menu_nav ul li .one .icon svg {
  position: relative;
  width: 10px;
  height: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .m_header_box .header_body .menu_nav ul li .one.active a {
  color: var(--color-active);
}
#header .m_header_box .header_body .menu_nav ul li .one.active .icon svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#header .m_header_box .header_body .menu_nav ul li .one.active .icon svg path {
  fill: var(--color-active);
}
#header .m_header_box .header_body .menu_nav ul li ul {
  border-top: 1px solid var(--color-active);
  padding: 10px 0;
  display: none;
}
#header .m_header_box .header_body .menu_nav ul li ul li {
  border: 0;
}
#header .m_header_box .header_body .menu_nav ul li ul li a {
  display: block;
  font-size: 13px;
  padding: 6px 0 6px 20px;
  color: var(--color-gray-444);
  position: relative;
}
#header .m_header_box .header_body .menu_nav ul li ul li a .icon {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  color: var(--color-gray-444);
}
#header .m_header_box .header_body .menu_nav ul li ul li a .icon img,
#header .m_header_box .header_body .menu_nav ul li ul li a .icon svg {
  width: 8px;
  height: auto;
  position: static;
  margin: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .m_header_box .header_body .menu_nav ul li ul li .two.active {
  color: var(--color-active);
}
#header .m_header_box .header_body .menu_nav ul li ul li .two.active a {
  color: var(--color-active);
}
#header .m_header_box .header_body .menu_nav ul li ul li .two.active svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#header .m_header_box .header_body .menu_nav ul li ul li .two.active svg path {
  fill: var(--color-active);
}
#header .m_header_box .header_body .menu_nav ul li ul li ul {
  border: 0;
  display: none;
}
#header .m_header_box .header_body .menu_nav ul li ul li ul li a {
  padding: 10px 0 10px 35px;
  font-size: 12px;
  color: var(--color-gray-999);
}
#header .m_header_box .header_body .menu_nav ul li ul li ul li a:before {
  content: '';
  width: 5px;
  height: 1px;
  color: var(--color-gray-999);
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -1.5px;
  z-index: 1;
}
#header .m_header_box .header_body .menu_nav ul li ul li ul li a.active:before {
  background: var(--color-active);
}
#header .m_header_box .header_body .menu_nav ul li ul li ul.active {
  display: block;
}
#header .m_header_box .header_body .menu_form {
  width: 100%;
  height: auto;
  padding: 0 20px;
  overflow: hidden;
}
#header .m_header_box .header_body .menu_form .center {
  width: 100%;
  height: 50px;
  background-color: var(--color-white);
  overflow: hidden;
}
#header .m_header_box .header_body .menu_form .center form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .m_header_box .header_body .menu_form .center form input {
  flex: 1;
  height: 100%;
  padding: 0 15px;
  font-size: 14px;
  color: var(--color-gray-444);
  border: 0;
}
#header .m_header_box .header_body .menu_form .center form button {
  width: 70px;
  border: 0;
  height: 100%;
  padding: 0;
  background: var(--color-active);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .m_header_box .header_body .menu_form .center form button img,
#header .m_header_box .header_body .menu_form .center form button svg {
  width: 18px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#header .m_header_box .header_body .menu_lang {
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 0 20px;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .m_header_box .header_body .menu_lang .one {
  width: auto;
  height: 36px;
  margin-right: 10px;
  overflow: hidden;
}
#header .m_header_box .header_body .menu_lang .one a {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: 50px;
  font-size: 12px;
  color: var(--color-gray-444);
}
#header .m_header_box .header_body .menu_lang .one a.active {
  background: var(--color-active);
  color: var(--color-white);
}
@media (max-width: 990px) {
  #header .m_header_box {
    display: block;
  }
}
.hovered .header-pc .beforebg {
  height: 4rem !important;
}
.hovered .header-pc .header-wrap .logo .panellogo {
  opacity: 1 !important;
  visibility: visible !important;
}
.hovered .header-pc .header-wrap .header-right .nav dt a {
  padding: 0 0.55rem !important;
  transition: all 0.4s ease-in-out;
}
.hovered .header-pc .header-wrap .header-right .nav .dep2 {
  opacity: 1 !important;
  visibility: visible !important;
  padding: 0 0.55rem !important;
}
.hovered .header-pc .header-wrap .header-right .column .search-panel {
  opacity: 1 !important;
  visibility: visible !important;
}
.socials-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0 0.1rem;
}
.socials-wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  width: 36px;
  height: 36px;
  background-color: white;
  border-radius: 50%;
}
.socials-wrap a .icon {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.socials-wrap a .icon img,
.socials-wrap a .icon svg {
  width: 20px;
  height: auto;
}
.socials-wrap a .socials-img {
  position: absolute;
  top: 46px;
  left: 50%;
  margin-left: -52px;
  width: 104px;
  height: 104px;
  background-color: white;
  border-radius: 8px;
  padding: 8px;
  z-index: 99;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-filter: alpha(opacity=0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  will-change: opacity;
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -webkit-transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -moz-transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -ms-transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  -o-transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}
.socials-wrap a .socials-img img {
  width: 100%;
  height: 100%;
}
.socials-wrap a .socials-img:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 6px 6px 6px;
  border-color: transparent transparent white transparent;
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  margin: auto;
}
.socials-wrap a:hover .socials-img {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -webkit-filter: alpha(opacity=100);
}
@-webkit-keyframes rotate {
  from {
    rotate: 0deg;
  }
  50% {
    scale: 1 1.5;
  }
  to {
    rotate: 360deg;
  }
}
@keyframes rotate {
  from {
    rotate: 0deg;
  }
  50% {
    scale: 1 1.5;
  }
  to {
    rotate: 360deg;
  }
}
.rotate {
  -webkit-animation-name: rotate;
  animation-name: rotate;
}
@keyframes circular {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circularBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.blob {
  background-color: white;
  height: 34vmax;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: -webkit-linear-gradient(to right, aquamarine, mediumpurple);
  background: linear-gradient(to right, aquamarine, mediumpurple);
  animation: rotate 20s infinite;
  opacity: 0.8;
}
.blur {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(12vmax);
}
#footer {
  --color: #fff;
  color: var(--color);
  background-color: #1a1d25;
  position: relative;
  overflow: hidden;
}
#footer .text-body p {
  white-space: initial;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
}
#footer .text-body p a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#footer .text-body p a:hover {
  color: #fff;
}
@media (max-width: 1024px) {
  #footer .text-body {
    text-align: center;
  }
  #footer .text-body p {
    text-align: center;
  }
  #footer .text-body span,
  #footer .text-body a {
    display: block;
  }
}
#footer .footer-up {
  position: relative;
  z-index: 3;
}
#footer .footer-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;
  padding: 1.4rem 0 0.75rem;
  grid-gap: 0 50px;
}
@media (max-width: 1024px) {
  #footer .footer-up .wrap-box {
    display: block;
    padding-bottom: 0.4rem;
  }
  #footer .footer-up .wrap-box .wrap-left {
    display: none;
  }
}
#footer .footer-up .logo {
  margin-bottom: 0.36rem;
}
@media (max-width: 1024px) {
  #footer .footer-up .logo {
    display: none;
  }
}
#footer .footer-up .logo img,
#footer .footer-up .logo svg {
  width: auto;
  height: 0.71rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#footer .footer-up .text-body {
  line-height: 2em;
}
#footer .footer-up .follow-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.2rem;
  margin-top: 0.4rem;
}
@media (max-width: 1024px) {
  #footer .footer-up .follow-us {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
#footer .footer-up .follow-us .follow-us-img {
  padding: 0.06rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.05rem;
}
#footer .footer-up .follow-us .follow-us-img img {
  max-width: 1.28rem;
  border-radius: 0.05rem;
}
#footer .footer-down {
  position: relative;
  z-index: 3;
}
#footer .footer-down .wrap-box {
  padding: 0.395rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.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;
}
#footer .footer-down .wrap-box .wrap-left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding-right: 50px;
}
@media (max-width: 1024px) {
  #footer .footer-down .wrap-box {
    display: block;
    line-height: 1.4;
    border: none;
    padding-top: 0;
    padding-bottom: 1rem;
  }
  #footer .footer-down .wrap-box .wrap-left {
    padding: 0;
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    -webkit-flex: inherit;
    flex: inherit;
  }
  #footer .footer-down .wrap-box .wrap-right {
    text-align: center;
    margin-top: 0.1rem;
  }
}
#footer .footer-down .text-body span + span {
  margin-left: 0.2rem;
}
#footer .footer-down .wrap-right a {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 0.2rem;
  margin-left: 0.13rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#footer .footer-down .wrap-right a:first-child {
  padding: 0;
  margin: 0;
}
#footer .footer-down .wrap-right a:first-child::before {
  display: none;
}
#footer .footer-down .wrap-right a:hover {
  color: #fff;
}
#footer .footer-down .wrap-right a::before {
  content: '';
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#footer .foot-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0 1.3rem;
  margin-top: 0.15rem;
}
@media (max-width: 1024px) {
  #footer .foot-nav {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  #footer .foot-nav .dl:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
#footer .foot-nav .dl a:hover {
  color: #fff;
  opacity: 1;
}
#footer .foot-nav .dl .dt {
  display: block;
  padding-bottom: 0.2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#footer .foot-nav .dl .dt.active a {
  color: #fff;
}

#footer .foot-nav .dl .dt
#footer .foot-nav .dl .dt.active .icon svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#footer .foot-nav .dl .dt.active .icon svg path {
  fill: #fff;
}
#footer .foot-nav .dl .dt a {
  opacity: 1;
  font-size: var(--font18);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #fff;
}
#footer .foot-nav .dl .dt a::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--color-active);
  border-radius: 50%;
  position: absolute;
  left: -0.16rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1024px) {
  #footer .foot-nav .dl .dt a::before {
    display: none;
  }
}
#footer .foot-nav .dl .dt a:hover {
  color: #fff;
  opacity: 1;
}
#footer .foot-nav .dl .dt .icon {
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  color: var(--color-gray-444);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
}
#footer .foot-nav .dl .dt .icon img,
#footer .foot-nav .dl .dt .icon svg {
  position: relative;
  width: 10px;
  height: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  #footer .foot-nav .dl .dt {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    padding-right: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  #footer .foot-nav .dl .dt .icon {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  #footer .foot-nav .dl .foot-nei-nav {
    display: none;
    margin: 0 0 0.1rem;
    -webkit-transform: translateY(-0.1rem);
    transform: translateY(-0.1rem);
  }
}
#footer .foot-nav .dl .dd {
  opacity: 0.8;
  line-height: 2.33333333em;
  display: block;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
    color: #fff;
}
#footer .foot-nav .dl .dd:hover {
  transform: translateX(0.06rem);
}
@media (max-width: 767px) {
  #footer .socials-wrap {
    margin-top: 0.4rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: 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;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: var(--color-active);
}
#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: var(--color-active);
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
}
#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: var(--color-active);
}
#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-3.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-4.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-5.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-6.png) no-repeat center / 100%;
}
.header-placeholder {
  height: var(--header-height);
}
.wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
  /*margin-top: var(--header-height);*/
}
.A-container {
  width: 100%;
  height: auto;
  max-width: 89.58333333%;
  margin: 0 auto;
}
@media (min-width: 1901px) {
  .A-container {
    max-width: 1720px;
  }
}
@media (max-width: 1680px) {
  .A-container {
    max-width: 91.66666667%;
  }
}
@media (max-width: 1024px) {
  .A-container {
    max-width: 100%;
    padding: 0 20px;
  }
}
.container {
  width: 100%;
  height: auto;
  max-width: 72.91666667%;
  margin: 0 auto;
}
@media (min-width: 1901px) {
  .container {
    max-width: 1400px;
  }
}
@media (max-width: 1680px) {
  .container {
    max-width: 83.33333333%;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
.H-box {
  width: 100%;
  height: 0;
  position: relative;
  transform: translateY(calc(var(--header-height) * -1));
}
@-webkit-keyframes slidex {
  0% {
    left: -100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes slidex {
  0% {
    left: -100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.scaleInImg {
  -webkit-animation-name: slidex;
  animation-name: slidex;
}
.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.btn-container .more-primary {
  position: relative;
  min-width: 1.6rem;
  height: 0.6rem;
  min-height: 40px;
  padding: 0 0.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  color: #fff;
  font-family: 'HarmonyOS_Sans_SC_L';
  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) {
  .btn-container .more-primary {
    padding: 0 0.5rem;
  }
}
.btn-container .more-primary::before {
  content: "";
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s ease-in-out;
  pointer-events: none;
}
.btn-container .more-primary.active .more-primary-circle:before,
.btn-container .more-primary:hover .more-primary-circle:before {
  transform: scale(60);
  opacity: 0.1;
}
.btn-container .more-primary .more-primary-str {
  position: relative;
  z-index: 1;
  padding-left: 0.16rem;
}
.btn-container .more-primary .more-primary-circle {
  position: relative;
}
.btn-container .more-primary .more-primary-circle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform-origin: center center;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
@media (max-width: 1580px) {
  .btn-container .more-primary .more-primary-circle:before {
    width: 3px;
    height: 3px;
  }
}
.btn-container .more-primary .more-primary-circle::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
@media (max-width: 1580px) {
  .btn-container .more-primary .more-primary-circle::after {
    width: 3px;
    height: 3px;
  }
}
.btn-container .more-primary2 {
  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;
  font-family: 'HarmonyOS_Sans_SC_L';
  color: #fff;
  opacity: 0.6;
}
.btn-container .more-primary2 .more-primary-circle {
  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;
  margin-left: 0.12rem;
}
.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-ban {
  position: relative;
}
.page-ban .img {
  overflow: hidden;
  position: relative;
}
.page-ban .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}
.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 .title {
  color: var(--color-white);
  line-height: 1;
  text-transform: capitalize;
}
.page-top-menu {
  background-color: white;
  box-shadow: 0px 0px 0.3rem 0px 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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.8rem;
}
.page-top-menu .menu-main {
  line-height: 0.78rem;
  min-height: 50px;
  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.72rem;
}
.page-top-menu .menu-main a {
  position: relative;
}
.page-top-menu .menu-main a::before {
  content: '';
  width: 0;
  height: 0.02rem;
  background-color: var(--color-active);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  margin: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.page-top-menu .menu-main .menu-location {
  position: relative;
}
.page-top-menu .menu-main .menu-location.active a {
  color: var(--color-active);
}
.page-top-menu .menu-main .menu-location.active a::before {
  width: 0.3rem;
}
.page-title .title {
  font-family: 'HarmonyOS_Sans_SC_B';
  color: #fff;
  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) {
  .page-title .title {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.page-title .title .icon-box {
  width: 0.6rem;
  position: relative;
}
.page-title .title .icon-box .icon {
  position: absolute;
  left: 0;
  top: 0;
}
.page-title .title .name {
  margin-left: 0.27rem;
}
@media (max-width: 1024px) {
  .page-title .title .name {
    margin-left: 0;
    margin-top: 0.2rem;
  }
}
.page-title .title svg g {
  opacity: 1 !important;
}
.page-title .text-body {
  color: #fff;
  line-height: 1.7em;
  padding-left: 0.88rem;
  margin-top: 0.13rem;
  opacity: 0.8 !important;
}
@media (max-width: 1024px) {
  .page-title .text-body {
    padding-left: 0;
  }
}
.page-center {
  text-align: center;
}
.page-center * {
  text-align: center;
}
.tab-ul li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tab-ul li .top {
  cursor: pointer;
  padding: 0.21rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tab-ul li .top .tab-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.tab-ul li .top .tab-box .tab-title {
  font-size: var(--font18);
  color: var(--color-black);
  line-height: 1.4;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.tab-ul li .top .tab-box .btn .addBox {
  width: 30px;
  height: 30px;
  background-color: var(--color-black);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab-ul li .top .tab-box .btn .addBox i {
  width: 2px;
  height: 10px;
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.tab-ul li .top .tab-box .btn .addBox i:last-child {
  transform: rotate(90deg);
  position: absolute;
}
.tab-ul li .bom {
  display: none;
  padding-bottom: 0.5rem;
}
.tab-ul li .bom .text-body h6 {
  font-size: var(--font18);
  color: var(--color-black);
  line-height: 1.4;
  margin-bottom: 0.22rem;
  font-weight: bold;
}
.tab-ul li.active .top {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.tab-ul li.active .top .tab-box .btn .addBox {
  background-color: var(--color-active);
}
.tab-ul li.active .top .tab-box .btn .addBox i:first-child {
  transform: rotate(90deg);
}
.forms {
  /* 验证码 */
  /* 文件上传 */
  /* 单选-多选 */
  /* 隐私条款 */
}
.forms input {
  width: 100%;
  height: 0.6rem;
  min-height: 45px;
  background-color: #fbfbfb;
  padding: 0 0.26rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.14rem;
  color: #222;
}
.forms textarea {
  width: 100%;
  height: 1.2rem;
  min-height: 60px;
  background-color: #fbfbfb;
  padding: 10px 0.26rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.14rem;
  color: #222;
}
.forms select {
  width: 100%;
  height: 0.6rem;
  min-height: 45px;
  background-color: #fbfbfb;
  padding: 0 0.26rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.14rem;
  color: #222;
}
.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;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.layui-form-select dl {
  top: 100% !important;
  padding: 10px 0;
  margin-top: 8px;
  border: 1px solid #adadad;
  border-radius: 10px;
  box-shadow: none;
}
.layui-form-select dl dd:first-child {
  display: none;
}
.layui-form-select dl dt,
.layui-form-select dl dd {
  font-size: var(--font16);
  padding: 0 0.24rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.layui-form-select dl .layui-this {
  color: var(--color-active) !important;
  background-color: transparent !important;
}
.layui-form-select dl dd:hover {
  background: var(--color-gray-eee);
}
.searchform {
  position: relative;
}
.searchform .input {
  font-size: var(--font14);
  color: var(--color-black);
  font-style: normal;
  width: 100%;
  height: 36px;
  padding-left: 20px;
  padding-right: 45px;
  border: 1px solid var(--color-gray-ddd);
  border-radius: 99px;
  background-color: transparent;
}
.searchform .iconfont {
  height: 100%;
  position: absolute;
  right: 0.2rem;
  top: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-black);
}
@keyframes TopBtn {
  0% {
    top: 0;
    opacity: 1;
  }
  35% {
    top: -50%;
    opacity: 0;
  }
  65% {
    top: 50%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@-webkit-keyframes TopBtn {
  0% {
    top: 0;
    opacity: 1;
  }
  35% {
    top: -50%;
    opacity: 0;
  }
  65% {
    top: 50%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.TopBtn {
  -webkit-animation-name: TopBtn;
  animation-name: TopBtn;
}
.kefu-box {
  position: fixed;
  top: 70%;
  right: 0.2rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
}
.kefu-box .item {
  width: 0.56rem;
  height: 0.56rem;
  background: rgba(3, 14, 40, 0.6);
  margin-top: 0.06rem;
  border-radius: 0.05rem;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 0.3rem rgba(32, 40, 36, 0.15);
  overflow: hidden;
}



.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;
}
.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: 0;
  height: 100%;
  background-color: var(--color-active);
  border-radius: 0.05rem;
  white-space: nowrap;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.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:#fff;
  opacity: 0;
  visibility: hidden;
}
.kefu-box .item .info img {
  max-width: 22px;
  max-height: 22px;
  margin-right: 0.1rem;
  filter: brightness(0) invert(1);
}


@media (max-width: 1580px) {
  .kefu-box .item .info img {
    max-width: 15px;
    max-height: 15px;
  }
}


.kefu-box .item#backToTopBtn {
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.08);
}
.kefu-box .item#backToTopBtn .item-box img {
  position: relative;
}
.kefu-box .item#backToTopBtn:hover .item-box .img {
  opacity: 1;
}
.kefu-box .item:hover{
    overflow: inherit;
}
.kefu-box .item:hover .info {
  width: auto;
  transition: all 0.4s ease-in-out;
}
.kefu-box .item:hover .info a {
  opacity: 1;
  visibility: visible;
}
.kefu-box .wx:hover .info{
    width: 1rem;
}
@media (max-width: 1024px) {
  .kefu-box {
    display: none;
  }
}

.kefu-box .wx .info{
   width: 1rem;
    height: 1rem;
    right: .56rem;
    border-radius: 5px;    
    padding: .05rem;
  
}
.kefu-box .wx .info img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: inherit;
    max-height: inherit;
    margin-right: 0;
    border-radius: 5px; 
    filter: inherit;
    
}


.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 svg rect {
  fill: #000;
  opacity: 1;
}
.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: 36px 20px 20px;
  width: 168px;
  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 .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);*/
  color: #fff;
  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;
  color: #fff;
}
.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;
}
.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);
}


.cont-in .pagerBox .layui-laypage-skip .layui-laypage-btn{
    background-color: #002fa7;
    color: #fff;
    width: 0.48rem;
    height: 0.48rem;
    min-width: 34px;
    min-height: 34px;
    margin: 0 0.17rem 0 0.12rem;
    border-radius: 0.14rem;
}




.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);
}
.fixed-zhl {
  width: 2.4rem;
  height: 2.4rem;
  background: url("../images/global.png") no-repeat;
  background-size: contain;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  will-change: transform;
  z-index: 1000;
}
@media (max-width: 1280px) {
  .fixed-zhl {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.fixed-zhl > .fixed-a {
  width: 100%;
  height: 100%;
  position: relative;
  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;
}
.fixed-zhl > .fixed-a > .tbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.fixed-zhl > .fixed-a > .tbox > .ts {
  width: 100%;
  text-align: center;
  line-height: 1.44444444em;
  color: #fff;
  font-size: var(--font18);
}
.fixed-zhl > .fixed-a > .tbox > .ts img {
  width: 0.73rem;
  height: 0.68rem;
}
.fixed-zhl > .fixed-a > .tbox > .ts span {
  display: block;
}
.fixed-zhl > .fixed-a > .tbox > .ts .title {
  display: inline-block;
  font-size: var(--font20);
  margin-top: 0.15rem;
}
.index-bg {
  background: no-repeat center;
  background-size: cover;
}
.index-page-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@-webkit-keyframes ASround {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes ASround {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.ASround {
  -webkit-animation-name: ASround;
  animation-name: ASround;
}
.AS-round {
  width: 0.6rem;
  height: 0.6rem;
  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;
}
.AS-round span {
  position: absolute;
  top: calc(50% - 0.3rem);
  right: auto;
  bottom: auto;
  left: calc(50% - 0.3rem);
  width: 0.6rem;
  height: 0.6rem;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation: ASround 3s linear infinite;
  animation: ASround 3s linear infinite;
  pointer-events: none;
  opacity: 0;
  border: 0.05rem solid #fff;
  border-radius: 50%;
}
.AS-round span:first-child {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.AS-round span:nth-child(2) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.AS-round span:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
@-webkit-keyframes ASround2 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes ASround2 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
.ASround2 {
  -webkit-animation-name: ASround2;
  animation-name: ASround2;
}
.AS-round2 {
  width: 0.8rem;
  height: 0.8rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.AS-round2::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--color-green-7cd);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.AS-round2 span {
  position: absolute;
  top: calc(50% - 0.4rem);
  right: auto;
  bottom: auto;
  left: calc(50% - 0.4rem);
  width: 0.8rem;
  height: 0.8rem;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation: ASround2 3s linear infinite;
  animation: ASround2 3s linear infinite;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0.18rem var(--color-green-7cd);
}
.AS-round2 span:first-child {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.AS-round2 span:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
@-webkit-keyframes wave-left-type01 {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: -64.3rem 50%;
  }
}
@keyframes wave-left-type01 {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: -64.3rem 50%;
  }
}
@-webkit-keyframes wave-left-type01y {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 64.3rem 50%;
  }
}
@keyframes wave-left-type01y {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 64.3rem 50%;
  }
}
@-webkit-keyframes wave-left-type02 {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: -66.1rem 50%;
  }
}
@keyframes wave-left-type02 {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: -66.1rem 50%;
  }
}
@-webkit-keyframes wave-left-type02y {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 66.1rem 50%;
  }
}
@keyframes wave-left-type02y {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 66.1rem 50%;
  }
}
.wave-left-type01 {
  -webkit-animation-name: wave-left-type01;
  animation-name: wave-left-type01;
}
.wave-left-type01y {
  -webkit-animation-name: wave-left-type01y;
  animation-name: wave-left-type01y;
}
.wave-left-type02 {
  -webkit-animation-name: wave-left-type02;
  animation-name: wave-left-type02;
}
.wave-left-type02y {
  -webkit-animation-name: wave-left-type02y;
  animation-name: wave-left-type02y;
}
.visual-wave-wrap {
  width: calc(100% + 16rem);
  margin: 0 -8rem;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0.5s;
  transition: opacity 2s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0.5s;
  opacity: 0.3;
}
.visual-wave-wrap .c-wave {
  position: relative;
  width: 100%;
  height: 2.5rem;
}
.visual-wave-wrap .c-wave::before,
.visual-wave-wrap .c-wave::after {
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  background-repeat: repeat-x;
  background-position: 0 50%;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.visual-wave-wrap .c-wave::before {
  background-image: url(../svg/wave_type01.svg);
  -webkit-animation: wave-left-type01y 251.15s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation: wave-left-type01y 251.15s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation-play-state: running;
}
.visual-wave-wrap .c-wave::after {
  background-image: url(../svg/wave_type02.svg);
  -webkit-animation: wave-left-type02y 100.88571s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation: wave-left-type02y 100.88571s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation-play-state: running;
}
.visual-wave-wrap .c-wave1::before {
  -webkit-transform: rotate(34deg) translate(0px, 2rem);
  transform: rotate(34deg) translate(0px, 2rem);
}
.visual-wave-wrap .c-wave1::after {
  -webkit-transform: rotate(36deg) translate(0px, 2rem);
  transform: rotate(36deg) translate(0px, 2rem);
}
.visual-wave-wrap .c-wave2::before {
  -webkit-transform: rotate(-34deg) translate(0px, 2rem);
  transform: rotate(-34deg) translate(0px, 2rem);
  -webkit-animation: wave-left-type01 251.15s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation: wave-left-type01 251.15s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation-play-state: running;
}
.visual-wave-wrap .c-wave2::after {
  -webkit-transform: rotate(-36deg) translate(0px, 2rem);
  transform: rotate(-36deg) translate(0px, 2rem);
  -webkit-animation: wave-left-type02 100.88571s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation: wave-left-type02 100.88571s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation-play-state: running;
}
.visual-wave-wrap .c-wave3::before {
  -webkit-animation: wave-left-type01 251.15s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation: wave-left-type01 251.15s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation-play-state: running;
}
.visual-wave-wrap .c-wave3::after {
  -webkit-animation: wave-left-type02 100.88571s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation: wave-left-type02 100.88571s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite both paused;
  animation-play-state: running;
}
.visual-wave-wrap2 {
  opacity: 0.1;
  top: 80%;
}
@media (max-width: 767px) {
  .visual-wave-wrap2 {
    top: 86%;
  }
}
.visual-wave-wrap3 {
  opacity: 0.1;
  top: 93%;
}
@media (max-width: 767px) {
  .visual-wave-wrap3 {
    top: 95%;
  }
}
.visual-wave-wrap4 {
  opacity: 0.1;
  top: 28%;
}
@media (max-width: 767px) {
  .visual-wave-wrap4 {
    top: 30%;
  }
}
@-webkit-keyframes index-swiper-w-animate {
  from {
    width: 0;
    height: 1.66rem;
  }
  to {
    width: 3rem;
    height: 1.66rem;
  }
}
@keyframes index-swiper-w-animate {
  from {
    width: 0;
    height: 1.66rem;
  }
  to {
    width: 3rem;
    height: 1.66rem;
  }
}
.index-swiper-w-animate {
  -webkit-animation-name: index-swiper-w-animate;
  animation-name: index-swiper-w-animate;
}
.index-swiper {
  --color: #fff;
  color: var(--color);
  position: relative;
  overflow: visible;
}
.index-swiper .swiper-slide {
  height: 100vh;
}
.index-swiper .swiper-slide.swiper-slide-active .bg {
  opacity: 1;
}
.index-swiper .swiper-slide .bg {
  height: 100%;
  background: no-repeat center;
  background-size: cover;
  opacity: 0;
}
.index-swiper .swiper-slide .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .index-swiper .swiper-slide .bg img {
    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 {
  width: 100%;
  margin-top: 0.14rem;
}
.index-swiper .swiper-slide .container .ani .title {
  position: relative;
  color: var(--color);
  font-family: 'HarmonyOS_Sans_SC_B';
  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;
}
@media (max-width: 767px) {
  .index-swiper .swiper-slide .container .ani .title {
    -webkit-transform: translateY(-2rem);
    transform: translateY(-2rem);
  }
}
.index-swiper .swiper-slide .container .ani .title video {
  border-radius: 0.1rem;
  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-slide .container .ani .name {
  overflow: hidden;
  letter-spacing: 0.055rem;
}
@media (max-width: 767px) {
  .index-swiper .swiper-slide .container .ani .name {
    display: block;
  }
}
.index-swiper .swiper-slide .container .ani .video-main {
  position: relative;
  margin: 0 0.6rem;
  /*width: 3rem;*/
}
@media (max-width: 767px) {
  /*.index-swiper .swiper-slide .container .ani .video-main {*/
  /*  position: absolute;*/
  /*  right: 0;*/
  /*  top: 100%;*/
  /*  margin-top: 0.4rem;*/
  /*  margin-left: 0;*/
  /*  margin-right: 0;*/
  /*}*/
}
.index-swiper .swiper-slide .container .ani .page-title {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.4rem;
}
.index-swiper .swiper-slide .container .ani .page-title .title {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  grid-gap: 0.14rem;
}
.index-swiper .swiper-slide .container .ani .page-title .title .AS-round {
  order: 2;
}
.index-swiper .swiper-slide .container .ani .page-title .title .name {
  font-family: 'HarmonyOS_Sans_SC_R' !important;
  line-height: 1.5em;
  margin: 0;
}
.index-swiper .swiper-slide .container .ani .page-title .title .name span {
  display: block;
}
.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: left;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 1.14rem;
  bottom: 0.86rem;
  padding: 0 1rem;
  margin: auto;
  opacity: 1;
}
@media (max-width: 1024px) {
  .index-swiper .swiper-pagination {
    padding: 0 0.4rem;
  }
}

@media (max-width: 480px) {
    .index-swiper .swiper-slide .container .ani .page-title .title .name{
        margin-top: 1rem;
    }
}

.index-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.26rem;
  height: 0.2rem;
  position: relative;
  background: url(../images/swiper-d-icon.png) no-repeat center;
  background-size: 0.26rem 0.2rem;
  margin: 0 0.1rem 0 0;
  opacity: 0.2;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.holeAnim {
  width: 0.87rem;
  height: 1.1rem;
  position: absolute;
  bottom: 0.53rem;
  bottom: 0.33rem;
  right: 1rem;
  z-index: 10;
}
@media (max-width: 1024px) {
  .holeAnim {
    right: 0.4rem;
  }
}
.holeAnim .hole {
  width: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
}
.holeAnim .hole.hole1 {
  bottom: 0;
}
.holeAnim .hole.hole2 {
  bottom: 40%;
}
.holeAnim .hole.hole3 {
  bottom: 50%;
}
.holeAnim .hole.hole4 {
  bottom: 60%;
}
.holeAnim .hole.hole5 {
  bottom: 70%;
}
.holeAnim .hole.hole5 path {
  fill: #fff;
  opacity: 1;
}
.holeAnim .dot {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0.16rem;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  /* 在大于1024分辨率时执行的样式 */
  .index-solution-page .index-solution-swiper {
    overflow: visible;
  }
  .index-solution-page .index-solution-swiper .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    grid-gap: 1.52rem;
  }
  .index-solution-page .index-solution-swiper .swiper-wrapper .swiper-slide {
    width: auto;
  }
}
.index-solution-page {
  min-height: 100vh;
  background-size: 100% 100%;
  margin-top: 1.2rem;
  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) {
  .index-solution-page {
    display: block;
    min-height: initial;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 1024px) {
  .index-solution-page .index-page-up {
    display: block;
  }
  .index-solution-page .index-page-up .btn-container {
    margin-top: 0.6rem;
  }
}
.index-solution-page .page-title .text-body {
  width: 69%;
}
@media (max-width: 1024px) {
  .index-solution-page .page-title .text-body {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .index-solution-page .page-title .text-body {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 0.2rem;
  }
}
.index-solution-page .index-solution-swiper {
  padding-left: 0.69rem;
  margin-top: 1.32rem;
  margin-top: 0.9rem;
}
@media (max-width: 1024px) {
  .index-solution-page .index-solution-swiper {
    padding: 0;
    grid-gap: 1rem;
    padding-bottom: 40px;
    overflow: visible;
  }
  .index-solution-page .index-solution-swiper .swiper-pagination {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .index-solution-page .index-solution-swiper {
    margin-top: 0.8rem;
    grid-gap: 0.8rem;
  }
}
.index-solution-page .index-solution-swiper .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  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;
  grid-gap: 0.8rem;
}
@media (max-width: 1024px) {
  .index-solution-page .index-solution-swiper .item-box {
    display: block;
  }
}
.index-solution-page .index-solution-swiper .item-box .public-img {
  min-width: 7.96rem;
  min-width: 7rem;
  border-radius: 0.1rem;
  order: 2;
}
@media (max-width: 1580px) {
  .index-solution-page .index-solution-swiper .item-box .public-img {
    min-width: 6.9rem;
  }
}
@media (max-width: 1024px) {
  .index-solution-page .index-solution-swiper .item-box .public-img {
    width: 100%;
    min-width: auto;
  }
}
.index-solution-page .index-solution-swiper .item-box .public-img::before {
  padding-top: 69.59798995%;
}
.index-solution-page .index-solution-swiper .item-box .text-box {
  max-width: 3.9rem;
  position: relative;
  padding-left: 0.77rem;
}
@media (max-width: 1024px) {
  .index-solution-page .index-solution-swiper .item-box .text-box {
    padding: 0;
    margin-top: 0.4rem;
    max-width: 100%;
  }
}
.index-solution-page .index-solution-swiper .item-box .text-box .num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'HarmonyOS_Sans_SC_M';
  line-height: 1.6;
  opacity: 0.3;
}
@media (max-width: 1024px) {
  .index-solution-page .index-solution-swiper .item-box .text-box .num {
    position: relative;
    display: none;
  }
}
.index-solution-page .index-solution-swiper .item-box .text-box .title {
  font-family: 'HarmonyOS_Sans_SC_M';
  line-height: 1.2em;
}
@media (max-width: 1024px) {
  .index-solution-page .index-solution-swiper .item-box .text-box .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
}
@media (max-width: 1024px) {
  .index-solution-page .index-solution-swiper .item-box .text-box .title {
    font-size: var(--font34);
    margin-top: 0.1rem;
  }
}
.index-solution-page .index-solution-swiper .item-box .text-box .title span {
  display: block;
}
@media (max-width: 1024px) {
  .index-solution-page .index-solution-swiper .item-box .text-box .title span {
    display: inline-block;
  }
}
.index-solution-page .index-solution-swiper .item-box .text-box .text-body {
  line-height: 1.75em;
  margin-top: 0.51rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .index-solution-page .index-solution-swiper .item-box .text-box .text-body {
    margin-top: 0.2rem;
  }
}
.index-solution-page .index-solution-swiper .item-box .text-box .btn-container {
  margin-top: 0.66rem;
}
@media (max-width: 1024px) {
  .index-solution-page .index-solution-swiper .item-box .text-box .btn-container {
    margin-top: 0.6rem;
  }
}
.index-core-algorithm-page {
  overflow: hidden;
}
.index-core-algorithm-page .A-main {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 200vh;
  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) {
  .index-core-algorithm-page .A-main {
    height: initial;
  }
}
.index-core-algorithm-page .page-img-box .page-img {
  height: 100vh;
}
@media (max-width: 1024px) {
  .index-core-algorithm-page .page-img-box .page-img {
    height: 100%;
  }
}
.index-core-algorithm-page .A-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 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;
}
@media (max-width: 1024px) {
  .index-core-algorithm-page .A-container {
    position: relative;
    height: initial;
    display: block;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.index-core-algorithm-page .index-page-up {
  width: 100%;
  position: absolute;
  top: 1.68rem;
  left: 0;
}
@media (max-width: 1024px) {
  .index-core-algorithm-page .index-page-up {
    padding: 0;
    position: relative;
    top: 0;
  }
}
.index-core-algorithm-page .tab-title-box {
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  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;
}
@media (max-width: 1024px) {
  .index-core-algorithm-page .tab-title-box {
    display: none;
  }
}
.index-core-algorithm-page .tab-title-box .title {
  position: relative;
  position: absolute;
  font-family: 'HarmonyOS_Sans_SC_M';
  color: rgba(255, 255, 255, 0.3);
  -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;
  grid-gap: 0.47rem;
  transform: translateY(-50%);
}
.index-core-algorithm-page .tab-title-box .title .name span {
  display: block;
}
.index-core-algorithm-page .tab-title-box .title .name .font30 {
  margin-bottom: 0.06rem;
}
.index-core-algorithm-page .tab-title-box .title .AS-round2 span {
  display: none;
}
.index-core-algorithm-page .tab-title-box .title .AS-round2::before {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
}
.index-core-algorithm-page .tab-title-box .title.active {
  color: var(--color-green-72f);
}
.index-core-algorithm-page .tab-title-box .title.active .AS-round2 span {
  display: block;
}
.index-core-algorithm-page .tab-title-box .title.active .AS-round2::before {
  background-color: var(--color-green-7cd);
}
.index-core-algorithm-page .wrap-box {
  position: relative;
  width: 100%;
  height: 100%;
  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;
}
.index-core-algorithm-page .wrap-box .wrap-left {
  width: 4.2rem;
  max-width: 420px;
  margin-top: 3.46rem;
  margin-top: 4.3rem;
}
.index-core-algorithm-page .wrap-box .wrap-right {
  width: 7.4rem;
  max-width: 740px;
}
.index-core-algorithm-page .wrap-box .wrap-bg {
  width: 13.81rem;
  height: 13.81rem;
  position: absolute;
  right: -3.24rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1024px) {
  .index-core-algorithm-page .wrap-box .wrap-bg {
    display: none;
  }
}
@media (max-width: 1024px) {
  .index-core-algorithm-page .wrap-box {
    display: block;
  }
  .index-core-algorithm-page .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
  }
  .index-core-algorithm-page .wrap-box .wrap-right {
    display: none;
  }
}
.index-core-algorithm-page .swiper-img {
  width: 100%;
  margin-right: 0.4rem;
}
.index-core-algorithm-page .swiper-img .swiper-slide {
  width: 100% !important;
}
.index-core-algorithm-page .swiper-img .swiper-slide {
  opacity: 1 !important;
}
.index-core-algorithm-page .swiper-img .public-img {
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .index-core-algorithm-page .swiper-text {
    overflow: visible;
    padding-bottom: 40px;
  }
  .index-core-algorithm-page .swiper-text .swiper-pagination {
    opacity: 1;
  }
  .index-core-algorithm-page .swiper-text .ani {
    display: block;
    -webkit-animation-name: initial;
    animation-name: initial;
  }
}
.index-core-algorithm-page .swiper-text .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .index-core-algorithm-page .swiper-text .item-box .c-mb {
    display: block;
    position: relative;
  }
  .index-core-algorithm-page .swiper-text .item-box .c-mb .c-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media (max-width: 1024px) {
  .index-core-algorithm-page .swiper-text .item-box .text-box {
    text-align: center;
    margin-top: 0.4rem;
  }
}
.index-core-algorithm-page .swiper-text .item-box .text-box .title {
  font-family: 'HarmonyOS_Sans_SC_M';
}
.index-core-algorithm-page .swiper-text .item-box .text-box .title span {
  display: block;
}
.index-core-algorithm-page .swiper-text .item-box .text-box .text-body {
  line-height: 1.7em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.13rem 0 0.7rem;
}
@media (max-width: 767px) {
  .index-core-algorithm-page .swiper-text .item-box .text-box .text-body {
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 1024px) {
  .index-core-algorithm-page .swiper-text .item-box .text-box .text-body * {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .index-core-algorithm-page .swiper-text .item-box .text-box .btn-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.ani-text {
  background: rgba(46, 64, 108, 0.4) -webkit-linear-gradient(to right, #fff, #fff) no-repeat;
  background: rgba(46, 64, 108, 0.4) linear-gradient(to right, #fff, #fff) no-repeat;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 0 100%;
  -webkit-transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
}
@media (max-width: 1024px) {
  .ani-text {
    background: transparent;
    -webkit-text-fill-color: inherit;
    -webkit-background-clip: initial;
  }
}
.index-about-page {
  padding: 1.6rem 0 2.19rem;
  position: relative;
}
.index-about-page .A-container {
  position: relative;
  z-index: 2;
}
.index-about-page .page-img {
  width: 100%;
  height: 100vh;
  position: absolute;
}
.index-about-page .index-page-up {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.index-about-page .index-page-up .slogan {
  width: 51.86046512%;
  max-width: 892px;
  line-height: 1.33333333em;
  font-family: 'HarmonyOS_Sans_SC_M';
}
@media (max-width: 1024px) {
  .index-about-page .index-page-up {
    display: block;
  }
  .index-about-page .index-page-up .slogan {
    margin-top: 1.34rem;
    width: 100%;
    font-size: var(--font50);
  }
}
.index-about-page .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;
  padding-top: 1.5rem;
  margin-top: 1.34rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.index-about-page .page-down .wrap-box .wrap-right {
  width: 51.86046512%;
  max-width: 892px;
}
@media (max-width: 1024px) {
  .index-about-page .page-down .wrap-box {
    display: block;
  }
  .index-about-page .page-down .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 0.8rem;
  }
}
.index-about-page .wrap-left {
  padding-left: 0.89rem;
}
@media (max-width: 1024px) {
  .index-about-page .wrap-left {
    padding: 0;
  }
}
.index-about-page .wrap-right .text-body {
  line-height: 1.8em;
}
.index-about-page .wrap-right .text-body P {
  white-space: pre-line;
}
@media (max-width: 1024px) {
  .index-about-page .wrap-right .text-body P {
    white-space: inherit;
  }
}
@media (max-width: 1024px) {
  .index-about-page .wrap-right .text-body P {
    margin-bottom: 0.18rem;
  }
}
.index-about-page .wrap-right .btn-container {
  margin-top: 1.45rem;
}
@media (max-width: 1024px) {
  .index-about-page .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    grid-gap: 0.4rem 0.8rem;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .index-about-page .list {
    grid-gap: 0.4rem;
  }
}
.index-about-page .list .item {
  margin-bottom: 1.34rem;
}
.index-about-page .list .item:last-child {
  margin: 0;
}
.index-about-page .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.index-about-page .list .item .item-box .text-box .title {
  font-family: 'HarmonyOS_Sans_SC_B';
  color: var(--color-green-72f);
  line-height: 0.9em;
}
@media (max-width: 767px) {
  .index-about-page .list .item .item-box .text-box .title {
    font-size: var(--font40);
  }
}
.index-about-page .list .item .item-box .text-box .text-body {
  margin-top: 0.1rem;
}
.waves {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.waves canvas {
  display: block;
}
.index-news-page {
  padding: 1.4rem 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .index-news-page .index-page-up {
    display: block;
  }
  .index-news-page .index-page-up .btn-container {
    display: none;
  }
}
.index-news-page .A-container {
  position: relative;
  z-index: 1;
}
.index-news-page .list {
  margin-top: 0.66rem;
}
.index-news-page .list .item {
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
@media (max-width: 767px) {
  .index-news-page .list .item {
    padding: 0;
    border: none;
    margin-bottom: 0.8rem;
  }
  .index-news-page .list .item:last-child {
    margin: 0;
  }
}
.index-news-page .list .item:hover::before {
  width: 100%;
  left: 0;
}
.index-news-page .list .item:hover .item-box .text-box .title {
  color: var(--color-active);
}
.index-news-page .list .item::before {
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--color-active);
  position: absolute;
  right: 0;
  bottom: -1px;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
@media (max-width: 1024px) {
  .index-news-page .list .item::before {
    display: none;
  }
}
.index-news-page .list .item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .index-news-page .list .item:first-child {
    border: none;
  }
}
.index-news-page .list .item .item-box {
  display: block;
  height: 100%;
  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: 767px) {
  .index-news-page .list .item .item-box {
    display: block;
  }
}
.index-news-page .list .item .item-box .public-img {
  width: 21.27906977%;
  max-width: 366px;
  border-radius: 0.1rem;
  order: 2;
}
@media (max-width: 767px) {
  .index-news-page .list .item .item-box .public-img {
    width: 100%;
    max-width: inherit;
  }
}
.index-news-page .list .item .item-box .public-img::before {
  padding-top: 61.20218579%;
}
.index-news-page .list .item .item-box .text-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  position: relative;
  padding: 0.25rem 1.5rem 0 2.7rem;
}
@media (max-width: 767px) {
  .index-news-page .list .item .item-box .text-box {
    padding: 0;
    margin-top: 0.4rem;
  }
}
.index-news-page .list .item .item-box .text-box .date {
  position: absolute;
  left: 0;
  top: 0.11rem;
  top: 0.36rem;
}
.index-news-page .list .item .item-box .text-box .date span:first-child {
  font-family: 'HarmonyOS_Sans_SC_B';
  line-height: 0.68em;
  margin-bottom: 0.04rem;
}
.index-news-page .list .item .item-box .text-box .date span {
  display: block;
  line-height: 1.88888889em;
}
@media (max-width: 767px) {
  .index-news-page .list .item .item-box .text-box .date {
    display: none;
  }
}
.index-news-page .list .item .item-box .text-box .date-m {
  display: none;
}
@media (max-width: 767px) {
  .index-news-page .list .item .item-box .text-box .date-m {
    display: block;
    margin-bottom: 0.1rem;
  }
}
.index-news-page .list .item .item-box .text-box .title {
  line-height: 1.7em;
  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;
}
.index-news-page .list .item .item-box .text-box .text-body {
  line-height: 1.75em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  opacity: 0.8;
  margin-top: 0.13rem;
}
@media (max-width: 767px) {
  .index-news-page .list .item .item-box .text-box .text-body {
    margin-top: 0.18rem;
  }
}
.index-news-page .list .item .item-box .text-box .btn-container {
  margin-top: 0.74rem;
}
@media (max-width: 767px) {
  .index-news-page .list .item .item-box .text-box .btn-container {
    margin-top: 0.4rem;
  }
}
@media (max-width: 1024px) {
  .index-news-page .index-news-mb {
    display: block;
  }
  .index-news-page .index-news-mb .btn-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 0.6rem;
  }
}
.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 .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.06rem;
  min-width: 4px;
  height: auto;
  opacity: 0.4;
}
.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;
}
.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);
}
.lh-cursor {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  margin: -10px 0 0 -10px;
  z-index: 1200;
  mix-blend-mode: difference;
}
.lh-cursor i {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #0A1F3D, #1E3763, #3C5797, #5A75B1, #7893CB, #96B1E5, #B4CF00);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  user-select: none;
  pointer-events: none;
  box-shadow: inset 0 0 30px #000;
}
.public-banner {
  position: relative;
  height: 7rem;
}
.public-banner .svgbox {
  position: absolute;
  width: 53%;
  height: 1.87rem;
  right: 12.3%;
  top: 30%;
  z-index: 1;
  --dashsf: 2750;
}
.public-banner .svgbox .svgline {
  position: absolute;
  z-index: 1;
}
.public-banner .svgbox .svgline .st0 {
  fill: #0000;
  fill: none;
  stroke: url(#shape_2_1_);
  stroke-width: 12;
}
.public-banner .svgbox .svgline .st1 {
  fill: #FFFFFF;
  opacity: 0;
  transition: all 5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.public-banner .svgbox .svgline .st0 {
  fill: #0000;
  stroke-dasharray: 2750;
  stroke-dashoffset: var(--dashsf);
  -webkit-transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.public-banner .svgbox.active {
  --dashsf: 0;
}
.public-banner .svgbox.active .st1 {
  opacity: 1;
}
.public-banner .bannerimg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.public-banner .bannerimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-banner .bannerimg .mobile-img {
  display: none;
}
.public-banner .info {
  position: relative;
  padding-top: 3.655rem;
  z-index: 2;
}
.public-banner .info .title {
  font-family: 'HarmonyOS_Sans_SC_B';
  line-height: 1;
}
.public-banner .info .sec-title {
  margin-top: 0.4rem;
  width: 41.27906977%;
  line-height: calc(32/18);
}
.public-banner .info .morebtn {
  margin-top: 0.58rem;
  width: fit-content;
  background-color: var(--color-active);
  padding: 0.22rem 0.3885rem;
  border-radius: 30px;
  line-height: 1;
}
@media (max-width: 767px) {
  .public-banner .svgbox {
    display: none;
  }
  .public-banner .bannerimg .pc-img {
    display: none;
  }
  .public-banner .bannerimg .mobile-img {
    display: inline-block;
  }
  .public-banner .info .sec-title {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .public-banner .info .sec-title {
    width: 100%;
  }
}
.public-navbar {
  background-color: var(--color-blue-72b);
}
.public-navbar .navinner {
  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;
  font-size: var(--font18);
}
.public-navbar .navinner .l-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.5rem;
}
.public-navbar .navinner .l-nav .item {
  position: relative;
  padding: 0.325rem 0;
}
.public-navbar .navinner .l-nav .item a {
  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;
  opacity: 0.8;
}
.public-navbar .navinner .l-nav .item a img {
  margin-left: 0.1rem;
}
.public-navbar .navinner .l-nav .active {
  position: relative;
}
.public-navbar .navinner .l-nav .active a {
  opacity: 1;
}
.public-navbar .navinner .l-nav .active::after {
  position: absolute;
  content: '';
  height: 3px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: var(--color-active);
}
.public-navbar .navinner .r-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.17rem;
}
.public-navbar .navinner .r-nav .item {
  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;
}
.public-navbar .navinner .r-nav .item a {
  opacity: 0.8;
}
.public-navbar .navinner .r-nav .item img {
  margin-right: 0.15rem;
}
@media (max-width: 480px) {
  .public-navbar .navinner .l-nav {
    gap: 0.3rem;
  }
  .public-navbar .navinner .r-nav {
    display: none;
  }
  .public-navbar .navinner .l-nav {
    overflow-x: auto;
  }
}
.linetop {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.linebottom {
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.lineleft {
  border-left: solid 1px rgba(255, 255, 255, 0.1);
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background: inherit;
}
.swiper-btn span {
  width: 0.6rem;
  height: 0.6rem;
  min-width: 30px;
}
.news-bannerwrap {
  padding: 1.4rem 0;
  position: relative;
  background: url("../images/newscenter-bg.png") no-repeat;
  background-size: cover;
}
.news-bannerwrap .swiperlist {
  overflow: hidden;
  position: relative;
}
.news-bannerwrap .swiperlist .innerbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.news-bannerwrap .swiperlist .innerbox .l_nav {
  padding-right: 0.98rem;
}
.news-bannerwrap .swiperlist .innerbox .l_nav .date {
  color: var(--color-active);
}
.news-bannerwrap .swiperlist .innerbox .l_nav .date span {
  display: block;
}
.news-bannerwrap .swiperlist .innerbox .l_nav .date span:first-child {
  font-family: 'HarmonyOS_Sans_SC_B';
}
.news-bannerwrap .swiperlist .innerbox .l_nav .title {
  margin-top: 0.9rem;
  width: 78%;
  font-family: 'HarmonyOS_Sans_SC_M';
  line-height: calc(44/28);
}
.news-bannerwrap .swiperlist .innerbox .l_nav .info {
  margin-top: 0.68rem;
  line-height: calc(32/18);
  opacity: 0.8;
}
.news-bannerwrap .swiperlist .innerbox .public-img {
  border-radius: 10px;
  cursor: pointer;
}
.news-bannerwrap .swiperlist .innerbox .public-img::before {
  padding-top: 61.164%;
}
.news-bannerwrap .swiperlist .swiper-pagination {
  height: 0;
  text-align: left;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0.3rem;
  margin: auto;
  opacity: 1;
}
@media (max-width: 1024px) {
  .news-bannerwrap .swiperlist .swiper-pagination {
    padding: 0 0.4rem;
  }
}
.news-bannerwrap .swiperlist .swiper-pagination .swiper-pagination-bullet {
  width: 0.26rem;
  height: 0.2rem;
  position: relative;
  background: url(../images/swiper-d-icon.png) no-repeat center;
  background-size: 0.26rem 0.2rem;
  margin: 0 0.1rem 0 0;
  opacity: 0.2;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.news-bannerwrap .swiperlist .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.news-bannerwrap .swiperlist .swiper-slide {
  display: none;
  transition: 0.2s ease-in-out;
}
.news-bannerwrap .swiperlist .swiper-slide-active {
  display: inline-block;
  transition: 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .news-bannerwrap .swiperlist .innerbox {
    display: inline-block;
  }
  .news-bannerwrap .swiperlist .innerbox .l_nav {
    padding-right: 0;
  }
  .news-bannerwrap .swiperlist .innerbox .r_nav {
    margin-top: 0.4rem;
  }
  .news-bannerwrap .swiperlist .swiper-pagination {
    bottom: 1rem;
  }
}
.policy-wrap {
  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;
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: calc(var(--header-height) + 0.8rem);
  padding-bottom: 1.2rem;
  background: #14202F;
}
.policy-wrap .innerbox {
  position: relative;
  margin: auto;
  padding: 0.96rem 0;
  z-index: 0;
}
.policy-wrap .time {
  margin-top: 0.16rem;
  padding-bottom: 0.5rem;
  border-bottom: solid 1px #dddddd;
  color: var(--black-999);
}
.policy-wrap .item {
  margin-top: 0.8rem;
}
.policy-wrap .item img {
  margin-right: 0.1rem;
  width: 0.4rem;
  height: 0.4rem;
}
.policy-wrap .item .title {
  font-size: var(--font30);
  font-weight: 700;
}
.policy-wrap .item .info {
  margin-top: 0.3rem;
}
@media (max-width: 990px) {
  .policy-wrap .innerbox {
    padding: 0.65rem 20px;
  }
}
.newsdetail-wrap {
  padding-top: 2.42rem;
  padding-bottom: 1.4rem;
  background: var(--color-blue-02F);
}
.newsdetail-wrap .inenrbox {
  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;
}
.newsdetail-wrap .inenrbox .l-box {
  width: 79.06976744%;
  padding-right: 0.5rem;
}
.newsdetail-wrap .inenrbox .l-box .head .title {
  font-family: 'HarmonyOS_Sans_SC_M';
}
.newsdetail-wrap .inenrbox .l-box .head .date {
  margin: 0.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.newsdetail-wrap .inenrbox .l-box .head .date .item {
  margin-right: 0.8rem;
  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;
  opacity: 0.8;
}
.newsdetail-wrap .inenrbox .l-box .head .date .item img {
  margin-right: 0.1rem;
}
.newsdetail-wrap .inenrbox .l-box .info {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.newsdetail-wrap .inenrbox .l-box .info p {
  margin-top: 0.28rem;
  line-height: calc(32 / 18);
}
.newsdetail-wrap .inenrbox .l-box .info p:first-child {
  margin-top: 0.55rem;
}
.newsdetail-wrap .inenrbox .l-box .info .image {
  padding: 0.6rem 0;
  text-align: center;
}
.newsdetail-wrap .inenrbox .l-box .pagebtn {
  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;
  position: relative;
  width: 100%;
  margin-top: 1rem;
  overflow: hidden;
  height: 60px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}
.newsdetail-wrap .inenrbox .l-box .pagebtn a {
  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;
  height: 100%;
  z-index: 5;
}
.newsdetail-wrap .inenrbox .l-box .pagebtn .last-btn {
  width: 50%;
  padding-left: 0.3rem;
}
.newsdetail-wrap .inenrbox .l-box .pagebtn .last-btn img {
  transform: rotate(180deg);
  margin-right: 0.1rem;
}
.newsdetail-wrap .inenrbox .l-box .pagebtn .next-btn {
  width: 50%;
  justify-content: end;
  padding-right: 0.3rem;
}
.newsdetail-wrap .inenrbox .l-box .pagebtn .next-btn img {
  margin-left: 0.1rem;
}
.newsdetail-wrap .inenrbox .l-box .hover-lbg {
  position: relative;
}
.newsdetail-wrap .inenrbox .l-box .hover-lbg:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: visible;
  opacity: 1;
  background: linear-gradient(90deg, rgba(0, 47, 167, 0.05) 0%, #002FA7 100%);
  z-index: 1;
}
.newsdetail-wrap .inenrbox .l-box .hover-rbg {
  position: relative;
}
.newsdetail-wrap .inenrbox .l-box .hover-rbg:before {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  background: linear-gradient(250deg, rgba(0, 47, 167, 0.05) 0%, #002FA7 100%);
  z-index: 1;
}
.newsdetail-wrap .inenrbox .r-box {
  width: 20.93023256%;
  border-left: solid 1px rgba(255, 255, 255, 0.1);
  padding-left: 0.5rem;
}
.newsdetail-wrap .inenrbox .r-box .newstitle {
  font-family: 'HarmonyOS_Sans_SC_M';
}
.newsdetail-wrap .inenrbox .r-box .itemlist {
  margin-top: 0.12rem;
}
.newsdetail-wrap .inenrbox .r-box .itemlist .item {
  padding: 0.5rem 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.newsdetail-wrap .inenrbox .r-box .itemlist .item .title {
  line-height: calc(32/20);
}
.newsdetail-wrap .inenrbox .r-box .itemlist .item .time {
  font-family: 'HarmonyOS_Sans_SC_M';
  opacity: 0.6;
  margin-top: 0.2rem;
}
.newsdetail-wrap .inenrbox .r-box .itemlist .item .info {
  opacity: 0.6;
  margin-top: 0.29rem;
  line-height: calc(32/18);
}
.newsdetail-wrap .inenrbox .r-box .itemlist .item:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .newsdetail-wrap .inenrbox {
    display: inline-block;
    width: 100%;
  }
  .newsdetail-wrap .inenrbox .l-box {
    width: 100%;
    padding-right: 0;
  }
  .newsdetail-wrap .inenrbox .r-box {
    width: 100%;
    margin-top: 0.5rem;
    border-left: none;
    padding-left: 0;
  }
}
.capability-vedio {
  padding: 1.4rem 0;
  background: url("../images/newscenter-bg.png");
  background-size: cover;
}
.capability-vedio .innerbox {
  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;
}
.capability-vedio .innerbox .page-title {
  width: 53.48837209%;
  padding-right: 1.35rem;
}
.capability-vedio .innerbox .vediowrap {
  position: relative;
  width: 46.51162791%;
}
.capability-vedio .innerbox .vediowrap .image {
  position: relative;
}
.capability-vedio .innerbox .vediowrap .image .playbtn {
  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.5rem;
  bottom: 0.5rem;
}
.capability-vedio .innerbox .vediowrap .image .playbtn .image {
  width: 0.8rem;
  height: 0.8rem;
  min-width: 30px;
  margin-right: 0.2rem;
}
.capability-vedio .innerbox .vediowrap .video-box {
  z-index: 1;
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.capability-vedio .innerbox .vediowrap .video-box video {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .capability-vedio .innerbox {
    display: inline-block;
    width: 100%;
  }
  .capability-vedio .innerbox .page-title {
    width: 100%;
    padding-right: 0;
  }
  .capability-vedio .innerbox .vediowrap {
    width: 100%;
    margin-top: 0.5rem;
    border-left: none;
    padding-left: 0;
  }
}
.teamwrap {
  padding: 1.4rem 0;
  background-color: var(--color-blue-02F);
}
.teamwrap .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0.8rem 0 0.2rem 0;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  margin-top: 0.6rem;
}
.teamwrap .innerbox .i_left {
  width: 33.13953488%;
}
.teamwrap .innerbox .i_left .icon {
  margin-top: 0.45rem;
  width: 0.74rem;
  height: 0.74rem;
  min-width: 30px;
}
.teamwrap .innerbox .i_left .icon img {
  width: 100%;
}
.teamwrap .innerbox .i_right {
  width: 66.86046512%;
}
.teamwrap .innerbox .i_right .imagebg {
  position: absolute;
  top: 26%;
}
.teamwrap .innerbox .i_right .imagebg2 {
  position: absolute;
  bottom: 0;
}
.teamwrap .team-rd-laboratory .i_right .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.teamwrap .team-rd-laboratory .i_right .item .image{
    width: 31.3%;
}
.teamwrap .team-rd-laboratory .i_right .item .image img{
    width: 100%;
    heihgt:100%;
    object-fit: cover;
}

.teamwrap .team-rd-laboratory .i_right .item .desc{
    width: calc(100% - 31.3%);
}

.teamwrap .team-rd-laboratory .i_right .item:last-child {
  margin-bottom: 0;
}
.teamwrap .team-rd-laboratory .i_right .item .desc .title {
  font-family: 'HarmonyOS_Sans_SC_M';
}
.teamwrap .team-rd-laboratory .i_right .item .desc .sec-title {
  margin-top: 0.26rem;
}
.teamwrap .team-patent-certificate .i_right .wrapbox {
  position: relative;
}
.teamwrap .team-patent-certificate .i_right .wrapbox .swiperbox {
  position: relative;
  width: 72.869%;
  margin: auto;
  margin-bottom: 1.2rem;
  overflow: hidden;
  background-position: center 1.8rem;
}
.teamwrap .team-patent-certificate .i_right .wrapbox .swiperbox .swiper-slide {
  text-align: center;
}
.teamwrap .team-patent-certificate .i_right .wrapbox .swiperbox .swiper-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.teamwrap .team-patent-certificate .i_right .wrapbox .swiperbox .swiper-btn span {
  width: 0.6rem;
  height: 0.6rem;
  min-width: 30px;
}
.teamwrap .team-patent-certificate .i_right .wrapbox .swiperbox .swiper-btn .swiper-button-prev {
  position: absolute;
  left: -12%;
}
.teamwrap .team-patent-certificate .i_right .wrapbox .swiperbox .swiper-btn .swiper-button-next {
  position: absolute;
  right: -12%;
  z-index: 5;
}
.teamwrap .team-software-hardware-facilities .innerbox {
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.teamwrap .team-software-hardware-facilities .i_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.teamwrap .team-software-hardware-facilities .i_right .image {
  width: 45.2173913%;
  border-radius: 10px;
}
.teamwrap .team-software-hardware-facilities .i_right .image img {
  border-radius: 10px;
}
.teamwrap .team-software-hardware-facilities .i_right .public-img::before {
  padding-top: 68.847%;
}
.teamwrap .team-software-hardware-facilities .i_right .info {
  width: 54.7826087%;
  padding: 0 0.4rem;
}
.teamwrap .team-software-hardware-facilities .i_right .info .title {
  font-family: 'HarmonyOS_Sans_SC_M';
}
.teamwrap .team-software-hardware-facilities .i_right .info .sec-title {
  opacity: 0.8;
  line-height: calc(32/18);
  margin-top: 0.32rem;
}
@media (max-width: 767px) {
  .teamwrap .team-software-hardware-facilities .innerbox .i_right {
    display: inline-block;
    width: 100%;
  }
  .teamwrap .team-software-hardware-facilities .innerbox .i_right .image {
    width: 100%;
  }
  .teamwrap .team-software-hardware-facilities .innerbox .i_right .info {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width: 990px) {
  .teamwrap .innerbox {
    display: inline-block;
    width: 100%;
  }
  .teamwrap .innerbox .i_right {
    margin-top: 0.5rem;
    width: 100%;
  }
  .teamwrap .innerbox .i_left{
      width: 100%;
  }
}
@media (max-width: 480px) {
    .teamwrap .team-patent-certificate .i_right .wrapbox .swiper-button-prev,.teamwrap .team-patent-certificate .i_right .wrapbox .swiper-button-next{
        display: none;
    }
    .teamwrap .team-patent-certificate .i_right .wrapbox .swiperbox .swiper-pagination{
        position: relative;
        opacity: 1;
        margin-top: .5rem;
    }
    .teamwrap .team-patent-certificate .i_right .wrapbox .swiperbox{
        width: 100%;
    }
    .teamwrap .team-patent-certificate .i_right .wrapbox .swiperbox img{
        max-height: 3.5rem;
    }
    .teamwrap .innerbox .i_right .imagebg,.teamwrap .innerbox .i_right .imagebg2{
        display: none;
    }
}

.contact-wrap {
  text-align: center;
  background-color: var(--color-blue-A29);
  /*padding: 2.15rem 0;*/
  padding: 1.2rem 0;
}
.contact-wrap .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-size: var(--font26) !important;
}

.contact-wrap .visual-wave-wrap3{
    top: 95%;
}
.manufacturing-capability-wrap {
  padding: 1.4rem 0;
  background: linear-gradient(45deg, #111828 0%, #131C2F 100%);
}
.manufacturing-capability-wrap .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.6rem;
  align-items: stretch;
}
.manufacturing-capability-wrap .innerbox .l-box {
  width: 36.04651163%;
}
.manufacturing-capability-wrap .innerbox .l-box .item {
  position: relative;
  margin-bottom: 0.3rem;
}
.manufacturing-capability-wrap .innerbox .l-box .item:last-child {
  margin-bottom: 0;
}
.manufacturing-capability-wrap .innerbox .l-box .item .cardbg {
  height: 3.2rem;
}
.manufacturing-capability-wrap .innerbox .l-box .item .cardbg img {
  width: 100%;
  height: 100%;
}
.manufacturing-capability-wrap .innerbox .l-box .item .info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0.5rem;
}
.manufacturing-capability-wrap .innerbox .l-box .item .info .image {
  float: right;
  width: 0.74rem;
  height: 0.74rem;
}
.manufacturing-capability-wrap .innerbox .l-box .item .info .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manufacturing-capability-wrap .innerbox .l-box .item .info .data {
  margin-top: 1rem;
  font-family: 'HarmonyOS_Sans_SC_B';
  color: var(--color-green-72f);
}
.manufacturing-capability-wrap .innerbox .l-box .item .info .title {
  margin-top: 0.1rem;
}
.manufacturing-capability-wrap .innerbox .r-box {
  position: relative;
  width: 63.95348837%;
}
.manufacturing-capability-wrap .innerbox .r-box .videoimg {
  height: 6.7rem;
}
.manufacturing-capability-wrap .innerbox .r-box .videoimg img {
  width: 100%;
  height: 100%;
}
.manufacturing-capability-wrap .innerbox .r-box .playbtn {
  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.5rem;
  bottom: 0.5rem;
  gap: .2rem;
}
.manufacturing-capability-wrap .innerbox .r-box .playbtn .image {
  width: 0.8rem;
  height: 0.8rem;
}
.manufacturing-capability-wrap .innerbox .r-box .playbtn .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .manufacturing-capability-wrap .innerbox {
    display: inline-block;
    width: 100%;
  }
  .manufacturing-capability-wrap .innerbox .l-box {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .manufacturing-capability-wrap .innerbox .r-box {
    margin-top: 0.5rem;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .manufacturing-capability-wrap .innerbox .r-box .videoimg {
    height: auto;
  }
  
  .teamwrap .team-rd-laboratory .i_right .item{
      display: inline-block;width: 100%;margin-bottom: .8rem;
  }
  
  .teamwrap .team-rd-laboratory .i_right .item .desc{
      margin-top: .3rem;
    width: 100%;
  }
  .teamwrap .team-rd-laboratory .i_right .item .image{
      width: 100%;
  }
}
.intelligent-management-wrap {
  padding: 1.4rem 0;
  background: #14202F;
}
.intelligent-management-wrap .innerbox {
  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;
}
.intelligent-management-wrap .innerbox .info {
  width: 51.45348837%;
}
.intelligent-management-wrap .innerbox .info .text-body {
  opacity: 0.8;
}
.intelligent-management-wrap .innerbox .image {
  text-align: right;
  width: 48.54651163%;
}
@media (max-width: 767px) {
  .intelligent-management-wrap .innerbox {
    display: inline-block;
    width: 100%;
  }
  .intelligent-management-wrap .innerbox .info {
    width: 100%;
  }
  .intelligent-management-wrap .innerbox .image {
    margin-top: 0.5rem;
    width: 100%;
  }
}
.quality-ontrol-management-wrap {
  padding: 1.4rem 0;
  background: linear-gradient(45deg, #131A2A 0%, #182A37 100%);
}
.quality-ontrol-management-wrap .page-title {
  width: 46.04651163%;
  padding-bottom: 0.65rem;
}
.quality-ontrol-management-wrap .item-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0.8rem 0;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.quality-ontrol-management-wrap .item-card .l_box {
  width: 37.79069767%;
}
.quality-ontrol-management-wrap .item-card .l_box .title {
  font-family: 'HarmonyOS_Sans_SC_M';
}
.quality-ontrol-management-wrap .item-card .l_box .sec-title {
  margin-top: 0.2rem;
  max-width: 5.2rem;
  opacity: 0.8;
  line-height: calc(28 / 18);
}
.quality-ontrol-management-wrap .item-card .l_box .image {
  width: 0.74rem;
  height: 0.74rem;
  margin-top: 0.3rem;
}
.quality-ontrol-management-wrap .item-card .r_box {
  width: 62.20930233%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
}
.quality-ontrol-management-wrap .item-card .r_box .item {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 2.1rem;
  perspective: 1000px;
  /* 设置透视距离 */
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .front,
.quality-ontrol-management-wrap .item-card .r_box .item .flip .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .front .image,
.quality-ontrol-management-wrap .item-card .r_box .item .flip .back .image {
  width: 100%;
  height: 2.1rem;
  border-radius: 10px;
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .front .image img,
.quality-ontrol-management-wrap .item-card .r_box .item .flip .back .image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .front .info {
  padding: 0.3rem;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .front .info .title {
  position: relative;
  font-family: 'HarmonyOS_Sans_SC_M';
  color: var(--color-green-72f);
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .front .info .title:before {
  position: absolute;
  content: '';
  width: 3px;
  height: 100%;
  background: #72FFAE;
  left: -0.3rem;
  top: 0;
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .front .info .eye {
  position: absolute;
  bottom: 0.3rem;
  right: 0.3rem;
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .back {
  transform: rotateY(180deg);
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .back .info {
  padding: 0.3rem;
  position: absolute;
  top: 0;
  width: 100%;
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .back .info .title {
  position: relative;
  font-family: 'HarmonyOS_Sans_SC_M';
  color: var(--color-green-72f);
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .back .info .title:before {
  position: absolute;
  content: '';
  width: 3px;
  height: 100%;
  background: #72FFAE;
  left: -0.3rem;
  top: 0;
}
.quality-ontrol-management-wrap .item-card .r_box .item .flip .back .info .desc {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  line-height: calc(26/18);
  height: 1rem;
  overflow-y: auto;
}
.quality-ontrol-management-wrap .item-card .r_box .item:hover .flip {
  background: rgba(169, 205, 248, 0.1);
  transform: rotateY(-180deg);
}
@media (max-width: 767px) {
  .quality-ontrol-management-wrap .page-title {
    width: 100%;
  }
  .quality-ontrol-management-wrap .item-card {
    display: inline-block;
    width: 100%;
  }
  .quality-ontrol-management-wrap .item-card .l_box {
    width: 100%;
  }
  .quality-ontrol-management-wrap .item-card .r_box {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  .quality-ontrol-management-wrap .item-card .r_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .quality-ontrol-management-wrap .item-card .r_box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.certificate-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
.certificate-wrap .image{
    width: 100%;
}

.certificate-wrap .image img{
    width: 100%;
}

.certificate-wrap .info {
  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;
  width: 100%;
  height: 100%;
  padding: 1.3rem 0;
}
.certificate-wrap .info .innerbox {
  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;
}
.certificate-wrap .info .innerbox .l_box {
  width: 37.79069767%;
}
.certificate-wrap .info .innerbox .l_box .text-body {
  max-width: 4.21rem;
}
.certificate-wrap .info .innerbox .r_box {
  position: relative;
  width: 62.20930233%;
}
.certificate-wrap .info .innerbox .r_box .verify-book {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.certificate-wrap .info .innerbox .r_box .verify-book .image {
  width: 2.1rem;
  height: 2.8rem;
}
.certificate-wrap .info .innerbox .r_box .verify-book .book1 {
  position: absolute;
  left: 6%;
  top: -1.65rem;
}
.certificate-wrap .info .innerbox .r_box .verify-book .book2 {
  position: absolute;
  left: 35%;
  top: -0.7rem;
}
.certificate-wrap .info .innerbox .r_box .verify-book .book3 {
  position: absolute;
  left: 65.3%;
  top: -2.35rem;
}
@media (max-width: 990px) {
  .certificate-wrap .info .innerbox .l_box .text-body {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .certificate-wrap .image {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .certificate-wrap .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .certificate-wrap .info {
    position: relative;
  }
  .certificate-wrap .info .innerbox {
    display: inline-block;
    width: 100%;
  }
  .certificate-wrap .info .innerbox .l_box {
    width: 100%;
  }
  .certificate-wrap .info .innerbox .r_box {
    width: 100%;
    margin-top: 0.5rem;
  }
  .certificate-wrap .info .innerbox .r_box .verify-book {
    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;
    width: 100%;
  }
  .certificate-wrap .info .innerbox .r_box .verify-book .book1 {
    position: relative;
    left: inherit;
    top: 0;
  }
  .certificate-wrap .info .innerbox .r_box .verify-book .book2 {
    position: relative;
    left: inherit;
    top: 0;
  }
  .certificate-wrap .info .innerbox .r_box .verify-book .book3 {
    position: relative;
    left: inherit;
    top: 0;
  }
}
.supply-chain-management-wrap {
  padding: 1.4rem 0;
  background: linear-gradient(45deg, #121827 0%, #13222D 100%);
}
.supply-chain-management-wrap .text-body {
  width: 46.04651163%;
}
.supply-chain-management-wrap .flud-wrap {
  margin-top: 0.5rem;
}
.supply-chain-management-wrap .flud-wrap .tablelist {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-top: 0.8rem;
  padding: 0 0.84rem;
}
.supply-chain-management-wrap .flud-wrap .tablelist::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0.75rem;
  left: 0;
  background: url("../images/manage-line.png") no-repeat;
  background-size: contain;
}
.supply-chain-management-wrap .flud-wrap .tablelist .item {
  position: relative;
  margin-bottom: 0.8rem;
  z-index: 2;
  font-family: 'HarmonyOS_Sans_SC_M';
}
.supply-chain-management-wrap .flud-wrap .tablelist .item .box {
  max-width: 2.6rem;
  margin: auto;
}
.supply-chain-management-wrap .flud-wrap .tablelist .item .box .num {
  opacity: 0.3;
  text-align: right;
  padding-right: 0.3rem;
}
.supply-chain-management-wrap .flud-wrap .tablelist .item .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: var(--color-green-72f);
  background: #18212E;
  border-radius: 10px;
  border: 1px solid #253041;
  line-height: 1;
  padding: 0.37rem 0;
  margin-top: -0.15rem;
  z-index: 3;
}
@media (max-width: 767px) {
  .supply-chain-management-wrap .text-body {
    width: 100%;
  }
  .supply-chain-management-wrap .flud-wrap .tablelist {
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    gap: 0.3rem;
  }
  .supply-chain-management-wrap .flud-wrap .tablelist .item {
    margin-bottom: 0;
  }
  .supply-chain-management-wrap .flud-wrap .tablelist::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .supply-chain-management-wrap .flud-wrap .tablelist {
    grid-template-columns: repeat(2, 1fr);
  }
  .supply-chain-management-wrap .flud-wrap .tablelist .item .box {
    max-width: inherit;
  }
}
.contact-map-wrap {
  padding: 1.4rem 0;
  background: url("../images/contactbg.png") no-repeat;
      background-size: cover;
}
.contact-map-wrap .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.6rem;
}
.contact-map-wrap .innerbox .l_box {
  width: 42.44186047%;
}
.contact-map-wrap .innerbox .l_box #map {
  height: 100%;
  border-radius: 10px;
}
.contact-map-wrap .innerbox .l_box #map a {
  display: inline-block;
}
.contact-map-wrap .innerbox .l_box #map img {
  display: inline-block;
  max-width: none;
}
.contact-map-wrap .innerbox .r_box {
  width: 57.55813953%;
  padding-left: 1.3rem;
}
.contact-map-wrap .innerbox .r_box .item {
  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;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
}
.contact-map-wrap .innerbox .r_box .item:first-child {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.contact-map-wrap .innerbox .r_box .item .data .title {
  opacity: 0.8;
}
.contact-map-wrap .innerbox .r_box .item .data .addr {
  margin-top: 0.1rem;
  line-height: 1;
}
.contact-map-wrap .innerbox .r_box .item .icon {
  width: 0.74rem;
  height: 0.74rem;
  min-width: 30px;
}
@media (max-width: 767px) {
  .contact-map-wrap .innerbox {
    display: inline-block;
    width: 100%;
  }
  .contact-map-wrap .innerbox .l_box {
    width: 100%;
  }
  .contact-map-wrap .innerbox .r_box {
    width: 100%;
    margin-top: 0.5rem;
    padding-left: 0;
  }
}
.form-wrap {
  position: relative;
  padding: 1.4rem 0;
  background: url("../images/form.png") no-repeat;
  background-size: cover;
}
.form-wrap .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.form-wrap .innerbox .l_box {
  width: 42.44186047%;
}
.form-wrap .innerbox .l_box .text-body {
  opacity: 0.8;
}
.form-wrap .innerbox .l_box .imageA {
  position: absolute;
  width: 100%;
  bottom: 0;
  width: 85%;
  transform: translateY(1.5rem);
  padding-left: 0.88rem;
}
.form-wrap .innerbox .r_box {
  width: 57.55813953%;
  padding-left: 1.3rem;
}
.form-wrap .innerbox .r_box .item {
        position: relative;
  /*padding: 0.355rem 0;*/
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.form-wrap .innerbox .r_box .item .title {
  transition: 0.3s ease;
  transform: translateY(0.2rem);
      position: absolute;
    top: 0.2rem;
    opacity: 0;
}
.form-wrap .innerbox .r_box .item .star {
  color: #FF0000;
  margin-right: 0.06rem;
}
.form-wrap .innerbox .r_box .item input{
    padding-top: .4rem;
}
.form-wrap .innerbox .r_box .item input{
    position: relative;
  width: 100%;
  /*opacity: 0;*/
  /*visibility: hidden;*/
   /*padding: 0.355rem 0;*/
       height: .9rem;
}
.form-wrap .innerbox .r_box .item #con_desc{
    position: relative;
  width: 100%;
  padding-top: .2rem;
  height: 1.33rem;
 
}

.form-wrap .innerbox .r_box .item input:-webkit-input-placeholder {
  color: #fff;
}
.form-wrap .innerbox .r_box .item input:-moz-placeholder {
  color: #fff;
}
.form-wrap .innerbox .r_box .item input::-moz-placeholder {
  color: #fff;
}
.form-wrap .innerbox .r_box .item input:-ms-input-placeholder {
  color: #fff;
}
.form-wrap .innerbox .r_box .item textarea:-webkit-input-placeholder {
  color: #fff !important;
}
.form-wrap .innerbox .r_box .item textarea:-moz-placeholder {
  color: #fff !important;
}
.form-wrap .innerbox .r_box .item textarea::-moz-placeholder {
  color: #fff !important;
}
.form-wrap .innerbox .r_box .item textarea:-ms-input-placeholder {
  color: #fff !important;
}

/*input选中*/

.form-wrap .innerbox .r_box .active input::-webkit-input-placeholder {
  color: #14202f;
  padding-bottom: inherit;
}
.form-wrap .innerbox .r_box .active input:-moz-placeholder {
  color: #14202f;
}
.form-wrap .innerbox .r_box .active input::-moz-placeholder {
  color: #14202f;
}
.form-wrap .innerbox .r_box .active input:-ms-input-placeholder {
  color: #14202f;
}
.form-wrap .innerbox .r_box .active textarea::-webkit-input-placeholder {
  color: #14202f;
}
.form-wrap .innerbox .r_box .active textarea:-moz-placeholder {
  color: #14202f;
}
.form-wrap .innerbox .r_box .active textarea::-moz-placeholder {
 color: #14202f;
}
.form-wrap .innerbox .r_box .active textarea:-ms-input-placeholder {
  color: #14202f;
}


.form-wrap .innerbox .r_box .active .title {
  transition: 0.3s ease;
  transform: translateY(-0.1rem);
  opacity: 1;
  z-index: 1;
}
.form-wrap .innerbox .r_box .active input {
  opacity: 1;
  visibility: inherit;
}
.form-wrap .innerbox .r_box .submitbtn {
  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;
  cursor: pointer;
  margin-top: 0.5rem;
}
.form-wrap .innerbox .r_box .submitbtn .layui-form-checked[lay-skin=primary] > i {
  border-color: var(--color-active) !important;
  background-color: var(--color-active) !important;
}
.form-wrap .innerbox .r_box .submitbtn .layui-form-checked[lay-skin=primary] > i:hover {
  border-color: var(--color-active) !important;
}
.form-wrap .innerbox .r_box .submitbtn .layui-form-checkbox[lay-skin=primary] > i {
  background-color: inherit;
}
.form-wrap .innerbox .r_box .submitbtn .layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: var(--color-active) !important;
}
.form-wrap .innerbox .r_box .submitbtn a {
  word-break: break-word;
  white-space: normal ;
  color: #fff;
  opacity: 0.8;
  font-size: var(--font18);
}
.form-wrap .innerbox .r_box .submitbtn ins {
  color: var(--color-red);
}
.form-wrap .innerbox .r_box .submitbtn .submit {
  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;
  min-height: 35px;
  background-color: var(--color-active);
  padding: 0.22rem 0.5rem;
  border-radius: 30px;
  color: var(--white-color);
  line-height: 1;
}
.form-wrap .innerbox .r_box .submitbtn .submit img {
  margin-right: 0.11rem;
}
@media (max-width: 767px) {
  .form-wrap .innerbox {
    display: inline-block;
    width: 100%;
  }
  .form-wrap .innerbox .l_box {
    width: 100%;
  }
  .form-wrap .innerbox .r_box {
    width: 100%;
    margin-top: 0.5rem;
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .form-wrap .innerbox .r_box .submitbtn {
    display: inline-block;
    width: 100%;
  }
  .form-wrap .innerbox .r_box .submitbtn .submit {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.company-introduce-wrap {
  position: relative;
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
  background: linear-gradient(45deg, #181C25 0%, #20242F 100%);
}
.company-introduce-wrap .innerbox {
  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;
  padding-left: 0.9rem;
  margin-top: 1.2rem;
}
.company-introduce-wrap .innerbox .l_box {
  width: 53.60465116%;
  max-width: 7rem;
}
.company-introduce-wrap .innerbox .l_box .slogan {
  font-family: 'HarmonyOS_Sans_SC_M';
  line-height: calc(46 / 30);
}
.company-introduce-wrap .innerbox .l_box .info {
  line-height: calc(32/18);
  opacity: 0.8;
  margin-top: 0.3rem;
}
.company-introduce-wrap .innerbox .l_box .info p {
  margin-top: 0.2rem;
}
.company-introduce-wrap .innerbox .r_box {
  width: 46.39534884%;
  z-index: 5;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.company-introduce-wrap .innerbox .r_box img {
  border-radius: 10px;
}
.company-introduce-wrap .innerbox .public-img::before {
  padding-top: 66.912%;
}
.company-introduce-wrap .datalist {
  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;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  padding-left: 0.9rem;
  margin-top: 1.08rem;
  padding-top: 0.85rem;
}
.company-introduce-wrap .datalist .item .num {
  color: var(--color-green-72f);
  line-height: 1;
  font-family: 'HarmonyOS_Sans_SC_B';
}
.company-introduce-wrap .datalist .item .desc {
  margin-top: 0.2rem;
}
.company-introduce-wrap .waves {
  top: auto;
}
@media (max-width: 767px) {
  .company-introduce-wrap .innerbox {
    padding-left: 0;
    display: inline-block;
    width: 100%;
  }
  .company-introduce-wrap .innerbox .l_box {
    width: 100%;
    max-width: inherit;
  }
  .company-introduce-wrap .innerbox .r_box {
    width: 100%;
    margin-top: 0.5rem;
  }
  .company-introduce-wrap .datalist {
    padding-left: 0;
  }
}
@media screen and (min-width: 1025px) {
  /* 在大于1024分辨率时执行的样式 */
  .development-wrap .development-swiper {
    overflow: visible;
  }
  .development-wrap .development-swiper .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    grid-gap: 0.6rem;
  }
  .development-wrap .development-swiper .swiper-wrapper .swiper-slide {
    width: auto;
  }
}
.development-wrap {
  background: #14202F;
  min-height: 100vh;
  background-size: 100% 100%;
  padding-top: 1.2rem;
  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) {
  .development-wrap {
    display: block;
    min-height: initial;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 1024px) {
  .development-wrap .index-page-up {
    display: block;
  }
  .development-wrap .index-page-up .btn-container {
    margin-top: 0.6rem;
  }
}
.development-wrap .page-title .text-body {
  width: 69%;
}
@media (max-width: 1024px) {
  .development-wrap .page-title .text-body {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .development-wrap .page-title .text-body {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 0.2rem;
  }
}
.development-wrap .development-swiper {
  padding-left: 0.69rem;
  margin-top: 1.32rem;
  margin-top: 0.9rem;
}
@media (max-width: 1024px) {
  .development-wrap .development-swiper {
    padding: 0;
    grid-gap: 1rem;
    padding-bottom: 40px;
    overflow: visible;
  }
  .development-wrap .development-swiper .swiper-pagination {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .development-wrap .development-swiper {
    margin-top: 0.8rem;
    grid-gap: 0.8rem;
  }
}
.development-wrap .development-swiper .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.development-wrap .development-swiper .item-box .num {
  font-family: 'HarmonyOS_Sans_SC_B';
  text-align: right;
  padding-right: 0.5rem;
  color: #FFF;
  opacity: 0.6;
}
.development-wrap .development-swiper .item-box .carditem {
  width: 9.7rem;
  height: 6.1rem;
  background: rgba(26, 39, 56, 0.6);
  border-radius: 10px;
  border: 1px solid #29374A;
  padding: 0.68rem 0.5rem;
  margin-top: -0.3rem;
  backdrop-filter: blur(4px);
}
.development-wrap .development-swiper .item-box .carditem .title {
  color: var(--color-green-72f);
  padding-bottom: 0.4rem;
  font-family: 'HarmonyOS_Sans_SC_M';
}
.development-wrap .development-swiper .item-box .carditem ul {
  margin-top: 0.09rem;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.development-wrap .development-swiper .item-box .carditem ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.49rem;
  margin-top: 0.43rem;
}
.development-wrap .development-swiper .item-box .carditem ul li .year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.14rem;
  font-family: 'HarmonyOS_Sans_SC_M';
}
.development-wrap .development-swiper .item-box .carditem ul li .info .desc1 {
  color: var(--color-green-72f);
  margin-bottom: 0.1rem;
  font-family: 'HarmonyOS_Sans_SC_M';
}
.development-wrap .development-swiper .item-box .carditem ul li .info .desc2 {
  opacity: 0.8;
}
@media (max-width: 990px) {
  .development-wrap .development-swiper .item-box .num {
    font-size: var(--font80);
  }
}
.honor-wrap {
  position: relative;
  padding: 1.4rem 0;
  z-index: 20;
  background: url("../images/honorbg.png") no-repeat;
  background-size: cover;
}
.honor-wrap .honor-swiper {
  margin-top: 1.7rem;
}
.honor-wrap .honor-swiper .item {
  text-align: center;
}
.honor-wrap .honor-swiper .item .honor{
    width: 3.32rem;
    height: 2.25rem;
    margin: auto;
}
.honor-wrap .honor-swiper .item .bgimg {
  position: absolute;
  bottom: -1.3rem;
  width: 100%;
  z-index: -1;
}
.honor-wrap .honor-swiper .item .title {
  position: absolute;
  width: 100%;
  text-align: center;
  margin-top: 0.7rem;
}
.operate-wrap {
  position: relative;
  padding: 1.4rem 0;
  background: #131D2D;
}
.operate-wrap .swiper-banner {
  margin-top: 0.6rem;
}
.operate-wrap .swiper-banner .swiper-container {
  margin-bottom: 0.3rem;
}
.operate-wrap .swiper-banner .swiper-container .image {
  height: 2rem;
  border-radius: 10px;
}
.operate-wrap .swiper-banner .swiper-container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.join-wrap {
  position: relative;
  padding: 1.4rem 0;
  background: linear-gradient(45deg, #111828 0%, #131C2F 100%);
}
.join-wrap .activelist .innerbox {
  margin-top: 0.3rem;
}
.join-wrap .activelist .innerbox:first-child {
  margin-top: 0.6rem;
}
.join-wrap .activelist .innerbox .image {
  height: 2.2rem;
}
.join-wrap .activelist .innerbox .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.join-wrap .activelist .list1 .swiper-wrapper,
.join-wrap .activelist .list2 .swiper-wrapper {
  transition-timing-function: linear !important;
}
.training-development-wrap {
  position: relative;
  padding: 1.4rem 0;
  background: var(--color-blue-02F);
}
.training-development-wrap .flexbox {
  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;
}
.training-development-wrap .flexbox .l_box {
  width: 80%;
}
.training-development-wrap .flexbox .r_box {
  position: relative;
}
.training-development-wrap .flexbox .r_box .swiper-btn {
  width: 1.4rem;
  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;
}
.training-development-wrap .flexbox .r_box .swiper-btn .swiper-button-prev {
  position: absolute;
  left: 0;
}
.training-development-wrap .flexbox .r_box .swiper-btn .swiper-button-next {
  position: absolute;
  right: 0;
}
.training-development-wrap .developmentlist .innerbox {
  margin-top: 0.5rem;
}
.training-development-wrap .developmentlist .innerbox .image {
  border-radius: 10px;
  height: 3.2rem;
}
.training-development-wrap .developmentlist .innerbox .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.training-development-wrap .developmentlist .innerbox .title {
  font-family: 'HarmonyOS_Sans_SC_M';
  margin-top: 0.3rem;
  text-align: center;
}
.training-development-wrap .developmentlist .innerbox .swiper-pagination {
  position: relative;
  margin-top: 0.3rem;
}
@media (max-width: 767px) {
  .training-development-wrap .flexbox .l_box {
    width: 100%;
  }
  .training-development-wrap .flexbox .r_box {
    display: none;
  }
}
.solution-section1 {
  padding: 1.4rem 0 1.33rem 0;
  position: relative;
  background: url("../images/solution1-bg.png") no-repeat;
  background-size: cover;
}
.solution-section1 .cardlist .itemlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-top: 0.55rem;
}
.solution-section1 .cardlist .itemlist .item {
  position: relative;
  cursor: pointer;
}
.solution-section1 .cardlist .itemlist .item .imagebg {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.solution-section1 .cardlist .itemlist .item .info {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0.5rem;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.solution-section1 .cardlist .itemlist .item .info .icon {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 0.74rem;
  height: 0.74rem;
  position: absolute;
  right: 0.5rem;
}
.solution-section1 .cardlist .itemlist .item .info .data {
  font-family: 'HarmonyOS_Sans_SC_B';
  margin-top: 1rem;
  color: var(--color-green-72f);
}
.solution-section1 .cardlist .itemlist .item .info .title {
  margin-top: 0.05rem;
}
.solution-section1 .cardlist .itemlist .item:hover .info {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transform: translateY(-15px);
}
.solution-section1 .cardlist .itemlist .item:hover .info .icon {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transform: translateX(-10px);
}
.solution-section1 .tablist {
  margin-top: 1rem;
}
.solution-section1 .tablist ul {
  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;
  width: 42.6744186%;
  margin: auto;
  color: var(--color-white);
  opacity: 0.8;
  height: 0.7rem;
  background: rgba(169, 205, 248, 0.1);
  border-radius: 39px;
}
.solution-section1 .tablist ul li {
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  font-size: var(--font20);
}
.solution-section1 .tablist ul .active {
  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;
  margin: 0.04rem;
  height: 90%;
  background: #00479D;
  opacity: 1;
  border-radius: 35px;
  transition: all 0.3s ease-in-out;
}
.solution-section1 .tablist .content {
  margin-top: 0.4rem;
  overflow: hidden;
}
.solution-section1 .tablist .content .swiper-slide {
  display: none;
}
.solution-section1 .tablist .content .swiper-slide-active {
  display: inline-block;
}
.solution-section1 .tablist .content .image {
  width: 80%;
  margin: auto;
      height: 6.4rem;
}
.solution-section1 .tablist .content .image img {
      width: 100%;
    height: 100%;
    object-fit: cover;
  
}
@media (max-width: 767px) {
  .solution-section1 .cardlist .itemlist {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-section1 .tablist ul {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .solution-section1 .cardlist .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
  .solution-section1 .tablist ul {
    width: 85%;
  }
}
.solution-section2 {
  position: relative;
  padding: 1.4rem 0;
  background: #14202F;
}
.solution-section2 .cardlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.solution-section2 .cardlist .item {
  border-radius: 10px;
  border: 1px solid #253041;
}
.solution-section2 .cardlist .item .image {
  height: 3.6rem;
}
.solution-section2 .cardlist .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-section2 .cardlist .item .public-img {
  cursor: pointer;
}
.solution-section2 .cardlist .item .public-img::before {
  padding-top: 65.696%;
}
.solution-section2 .cardlist .item .info {
  padding: 0.4rem 0.3rem;
}
.solution-section2 .cardlist .item .info .title {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: 'HarmonyOS_Sans_SC_M';
}
.solution-section2 .cardlist .item .info .sec-title {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: calc(32/18);
  opacity: 0.8;
  margin-top: 0.2rem;
}
.solution-section2 .cardlist .item:hover .info .title {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--color-green-72f);
}
.solution-section2 .cardlist .item:hover .info .sec-title {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transform: translateY(-10px);
}
@media (max-width: 767px) {
  .solution-section2 .cardlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .solution-section2 .cardlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.solution-section3 {
  padding: 1.4rem 0;
  background: linear-gradient(45deg, #131A2A 0%, #182A37 100%);
}
.solution-section3 .flud-wrap {
  margin-top: 0.5rem;
}
.solution-section3 .flud-wrap .title {
  font-family: 'HarmonyOS_Sans_SC_M';
  text-align: center;
}
.solution-section3 .flud-wrap .tablelist {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.62rem;
  padding: 0 0.88rem;
}
.solution-section3 .flud-wrap .tablelist::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 3.7rem;
  left: 0;
  background: url("../images/product-line.png") no-repeat;
}
.solution-section3 .flud-wrap .tablelist .item {
  margin-bottom: 0.9rem;
  z-index: 2;
}
.solution-section3 .flud-wrap .tablelist .item:last-child {
  margin-bottom: 0;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(2) .box,
.solution-section3 .flud-wrap .tablelist .item:nth-child(5) .box {
  margin: auto;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(3) .box,
.solution-section3 .flud-wrap .tablelist .item:nth-child(4) .box {
  float: right;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(4) {
  order: 6;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(4) .box {
  display: grid;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(4) .box .image {
  order: 2;
  margin-top: 0.7rem;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(4) .box .info {
  order: 1;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(5) {
  order: 5;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(5) .box {
  display: grid;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(5) .box .image {
  order: 2;
  margin-top: 0.7rem;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(5) .box .info {
  order: 1;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(6) {
  order: 4;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(6) .box {
  display: grid;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(6) .box .image {
  order: 2;
  margin-top: 0.7rem;
}
.solution-section3 .flud-wrap .tablelist .item:nth-child(6) .box .info {
  order: 1;
}
.solution-section3 .flud-wrap .tablelist .item .box {
  width: 3.6rem;
}
.solution-section3 .flud-wrap .tablelist .item .box .image {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.solution-section3 .flud-wrap .tablelist .item .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.solution-section3 .flud-wrap .tablelist .item .box .public-img:before {
  padding-top: 74.5573%;
}
.solution-section3 .flud-wrap .tablelist .item .box .info {
  font-family: 'HarmonyOS_Sans_SC_M';
}
.solution-section3 .flud-wrap .tablelist .item .box .info .num {
  margin-top: 0.35rem;
  opacity: 0.3;
  text-align: center;
}
.solution-section3 .flud-wrap .tablelist .item .box .info .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  color: var(--color-green-72f);
  border-radius: 10px;
  border: 1px solid #253041;
  line-height: 1;
  padding: 0.34rem 0;
  margin-top: -0.2rem;
  backdrop-filter: blur(5px);
  background: linear-gradient(180deg, rgba(37, 48, 65, 0.1) 0%, #253041 32%);
}
@media (max-width: 1366px) {
  .solution-section3 .flud-wrap .tablelist::after {
    top: 3.7rem;
    background-size: contain;
  }
}
@media (max-width: 990px) {
  .solution-section3 .flud-wrap .tablelist::after {
    top: 3.9rem;
  }
}
@media (max-width: 767px) {
  .solution-section3 .flud-wrap .tablelist::after {
    background: inherit;
  }
  .solution-section3 .flud-wrap .tablelist .item .box {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .solution-section3 .flud-wrap .tablelist {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .solution-section3 .flud-wrap .tablelist .item:nth-child(4) .box .image,
  .solution-section3 .flud-wrap .tablelist .item:nth-child(5) .box .image,
  .solution-section3 .flud-wrap .tablelist .item:nth-child(6) .box .image {
    order: inherit;
    margin-top: inherit;
  }
  .solution-section3 .flud-wrap .tablelist .item .box {
    width: 100%;
  }
  .solution-section3 .flud-wrap .tablelist .item .box .public-img:before {
    padding-top: 64%;
  }
  .solution-section3 .flud-wrap .tablelist .item:nth-child(3) .box,
  .solution-section3 .flud-wrap .tablelist .item:nth-child(4) .box {
    float: inherit;
  }
  .solution-section3 .flud-wrap .tablelist .item:nth-child(4),
  .solution-section3 .flud-wrap .tablelist .item:nth-child(5),
  .solution-section3 .flud-wrap .tablelist .item:nth-child(6) {
    order: inherit;
  }
}
.solution-section4 {
  padding: 1.4rem 0;
  background: #060C16;
}
.solution-section4 .itemlist {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.solution-section4 .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #1A263A;
  border-radius: 10px;
  height: 2rem;
}
.solution-section4 .itemlist .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0.3rem;
}
@media (max-width: 767px) {
  .solution-section4 .itemlist {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .solution-section4 .itemlist {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.solution-two-section1 {
  position: relative;
  background: linear-gradient(45deg, #111828 0%, #131C2F 100%);
}
.solution-two-section1 .innerbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 10px;
}
.solution-two-section1 .topwrap {
  padding: 1.4rem 0 1.3rem 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.solution-two-section1 .topwrap .info {
  line-height: calc(32/18);
  opacity: 0.8;
}
.solution-two-section1 .bottomwrap {
  padding: 1.4rem 0;
  height: 400vh;
}
.solution-two-section1 .bottomwrap .innerbox {
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.solution-two-section1 .bottomwrap .innerbox .info {
  border-radius: 10px;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul {
  padding: 0 0.5rem;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li {
  cursor: pointer;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li .top {
  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;
  padding: 0.39rem 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  line-height: 1;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li .top .title {
  font-family: 'HarmonyOS_Sans_SC_M';
  opacity: 0.8;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li .top .icon {
  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;
  width: 0.29rem;
  height: 0.29rem;
  min-width: 28px;
  min-height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li .top .icon img {
  filter: brightness(0) invert(1);
  transform: rotate(180deg);
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li .bom {
  display: none;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  padding-bottom: 0.45rem;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li .bom .info {
  max-width: 6.94rem;
  line-height: calc(32/18);
  opacity: 0.8;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li .bom .itemlist {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li .bom .itemlist .item .num {
  font-family: 'HarmonyOS_Sans_SC_B';
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li .bom .itemlist .item .desc {
  margin-top: 0.1rem;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li .bom .mobileimg{
  width: 100%;
    height: 4rem;
    margin-top: 0.5rem;
    display: none;
}

.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li:last-child .top {
  border-bottom: none;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li:last-child .bom {
  border-bottom: none;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul .active .top {
  border-bottom: none;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul .active .top .title {
  color: var(--color-green-72f);
  opacity: 1;
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul .active .top .icon {
  border: 1px solid rgba(114, 255, 174, 0.6);
}
.solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul .active .top .icon img {
  filter: inherit;
  transform: rotate(0deg);
}
.solution-two-section1 .bottomwrap .innerbox .image {
  border-radius: 10px;
  overflow: hidden;
}
.solution-two-section1 .bottomwrap .innerbox .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


@media (max-width: 767px) {
  .solution-two-section1 .bottomwrap .innerbox .image{
    display:none;
  }
   .solution-two-section1 .bottomwrap{
        height:inherit;
   }
  .solution-two-section1 .topwrap .info {
    margin-top: 0.5rem;
  }
  .solution-two-section1 .innerbox {
    grid-template-columns: repeat(1, 1fr);
  }
  .solution-two-section1 .bottomwrap .innerbox .info .tab-ul ul li .bom .mobileimg{
    display: inline-block;
  }
}
.solution-two-section2 {
  position: relative;
  padding: 1.4rem 0;
  background: #14202F;
}
.solution-two-section2 .itemlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-top: 0.4rem;
}
.solution-two-section2 .itemlist .item {
  position: relative;
  cursor: pointer;
}
.solution-two-section2 .itemlist .item .info {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0.4rem 0.3rem;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.solution-two-section2 .itemlist .item .info .icon {
  width: 0.74rem;
  height: 0.74rem;
}
.solution-two-section2 .itemlist .item .info .data {
  font-family: 'HarmonyOS_Sans_SC_M';
  margin-top: 0.35rem;
  color: var(--color-green-72f);
}
.solution-two-section2 .itemlist .item .info .title {
  margin-top: 0.2rem;
  line-height: calc(32/18);
  opacity: 0.8;
}
.solution-two-section2 .itemlist .item:hover .info {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transform: translateY(-12px);
}
@media (max-width: 767px) {
  .solution-two-section2 .itemlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .solution-two-section2 .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}

.solution-apply-section {
  padding: 1.4rem 0;
  background: linear-gradient(45deg, #131A2A 0%, #182A37 100%);
}
.solution-apply-section .itemlist {
  margin-top: 0.5rem;
}
.solution-apply-section .itemlist .item {
  position: relative;
}
.solution-apply-section .itemlist .item .image {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.55rem 0.37rem;
}
.solution-apply-section .itemlist .item .image .pb {
  padding-bottom: 88.6%;
}
.solution-apply-section .itemlist .item .image .pb .ab {
  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;
}
.solution-apply-section .itemlist .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.solution-apply-section .itemlist .item .public-img::before {
  padding-top: 103.3%;
}
.solution-apply-section .itemlist .item .public-img img {
  border-radius: 10px;
}
.solution-apply-section .itemlist .item .info {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  width: 100%;
  z-index: 2;
  margin-top: 0.34rem;
  text-align: center;
}
.solution-apply-section .itemlist .item:hover .info {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transform: translateY(-10px);
}
@media (max-width: 480px) {
  .solution-apply-section .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}


.solution-two-section3 {
  padding: 1.4rem 0;
  background: linear-gradient(45deg, #131A2A 0%, #182A37 100%);
}
.solution-two-section3 .itemlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.solution-two-section3 .itemlist .item {
  position: relative;
}
.solution-two-section3 .itemlist .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-two-section3 .itemlist .item .public-img::before {
  padding-top: 60.242%;
}
.solution-two-section3 .itemlist .item .public-img img {
  border-radius: 10px;
}
.solution-two-section3 .itemlist .item .info {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  width: 100%;
  bottom: 0.5rem;
  padding-left: 0.5rem;
  z-index: 2;
}
.solution-two-section3 .itemlist .item:hover .info {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transform: translateY(-10px);
}
@media (max-width: 480px) {
  .solution-two-section3 .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
#idxSwiper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#idxSwiper .public-banner {
  height: calc(100vh - 0.86rem);
}
#idxSwiper .public-banner .svgbox {
  right: 4.05%;
}
#idxSwiper .active .wrap-right {
  animation: right-img-animate 0.8s 1 linear forwards;
  -webkit-animation: right-img-animate 0.8s 1 linear forwards;
}
#idxSwiper .corealgorithm-page {
  overflow: hidden;
  height: 100%;
}
#idxSwiper .corealgorithm-page .A-main {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100vh;
  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;
}

#idxSwiper .slideauto {
    height: auto;
}

@media (max-width: 1024px) {
  #idxSwiper .corealgorithm-page .A-main {
    height: 100%;
  }
}
#idxSwiper .corealgorithm-page .page-img-box .page-img {
  height: 100vh;
}
@media (max-width: 1024px) {
  #idxSwiper .corealgorithm-page .page-img-box .page-img {
    height: 100%;
  }
}
#idxSwiper .corealgorithm-page .A-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 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;
}
@media (max-width: 1024px) {
  #idxSwiper .corealgorithm-page .A-container {
    position: relative;
    height: initial;
    display: block;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
#idxSwiper .corealgorithm-page .index-page-up {
  width: 100%;
  position: absolute;
  margin-top: var(--header-height);
  left: 0;
}
@media (max-width: 1024px) {
  #idxSwiper .corealgorithm-page .index-page-up {
    padding: 0;
    position: relative;
    top: 0;
  }
}
#idxSwiper .corealgorithm-page .tab-title-box {
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  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;
}
@media (max-width: 1024px) {
  #idxSwiper .corealgorithm-page .tab-title-box {
    display: none;
  }
}
#idxSwiper .corealgorithm-page .tab-title-box .title {
  position: relative;
  position: absolute;
  font-family: 'HarmonyOS_Sans_SC_M';
  color: rgba(255, 255, 255, 0.3);
  -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;
  grid-gap: 0.47rem;
  transform: translateY(-50%);
}
#idxSwiper .corealgorithm-page .tab-title-box .title .name span {
  display: block;
}
#idxSwiper .corealgorithm-page .tab-title-box .title .name .font30 {
  margin-bottom: 0.06rem;
}
#idxSwiper .corealgorithm-page .tab-title-box .title .AS-round2 span {
  display: none;
}
#idxSwiper .corealgorithm-page .tab-title-box .title .AS-round2::before {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
}
#idxSwiper .corealgorithm-page .tab-title-box .title.active {
  color: var(--color-green-72f);
}
#idxSwiper .corealgorithm-page .tab-title-box .title.active .AS-round2 span {
  display: block;
}
#idxSwiper .corealgorithm-page .tab-title-box .title.active .AS-round2::before {
  background-color: var(--color-green-7cd);
}
#idxSwiper .corealgorithm-page .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;
  position: relative;
  width: 100%;
  height: 100%;
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-left {
  width: 4.2rem;
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-right {
  width: 14rem;
  transform: translateX(20%);
  position: relative;
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-right .public-img img {
  width: 52%;
  height: inherit;
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-bg {
  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;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-bg .gloabal-box {
  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;
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-bg .gloabal-box .item {
  position: absolute;
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-bg .gloabal-box .circle1 {
  animation: circular 60s linear infinite;
  width: 66.5%;
  height: 66.5%;
  border-radius: 50%;
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-bg .gloabal-box .circle1 .point {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #7CD29A;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-bg .gloabal-box .circle2 {
  animation: circularBack 50s linear infinite;
  width: 82.5%;
  height: 82.5%;
  border-radius: 50%;
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-bg .gloabal-box .circle2 .point {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #7CD29A;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-bg .gloabal-box .circle3 {
  animation: circular 30s linear infinite;
  width: 100%;
  height: 100%;
  /* right: -14%; */
  border-radius: 50%;
}
#idxSwiper .corealgorithm-page .wrap-box .wrap-bg .gloabal-box .circle3 .point {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #7CD29A;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
}
@media (max-width: 1024px) {
  #idxSwiper .corealgorithm-page .wrap-box {
    display: block;
  }
  #idxSwiper .corealgorithm-page .wrap-box .wrap-left {
    width: 100%;
  }
  #idxSwiper .corealgorithm-page .wrap-box .wrap-right {
    width: 70%;
    position: relative;
    float: right;
  }
}
@media (max-width: 767px) {
  #idxSwiper .corealgorithm-page .wrap-box .wrap-right {
    width: 100%;
    position: relative;
    float: right;
  }
}
#idxSwiper .sectionSingle .index-page-up {
  left: 1.25rem;
}
#idxSwiper .sectionDouble .wrap-box .wrap-bg {
  left: 0;
  right: inherit;
}
#idxSwiper .sectionDouble .wrap-box .wrap-bg .gloabal-box .circle1 {
  animation: circular 60s linear infinite;
  width: 67%;
  height: 67%;
  left: 4%;
  border-radius: 50%;
}
#idxSwiper .sectionDouble .wrap-box .wrap-bg .gloabal-box .circle1 .point {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #7CD29A;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
}
#idxSwiper .sectionDouble .wrap-box .wrap-bg .gloabal-box .circle2 {
  animation: circularBack 50s linear infinite;
  width: 83%;
  height: 83%;
  border-radius: 50%;
}
#idxSwiper .sectionDouble .wrap-box .wrap-bg .gloabal-box .circle2 .point {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #7CD29A;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
}
#idxSwiper .sectionDouble .wrap-box .wrap-bg .gloabal-box .circle3 {
  animation: circular 30s linear infinite;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
#idxSwiper .sectionDouble .wrap-box .wrap-bg .gloabal-box .circle3 .point {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #7CD29A;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
}
#idxSwiper .sectionDouble .wrap-box .wrap-right {
  transform: translateX(-12%) !important;
}
@media (max-width: 1024px) {
  #idxSwiper .sectionDouble .wrap-box .wrap-left {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 10;
  }
  #idxSwiper .sectionDouble .wrap-box .wrap-right {
    float: left;
    margin-top: 2rem;
  }
}