@charset "utf-8";
/* 公共响应变量 */
.fixed-zhl {
  width: 110px;
  height: 110px;
  background: rgba(29, 32, 136, 0.8);
  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(--font16);
}
.fixed-zhl > .fixed-a > .tbox > .ts img {
  max-width: 0.24rem;
}
.fixed-zhl > .fixed-a > .tbox > .ts span {
  display: block;
}
/*
插件：视频弹窗
版本：
官网：
*/
/* 视频弹窗 */
#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: 100vh;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
}
.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;
  }
}
.hi-resume-pop .innerbox {
  max-width: 590px;
  width: 90%;
  margin: auto;
  transform: translateY(24%);
  background: #fff;
  padding: 0.5rem 0.3rem;
  border-radius: 5px;
}
.hi-resume-pop .innerbox .close-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;
  position: absolute;
  background-color: #000000;
  width: 0.36rem;
  height: 0.36rem;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  top: 0;
  right: 0;
  transform: translateY(-50%) translateX(50%);
}
.hi-resume-pop .innerbox .close-icon svg {
  filter: brightness(0) invert(1);
  scale: 0.6;
}
.hi-resume-pop .innerbox .contentwrap .title {
  text-align: center;
  margin-bottom: 0.4rem;
  font-size: var(--font32);
  font-weight: 700;
}
.hi-resume-pop .innerbox .contentwrap .row {
  margin-bottom: 0.15rem;
}
.hi-resume-pop .innerbox .contentwrap .row input {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.hi-resume-pop .innerbox .contentwrap .row input,
.hi-resume-pop .innerbox .contentwrap .row textarea {
  border-radius: 7px;
  width: 100%;
  border: 1px solid #dadbdd;
  padding: 0.11rem 0.15rem;
}
.hi-resume-pop .innerbox .contentwrap .submit {
  width: fit-content;
  background-color: var(--color-active);
  color: var(--color-white);
  padding: 0.08rem 0.2rem;
}



/*
插件：animate动画
版本：3.7.2
官网：https://animate.style/
*/
@-webkit-keyframes h_schedule {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes h_schedule {
  0% {
    width: 0;
  }
  100% {
    heighwidtht: 100%;
  }
}
@-webkit-keyframes scrollToTop {
  0% {
    transform: translateY(50px) scale(0.99);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes scrollToTop {
  0% {
    transform: translateY(50px) scale(0.99);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes title-animate {
  from {
    color: transparent;
  }
  to {
    color: #FFF;
  }
}
@keyframes title-animate {
  from {
    color: transparent;
  }
  to {
    color: #FFF;
  }
}
@-webkit-keyframes right-img-animate {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes right-img-animate {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@-webkit-keyframes right-animate {
  from {
    opacity: 0;
    transform: translate(100%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@keyframes right-animate {
  from {
    opacity: 0;
    transform: translate(100%, 0%);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes up-animate {
  0% {
    opacity: 0;
    transform: matrix(1, 0.1, 0, 1, 0, 20);
  }
  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@keyframes up-animate {
  0% {
    opacity: 0;
    transform: matrix(1, 0.1, 0, 1, 0, 20);
  }
  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@-webkit-keyframes scaleInImg {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleInImg {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes icon-video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes icon-video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes icon_video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes icon_video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes h-line {
  0% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  20% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  30% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 0;
  }
  31% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 0;
  }
  50% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
}
@keyframes h-line {
  0% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  20% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
  30% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 0;
  }
  31% {
    transform: scale(0.01, 1);
    -webkit-transform: scale(0.01, 1);
    -ms-transform: scale(0.01, 1);
    -moz-transform: scale(0.01, 1);
    -o-transform: scale(0.01, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 0;
  }
  50% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform-origin: 100% 50%;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    opacity: 1;
  }
}
.scroll-animate.animated {
  visibility: hidden;
}
.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.h_schedule {
  -webkit-animation-name: h_schedule;
  animation-name: h_schedule;
}
.scrollToTop {
  -webkit-animation-name: scrollToTop;
  animation-name: scrollToTop;
}
.right-img-animate {
  display: inline-block;
  -webkit-animation-name: right-img-animate;
  animation-name: right-img-animate;
}
.right-animate {
  display: inline-block;
  -webkit-animation-name: right-animate;
  animation-name: right-animate;
}
.up-animate {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-animation: up-animate 1.2s cubic-bezier(0.49, 0.54, 0.16, 1);
  animation: up-animate 1.2s cubic-bezier(0.49, 0.54, 0.16, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.scaleInImg {
  -webkit-animation-name: scaleInImg;
  animation-name: scaleInImg;
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.icon-video {
  -webkit-animation-name: icon-video;
  animation-name: icon-video;
}
.icon_video {
  -webkit-animation-name: icon_video;
  animation-name: icon_video;
}
.h-line {
  -webkit-animation-name: h-line;
  animation-name: h-line;
}
/*
插件：swiper轮播swiper.min.css
版本：4.5.0
官网：https://www.swiper.com.cn
*/
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform,height;
  transition-property: transform,height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}
.color-blue-1d2 {
  color: #1D2088;
}
.color-blue-004 {
  color: #004CBF;
}
.bg-blue-1d2 {
  background-color: #1D2088;
}
.bg-blue-004 {
  background-color: #004CBF;
}
:root {
  /* 导航高度 */
  --header-height: 0.96rem;
  /* COLOR */
  --color-active: #1D2088;
  --color-blue-1d2: #1D2088;
  --color-blue-004: #004CBF;
  --color-white: #fff;
  --color-black: #282828;
  --color-gray-f6: #f6f6f6;
  --color-gray-f5: #F5F5F5;
  --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);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
}
@media (max-width: 1580px) {
  :root {
    --header-height: 50px;
  }
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font15 {
  font-size: var(--font15);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.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);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
/* 字体 */



.HarmonyOS_Sans_SC_R {
  font-family: 'HarmonyOS_Sans_SC_R';
}
/* 初始化 */
* {
  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: #000;
  background: #fff;
  overflow-x: hidden;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
.body-hid {
  overflow: hidden;
}
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-auto {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: var(--font14);
  color: #666;
}

@media (max-width: 1440px) {
    table {
      font-size: var(--font16);
    }
}

th,
td {
  border: 1px solid #E4E5E7;
  padding: 0.17rem 0.32rem;
  padding: 0.17rem;
}
th {
  font-weight: normal;
  background-color: #F8FAFC;
  text-align: left;
}
td {
  height: 0.56rem;
}
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;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.dh {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/* 动画延迟 */
.white-space {
  white-space: pre-line;
}
@media (max-width: 1024px) {
  .white-space {
    white-space: inherit;
  }
}
.font-weight-b {
  font-weight: bold;
}
.text-cap {
  text-transform: uppercase;
}
/* 布局 */
.pc,
.c-pc {
  display: block;
}
@media (max-width: 767px) {
  .pc,
  .c-pc {
    display: none;
  }
}
.wap,
.mobile,
.c-mb {
  display: none;
}
@media (max-width: 767px) {
  .wap,
  .mobile,
  .c-mb {
    display: block;
  }
}
/* images等比-NEW */
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.public-img .bgbox {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.public-img .imgbg {
  position: absolute;
  width: 100%;
  height: 120%;
  top: -10%;
  left: 0;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: none;
  transition: none;
}
.public-img-plus:hover img,
.public-img-plus:hover .bgbox {
  -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-main {
  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.24rem;
}
.slide-btn-main .slide-btn {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
}
.slide-btn {
  width: 0.56rem;
  height: 0.56rem;
  background: no-repeat center;
  border-radius: 50%;
  margin-top: -0.28rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.slide-btn.swiper-button-next {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.slide-btn:hover img,
.slide-btn:hover svg {
  filter: drop-shadow(-80px 0 var(--color-active));
  transform: translate(80px);
}
.slide-btn img,
.slide-btn svg {
  width: 0.56rem;
  height: auto;
}
@media (max-width: 1024px) {
  .slide-btn {
    display: none;
  }
}
.swiper-container-horizontal > .swiper-scrollbar {
  width: 100%;
  height: 2px;
  background: #F0F0F5;
  border-radius: 99px;
  bottom: 0;
  left: 0;
}
.swiper-container-horizontal > .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color-active);
  border-radius: 99px;
}
/* 公共样式 - 结束 */
#header {
  /* ----------------------------------------------------------    手机端导航 */
}
#header.header-color-black .header-pc,
#header.active .header-pc,
#header.header-bg .header-pc {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#header.header-color-black .header-pc .header-wrap .logo img,
#header.active .header-pc .header-wrap .logo img,
#header.header-bg .header-pc .header-wrap .logo img {
  -webkit-filter: initial;
  filter: initial;
}
#header.header-color-black .header-pc .header-wrap .header-right .nav dt a,
#header.active .header-pc .header-wrap .header-right .nav dt a,
#header.header-bg .header-pc .header-wrap .header-right .nav dt a {
  color: rgba(0, 0, 0, 0.8);
}
#header.header-color-black .header-pc .header-wrap .header-right .nav dt a.active,
#header.active .header-pc .header-wrap .header-right .nav dt a.active,
#header.header-bg .header-pc .header-wrap .header-right .nav dt a.active {
  color: #000;
}
#header.header-color-black .header-pc .header-wrap .header-right .column .header-btn svg path,
#header.active .header-pc .header-wrap .header-right .column .header-btn svg path,
#header.header-bg .header-pc .header-wrap .header-right .column .header-btn svg path {
  fill: rgba(0, 0, 0, 0.8);
}
#header .header-pc {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  margin: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .header-pc::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.2;
}
#header .header-pc .header-wrap {
  margin: auto;
  padding: 0 0.8rem;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .header-pc .header-wrap .logo {
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .header-pc .header-wrap .logo .logo-black {
  display: none;
}
#header .header-pc .header-wrap .logo img,
#header .header-pc .header-wrap .logo svg {
  width: auto;
  height: 0.7rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#header .header-pc .header-wrap .header-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;
  grid-gap: 0 1.19rem;
}
#header .header-pc .header-wrap .header-right .nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0 0.62rem;
}
#header .header-pc .header-wrap .header-right .nav .bor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-active);
}
#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:hover dt a {
  color: var(--color-active);
}
#header .header-pc .header-wrap .header-right .nav dl:hover dt a::before {
  width: 100%;
}
#header .header-pc .header-wrap .header-right .nav dt a {
  font-size: var(--font20);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .header-pc .header-wrap .header-right .nav dt a::before {
  content: '';
  width: 0;
  height: 0.04rem;
  background-color: var(--color-active);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .header-pc .header-wrap .header-right .nav dt a.active {
  color: #fff;
}
#header .header-pc .header-wrap .header-right .nav dt a:hover {
  color: var(--color-active);
}
#header .header-pc .header-wrap .header-right .nav dt a:hover::before {
  width: 100%;
}
#header .header-pc .header-wrap .header-right .nav dd {
  display: none;
  width: 140px;
  background-color: var(--color-white);
  border-radius: 0 0 0.1rem 0.1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  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 .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0 0.24rem;
}
#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);
}
#header .header-pc .header-wrap .header-right .column .header-btn svg path {
  fill: #fff;
}
#header .header-pc .header-wrap .header-right .column .header-search {
  line-height: 1;
}
#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.28rem;
  min-width: 20px;
  height: auto;
  margin-top: -0.03rem;
}
#header .header-pc .header-wrap .header-right .column .header-language .round {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.1rem;
}
#header .header-pc .header-wrap .header-right .column .header-language .round .header-select-icon img,
#header .header-pc .header-wrap .header-right .column .header-language .round .header-select-icon svg {
  width: 0.22rem;
  min-width: 16px;
  height: auto;
}
#header .header-pc .header-wrap .header-right .column .header-language .language-con {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  background-color: white;
  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 {
  display: block;
  line-height: 2;
  -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,
#header .header-pc .header-wrap .header-right .column .header-language .language-con a.active {
  color: var(--color-active);
}
#header .header-pc .header-wrap .header-right .column .header-language:hover .language-con {
  display: block;
}
@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(0, 0, 0, 0.5);
  display: none;
  z-index: 10;
}
#header .mask-bg.active {
  display: block;
}
#header .m_header_box {
  width: 100%;
  height: auto;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
}
#header .m_header_box .header_title {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  position: relative;
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
#header .m_header_box .header_title .logo {
  height: 100%;
  overflow: hidden;
}
#header .m_header_box .header_title .logo a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .m_header_box .header_title .logo img,
#header .m_header_box .header_title .logo svg {
  width: auto;
  height: 24px;
}
#header .m_header_box .header_title .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
#header .m_header_box .header_title .menu_btn {
  width: 30px;
  height: 30px;
  position: relative;
  overflow: hidden;
}
#header .m_header_box .header_title .menu_btn::after,
#header .m_header_box .header_title .menu_btn::before,
#header .m_header_box .header_title .menu_btn i {
  width: 70%;
  height: 2px;
  display: block;
  background: var(--color-black);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -35%;
  transform-origin: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .m_header_box .header_title .menu_btn::before {
  content: '';
  margin-top: -8px;
}
#header .m_header_box .header_title .menu_btn::after {
  content: '';
  margin-top: 6px;
}
#header .m_header_box .header_title .menu_btn.active i {
  opacity: 0;
}
#header .m_header_box .header_title .menu_btn.active::before {
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 5px;
  background: var(--color-active);
}
#header .m_header_box .header_title .menu_btn.active::after {
  margin-top: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 5px;
  background: var(--color-active);
}
#header .m_header_box .header_title .head_btn {
  width: auto;
  height: 30px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}
#header .m_header_box .header_title .head_btn .icon {
  max-width: 14px;
  height: 14px;
  font-size: 0;
  margin-right: 5px;
  filter: invert(1);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .m_header_box .header_title .head_btn .link {
  line-height: 1;
  font-size: 12px;
  color: var(--color-black);
  margin-top: 3px;
}
#header .m_header_box .header_title .head_btn .link span {
  opacity: 0.6;
}
#header .m_header_box .header_title .head_btn .link a {
  color: var(--color-black);
  opacity: 0.6;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#header .m_header_box .header_title .head_btn .link a:hover {
  opacity: 1;
}
#header .m_header_box .header_title .head_btn:hover .icon {
  filter: invert(1);
}
#header .m_header_box .header_title .head_btn:hover .link {
  color: var(--color-black);
}
#header .m_header_box .header_title .head_btn:hover .link a,
#header .m_header_box .header_title .head_btn:hover .link span {
  color: var(--color-black);
}
#header .m_header_box .header_body {
  width: 100%;
  height: calc(100vh - 50px);
  background: var(--color-gray-f6);
  display: none;
  overflow: hidden;
}
#header .m_header_box .header_body .menu_info {
  width: 100%;
  height: 100%;
  padding: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
#header .m_header_box .header_body .menu_nav {
  width: 100%;
  height: auto;
  padding: 20px;
  overflow: hidden;
  overflow-y: auto;
}
#header .m_header_box .header_body .menu_nav ul {
  padding: 0;
  margin: 0;
}
#header .m_header_box .header_body .menu_nav ul li {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
#header .m_header_box .header_body .menu_nav ul li .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
#header .m_header_box .header_body .menu_nav ul li .one a {
  padding: 15px 0;
  display: block;
  font-size: 14px;
  color: var(--color-gray-444);
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex: 1;
  position: relative;
}
#header .m_header_box .header_body .menu_nav ul li .one a .subtitle {
  font-size: 14px;
  margin-right: 10px;
}
#header .m_header_box .header_body .menu_nav ul li .one a .title {
  font-size: 14px;
}
#header .m_header_box .header_body .menu_nav ul li .one .icon {
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  color: var(--color-gray-444);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .m_header_box .header_body .menu_nav ul li .one .icon img,
#header .m_header_box .header_body .menu_nav ul li .one .icon svg {
  position: relative;
  width: 0.18rem;
  min-width: 13px;
  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;
  }
}
.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);
}
#footer {
  --color: ##333333;
  color: var(--color);
  background-color: var(--color-gray-f5);
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: '';
  width: 16.69rem;
  height: 3.49rem;
  background: url(../images/footer-bg.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
}
#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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.61rem 0;
  grid-gap: 0 50px;
}
#footer .footer-up .logo img,
#footer .footer-up .logo svg {
  height: 0.45rem;
}
#footer .footer-center {
  border: 1px solid rgba(199, 199, 199, 0.12);
  border-left: none;
  border-right: none;
}
#footer .footer-center .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: 0.8rem 0 1.7rem;
  grid-gap: 0 50px;
}
@media (max-width: 1024px) {
  #footer .footer-center .wrap-box {
    display: block;
    padding: 1rem 0;
  }
}




#footer .footer-center .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0.4rem;
}
@media (max-width: 1024px) {
  #footer .footer-center .list {
    margin-top: 0.4rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
#footer .footer-center .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}
#footer .footer-center .list .item .item-box .public-img {
  width: 0.93rem;
  min-width: 66px;
  width: 1.2rem;
  min-width: 77px;
}
#footer .footer-center .list .item .item-box .public-img::before {
  padding-top: 100%;
}
#footer .footer-center .list .item .item-box .text-box {
  margin-top: 0.16rem;
}
#footer .footer-center .list .item .item-box .text-box .title {
  color: #333;
  opacity: 0.8;
}
#footer .footer-down .wrap-box {
  padding: 0.52rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#footer .footer-down .wrap-box .wrap-left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding-right: 50px;
}
#footer .footer-down .wrap-box .wrap-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
#footer .footer-down .wrap-box .wrap-right a {
  color: rgba(102, 102, 102, 0.8);
  position: relative;
  padding-left: 0.16rem;
  margin-left: 0.15rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#footer .footer-down .wrap-box .wrap-right a:first-child {
  padding: 0;
  margin: 0;
}
#footer .footer-down .wrap-box .wrap-right a:first-child::before {
  display: none;
}
#footer .footer-down .wrap-box .wrap-right a::before {
  content: '';
  width: 1px;
  height: 100%;
  max-height: 0.15rem;
  background-color: rgba(102, 102, 102, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#footer .footer-down .wrap-box .wrap-right a:hover {
  color: var(--color-active);
}
@media (max-width: 1024px) {
  #footer .footer-down .wrap-box {
    display: block;
  }
  #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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 0.1rem;
  }
}
#footer .foot-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  grid-gap: 0 0.72rem;
}
@media (max-width: 1024px) {
  #footer .foot-nav {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}



@media (max-width: 480px){
    #footer .footer-up .wrap-box{
        display: inline-block; width: 100%;
    }
    #footer .footer-up .wrap-box .wrap-right .no_margin{
        text-align: left;
        margin-top: .3rem;
    }
}


#footer .foot-nav .dl a:hover {
  color: var(--color-active);
  opacity: 1;
}
#footer .foot-nav .dl .dt {
  display: block;
  padding-bottom: 0.24rem;
  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: var(--color-active);
}
#footer .foot-nav .dl .dt.active .icon svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#footer .foot-nav .dl .dt a {
  opacity: 1;
  font-size: var(--font24);
  color: #333;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#footer .foot-nav .dl .dt .icon {
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  color: var(--color-gray-444);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  overflow: hidden;
}
#footer .foot-nav .dl .dt .icon img,
#footer .foot-nav .dl .dt .icon svg {
  position: relative;
  width: 0.18rem;
  min-width: 13px;
  height: auto;
  filter: drop-shadow(-80px 0 var(--color-active));
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  #footer .foot-nav .dl .dt {
    padding-top: 0.2rem;
    padding-right: 50px;
    border-bottom: 1px solid #ededed;
  }
  #footer .foot-nav .dl .dt .icon {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  #footer .foot-nav .dl .foot-nei-nav {
    display: none;
    margin-top: 0.1rem;
  }
}
#footer .foot-nav .dl .dd {
  color: #333;
  opacity: 0.8;
  line-height: 180%;
  display: block;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#footer .text-body p {
  color: rgba(102, 102, 102, 0.8);
  white-space: initial;
}
#footer .text-body p a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#footer .text-body p a:hover {
  color: var(--color-active);
}
@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;
  }
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-text1 * {
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-5.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-3.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-6.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-4.png) no-repeat center / 100%;
}
.header-placeholder {
  height: var(--header-height);
}
.wrapper {
  overflow: hidden;
}
@media (max-width: 990px) {
  .wrapper {
    margin-top: var(--header-height);
  }
}
.container {
  width: 100%;
  height: auto;
  max-width: 81.25%;
  margin: 0 auto;
}
@media (min-width: 1901px) {
  .container {
    max-width: 1560px;
  }
}
@media (max-width: 1840px) {
  .container {
    max-width: 84.7826087%;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
.GR-box {
  width: 100%;
  height: 0;
  position: relative;
  transform: translateY(calc(var(--header-height) * -1));
}
.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.btn-container .more-primary {
  position: relative;
  min-width: 1.62rem;
  height: 0.51rem;
  min-height: 40px;
  padding: 0 0.32rem;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 99px;
  color: #000;
  cursor: pointer;
  -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-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;
}
.btn-container .more-primary.active,
.btn-container .more-primary:hover {
  color: var(--color-active);
  border-color: var(--color-active);
}
.btn-container .more-primary.active .more-primary-circle img,
.btn-container .more-primary:hover .more-primary-circle img,
.btn-container .more-primary.active .more-primary-circle svg,
.btn-container .more-primary:hover .more-primary-circle svg {
  filter: drop-shadow(-80px 0 var(--color-active));
  transform: translate(80px);
}
.btn-container .more-primary.more-primary-white {
  border-color: #fff;
  color: #fff;
}
.btn-container .more-primary.more-primary-white:hover {
  color: #fff;
  background-color: var(--color-active);
  border-color: var(--color-active);
}
.btn-container .more-primary.more-primary-white:hover .more-primary-circle img,
.btn-container .more-primary.more-primary-white:hover .more-primary-circle svg {
  filter: drop-shadow(-80px 0 #fff);
  transform: translate(80px);
}
.btn-container .more-primary.more-primary-white .more-primary-circle img,
.btn-container .more-primary.more-primary-white .more-primary-circle svg {
  filter: drop-shadow(-80px 0 #fff);
  transform: translate(80px);
}
.btn-container .more-primary.active:hover {
  color: #fff;
  background-color: var(--color-active);
  border-color: var(--color-active);
}
.btn-container .more-primary.active:hover .more-primary-circle img,
.btn-container .more-primary.active:hover .more-primary-circle svg {
  filter: drop-shadow(-80px 0 #fff);
  transform: translate(80px);
}
.btn-container .more-primary .more-primary-circle {
  position: relative;
  width: 0.28rem;
  height: 0.28rem;
  margin-left: 0.08rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.btn-container .more-primary .more-primary-circle img,
.btn-container .more-primary .more-primary-circle svg {
  z-index: 2;
  width: 0.18rem;
  min-width: 13px;
  height: auto;
  filter: drop-shadow(-80px 0 #000);
  transform: translate(80px);
}
.btn-container .more-primary2 {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(0.06rem);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-container .more-primary2.active,
.btn-container .more-primary2 .more-primary-circle {
  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;
}
.btn-container .more-primary2.active img,
.btn-container .more-primary2 .more-primary-circle img,
.btn-container .more-primary2.active svg,
.btn-container .more-primary2 .more-primary-circle svg {
  z-index: 2;
  width: 0.18rem;
  height: auto;
}
.btn-container .more-primary3 {
  position: relative;
  min-width: 2.7rem;
  height: 0.63rem;
  min-height: 40px;
  padding: 0 1.14rem;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid #CCC;
  border-radius: 0.04rem;
  color: #666;
  cursor: pointer;
  -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-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) {
  .btn-container .more-primary3 {
    padding: 0 0.4rem;
  }
}
.btn-container .more-primary3.active,
.btn-container .more-primary3:hover {
  color: #fff;
  border-color: var(--color-active);
  background-color: var(--color-active);
}
.btn-container .more-primary3.active:hover {
  color: #fff;
  background-color: var(--color-active);
  border-color: var(--color-active);
}
.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;
  /*opacity: 0.1;*/
}
.page-ban {
  --color: #fff;
  color: var(--color);
  position: relative;
}
.page-ban:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  inset: 0;
  opacity: var(--progress);
  pointer-events: none;
  position: absolute;
}
.page-ban .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 {
  margin-top: 0.9rem;
}
@media (max-width: 767px) {
  .page-ban .container .slogan {
    margin: 0;
    width: 100%;
  }
}
.page-ban .container .slogan .title {
  color: var(--color);
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 1024px) {
  .page-ban .container .slogan .title {
    font-size: var(--font52);
  }
}
@media (max-width: 480px) {
  .page-ban .container .slogan .title {
    font-size: var(--font48);
  }
}


.page-ban .container .slogan .title .GR-title {
  display: block;
}
.page-ban .container .slogan .title-en {
  color: var(--color);
  line-height: 180%;
  text-transform: uppercase;
  margin-top: 0.22rem;
}
@media (max-width: 1024px) {
  .page-ban .container .slogan .title-en {
    margin: 0;
    font-size: var(--font20);
    line-height: 1.4;
  }
}
.page-ban .container .slogan .title-en .GR-title {
  display: block;
}
.page-ban .container .slogan .btn-container {
  margin-top: 0.72rem;
}
@media (max-width: 767px) {
  .page-ban .container .slogan .btn-container {
    margin-top: 0.4rem;
  }
}
.page-ban2 .container {
  /*-webkit-box-align: end;*/
  /*-ms-flex-align: end;*/
  /*-webkit-align-items: flex-end;*/
  /*align-items: flex-end;*/
  padding-bottom: 0.72rem;
}
.page-ban2 .container .slogan {
  width: 100%;
}
.page-ban2 .container .slogan .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  /*grid-gap: 0.4rem 2.4rem;*/
}
.page-ban2 .container .slogan .title .GR-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.page-ban2 .container .slogan .btn-container {
  margin-top: 0.72rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .page-ban2 .container .slogan .btn-container {
    margin-top: 0.4rem;
  }
}
.page-top-menu {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: white;
}
@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 {
  color: #222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 0 0.62rem;
  /*overflow: scroll;*/
  
  
}





.page-top-menu .menu-main a {
  position: relative;
  padding: 0.32rem 0;
  white-space: nowrap;
}
.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;
  margin: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.page-top-menu .menu-main .menu-location {
  position: relative;
}
.page-top-menu .menu-main .menu-location.active a {
  color: var(--color-active);
}
.page-top-menu .menu-main .menu-location.active a::before {
  width: 100%;
}
.page-top-menu .menu-main .menu-location-none svg,
.page-top-menu .menu-main .menu-location-none img {
  margin-left: 0.09rem;
}
.page-top-menu .menu-main .menu-location-none svg path {
  fill: #666666;
}

@media (max-width: 480px) {
    .philosophy-nav{
        display: none;
    }
    .page-top-menu .menu-main{
        flex-wrap: nowrap;
        overflow: auto;
        /*display: grid;*/
        /*grid-template-columns: repeat(2,1fr);*/
    }
    .page-top-menu .menu-main a{
            padding: 0.2rem 0;
    }
   
}


.page-title .title {
  color: #333;
  font-weight: 700;
}
@media (max-width: 480px) {
    
   .page-title .title {
    text-align: center;
    }
}


.page-title .title-en {
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0.08rem;
}
.page-title .text-body {
  color: var(--color-gray-999);
}
.page-color-white {
  color: white;
}
.page-color-white .title,
.page-color-white .title-en,
.page-color-white * {
  color: white;
}
.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.75rem;
  min-height: 45px;
  background-color: #F7F8FA;
  padding: 0 0.42rem;
  border-radius: 0.1rem;
  color: #999;
}
.forms textarea {
  width: 100%;
  height: 2.74rem;
  min-height: 100px;
  background-color: #F7F8FA;
  padding: 0.24rem 0.42rem;
  border-radius: 0.1rem;
  color: #999;
}
@media (max-width: 767px) {
  .forms textarea {
    height: 100px;
  }
}
@media (max-width:480px) {
    .forms input{
        height: 0.4rem;
        min-height: 35px;
    }
    
}

.forms select {
  width: 100%;
  height: 0.75rem;
  min-height: 45px;
  background-color: #F7F8FA;
  padding: 0 0.42rem;
  border-radius: 0.1rem;
  color: #999;
}
.forms .widget-label label {
  color: #333333;
}
.forms .widget-label label i,
.forms .widget-label label span {
  color: #dd1717;
}
.forms .info-list {
  margin-top: 0.72rem;
}
.forms .info-list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 18px 16px;
}
@media (max-width: 767px) {
  .forms .info-list2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 480px) {
    .forms .info-list{
        margin-top: 0.3rem;
    }
}

.forms .info-list2 .forms-box1 {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .forms .info-list2 .forms-box1 {
    grid-column: span 1;
  }
}
.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 .btn-container {
  margin-top: 0.46rem;
  grid-gap: 0.42rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.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: 25px;
  margin: 0;
  margin-top: 0.16rem;
  color: #999;
  line-height: 19px;
}
.forms .layui-form-item a {
  position: relative;
  z-index: 9;
  text-decoration: revert;
  margin: 0 0.05rem;
}
.forms .layui-form-item a:hover {
  color: var(--color-active);
}
.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: 19px;
  height: 19px;
  border-radius: 0.04rem;
  border: 1px solid #CCC;
  background: #F7F8FA;
  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 .clear-search {
  height: 100%;
  position: absolute;
  right: 0.99rem;
  top: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.searchform .clear-search::before {
  content: '';
  width: 1px;
  height: 0.19rem;
  background-color: #c9c9c9;
  position: absolute;
  right: -0.27rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.searchform .clear-search img,
.searchform .clear-search svg {
  width: 0.18rem;
  min-width: 12px;
  height: auto;
  opacity: 0.2;
}
.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);
}
.searchform .iconfont2 {
  height: 100%;
  position: absolute;
  right: 0.28rem;
  top: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.searchform .iconfont2 img,
.searchform .iconfont2 svg {
  width: 0.18rem;
  min-width: 12px;
  height: auto;
}
.searchform .iconfont2 svg path {
  fill: #000;
}
.searchform2 {
  width: 6.4rem;
  max-width: 640px;
  margin: auto;
}
@media (max-width: 1024px) {
  .searchform2 {
    width: 100%;
  }
}
@keyframes TopBtn {
  0% {
    top: 0;
    opacity: 1;
  }
  35% {
    top: -50%;
    opacity: 0;
  }
  65% {
    top: 50%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@-webkit-keyframes TopBtn {
  0% {
    top: 0;
    opacity: 1;
  }
  35% {
    top: -50%;
    opacity: 0;
  }
  65% {
    top: 50%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.TopBtn {
  -webkit-animation-name: TopBtn;
  animation-name: TopBtn;
}
.kefu-box {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 11;
}
.kefu-box .item {
  width: 0.63rem;
  height: 0.6rem;
  min-width: 42px;
  min-height: 40px;
  background: #1D2088;
  position: relative;
  cursor: pointer;
}
.kefu-box .item:first-child {
  border-radius: 0.04rem 0 0 0;
}
.kefu-box .item:last-child {
  border-radius: 0 0 0 0.04rem;
}
.kefu-box .item:hover {
  background: linear-gradient(327deg, #2B30CC -0.54%, #308CE0 99.99%);
}
.kefu-box .item:hover .info {
  opacity: 1;
  visibility: visible;
}
.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,
.kefu-box .item .item-box .img svg {
  width: 0.34rem;
  height: 0.34rem;
  min-width: 22px;
  min-height: 22px;
}
.kefu-box .item .info {
  width: auto;
  height: 100%;
  background: linear-gradient(327deg, #2B30CC -0.54%, #308CE0 99.99%);
  border-radius: 0.04rem 0px 0px 0.04rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: var(--font24);
  color: #fff;
  padding: 0 0.16rem;
  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.08rem;
}
.kefu-box .item .info img,
.kefu-box .item .info svg {
  width: 0.34rem;
  height: 0.34rem;
  min-width: 22px;
  min-height: 22px;
}
.kefu-box .item .info-img {
  width: 1.56rem;
  height: 1.56rem;
  max-width: 156px;
  right: 100%;
  background: none;
  padding: 0;
  box-shadow: 0 0.12rem 0.5rem 0 rgba(2, 0, 83, 0.12);
}
.kefu-box .item .info-img img {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .kefu-box {
    display: none;
  }
}
.c-close {
  max-width: 0.24rem;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 0.3rem;
  margin-right: 0.3rem;
  cursor: pointer;
  z-index: 2;
}
.c-close img,
.c-close svg {
  width: 100%;
  height: auto;
}
.c-close.c-close-white {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#c-code-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-code-pop .c-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 55px 20px 20px;
  width: 200px;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#c-code-pop .c-img-box > img {
  width: 100%;
}
#c-code-pop .c-img-box .c-text {
  padding-top: 10px;
  line-height: 1;
  text-align: center;
  color: #333;
}
#c-content-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-content-pop .c-content-box {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 473px;
  padding: 0.4rem;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  #c-content-pop .c-content-box {
    width: 90%;
  }
}
#c-content-pop .c-content-box .c-auto {
  height: 40vh;
  overflow: auto;
}
.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.72rem;
}
.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 {
  width: 0.34rem;
  height: 0.34rem;
  min-width: 34px;
  min-height: 34px;
  font-size: var(--font14);
  color: #626366;
  padding: 0;
  margin: 0 0.03rem 5px 0;
  background-color: transparent;
  border: 1px solid #D4D5D9;
  border-radius: 0.04rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .pagerBox .layui-laypage a,
  .pagerBox .layui-laypage span {
    min-width: 30px;
    min-height: 30px;
  }
}
.pagerBox .layui-laypage a:hover,
.pagerBox .layui-laypage span:hover {
  color: var(--color-active);
  border-color: var(--color-active);
}
.pagerBox .layui-laypage a.layui-laypage-prev,
.pagerBox .layui-laypage span.layui-laypage-prev {
  margin-right: 0.1rem;
}
.pagerBox .layui-laypage a.layui-laypage-next,
.pagerBox .layui-laypage span.layui-laypage-next {
  margin-left: 0.1rem;
}
.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.34rem;
  height: 0.34rem;
  min-width: 34px;
  min-height: 34px;
}
.pagerBox .swiper_but img,
.pagerBox .swiper_but svg {
  width: 0.06rem;
  min-width: 6px;
  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 .layui-laypage-curr em {
  color: #fff;
  background: var(--color-active);
}
.pagerBox .layui-laypage-skip {
  padding: 0 !important;
  margin-left: 0.54rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.pagerBox .layui-laypage-skip .layui-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 0.48rem;
  height: 0.48rem;
  min-width: 34px;
  min-height: 34px;
  margin: 0 0.17rem 0 0.12rem;
  background-color: transparent;
  border: 1px solid #cacaca;
  border-radius: 0.14rem;
}
.pagerBox .layui-laypage-skip .layui-input img,
.pagerBox .layui-laypage-skip .layui-input svg {
  width: 0.06rem;
  min-width: 4px;
  height: auto;
  opacity: 0.4;
}
.pagerBox .layui-laypage-skip .layui-input:hover,
.pagerBox .layui-laypage-skip .layui-input:focus {
  color: #fff;
  background-color: var(--color-active);
  border-color: var(--color-active) !important;
}
.pagerBox .layui-laypage-skip .layui-input:hover img,
.pagerBox .layui-laypage-skip .layui-input:focus img,
.pagerBox .layui-laypage-skip .layui-input:hover svg,
.pagerBox .layui-laypage-skip .layui-input:focus svg {
  opacity: 1;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.pagerBox .layui-laypage-skip .layui-laypage-btn {
  padding: 0;
  margin-left: 0.3rem;
  background-color: transparent;
}
.pagerBox .layui-laypage-skip .layui-laypage-btn span {
  padding: 0;
  margin-left: 0.09rem;
  overflow: hidden;
}
.pagerBox .layui-laypage-skip .layui-laypage-btn img,
.pagerBox .layui-laypage-skip .layui-laypage-btn svg {
  width: 0.06rem;
  min-width: 4px;
  height: auto;
  filter: drop-shadow(-80px 0 var(--color-active));
  transform: translate(80px);
}
.GR-title {
  word-wrap: break-word;
  white-space: pre-wrap;
}
.GR-title span {
  -webkit-animation: title-animate 0.1s forwards;
  animation: title-animate 0.1s forwards;
  color: transparent;
}
.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  display: none;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  background-color: #000;
}
.loading .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.loading .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loading 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 {
  position: relative;
  overflow: hidden;
}
.index-swiper .swiper-slide {
  height: auto;
  max-height: 100vh;
}
.index-swiper .swiper-slide::before {
  background-color: rgba(0, 0, 0, 0.9);
  content: "";
  inset: 0;
  opacity: var(--progress);
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.index-swiper .swiper-slide .bg {
  height: 100%;
  background: no-repeat center;
  background-size: cover;
}
.index-swiper .swiper-slide .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@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 .text-box {
  width: 100%;
}
.index-swiper .swiper-slide .container .text-box .title {
  color: #fff;
  font-weight: 700;
}
.index-swiper .swiper-slide .container .text-box .title .GR-title {
  display: block;
}
.index-swiper .swiper-slide .container .text-box .text-body {
  color: #fff;
  margin-top: 0.24rem;
  text-transform: uppercase;
}
.index-swiper .swiper-slide .container .text-box .btn-container {
  margin-top: 0.72rem;
}
.index-swiper .videoBox {
  position: relative;
  width: 100%;
  height: 100%;
}
.index-swiper .videoBox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
}
.index-swiper .down {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.04rem;
  margin: auto;
}
.index-swiper .swiper-pagination {
  height: 0;
  text-align: left;
  position: relative;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
}
.index-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.52rem;
  height: 0.04rem;
  position: relative;
  background-color: transparent;
  margin: 0 4px;
  border-radius: 0.04rem;
  overflow: hidden;
}
.index-swiper .swiper-pagination .swiper-pagination-bullet::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
}
.index-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
}
.index-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: '';
  height: 100%;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  animation: h_schedule 4s 1 linear forwards;
  -webkit-animation: h_schedule 4s 1 linear forwards;
}
@media (max-width: 480px) {
    .index-swiper .swiper-slide .container{
        top: inherit;
        bottom: 1.8rem;
        align-items: flex-end;
    }
    .index-swiper .swiper-slide .container .text-box .title{
        font-size: var(--font46);
    }
}


.index-about {
  padding: 1.72rem 0 1.66rem;
  position: relative;
  overflow: hidden;
}
.index-about .index-about-bg {
  position: absolute;
  right: 0.3rem;
  top: 0;
  height: 100%;
}
.index-about .index-about-bg img,
.index-about .index-about-bg svg {
  height: 100%;
}
.index-about .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .index-about .wrap-box {
    display: block;
  }
}
@media (max-width: 480px) {
  .index-about {
       padding: .8rem 0;
  }
}

.index-about .wrap-box .wrap-left {
  width: 50.25641026%;
  max-width: 764px;
}
@media (max-width: 990px) {
  .index-about .wrap-box .wrap-left {
    width: 100%;
  }
}
.index-about .wrap-box .wrap-right {
  width: 41.21794872%;
  max-width: 633px;
  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: 990px) {
  .index-about .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 0.8rem;
  }
}
.index-about .mobilebtn{
    display: none;
    margin-top: 0.52rem;
}
@media (max-width: 990px) {
  .index-about .mobilebtn{
        display: inline-block;
    }
}



.index-about .wrap-box .wrap-right .text-body {
  color: #666;
  line-height: 180%;
  padding-top: 0.28rem;
  margin-top: 0.24rem;
  position: relative;
}
.index-about .wrap-box .wrap-right .text-body::before {
  content: '';
  width: 0.53rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 480px) {
.index-about .wrap-box .wrap-right .text-body::before{
     left: 50%;
     transform: translateX(-50%);
 }
}

.index-about .wrap-box .wrap-right .btn-container {
  margin-top: 0.52rem;
}
.index-about .public-img {
  border-radius: 0.88rem 0.04rem;
}
.index-about .public-img::before {
  padding-top: 57.19895288%;
}
.index-about .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 1.04rem;
}

@media (max-width: 990px){
    .index-about .wrap-box .wrap-right .btn-container{
        display: none;
    }
}

@media (max-width: 767px) {
  .index-about .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: .5rem;
  }
}
.index-about .list .item:nth-child(2) {
  margin-left: -0.26rem;
}
@media (max-width: 767px) {
  .index-about .list .item:nth-child(2) {
    margin: 0;
  }
}

.index-about .list .item .item-box .text-box .title {
  color: #333;
}
.index-about .list .item .item-box .text-box .title span:first-child {
  font-weight: 500;
}
.index-about .list .item .item-box .text-box .text-body {
  color: #000;
}
.index-product {
  background: linear-gradient(180deg, #FAFAFE 0%, rgba(250, 250, 254, 0) 100%);
}
.index-product .container {
  position: relative;
  height: 100%;
  padding-top: 1.29rem;
  padding-bottom: 1.16rem;
}
.index-product .container .index-product-bg {
  position: absolute;
  left: 0.11rem;
  top: 0;
  height: 100%;
}
.index-product .container .index-product-bg img,
.index-product .container .index-product-bg svg {
  height: 100%;
}
.index-product .page-main {
  position: relative;
}
.index-product .up {
  margin-bottom: 0.62rem;
}
.index-product .up .text-body {
  color: #666;
  line-height: 180%;
  position: relative;
  width: 70%;
  
  margin: auto;
  padding-top: 0.36rem;
  margin-top: 0.32rem;
}
@media (max-width: 1024px) {
  .index-product .up .text-body {
    width: 100%;
  }
}
.index-product .up .text-body::before {
  content: '';
  width: 0.53rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.index-product .item-box {
  display: block;
  height: 100%;
  position: relative;
  text-align: center;
}
.index-product .item-box:hover .public-img {
  box-shadow: 0px 0.04rem 0.12rem 0px rgba(46, 73, 166, 0.16);
}
.index-product .item-box:hover .text-box .title span {
  height: 0.73rem;
  padding: 0 0.52rem;
  color: var(--color-active);
  border: 1px solid var(--color-active);
  border-radius: 99px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.index-product .item-box .public-img {
  border-radius: 0.66rem 0.04rem;
}
.index-product .item-box .public-img::before {
  padding-top: 71.54308617%;
}
.index-product .item-box .text-box {
  margin-top: 0.32rem;
}
.index-product .item-box .text-box .title {
  color: #383838;
  font-weight: 700;
  min-height: 0.73rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.index-product .item-box .text-box .title span {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  .index-product .index-product-swiper {
    padding-bottom: 40px;
  }
  .index-product .index-product-swiper .swiper-pagination {
    opacity: 1;
  }
}
.index-product .index-product-swiper .swiper-slide {
  height: auto;
}
@-webkit-keyframes round1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  66% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@keyframes round1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  66% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
.round1 {
  -webkit-animation-name: round1;
  animation-name: round1;
}
@-webkit-keyframes round2 {
  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 round2 {
  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;
  }
}
.round2 {
  -webkit-animation-name: round2;
  animation-name: round2;
}
.index-industrial-layout {
  background: linear-gradient(105deg, #FBFBFE 0.2%, #F7F7FD 100%);
  overflow: hidden;
}
.index-industrial-layout .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .index-industrial-layout .wrap-box {
    display: block;
  }
  
  .index-product .container{
        padding-top: .5rem;
        padding-bottom: .8rem;
  }
}


.index-industrial-layout .wrap-box .wrap-left {
  width: 40.12820513%;
  max-width: 596px;
  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: 767px) {
  .index-industrial-layout .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
  }
}
.index-industrial-layout .wrap-box .wrap-left .text-body {
  color: #666;
  line-height: 180%;
  padding-top: 0.25rem;
  margin-top: 0.32rem;
  position: relative;
}
.index-industrial-layout .wrap-box .wrap-left .text-body::before {
  content: '';
  width: 0.53rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}
.index-industrial-layout .wrap-box .wrap-left .btn-container {
  margin-top: 0.52rem;
}
.index-industrial-layout .wrap-box .wrap-right {
  width: 70.57692308%;
  max-width: 1091px;
  margin-right: -0.8rem;
}
@media (max-width: 767px) {
  .index-industrial-layout .wrap-box .wrap-right {
    width: 100%;
    margin: 0;
  }
}
.index-industrial-layout .map {
  position: relative;
  padding: 2.1rem 0 1.89rem;
}
@media (max-width: 767px) {
  .index-industrial-layout .map {
    padding: 1.4rem 0;
  }
}
.index-industrial-layout .map .test {
  width: 1174px;
  height: 100%;
  position: absolute;
  left: -1px;
  top: 2px;
  margin-right: -0.8rem;
  z-index: 1;
}
.index-industrial-layout .map .img {
  position: relative;
}
.index-industrial-layout .map .line {
  width: 10.4rem;
  position: absolute;
  left: 78.7%;
  top: 49%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .index-industrial-layout .map .line {
    left: 76.7%;
    top: 52%;
  }
}
.index-industrial-layout .list {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.index-industrial-layout .list .item {
  position: absolute;
}
@media (max-width: 767px) {
  .index-industrial-layout .list .item.item-china {
    top: 25% !important;
    left: 68% !important;
  }
}
.index-industrial-layout .list .item.item-china .item-box .icon {
  width: 1.22rem;
  height: 1.22rem;
}
.index-industrial-layout .list .item.item-china .item-box .text-box {
  width: 100%;
  min-width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
}
.index-industrial-layout .list .item.item-china .item-box .text-box .title {
  color: #fff;
}
@media (max-width: 767px) {
  .index-industrial-layout .list .item.item-china .item-box .text-box .title {
    display: block;
  }
}
.index-industrial-layout .list .item .item-box {
  text-align: center;
}
.index-industrial-layout .list .item .item-box .icon {
  position: relative;
  width: 0.24rem;
  height: 0.24rem;
  margin: auto;
}
.index-industrial-layout .list .item .item-box .icon .icon1 {
  width: 0.12rem;
  height: 0.12rem;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.index-industrial-layout .list .item .item-box .icon .icon1 circle {
  fill: var(--color-active);
}
.index-industrial-layout .list .item .item-box .icon .icon2 {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-animation: round1 3s linear infinite;
  animation: round1 3s linear infinite;
}
.index-industrial-layout .list .item .item-box .icon .icon2 circle {
  fill: #DBDBEC;
  opacity: 1;
}
.index-industrial-layout .list .item .item-box .icon .icon3 {
  width: 0.32rem;
  min-width: 32px;
  height: 0.32rem;
  min-height: 32px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.index-industrial-layout .list .item .item-box .icon span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation: round2 3s linear infinite;
  animation: round2 3s linear infinite;
  pointer-events: none;
  opacity: 0;
  background-color: #4D50C3;
  border-radius: 50%;
}
.index-industrial-layout .list .item .item-box .icon span:first-child {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.index-industrial-layout .list .item .item-box .icon span:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.index-industrial-layout .list .item .item-box .text-box {
  width: 100%;
  min-width: 100px;
  margin-top: 0.04rem;
  position: absolute;
  left: 50%;
  right: 0;
  top: 100%;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.index-industrial-layout .list .item .item-box .text-box .title {
  color: #666;
}
@media (max-width: 767px) {
  .index-industrial-layout .list .item .item-box {
    /*display: none;*/
    scale: 0.5;
  }
}
.index-news {
  padding: 1.78rem 0 1.8rem;
}
.index-news .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;
}
.index-news .wrap-box {
  margin-top: 0.72rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 0.32rem;
}
@media (max-width: 767px) {
  .index-news .wrap-box {
    display: block;
  }
}
.index-news .wrap-box .wrap-left {
  width: 46.66666667%;
  max-width: 718px;
}
@media (max-width: 767px) {
  .index-news .wrap-box .wrap-left {
    width: 100%;
  }
}
.index-news .wrap-box .wrap-right {
  width: 52.56410256%;
  max-width: 810px;
}
@media (max-width: 767px) {
  .index-news .wrap-box .wrap-right {
    width: 100%;
    margin-top: 0.8rem;
  }
}
.index-news .wrap-left .list {
  height: 100%;
}
.index-news .wrap-left .list .item {
  height: 100%;
}
.index-news .wrap-left .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0.88rem 0.04rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index-news .wrap-left .list .item .item-box .public-img {
  height: 100%;
}
.index-news .wrap-left .list .item .item-box .public-img::before {
  padding-top: 66.71309192%;
}
.index-news .wrap-left .list .item .item-box .public-img::after {
  content: '';
  width: 100%;
  height: 2.57rem;
  background: -webkit-linear-gradient(0deg, #1D2088 0%, transparent 100%);
  background: linear-gradient(0deg, #1D2088 0%, transparent 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.index-news .wrap-left .list .item .item-box .text-box {
  width: 100%;
  padding: 0 0.75rem 0.32rem 0.32rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.index-news .wrap-left .list .item .item-box .text-box .date {
  color: #fff;
}
.index-news .wrap-left .list .item .item-box .text-box .title {
  color: #fff;
  line-height: 1.5em;
  line-height: 1.5;
  min-height: calc(2em * 1.5);
  margin-top: 0.16rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .wrap-right .item-box {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 0.04rem;
  background: #F9F9FB;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.index-news .wrap-right .item-box:hover {
  box-shadow: 0px 0.04rem 0.12rem 0.04rem rgba(28, 49, 74, 0.08);
}
.index-news .wrap-right .item-box:hover .text-box .btn-more {
  color: var(--color-active);
}
.index-news .wrap-right .item-box:hover .text-box .btn-more .icon img,
.index-news .wrap-right .item-box:hover .text-box .btn-more .icon svg {
  -webkit-filter: drop-shadow(-80px 0 var(--color-active));
  filter: drop-shadow(-80px 0 var(--color-active));
}
.index-news .wrap-right .item-box .public-img {
  border-radius: 0.04rem;
}
.index-news .wrap-right .item-box .public-img::before {
  padding-top: 59.38303342%;
}
.index-news .wrap-right .item-box .text-box {
  padding: 0.32rem;
}
.index-news .wrap-right .item-box .text-box .date {
  color: #999;
}
.index-news .wrap-right .item-box .text-box .title {
  color: #333;
  line-height: 1.5em;
  line-height: 1.5;
  min-height: calc(2em * 1.5);
  margin-top: 0.16rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .wrap-right .item-box .text-box .btn-more {
  color: #999;
  margin-top: 0.52rem;
  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-news .wrap-right .item-box .text-box .btn-more .icon {
  overflow: hidden;
}
.index-news .wrap-right .item-box .text-box .btn-more .icon img,
.index-news .wrap-right .item-box .text-box .btn-more .icon svg {
  width: 0.22rem;
  height: auto;
  -webkit-filter: drop-shadow(-80px 0 #999);
  filter: drop-shadow(-80px 0 #999);
  -webkit-transform: translate(80px);
  transform: translate(80px);
}
.index-news .index-news-swiper {
  overflow: visible;
}
@media (max-width: 767px) {
  .index-news .index-news-swiper {
    padding-bottom: 40px;
  }
  .index-news .index-news-swiper .swiper-pagination {
    opacity: 1;
  }
}
.index-news .index-news-swiper .swiper-slide {
  height: auto;
}
.product-page {
  padding-top: 0.86rem;
}
.product-page .list .item {
  margin-top: 1.28rem;
}
.product-page .list .item:first-child {
  margin-top: 0;
}
.product-page .list .item:nth-child(even) .public-img {
  order: 2;
}
.product-page .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .product-page .list .item .item-box {
    display: block;
  }
}
.product-page .list .item .item-box .public-img {
  width: 51.79487179%;
  max-width: 798px;
  border-radius: 0.88rem 0.04rem;
}
@media (max-width: 990px) {
  .product-page .list .item .item-box .public-img {
    width: 100%;
  }
}
.product-page .list .item .item-box .public-img::before {
  padding-top: 0;
}
.product-page .list .item .item-box .public-img img{
    position: relative;
    height: inherit;
    border-radius: 0.88rem 0.04rem;

}
.product-page .list .item .item-box .text-box {
  width: 41.08974359%;
  max-width: 631px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .product-page .list .item .item-box .text-box {
    width: 100%;
    max-width: 100%;
    margin-top: 0.4rem;
  }
}
.product-page .list .item .item-box .text-box .title {
  color: #333;
  font-weight: 500;
  line-height: 150%;
  display: -webkit-box;
  /*-webkit-box-orient: vertical;*/
  /*-webkit-line-clamp: 1;*/
  overflow: hidden;
  font-weight: 700;
}
.product-page .list .item .item-box .text-box .text-body {
  color: #666;
  font-weight: 400;
  line-height: 180%;
  display: -webkit-box;
  /*-webkit-box-orient: vertical;*/
  /*-webkit-line-clamp: 3;*/
  /*overflow: hidden;*/
  margin-top: 0.3rem;
}
.product-page .list .item .item-box .text-box .table-auto {
  width: 100%;
  margin-top: 0.6rem;
}
.product-page .list .item .item-box .text-box .btn-container {
  margin-top: 0.5rem;
}
.product-page2 {
  padding: 1.55rem 0 1.28rem;
}
.product-page2 .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: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.product-page2 .swiper-main {
  margin-top: 0.72rem;
}
.product-page2 .swiper-main .product-swiper {
  padding-bottom: 0.44rem;
  padding-right: 1.99rem;
  overflow: visible;
}
@media (max-width: 1440px) {
    .product-page .list .item .item-box .text-box .title{
        font-size: var(--font38);
    }
    .product-page .list .item .item-box .text-box .text-body{
        font-size: var(--font20);
    }
}

@media (max-width: 1024px) {
  .product-page2 .swiper-main .product-swiper {
    padding-right: 0;
  }
}
.product-page2 .swiper-main .product-swiper .swiper-slide {
  height: auto;
}
.product-page2 .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0.04rem;
}
.product-page2 .item-box::before {
  content: '';
  width: 100%;
  height: 1.95rem;
  background: -webkit-linear-gradient(90deg, #1D2088 0%, rgba(29, 32, 136, 0) 100%);
  background: linear-gradient(0deg, #1D2088 0%, rgba(29, 32, 136, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.product-page2 .item-box .public-img::before {
  padding-top: 119.8156682%;
}
.product-page2 .item-box .text-box {
  width: 100%;
  padding: 0 0.36rem 0.32rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  text-align: center;
}
.product-page2 .item-box .text-box .title {
  color: #fff;
  line-height: 180%;
}
.scientific-research-page {
  padding: 1.28rem 0 1.29rem;
}
.scientific-research-page .up .text-body {
  width: 80%;
  margin: auto;
  padding-top: 0.36rem;
  margin-top: 0.32rem;
  position: relative;
  color: #666;
  line-height: 180%;
}
@media (max-width: 767px) {
    .scientific-research-page{
        padding: .8rem 0;
    }
    
  .scientific-research-page .up .text-body {
    width: 100%;
    max-width: 100%;
  }
  .scientific-research-page .up .text-body p{
      height: 4.6rem;
    overflow: auto;
  }
  .product-page .list .item .item-box .text-box .table-auto{
      margin-top: .2rem;
  }
}
.scientific-research-page .up .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.scientific-research-page .img-main {
  position: relative;
  border-radius: 0.88rem 0px 0.88rem 0.04rem;
  margin-top: 0.72rem;
  overflow: hidden;
}
.scientific-research-page .img-main .public-img::before {
  padding-top: 43.44262295%;
}
.scientific-research-page .img-main .list {
  padding: 0.42rem 0.52rem 0.42rem 0.68rem;
  background: url(../images/scientific-research-bg.jpg) no-repeat center;
  background-size: cover;
  border-radius: 0.88rem 0.04rem;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
@media (max-width: 990px) {
  .scientific-research-page .img-main .list {
    padding: 0;
    position: relative;
    background: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .scientific-research-page .img-main .list {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: .5rem;
  }
}
.scientific-research-page .img-main .list .item:first-child .item-box::before {
  display: none;
}
.scientific-research-page .img-main .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 0.88rem 0 0.72rem;
}
@media (max-width: 990px) {
  .scientific-research-page .img-main .list .item .item-box {
    text-align: center;
    padding: 0;
  }
}
.scientific-research-page .img-main .list .item .item-box::before {
  content: '';
  width: 1px;
  height: 0.54rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.1;
}
.scientific-research-page .img-main .list .item .item-box .text-box .title {
  color: #fff;
  min-height: 0.54rem;
}
@media (max-width: 990px) {
  .scientific-research-page .img-main .list .item .item-box .text-box .title {
    color: #333;
  }
}
.scientific-research-page .img-main .list .item .item-box .text-box .text-body {
  color: #fff;
  line-height: 150%;
  margin-top: 0.08rem;
}
@media (max-width: 990px) {
  .scientific-research-page .img-main .list .item .item-box .text-box .text-body {
    color: #666;
  }
}
@media (max-width: 990px) {
  .scientific-research-page .img-main .list .item .item-box .text-box .text-body * {
    text-align: center;
  }
}
.scientific-research-page2 {
  padding: 1.9rem 0;
}
@media (max-width: 990px) {
  .scientific-research-page2 {
    padding: 0;
  }
}
@media (max-width: 990px) {
  .scientific-research-page2 .page-img {
    position: relative;
  }
  .scientific-research-page2 .page-img img {
    min-height: 200px;
  }
}
.scientific-research-page2 .page-main {
  width: 38%;
  /*max-width: 450px;*/
  position: relative;
  z-index: 1;
}
@media (max-width: 990px) {
  .scientific-research-page2 .page-main {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 990px) {
  .scientific-research-page2 .page-main .page-title {
    color: #333;
  }
  .scientific-research-page2 .page-main .page-title * {
    color: #333;
  }
}
@media (max-width: 480px) {
  .scientific-research-page2 .page-main .page-title * {
    text-align: center;
  }
}

.scientific-research-page2 .page-main .text-body {
  color: #fff;
  line-height: 180%;
  padding-top: 0.25rem;
  margin-top: 0.32rem;
  position: relative;
    /*  height: 3.5rem;*/
    /*overflow: auto;*/
}
@media (max-width: 990px) {
  .scientific-research-page2 .page-main .text-body {
    color: #666;
  }
}
@media (max-width: 480px) {
  .scientific-research-page2 .page-main .text-body {
        height: 5rem;
    overflow: auto;
    padding-right: .2rem;
    text-align: center;
  }
}

.scientific-research-page2 .page-main .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: #fff;
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 990px) {
  .scientific-research-page2 .page-main .text-body::before {
    background-color: var(--color-active);
  }
}
@media (max-width: 480px) {
  .scientific-research-page2 .page-main .text-body::before {
            left: 50%;
        transform: translateX(-50%);
  }
}
.scientific-research-page3 {
  padding: 1.29rem 0 2.6rem;
}
@media (max-width: 1024px) {
  .scientific-research-page3 {
    padding-bottom: 1.4rem;
  }
}
@media (max-width: 480px) {
  .scientific-research-page3 {
    padding: .8rem 0;
  }
}
.scientific-research-page3 .page-main {
  position: relative;
}
.scientific-research-page3 .up {
  margin-bottom: 1.8rem;
}
@media (max-width: 480px) {
  .scientific-research-page3 .up {
  margin-bottom: .8rem;
}
}
.scientific-research-page3 .up .text-body {
  color: #666;
  line-height: 180%;
  padding-top: 0.28rem;
  margin-top: 0.24rem;
  position: relative;
}
.scientific-research-page3 .up .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.scientific-research-page3 .img-main {
  position: relative;
  width: 89.74358974%;
  max-width: 1400px;
  margin: auto;
  height: 3.63rem;
}
.scientific-research-page3 .img-main .img{
    height: 100%;
}
.scientific-research-page3 .img-main .img img{
    width: 100%;
    height: 100%;
}
@media (max-width: 1260px) {
  .scientific-research-page3 .img-main {
    width: 100%;
    height: inherit;
  }
}
@media (max-width: 1260px) {
  .scientific-research-page3 .img-main .img {
    display: none;
  }
}
.scientific-research-page3 .list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1260px) {
  .scientific-research-page3 .list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width: 990px) {
  .scientific-research-page3 .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .scientific-research-page3 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.scientific-research-page3 .list .item {
  width: 17.37179487%;
  width: 2.7rem;
  max-width: 271px;
  position: absolute;
  top: 5%;
}
@media (max-width: 1260px) {
  .scientific-research-page3 .list .item {
    width: 100%;
    max-width: 100%;
    position: relative;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
}
.scientific-research-page3 .list .item .item-box {
  display: block;
  height: 100%;
  position: relative;
  text-align: center;
}
.scientific-research-page3 .list .item .item-box .icon {
  width: 0.68rem;
  height: 0.68rem;
  background-color: #DEDFFF;
  border-radius: 50%;
  position: absolute;
  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: 1260px) {
  .scientific-research-page3 .list .item .item-box .icon {
    margin: auto;
    margin-bottom: 0.4rem;
    position: relative;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
}
.scientific-research-page3 .list .item .item-box .icon img,
.scientific-research-page3 .list .item .item-box .icon svg {
  max-width: 0.32rem;
  max-height: 0.32rem;
}
.scientific-research-page3 .list .item .item-box .text-box .title {
  color: #333;
}
.scientific-research-page3 .list .item .item-box .text-box .text-body {
  color: #666;
  line-height: 180%;
  margin-top: 0.16rem;
  min-height: 0.975rem;
}
.scientific-research-page3 .list .item .item-box .text-box .text-body * {
  text-align: center;    line-height: 1.2;
}
.scientific-research-page4 .page-title .title{
        font-size: var(--font36);
}

@media (max-width: 480px) {
  .scientific-research-page4 .page-title .title{
        text-align: center;
    }
}


.scientific-research-page4 .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .scientific-research-page4 .wrap-box {
    display: flex;
    flex-direction: column;
  }
}
.scientific-research-page4 .wrap-box .wrap-left {
  width: 64.63541667%;
}
@media (max-width: 990px) {
  .scientific-research-page4 .wrap-box .wrap-left {
    width: 100%;
    order:2;
  }
}
.scientific-research-page4 .wrap-box .wrap-right {
  width: 35.36458333%;
  position: relative;
}
@media (max-width: 990px) {
  .scientific-research-page4 .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    padding: 1.4rem 0;
    order:1;
  }
}

@media (max-width: 480px) {
  .scientific-research-page4 .wrap-box .wrap-right {
    padding: .8rem 0;
  }
}

.scientific-research-page4 .wrap-left .public-img::before {
  padding-top: 67.12328767%;
}
.scientific-research-page4 .wrap-right .public-img {
  height: 100%;
}
@media (max-width: 990px) {
  .scientific-research-page4 .wrap-right .public-img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.scientific-research-page4 .text-main {
  width:82%;
  /*max-width: 452px;*/
  position: absolute;
  left: 0.67rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  
  
}
@media (max-width: 990px) {
  .scientific-research-page4 .text-main {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    -webkit-transform: none;
    transform: none;
  }
}
.scientific-research-page4 .text-main .text-body {
  color: #fff;
  line-height: 1.8;
  max-height: calc(10em * 1.8);
  overflow: auto;
  padding-right: 0.2rem;
  padding-top: 0.25rem;
  margin-top: 0.32rem;
  position: relative;
}
.scientific-research-page4 .text-main .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: #fff;
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}
.scientific-research-page5 {
  padding: 1.28rem 0;
  background: linear-gradient(105deg, #FBFBFE 0.2%, #F7F7FD 100%);
  overflow: hidden;
}
.scientific-research-page5 .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 990px) {
  .scientific-research-page5 .wrap-box {
    display: block;
  }
}
@media (max-width: 480px) {
    .scientific-research-page4 .text-main .text-body{
        text-align: center;
    }
 .scientific-research-page4 .text-main .text-body::before{
     left: 50%;
     transform: translateX(-50%);
 }
}



.scientific-research-page5 .wrap-box .wrap-left {
  width: 32.05128205%;
  max-width: 500px;
  position: relative;
  z-index: 3;
}
@media (max-width: 990px) {
  .scientific-research-page5 .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
}
.scientific-research-page5 .wrap-box .wrap-right {
  width: 57.5%;
  max-width: 897px;
  padding-right: 1.33rem;
  position: relative;
}
@media (max-width: 990px) {
  .scientific-research-page5 .wrap-box .wrap-right {
    width: 100%;
    margin-top: 1.2rem;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .scientific-research-page5 .wrap-box .wrap-right {
    margin-top: .5rem;
  }
}

.scientific-research-page5 .wrap-box .wrap-right::before {
  content: '';
  width: 100%;
  min-width: 1200px;
  height: 100%;
  background: linear-gradient(105deg, #fbfbfe 0.2%, #fafafe 100%);
  position: absolute;
  right: 100%;
  top: 0;
  z-index: 2;
}
.scientific-research-page5 .wrap-left .text-body {
  color: #666;
  line-height: 180%;
  padding-top: 0.25rem;
  margin-top: 0.32rem;
  position: relative;
}
.scientific-research-page5 .wrap-left .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}
.scientific-research-page5 .slide-btn-main {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.scientific-research-page5 .scientific-research-swiper5 {
  padding-bottom: 0.4rem;
  overflow: visible;
}
.scientific-research-page5 .scientific-research-swiper5 .swiper-slide {
  height: auto;
}
.scientific-research-page5 .scientific-research-swiper5 .swiper-scrollbar {
  width: 100%;
  height: 2px;
  background: #F0F0F5;
  border-radius: 99px;
  bottom: 0;
  left: 0;
}
.scientific-research-page5 .scientific-research-swiper5 .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color-active);
  border-radius: 99px;
}
.scientific-research-page5 .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0.04rem;
}
.scientific-research-page5 .item-box::before {
  content: '';
  width: 100%;
  height: 1.65rem;
  background: -webkit-linear-gradient(90deg, #1D2088 0%, rgba(29, 32, 136, 0) 100%);
  background: linear-gradient(0deg, #1D2088 0%, rgba(29, 32, 136, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.scientific-research-page5 .item-box .public-img::before {
  padding-top: 139.89071038%;
}
.scientific-research-page5 .item-box .text-box {
  width: 100%;
  padding: 0 0.32rem 0.42rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  text-align: center;
}
.scientific-research-page5 .item-box .text-box .title {
  color: #fff;
}
.scientific-research-page6 {
  padding: 1.28rem 0;
}
.scientific-research-page6 .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .scientific-research-page6 .wrap-box {
    display: block;
  }
}
@media (max-width: 480px) {
    .scientific-research-page5 .wrap-left .text-body{
        text-align: center;
    }
 .scientific-research-page5 .wrap-left .text-body::before{
     left: 50%;
     transform: translateX(-50%);
 }
}



.scientific-research-page6 .wrap-box .wrap-left {
  width: 48.97435897%;
  max-width: 764px;
}
@media (max-width: 990px) {
  .scientific-research-page6 .wrap-box .wrap-left {
    width: 100%;
  }
}
.scientific-research-page6 .wrap-box .wrap-right {
  width: 40.51282051%;
  max-width: 632px;
  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;
  order: 2;
}
@media (max-width: 990px) {
  .scientific-research-page6 .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.8rem;
  }
  .scientific-research-page6 .wrap-box .wrap-right .btn-container {
    display: none;
  }
}
.scientific-research-page6 .wrap-box .mobile-aply-btn {
  display: none;
}
@media (max-width: 990px) {
  .scientific-research-page6 .wrap-box .mobile-aply-btn {
    display: inline-block;
  }
}

.scientific-research-page6 .public-img {
  border-radius: 0.04rem;
}
.scientific-research-page6 .public-img::before {
  padding-top: 71.46596859%;
}
.scientific-research-page6 .text-body {
  color: #999;
  line-height: 180%;
  padding-top: 0.25rem;
  margin-top: 0.32rem;
  position: relative;
}
.scientific-research-page6 .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 480px) {
    .scientific-research-page6 .text-body{
        height: 5rem;
        overflow: auto;
        padding-right: .2rem;
        text-align: center;
    }
.scientific-research-page6 .text-body::before {
     left: 50%;
     transform: translateX(-50%);
 }
}

.scientific-research-page6 .btn-container {
  margin-top: 0.52rem;
}
.intelligent-creation-page {
  padding: 1.28rem 0;
}
.intelligent-creation-page .up .text-body {
  width: 80%;
 
  margin: auto;
  padding-top: 0.28rem;
  margin-top: 0.24rem;
  position: relative;
  color: #666;
  line-height: 180%;
}
@media (max-width: 767px) {
    .intelligent-creation-page{
        padding: .8rem 0;
    }
    .scientific-research-page5{
        padding: .8rem 0;
    }
    .scientific-research-page6{
        padding: .5rem 0;
    }
    .scientific-research-page4 .text-main .text-body{
        max-height: inherit;
    }
  .intelligent-creation-page .up .text-body {
    width: 100%;
    max-width: 100%;
    letter-spacing: -0.01rem;
  }
}
.intelligent-creation-page .up .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.intelligent-creation-page .img-main {
  position: relative;
  border-radius: 0.04rem;
  margin-top: 0.72rem;
  overflow: hidden;
  cursor: pointer;
}
.intelligent-creation-page .img-main .public-img {
  min-height: 200px;
}
.intelligent-creation-page .img-main .public-img::before {
  padding-top: 26.95262484%;
}
.intelligent-creation-page2 {
  padding: 2.69rem 0 3.85rem;
  position: relative;
}
@media (max-width: 990px) {
  .intelligent-creation-page2 {
    padding: 0 0 1.4rem;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .intelligent-creation-page2 {
    padding: 1.2rem 0 0.6rem;
  }
  .intelligent-creation-page2::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(283deg, #CEDDF5 0%, #F0F0FA 100%);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
  }
}
@media (max-width: 990px) {
  .intelligent-creation-page2 .page-img {
    position: relative;
  }
  .intelligent-creation-page2 .page-img img {
    min-height: 200px;
  }
}
@media (max-width: 990px) {
  .intelligent-creation-page2 .page-img1 {
    display: none;
  }
}
.intelligent-creation-page2 .page-img2 {
  max-width: 1920px;
  left: 0;
  right: 0;
  margin: auto;
}
.intelligent-creation-page2 .page-main {
  width: 41.85897436%;
  max-width: 653px;
  position: relative;
  z-index: 1;
}
@media (max-width: 990px) {
  .intelligent-creation-page2 .page-main {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.8rem;
    text-align: center;
  }
  
}
.intelligent-creation-page2 .page-main .text-body {
  color: #666;
  line-height: 180%;
  padding-top: 0.25rem;
  margin-top: 0.32rem;
  position: relative;
}
.intelligent-creation-page2 .page-main .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}
.intelligent-creation-page3 {
  padding: 1.28rem 0;
  position: relative;
}
.intelligent-creation-page3::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
  z-index: 1;
}
.intelligent-creation-page3 .page-main {
  position: relative;
  z-index: 1;
}
.intelligent-creation-page3 .up {
  width:80%;

  margin: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 990px) {
  .intelligent-creation-page2 .page-main .text-body::before{
        left: 50%;
        transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .intelligent-creation-page3 .up {
    width: 100%;
    max-width: 100%;
  }
}
.intelligent-creation-page3 .up .text-body {
  color: #fff;
  line-height: 180%;
  padding-top: 0.28rem;
  margin-top: 0.24rem;
  position: relative;
}
.intelligent-creation-page3 .up .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: #fff;
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.intelligent-creation-page3 .swiper-main {
  margin-top: 0.72rem;
}
@media (max-width: 1024px) {
  .intelligent-creation-page3 .swiper-main .intelligent-creation-swiper3 {
    padding-bottom: 40px;
  }
  .intelligent-creation-page3 .swiper-main .intelligent-creation-swiper3 .swiper-pagination {
    opacity: 1;
  }
}
.intelligent-creation-page3 .swiper-main .intelligent-creation-swiper3.active {
  padding-bottom: 40px;
}
.intelligent-creation-page3 .swiper-main .intelligent-creation-swiper3.active .swiper-pagination {
  opacity: 1;
}
.intelligent-creation-page3 .swiper-main .intelligent-creation-swiper3 .swiper-slide {
  height: auto;
}
.intelligent-creation-page3 .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0.04rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(0.07rem);
  text-align: center;
  padding: 0.51rem 0.4rem 0.74rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.intelligent-creation-page3 .item-box::before {
  content: '';
  width: 100%;
  height: 0;
  background: -webkit-linear-gradient(313deg, #363CFF 0.65%, #63DAFF 100%);
  background: linear-gradient(313deg, #363CFF 0.65%, #63DAFF 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.intelligent-creation-page3 .item-box:hover::before {
  height: 100%;
}
.intelligent-creation-page3 .item-box:hover .icon {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.intelligent-creation-page3 .item-box:hover .text-box .title {
  color: #fff;
}
.intelligent-creation-page3 .item-box:hover .text-box .title::before {
  background-color: #fff;
}
.intelligent-creation-page3 .item-box:hover .text-box .text-body {
  color: #fff;
}
.intelligent-creation-page3 .item-box .icon {
  width: 0.68rem;
  height: 0.68rem;
  margin: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.intelligent-creation-page3 .item-box .text-box {
  position: relative;
  margin-top: 0.25rem;
}
.intelligent-creation-page3 .item-box .text-box .title {
  color: #333;
  font-weight: 700;
  line-height: 150%;
  position: relative;
  padding-bottom: 0.18rem;
  margin-bottom: 0.32rem;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.intelligent-creation-page3 .item-box .text-box .title::before {
  content: '';
  width: 0.32rem;
  height: 0.02rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.intelligent-creation-page3 .item-box .text-box .text-body {
  color: #666;
  line-height: 180%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.intelligent-creation-page3 .item-box .text-box .text-body * {
  text-align: center;
}
.about-page {
  padding-top: 1.28rem;
}
.about-page .up .text-body1 {
  width: 80%;
 
  margin: auto;
  padding-top: 0.28rem;
  margin-top: 0.24rem;
  position: relative;
  color: #666;
  line-height: 180%;
}
@media (max-width: 767px) {
  .about-page .up .text-body1 {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .about-page{
   padding-top: .8rem;
  }
}


.about-page .up .text-body1::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.about-page .up .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 1.33rem;
  margin-top: 0.72rem;
}
@media (max-width: 767px) {
  .about-page .up .list {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
.about-page .up .list .item:nth-child(2) {
  margin-left: -0.2rem;
}
@media (max-width: 767px) {
  .about-page .up .list .item:nth-child(2) {
    margin: 0;
  }
}
.about-page .up .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.about-page .up .list .item .item-box * {
  text-align: left;
}
@media (max-width: 767px) {
  .about-page .up .list .item .item-box * {
    text-align: center;
  }
}
.about-page .up .list .item .item-box .text-box .title {
  background: linear-gradient(90deg, #3035E0 0%, #308CE0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-page .up .list .item .item-box .text-box .text-body {
  color: #000;
}
.about-page .img-main {
  position: relative;
  border-radius: 0.04rem;
  margin-top: 0.72rem;
  overflow: hidden;
  cursor: pointer;
}
.about-page .img-main .public-img {
  min-height: 200px;
}
.about-page .img-main .public-img::before {
  padding-top: 26.95262484%;
}
.about-page .down {
  margin-top: 1.28rem;
}
.about-page .down .list .item {
  padding: 1.28rem 0;
  background: -webkit-linear-gradient(5deg, #FBFBFE 0.2%, #F7F7FD 100%);
  background: linear-gradient(105deg, #FBFBFE 0.2%, #F7F7FD 100%);
}
.about-page .down .list .item:nth-child(even) {
  background: transparent;
}
.about-page .down .list .item:nth-child(even) .item-box .public-img {
  order: 2;
}
.about-page .down .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .about-page .down .list .item .item-box {
    display: block;
  }
}
.about-page .down .list .item .item-box .public-img {
  width: 48.97435897%;
  max-width: 764px;
  border-radius: 0.04rem;
}
@media (max-width: 990px) {
  .about-page .down .list .item .item-box .public-img {
    width: 100%;
  }
}



@media (max-width: 480px) {
 .about-page .down {
    margin-top: .8rem;
  }
  .about-page .down .list .item{
      padding: .8rem 0;
  }
}

.about-page .down .list .item .item-box .public-img::before {
  padding-top: 57.19895288%;
}
.about-page .down .list .item .item-box .text-main {
  width: 40.51282051%;
  max-width: 632px;
  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: 990px) {
  .about-page .down .list .item .item-box .text-main {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.about-page .down .list .item .item-box .text-main .text-box .text-body {
  padding-top: 0.25rem;
  margin-top: 0.32rem;
  position: relative;
  color: #666;
  line-height: 180%;
}
.about-page .down .list .item .item-box .text-main .text-box .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 480px) {
    .about-page .down .list .item .item-box .text-main .text-box .text-body p{
                height: 4.6rem;
        overflow: auto;
        text-align: center;
    }
  .about-page .down .list .item .item-box .text-main .text-box .text-body::before{
      left: 50%;
        transform:translateX(-50%);
  }
}


.philosophy-page {
  padding: 1.28rem 0;
}
.philosophy-page .up .text-body1 {
  width: 70.12820513%;
  max-width: 1094px;
  margin: auto;
  padding-top: 0.28rem;
  margin-top: 0.24rem;
  position: relative;
  color: #666;
  line-height: 180%;
}
.philosophy-page .up .text-body1::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.philosophy-page .up .list {
    position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 1rem 1.53rem;
  grid-gap: 1rem 0.4rem;
  margin-top: 0.76rem;
}
.philosophy-page .up .list::before{
    content: '';
    width: 0.56rem;
    height: 0.04rem;
    background-color: var(--color-active);
    border-radius: 99px;
    position: absolute;
    left: 0;
    right: 0;
    top: -.48rem;
    margin: auto;
}

.philosophy-page .page-title .title{
    position: relative;
}

.philosophy-page .page-title .title:after{
        content: '';
    width: 0.56rem;
    height: 0.04rem;
    background-color: var(--color-active);
    border-radius: 99px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -.25rem;
    opacity: 0;
}

@media (max-width: 990px) {
  .philosophy-page .up .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width: 990px) and (max-width: 480px) {
  .philosophy-page .up .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.philosophy-page .up .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.philosophy-page .up .list .item .item-box .icon {
  width: 0.86rem;
  height: 0.79rem;
  margin: auto;
  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;
}
.philosophy-page .up .list .item .item-box .text-box {
  margin-top: 0.16rem;
}
.philosophy-page .up .list .item .item-box .text-box .title {
  color: #333;
  font-weight: 700;
  line-height: 150%;
  position: relative;
  padding-bottom: 0.18rem;
  margin-bottom: 0.34rem;
}
.philosophy-page .up .list .item .item-box .text-box .title::before {
  content: '';
  width: 0.32rem;
  height: 0.02rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.philosophy-page .up .list .item .item-box .text-box .text-body {
  color: #666;
  line-height: 180%;
  margin: auto;
}
.philosophy-page .up .list .item .item-box .text-box .text-body span {
  display: block;
}
.philosophy-page .img-main {
  position: relative;
  margin-top: 1.28rem;
  overflow: hidden;
  cursor: pointer;
  padding: 0.42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .philosophy-page .img-main {
    padding: 0;
    display: block;
    margin-top: .8rem;
  }
}
.philosophy-page .img-main .public-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .philosophy-page .img-main .public-img {
    position: relative;
    min-height: 200px;
  }
  .philosophy-page .img-main .public-img::before {
    padding-top: 40.91201028%;
  }
}
.philosophy-page .img-main .text-box {
  padding: 1.39rem 0.88rem 1.79rem;
  border-radius: 0px 0.04rem 0.88rem 0px;
  border: 1px solid #FFF;
  background: linear-gradient(121deg, rgba(255, 255, 255, 0.9) -0.62%, rgba(245, 249, 255, 0.9) 96.52%);
  backdrop-filter: blur(19.29999924px);
  position: relative;
  z-index: 1;
  max-width: 6rem;
}
@media (max-width: 767px) {
  .philosophy-page .img-main .text-box {
    padding: .3rem .4rem;
    padding-top: 0.6rem;
    max-width: inherit;
  }
}
.philosophy-page .img-main .text-box .page-title .title {
  position: relative;
  display: inline-block;
}
.philosophy-page .img-main .text-box .page-title .title::before {
  content: '';
  width: 0.39rem;
  height: 0.34rem;
  background: url(../images/title-icon1.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 0.24rem;
}
.philosophy-page .img-main .text-box .text-body {
  color: #666;
  line-height: 180%;
  position: relative;
  padding-top: 0.25rem;
  margin-top: 0.32rem;
}
.philosophy-page .img-main .text-box .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}
.social-responsibility-page {
  padding: 1.28rem 0;
}
@media (max-width: 480px) {
    .social-responsibility-page {
      padding: .8rem 0;
    }
}


.social-responsibility-page .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .social-responsibility-page .list .item .item-box {
    display: block;
  }
}
.social-responsibility-page .list .item .item-box .public-img {
  width: 48.97435897%;
  max-width: 764px;
  border-radius: 0.66rem 0.04rem;
}
@media (max-width: 990px) {
  .social-responsibility-page .list .item .item-box .public-img {
    width: 100%;
  }
}
.social-responsibility-page .list .item .item-box .public-img::before {
  padding-top: 57.19895288%;
}
.social-responsibility-page .list .item .item-box .text-main {
  width: 40.51282051%;
  max-width: 632px;
  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: 990px) {
  .social-responsibility-page .list .item .item-box .text-main {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.social-responsibility-page .text-body {
  color: #666;
  line-height: 180%;
  padding-top: 0.25rem;
  margin-top: 0.32rem;
  position: relative;
}
.social-responsibility-page .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 480px) {
 .social-responsibility-page .text-body::before{
     left: 50%;
     transform: translateX(-50%);
 }
}


.social-responsibility-page4 .list .item .item-box .public-img {
  border-radius: 0.04rem;
}
.social-responsibility-page2 {
  padding: 1.28rem 0;
}
@media (max-width: 480px) {
    .social-responsibility-page2 {
      padding: .8rem 0;
    }
}

.social-responsibility-page2 .page-img::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
}
.social-responsibility-page2 .page-main {
  position: relative;
}
.social-responsibility-page2 .page-main .text-body {
  width: 90%;
  
  margin: auto;
  color: #fff;
  line-height: 180%;
  padding-top: 0.28rem;
  margin-top: 0.24rem;
  position: relative;
}
@media (max-width: 767px) {
  .social-responsibility-page2 .page-main .text-body {
    width: 100%;
    max-width: 100%;
  }
}
.social-responsibility-page2 .page-main .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: #fff;
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.social-responsibility-page3 {
  padding: 1.28rem 0 1.26rem;
  background: #FBFBFF;
}
@media (max-width: 480px) {
    .social-responsibility-page3 {
      padding: .8rem 0;
    }
}

.social-responsibility-page3 .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.6rem 0;
}
@media (max-width: 990px) {
  .social-responsibility-page3 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.social-responsibility-page3 .list .item:nth-child(even) .item-box {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 990px) {
  .social-responsibility-page3 .list .item:nth-child(even) .item-box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.social-responsibility-page3 .list .item:nth-child(even) .item-box::before {
  content: '';
  width: 1px;
  height: 0.9rem;
  background: #CDCDE9;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 990px) {
  .social-responsibility-page3 .list .item:nth-child(even) .item-box::before {
    display: none;
  }
}
.social-responsibility-page3 .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.42rem;
}
@media (max-width: 990px) {
  .social-responsibility-page3 .list .item .item-box {
    display: block;
  }
}
@media (max-width: 767px) {
  .social-responsibility-page3 .list .item .item-box {
    text-align: center;
  }
}
.social-responsibility-page3 .list .item .item-box .icon {
  width: 1.28rem;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .social-responsibility-page3 .list .item .item-box .icon {
    margin: auto;
  }
}
.social-responsibility-page3 .list .item .item-box .text-box {
  width: 58.20512821%;
  max-width: 454px;
}
@media (max-width: 990px) {
  .social-responsibility-page3 .list .item .item-box .text-box {
    width: 100%;
    max-width: 100%;
    margin-top: 0.2rem;
  }
}
.social-responsibility-page3 .list .item .item-box .text-box .title {
  color: #333;
}
.social-responsibility-page3 .list .item .item-box .text-box .text-body {
  color: #666;
  line-height: 180%;
  margin-top: 0.24rem;
}
@media (max-width: 767px) {
  .social-responsibility-page3 .list .item .item-box .text-box .text-body * {
    text-align: center;
  }
}
.social-responsibility-page5 {
  padding-bottom: 2.33rem;
}
@media (max-width: 1024px) {
  .social-responsibility-page5 {
    padding-bottom: 1.4rem;
  }
}
.social-responsibility-page5 .up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}
@media (max-width: 1024px) {
  .social-responsibility-page5 .up {
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 1024px) {
  .social-responsibility-page5 .social-responsibility-swiper5 {
    padding-bottom: 40px;
  }
  .social-responsibility-page5 .social-responsibility-swiper5 .swiper-pagination {
    opacity: 1;
  }
}
.social-responsibility-page5 .social-responsibility-swiper5 .swiper-slide {
  height: auto;
}
.social-responsibility-page5 .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0.04rem;
}
.social-responsibility-page5 .item-box::before {
  content: '';
  width: 100%;
  height: 1.65rem;
  background: -webkit-linear-gradient(90deg, #1D2088 0%, rgba(29, 32, 136, 0) 100%);
  background: linear-gradient(0deg, #1D2088 0%, rgba(29, 32, 136, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.social-responsibility-page5 .item-box .public-img::before {
  padding-top: 57.19895288%;
}
.social-responsibility-page5 .item-box .text-box {
  width: 100%;
  padding: 0 0.32rem 0.32rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}
.social-responsibility-page5 .item-box .text-box .title {
  color: #fff;
  line-height: 180%;
}
.public-page {
  padding: 2.24rem 0 1.28rem;
}
@media (max-width: 767px) {
  .public-page {
    padding: 1.4rem 0;
  }
}
.public-page .page-main .public-title {
  color: #333;
  font-weight: 700;
  padding-bottom: 0.42rem;
  border-bottom: 1px solid #F5F5F5;
}
.public-page .page-main .public-detail-content h6 {
  font-size: var(--font18);
  color: #333333;
  margin: 0.28rem 0;
}
.public-page .page-main .public-detail-content h6:first-child {
  margin-top: 0;
}
.public-page .page-main .public-detail-content h5 {
  font-size: var(--font32);
  color: #333333;
  font-weight: 700;
  margin: 0.75rem 0 0.32rem;
}
.public-page .page-main .public-detail-content p {
  font-size: var(--font16);
  color: #666;
  line-height: 150%;
}
.public-page .page-main .public-detail-content p strong {
  color: #222222;
}
.public-page .page-main .public-detail-content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.public-page .page-main .public-detail-content dl dt {
  color: #222222;
}
.public-page .page-main .public-detail-content dl dt * {
  color: #222222;
}
.public-page .page-main .public-detail-content dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.public-page .page-main .public-detail-content ul {
  padding-left: 2em;
}
.public-page .page-main .public-detail-content ul li h4 {
  color: #000000;
  margin: 0.18rem 0 0.09rem;
}
.public-page .page-main .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .public-page .page-main .wrap-box {
    display: block;
  }
}
.public-page .page-main .wrap-box .wrap-left {
  width: 20.66666667%;
  max-width: 300px;
}
@media (max-width: 1024px) {
  .public-page .page-main .wrap-box .wrap-left {
    width: 100%;
    max-width: 100%;
  }
}
.public-page .page-main .wrap-box .wrap-right {
  width: 73.46666667%;
  max-width: 1092px;
}
@media (max-width: 1024px) {
  .public-page .page-main .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
  }
}
.public-page .page-main2 {
  width: 100%;
  max-width: 100%;
  padding-left: 1rem;
}
@media (max-width: 1024px) {
  .public-page .page-main2 {
    padding: 0;
  }
}
.public-page .public-tab-title .title {
  color: #999999;
  margin-bottom: 0.22rem;
  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;
}
.public-page .public-tab-title .title.active {
  color: #111111;
}
.public-page .public-tab-title .title.active .icon {
  opacity: 1;
}
.public-page .public-tab-title .title .icon {
  width: 24px;
  height: 24px;
  background-color: var(--color-active);
  border-radius: 50%;
  margin-left: 0.15rem;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.public-page .public-tab-title .title .icon img,
.public-page .public-tab-title .title .icon svg {
  width: 10px;
}
.public-page .public-tab-title .title .icon svg path {
  fill: #000000;
}
.list-sitemap .item {
  padding: 0.54rem 0 0.54rem 0.13rem;
  position: relative;
}
.list-sitemap .item::before {
  content: '';
  width: 100%;
  width: -webkit-calc(99.87%);
  width: calc(100% - 0.13rem);
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}
.list-sitemap .item a {
  cursor: pointer;
}
.list-sitemap .item .item-box .title {
  font-weight: bold;
  color: #111111;
  position: relative;
}
.list-sitemap .item .item-box .title::before {
  content: '';
  width: 0.04rem;
  height: 0.15rem;
  background-color: #1b1b1b;
  position: absolute;
  left: -0.13rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.list-sitemap .item .item-box .text-list {
  margin-top: 0.32rem;
}
.list-sitemap .item .item-box .text-list .text-dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 0.4rem 0.64rem;
}
.list-sitemap .item .item-box .text-list .text-dd a {
  color: #333333;
}
.list-sitemap .item .item-box .text-list .text-dd a:hover {
  color: #111111;
}
.search-pop {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: white;
  padding: 0.47rem 0 0.49rem;
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.05);
  display: none;
  z-index: 11;
}
.search-page .page-up {
  width: 100%;
  background-color: white;
  padding: 0.47rem 0 0.49rem;
  margin-top: var(--header-height);
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.05);
}
.search-page .page-down {
  padding: 0.9rem 0 1.2rem;
}
.search-page .page-down .page-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.search-page .page-down .page-main .page-left {
  width: 21.85%;
  max-width: 306px;
}
.search-page .page-down .page-main .page-right {
  width: 71%;
  max-width: 994px;
}
@media (max-width: 1024px) {
  .search-page .page-down .page-main {
    display: block;
  }
  .search-page .page-down .page-main .page-left {
    width: 100%;
    max-width: 100%;
  }
  .search-page .page-down .page-main .page-right {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .search-page .filter-box-d {
    display: none;
  }
}
.search-page .filter-box-d .title-mob {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  margin-bottom: 30px;
  position: relative;
  display: none;
}
@media (max-width: 1024px) {
  .search-page .filter-box-d .title-mob {
    display: block;
  }
}
.search-page .filter-box-d .title-mob .colse {
  width: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search-page .filter-box-d .apply {
  line-height: 42px;
  border-radius: 5px;
  background-color: var(--color-active);
  text-align: center;
  margin: 0.8rem 0px;
  color: #fff;
  display: none;
}
@media (max-width: 1024px) {
  .search-page .filter-box-d .apply {
    display: block;
  }
}
.search-page .filter-box-d .form-box h4 {
  color: #333333;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.search-page .filter-box-d .search-category {
  color: #333333;
  margin-top: 0.32rem;
}
.search-page .filter-box-d .search-category li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.16rem;
}
.search-page .filter-box-d .search-category span[type='check-box'] {
  width: 16px;
  height: 16px;
  background-color: white;
  border: 1px solid #a4a4a4;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.search-page .filter-box-d .search-category span[type='check-box'].checked {
  background-color: var(--color-active);
  border-color: var(--color-active);
}
.search-page .filter-box-d .search-category span[type='check-box'].checked: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;
}
.search-page .filter-mob-btn {
  width: 100%;
  line-height: 40px;
  border: 1px solid #ddd;
  text-align: center;
  margin-bottom: 30px;
  display: none;
}
@media (max-width: 1024px) {
  .search-page .filter-mob-btn {
    display: block;
  }
}
.search-page .filter-mob-btn a {
  display: block;
}
.search-page .filter-result-title {
  color: #333333;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.search-page .filter-result-title span {
  color: var(--color-active);
}
.search-page .list {
  margin-top: 0.35rem;
}
.search-page .list .item {
  margin-bottom: 0.2rem;
}
.search-page .list .item:hover .item-box {
  border-color: var(--color-active);
}
.search-page .list .item:hover .item-box .text-box .title {
  color: var(--color-active);
}
.search-page .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fbfbfb;
  border: 1px solid #e0e0e0;
  border-radius: 0.14rem;
  padding: 0.3rem 0.3rem 0.36rem;
  color: #333333;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.search-page .list .item .item-box .text-box .link {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.search-page .list .item .item-box .text-box .title {
  margin: 0.14rem 0 0.1rem;
  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;
}
.search-page .list .item .item-box .text-box .text-body {
  line-height: 1.625em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.mobile-search-filter {
  overflow: hidden;
}
.mobile-search-filter .filter-box-d {
  display: block;
  position: fixed;
  background: #fff;
  z-index: 100000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0 20px;
  overflow-y: auto;
}
@keyframes rotate {
  0% {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  100% {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  100% {
    transform: rotate(224deg);
    -webkit-transform: rotate(224deg);
  }
}
@keyframes rotate1 {
  0% {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  100% {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
  }
}
@-webkit-keyframes rotate1 {
  0% {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  100% {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
  }
}
.rotate {
  -webkit-animation-name: rotate;
  animation-name: rotate;
}
.rotate1 {
  -webkit-animation-name: rotate1;
  animation-name: rotate1;
}
.circle-wrapper-ground {
  width: 0.88rem;
  height: 0.88rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circle-wrapper-ground::before {
  content: '';
  width: calc(100% - 0.16rem);
  height: calc(100% - 0.16rem);
  border: 0.08rem solid #F1F2F4;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.circle-wrapper-ground .circle-wrapper {
  position: absolute;
  top: 0;
  width: 0.45rem;
  height: 0.9rem;
  overflow: hidden;
}
.circle-wrapper-ground .circle-wrapper.circle-left-wrapper {
  left: 0;
}
.circle-wrapper-ground .circle-wrapper.circle-right-wrapper {
  right: 0px;
}
.circle-wrapper-ground .circle-wrapper .circle-left {
  width: 0.9rem;
  height: 0.9rem;
  position: absolute;
  left: 0;
  border-radius: 50%;
  border-bottom: 0.08rem solid transparent;
  border-left: 0.08rem solid transparent;
  transform: rotate(44.5deg);
}
.circle-wrapper-ground .circle-wrapper .circle-right {
  width: 0.9rem;
  height: 0.9rem;
  position: absolute;
  right: 0px;
  border-top: 0.08rem solid transparent;
  border-right: 0.08rem solid transparent;
  border-radius: 50%;
  transform: rotate(44.5deg);
}
.development-course-page {
  padding: 1.28rem 0;
}
.development-course-page .page-main {
  position: relative;
}
.development-course-page .up .text-body {
  color: #666;
  line-height: 180%;
  padding-top: 0.28rem;
  margin-top: 0.24rem;
  position: relative;
}
.development-course-page .up .text-body::before {
  content: '';
  width: 0.54rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.development-course-page .down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.72rem;
}
.development-course-page .down .tab-title-box {
  /*height: 5.9rem;*/
  height: 4.37rem;
  overflow: hidden;
  padding: 0.1rem;
  width: 16%;
}
@media (max-width: 1024px) {
  .development-course-page .down .tab-title-box {
    display: none;
  }
}
.development-course-page .down .tab-title-box .tab-title .title {
  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;
  cursor: pointer;
  position: relative;
  width: 0.8rem;
  height: 0.8rem;
  margin-bottom: 0.38rem;
}
.development-course-page .down .tab-title-box .tab-title .title:last-child {
  margin-bottom: 0;
}
.development-course-page .down .tab-title-box .tab-title .title:last-child .icon {
  display: none;
}
.development-course-page .down .tab-title-box .tab-title .title.active {
  font-size: var(--font24);
  font-weight: 500;
  background: linear-gradient(90deg, #3035E0 0%, #308CE0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.development-course-page .down .tab-title-box .tab-title .title.active-prev span{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #666 100%);
   background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} 
.development-course-page .down .tab-title-box .tab-title .title.active-next span{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, #666 100%);
    background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} 

.development-course-page .down .tab-title-box .tab-title .title.active .circle-wrapper-ground::before {
  opacity: 1;
}
.development-course-page .down .tab-title-box .tab-title .title.active .circle-wrapper-ground .circle-wrapper .circle-left {
  border-top: 0.08rem solid #0052D9;
  border-right: 0.08rem solid #0052D9;
  animation: rotate 4s linear 4s forwards;
  -webkit-animation: rotate 4s linear 4s forwards;
}
.development-course-page .down .tab-title-box .tab-title .title.active .circle-wrapper-ground .circle-wrapper .circle-right {
  border-bottom: 0.08rem solid #0052D9;
  border-left: 0.08rem solid #0052D9;
  animation: rotate1 4s linear forwards;
  -webkit-animation: rotate1 4s linear forwards;
}
.development-course-page .down .tab-title-box .tab-title .title.active .icon {
  margin: auto;
  margin-top: 0.15rem;
}
.development-course-page .down .tab-title-box .tab-title .title.active .icon img {
  height: 0.42rem;
}
.development-course-page .down .tab-title-box .tab-title .title .circle-wrapper-ground::before {
  opacity: 0;
}
.development-course-page .down .tab-title-box .tab-title .title span {
  width: 100%;
  text-align: center;
}
.development-course-page .down .tab-title-box .tab-title .title .icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: auto;
  margin-top: -0.1rem;
  width: 1px;
}
.development-course-page .down .tab-title-box .tab-title .title .icon img {
  height: 0.52rem;
  /*height: 0.4rem;*/
}
.development-course-page .down .wrap-right {
  width: 90%;
  /*max-width: 1296px;*/
  overflow: hidden;
  
}
@media (max-width: 1024px) {
  .development-course-page .down .wrap-right {
    width: 100%;
  }
}
.development-course-page .swiper-main {
  position: relative;
}
@media (max-width: 1024px) {
  .development-course-page .swiper-main .development-course-swiper {
    padding-bottom: 40px;
  }
  .development-course-page .swiper-main .development-course-swiper .swiper-pagination {
    opacity: 1;
  }
}
.development-course-page .swiper-main .development-course-swiper .swiper-slide {
  height: auto;
}
.development-course-page .swiper-main .slide-btn-main {
  position: absolute;
  left: 0;
  bottom: 0.47rem;
}
.development-course-page .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: .3rem;
}
@media (max-width: 767px) {
  .development-course-page .item-box {
    display: block;
  }
}
.development-course-page .item-box .public-img {
  width: 58.95061728%;
  max-width: 764px;
  border-radius: 0.66rem 0.04rem;
  order: 2;
}
@media (max-width: 767px) {
  .development-course-page .item-box .public-img {
    width: 100%;
    max-width: 100%;
  }
}
.development-course-page .item-box .public-img::before {
  padding-top: 57.19895288%;
}
.development-course-page .item-box .text-main {
  width: 41.2037037%;
  max-width: 534px;
  padding-top: 0.47rem;
  padding-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .development-course-page .item-box .text-main {
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
  }
}
.development-course-page .item-box .text-main .text-box .title {
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #3035E0 0%, #308CE0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.development-course-page .item-box .text-main .text-box .text-body {
  color: #666;
  line-height: 180%;
  margin-top: 0.32rem;
}
.development-course-page .item-box .text-main .text-box .text-body p {
  position: relative;
  padding-left: 0.34rem;
  margin-bottom: 0.16rem;
}
.development-course-page .item-box .text-main .text-box .text-body img {
  width: 0.18rem;
  position: absolute;
  left: 0;
  top: 0.05rem;
}
@media (max-width: 1580px) {
  .development-course-page .item-box .text-main .text-box .text-body img {
    top: 0.08rem;
  }
}
@media (max-width: 1024px) {
  .development-course-page .item-box .text-main .text-box .text-body img {
    top: 0.15rem;
  }
}
.honor-page {
  padding: 1.28rem 0;
}
.honor-page .page-box + .page-box {
  margin-top: 1.28rem;
}
.honor-page .page-box:first-child .list .item .item-box .text-box .title {
  padding: 0.12rem 0.92rem;
}
.honor-page .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #EAEAEA;
  border-left: 1px solid #EAEAEA;
  margin-top: 0.72rem;
}
.honor-page .page-title .title{
    position: relative;
}
.honor-page .page-title .title:after{
    content: '';
    width: 0.56rem;
    height: 0.04rem;
    background-color: var(--color-active);
    border-radius: 99px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -.1rem;
}



@media (max-width: 767px) {
  .honor-page .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .honor-page .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.honor-page .list .item:hover .item-box {
  box-shadow: 0px 0.12rem 0.5rem 0px rgba(2, 0, 83, 0.12);
}
.honor-page .list .item .item-box {
  display: block;
  height: 100%;
  position: relative;
  text-align: center;
  border-right: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
}
.honor-page .list .item .item-box .public-img-main {
  padding: 0.48rem;
  border-bottom: 1px solid #EAEAEA;
  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;
}
.honor-page .list .item .item-box .public-img-main .public-img {
  width: 100%;
}
.honor-page .list .item .item-box .text-box .title {
  color: #333;
  font-weight: 500;
  line-height: 180%;
  min-height: 1.54rem;
  padding: 0.12rem 0.44rem;
  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;
}
.business-partner-page {
  padding: 1.28rem 0;
}
.business-partner-page .up .text-body {
  color: #666;
  line-height: 180%;
  padding-top: 0.28rem;
  margin-top: 0.24rem;
  position: relative;
}
.business-partner-page .up .text-body::before {
  content: '';
  width: 0.54rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.business-partner-page .list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 0.72rem;
  position: relative;
}
@media (max-width: 767px) {
  .business-partner-page .list {
    grid-template-columns: repeat(4, 1fr);
  }
  .business-partner-page .list .item:last-child{
      display: none;
  }
}
@media (max-width: 480px) {
  .business-partner-page .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.business-partner-page .list::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.business-partner-page .list::after {
  content: '';
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.business-partner-page .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2px;
}
.business-partner-page .list .item .item-box .img {
  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;
  height: 1.74rem;
}
.news-recommendations {
  padding: 1.28rem 0 0.74rem;
  background: #FBFBFF;
}
.news-recommendations .swiper-main .news-recommendations-swiper {
  padding-bottom: 0.54rem;
}
@media (max-width: 1024px) {
  .news-recommendations .swiper-main .news-recommendations-swiper .swiper-pagination {
    opacity: 1;
  }
  .news-recommendations .swiper-main .news-recommendations-swiper .swiper-scrollbar {
    display: none;
  }
}
.news-recommendations .swiper-main .news-recommendations-swiper .swiper-scrollbar {
  width: 48.97435897%;
  max-width: 764px;
  right: 0;
  margin: auto;
}
.news-recommendations .swiper-main .news-recommendations-swiper .swiper-slide {
  height: auto;
  background-color: #FBFBFF;
  border-radius: 0.04rem;
}
.news-recommendations .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .news-recommendations .item-box {
    display: block;
  }
}
.news-recommendations .item-box .public-img {
  width: 46.02564103%;
  max-width: 718px;
  border-radius: 0.04rem;
}
@media (max-width: 767px) {
  .news-recommendations .item-box .public-img {
    width: 100%;
    max-width: 100%;
  }
}
.news-recommendations .item-box .public-img::before {
  padding-top: 66.71309192%;
}
.news-recommendations .item-box .text-box {
  width: 51.08974359%;
  max-width: 797px;
  padding: 0.52rem 0.62rem 0.52rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .news-recommendations .item-box .text-box {
    width: 100%;
    max-width: 100%;
  }
}
.news-recommendations .item-box .text-box .date {
  color: #999;
}
.news-recommendations .item-box .text-box .title {
  font-weight: 700;
  color: #383838;
  margin-top: 0.32rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news-recommendations .item-box .text-box .text-body {
  color: #666;
  line-height: 180%;
  margin-top: 0.42rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-recommendations .item-box .text-box .btn-container {
  margin-top: 0.62rem;
}
.news-page {
  padding: 0.52rem 0 1.28rem;
}
.news-page .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.33rem;
}
@media (max-width: 767px) {
  .news-page .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .news-page .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-page .list .item:hover .item-box {
  box-shadow: 0 0.12rem 0.5rem 0 rgba(2, 0, 83, 0.12);
}
.news-page .list .item:hover .item-box .text-box .btn-more {
  color: var(--color-active);
}
.news-page .list .item:hover .item-box .text-box .btn-more .icon img,
.news-page .list .item:hover .item-box .text-box .btn-more .icon svg {
  -webkit-filter: drop-shadow(-80px 0 var(--color-active));
  filter: drop-shadow(-80px 0 var(--color-active));
}
.news-page .list .item .item-box {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 0.04rem;
  background: #F9F9FB;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.news-page .list .item .item-box .public-img {
  border-radius: 4px;
}
.news-page .list .item .item-box .public-img::before {
  padding-top: 59.23694779%;
}
.news-page .list .item .item-box .text-box {
  padding: 0.32rem 0.32rem 0.45rem;
}
.news-page .list .item .item-box .text-box .date {
  color: #999;
}
.news-page .list .item .item-box .text-box .title {
  color: #333;
  line-height: 150%;
  margin-top: 0.24rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news-page .list .item .item-box .text-box .text-body {
  color: #666666;
  line-height: 180%;
  margin-top: 0.16rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-page .list .item .item-box .text-box .btn-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #999;
  margin-top: 0.49rem;
}
.news-page .list .item .item-box .text-box .btn-more .icon {
  overflow: hidden;
}
.news-page .list .item .item-box .text-box .btn-more .icon img,
.news-page .list .item .item-box .text-box .btn-more .icon svg {
  width: 0.22rem;
  min-width: 16px;
  height: auto;
  -webkit-filter: drop-shadow(-80px 0 #999);
  filter: drop-shadow(-80px 0 #999);
  -webkit-transform: translate(80px);
  transform: translate(80px);
}
.editor-pn {
  position: relative;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 1rem;
}
@media (max-width: 1024px) {
  .editor-pn {
    display: none;
  }
}
.editor-pn .editor-btn {
  color: #666;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.editor-pn .editor-btn.next {
  text-align: right;
}
.editor-pn .editor-btn:hover a {
  color: var(--color-blue-004);
}
.editor-pn .editor-btn em {
  display: inline-block;
  font-style: normal;
}
.editor-pn .editor-btn a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  flex: 1;
}
.news-d-page {
  padding-top: 1.28rem;
}
.news-d-page .page-main .news-title {
  color: #333;
}
.news-d-page .page-main .type-box {
  color: #999;
  line-height: 1;
  margin: 0.14rem 0 0.44rem;
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.news-d-page .page-main .type-box .type {
  padding: 0 0.22rem;
}
.news-d-page .page-main .type-box .num {
  border-left: 1px solid #999;
}
.news-d-page .page-main .news-detail-content {
  padding: 0.52rem 0 0.72rem;
  border: 1px solid #F5F5F5;
  border-left: none;
  border-right: none;
}
.news-d-page .page-main .news-detail-content * {
  font-size: var(--font16);
  color: #666;
  line-height: 1.5;
  
}
.recommended-news {
  padding: 0.72rem 0 1.28rem;
  display:none;
}
.recommended-news .name {
  color: #333;
  line-height: 150%;
  
}
.recommended-news .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 0.86rem;
  margin-top: 0.16rem;
}
@media (max-width: 767px) {
  .recommended-news .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.recommended-news .list .item:hover .item-box {
  color: var(--color-blue-004);
}
.recommended-news .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.24rem 0;
  border-bottom: 1px solid #F5F5F5;
  color: #666;
  line-height: 150%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.recommended-news .list .item .item-box .text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 0.8rem;
}
.recommended-news .list .item .item-box .text-box .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.returnbtn{
   padding: 0.72rem 0 1.28rem;
    text-align: center;
    margin: auto;
    width: 100%; 
}
.returnbtn a{
    border: 1px solid #E4E5E7;
    border-radius: 58px;
    padding: .15rem .4rem;
    color: #999999;

}

.join-us-page {
  padding: 1.28rem 0;
}
.join-us-page .up .text-body {
  color: #666;
  line-height: 180%;
  padding-top: 0.28rem;
  margin-top: 0.24rem;
  position: relative;
}
.join-us-page .up .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.join-us-page .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 0.16rem;
  margin-top: 0.72rem;
}
@media (max-width: 1024px) {
  .join-us-page .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .join-us-page .list {
    grid-template-columns: repeat(2, 1fr);
    display: none;
  }
}
@media (max-width: 480px) {
  .join-us-page .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.join-us-page .list .item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.join-us-page .list .item:first-child .item-box {
  border-radius: 0.66rem 0.04rem 0.04rem 0.04rem;
}
@media (max-width: 767px) {
  .join-us-page .list .item:first-child .item-box {
    border-radius: 0.04rem;
  }
}
.join-us-page .list .item:last-child .item-box {
  border-radius: 0.04rem 0.04rem 0.66rem 0.04rem;
}
@media (max-width: 767px) {
  .join-us-page .list .item:last-child .item-box {
    border-radius: 0.04rem;
  }
}
.join-us-page .list .item .item-box {
  height: 6.26rem;
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(356deg, #E1E1E3 -42.03%, #F8F8F8 54.63%);
  border-radius: 0.04rem;
  text-align: center;
}
.join-us-page .list .item .item-box .public-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
}
@media (max-width: 1024px) {
  .join-us-page .list .item .item-box .public-img {
    opacity: 1;
  }
}
.join-us-page .list .item .item-box .public-img::after {
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: linear-gradient(327deg, #2B30CC -0.54%, #308CE0 99.99%);
  mix-blend-mode: overlay;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.join-us-page .list .item .item-box .text-box {
  width: 100%;
  height: 100%;
  padding: 0.72rem 0.2rem 0.92rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.join-us-page .list .item .item-box .text-box .title {
  width: 100%;
  color: #666;
  line-height: 180%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
}
@media (max-width: 1024px) {
  .join-us-page .list .item .item-box .text-box .title {
    font-size: var(--font32) !important;
    color: #fff;
  }
}
.join-us-page .list .item .item-box .text-box .icon {
  width: 1rem;
  height: 0.83rem;
  margin: 0 auto;
  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) {
  .join-us-page .list .item .item-box .text-box .icon {
    margin: 0 auto !important;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}
.join-us-page .list .item.active,
.join-us-page .list .item:hover {
  flex: 1 1 52.851%;
}
.join-us-page .list .item.active .item-box .public-img,
.join-us-page .list .item:hover .item-box .public-img {
  opacity: 1;
}
.join-us-page .list .item.active .item-box .text-box,
.join-us-page .list .item:hover .item-box .text-box {
  text-align: left;
  padding-left: 0.52rem;
}


.join-us-page .list .item.active .item-box .text-box:before, .join-us-page .list .item:hover .item-box .text-box:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
    opacity: 0.6;
    background: linear-gradient(180deg, #1D2088 0%, rgba(29, 32, 136, 0.00) 100%);
}

@media (max-width: 1024px) {
  .join-us-page .list .item.active .item-box .text-box,
  .join-us-page .list .item:hover .item-box .text-box {
    text-align: center;
    padding-left: 0.2rem;
  }
}
.join-us-page .list .item.active .item-box .text-box .title,
.join-us-page .list .item:hover .item-box .text-box .title {
  color: #fff;
  font-size: var(--font48);
}
.join-us-page .list .item.active .item-box .text-box .icon,
.join-us-page .list .item:hover .item-box .text-box .icon {
  margin: 0;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.join-us-page .mobilelist {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow-x: hidden;
  display: none;
  grid-gap: 0.16rem;
  margin-top: 0.72rem;
}
@media (max-width: 767px) {
  .join-us-page .mobilelist {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 0.5rem;
  }
}
.join-us-page .mobilelist .item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.join-us-page .mobilelist .item:first-child .item-box {
  border-radius: 0.66rem 0.04rem 0.04rem 0.04rem;
}
@media (max-width: 767px) {
  .join-us-page .mobilelist .item:first-child .item-box {
    border-radius: 0.04rem;
  }
}
.join-us-page .mobilelist .item:last-child .item-box {
  border-radius: 0.04rem 0.04rem 0.66rem 0.04rem;
}
@media (max-width: 767px) {
  .join-us-page .mobilelist .item:last-child .item-box {
    border-radius: 0.04rem;
  }
}
.join-us-page .mobilelist .item .item-box {
  height: 6.26rem;
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(356deg, #E1E1E3 -42.03%, #F8F8F8 54.63%);
  border-radius: 0.04rem;
  text-align: center;
}
.join-us-page .mobilelist .item .item-box .public-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
}
@media (max-width: 1024px) {
  .join-us-page .mobilelist .item .item-box .public-img {
    opacity: 1;
  }
}
.join-us-page .mobilelist .item .item-box .public-img::after {
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: linear-gradient(327deg, #2B30CC -0.54%, #308CE0 99.99%);
  mix-blend-mode: overlay;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.join-us-page .mobilelist .item .item-box .text-box {
  width: 100%;
  height: 100%;
  padding: 0.72rem 0.2rem 0.92rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.join-us-page .mobilelist .item .item-box .text-box .title {
  width: 100%;
  color: #666;
  line-height: 180%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  .join-us-page .mobilelist .item .item-box .text-box .title {
    font-size: var(--font32) !important;
    color: #fff;
  }
}
.join-us-page .mobilelist .item .item-box .text-box .icon {
  width: 1rem;
  height: 0.83rem;
  margin: 0 auto;
  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) {
  .join-us-page .mobilelist .item .item-box .text-box .icon {
    margin: 0 auto !important;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}
.join-us-page .mobilelist .item.active,
.join-us-page .mobilelist .item:hover {
  flex: 1 1 52.851%;
}
.join-us-page .mobilelist .item.active .item-box .public-img,
.join-us-page .mobilelist .item:hover .item-box .public-img {
  opacity: 1;
}
.join-us-page .mobilelist .item.active .item-box .text-box,
.join-us-page .mobilelist .item:hover .item-box .text-box {
  text-align: left;
  padding-left: 0.52rem;
}
@media (max-width: 1024px) {
  .join-us-page .mobilelist .item.active .item-box .text-box,
  .join-us-page .mobilelist .item:hover .item-box .text-box {
    text-align: center;
    padding-left: 0.2rem;
  }
}
.join-us-page .mobilelist .item.active .item-box .text-box .title,
.join-us-page .mobilelist .item:hover .item-box .text-box .title {
  color: #fff;
  font-size: var(--font48);
}
.join-us-page .mobilelist .item.active .item-box .text-box .icon,
.join-us-page .mobilelist .item:hover .item-box .text-box .icon {
  margin: 0;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.join-us-page .mobilelist .swiper-pagination {
  opacity: inherit;
}


.join-us-page2 {
  padding: 1.28rem 0;
  background: #FBFBFF;
}
@media (max-width: 480px) {
    .join-us-page,.join-us-page2  {
      padding: .8rem 0;
    }
}

.join-us-page2 .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;
}
.join-us-page2 .up .text-body {
  width: 36.73076923%;
  max-width: 573px;
  color: #666;
  line-height: 180%;
}

.join-us-page2 .page-title .title{
    position: relative;
}
.join-us-page2 .page-title .title:after{
        content: '';
    width: 0.56rem;
    height: 0.04rem;
    background-color: var(--color-active);
    border-radius: 99px;
    position: absolute;
    left: 0;
    right: 0;
   
    bottom: -.25rem;
}
@media (max-width: 480px) {
 .join-us-page2 .page-title .title:after{
     left: 50%;
     transform: translateX(-50%);
 }
}

@media (max-width: 990px) {
  .join-us-page2 .up {
    display: block;
  }
  .join-us-page2 .up .text-body {
    margin-top: 0.8rem;
    width: 100%;
  }
}
@media (max-width: 480px) {
  
  .join-us-page2 .up .text-body {
   text-align: center;
  }
}

.join-us-page2 .swiper-main {
  margin-top: 0.72rem;
}
.join-us-page2 .swiper-main .join-us-swiper2.active {
  padding-bottom: 40px;
}
.join-us-page2 .swiper-main .join-us-swiper2.active .swiper-pagination {
  opacity: 1;
}
@media (max-width: 1024px) {
  .join-us-page2 .swiper-main .join-us-swiper2 {
    padding-bottom: 40px;
  }
  .join-us-page2 .swiper-main .join-us-swiper2 .swiper-pagination {
    opacity: 1;
  }
}
.join-us-page2 .swiper-main .join-us-swiper2 .swiper-slide {
  height: auto;
}
.join-us-page2 .swiper-main .join-us-swiper2 .swiper-slide:first-child .item-box::before {
  display: none;
}
.join-us-page2 .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.85rem 0.43rem 0.46rem;
  background-color: #fff;
}
.join-us-page2 .item-box::before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.08;
}


.join-us-page2 .item-box:hover  {
  background: linear-gradient(327deg, #2B30CC -0.54%, #308CE0 99.99%);
  backdrop-filter: blur(15.80000019px);
}
.join-us-page2 .item-box:hover::before {
  opacity: 0;
}
.join-us-page2 .item-box:hover .icon {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.join-us-page2 .item-box:hover .text-box .title,
.join-us-page2 .item-box:hover .text-box .num {
  color: #fff;
}
.join-us-page2 .item-box .icon-plus {
  position: absolute;
  top: 0.22rem;
  right: 0.47rem;
  opacity: 0.04;
}
.join-us-page2 .item-box .icon-plus img,
.join-us-page2 .item-box .icon-plus svg {
  width: 4.18rem;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.join-us-page2 .item-box .icon {
  width: 0.68rem;
  height: 0.68rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.join-us-page2 .item-box .text-box {
  margin-top: 1rem;
}
.join-us-page2 .item-box .text-box .title {
  color: #666;
  line-height: 180%;
  line-height: 1.4;
  margin-bottom: .6rem;
  font-size: var(--font22);
}
.join-us-page2 .item-box .text-box .title span {
  display: block;
}
.join-us-page2 .item-box .text-box .num {
  color: #666;
  line-height: 180%;
  margin-top: 0.24rem;
}
.join-us-page3 {
  padding-top: 1.28rem;
}
@media (max-width: 480px) {
   .join-us-page3 {
      padding: .8rem 0;
    }
}

.join-us-page3 .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;
  border-radius: 0.88rem 0.04rem 0.88rem 0.04rem;
  overflow: hidden;
}

@media (max-width: 1024px){
    .join-us-page2 .swiper-main .join-us-swiper2 .swiper-slide-active .item-box  {
        background: linear-gradient(327deg, #2B30CC -0.54%, #308CE0 99.99%);
        backdrop-filter: blur(15.80000019px);
    }
    .join-us-page2 .swiper-main .join-us-swiper2 .swiper-slide-active .item-box .icon{
        filter: brightness(0) invert(1);
    }
    .join-us-page2 .swiper-main .join-us-swiper2 .swiper-slide-active .item-box .title{
       color:#fff;
    }
    .join-us-page2 .swiper-main .join-us-swiper2 .swiper-slide-active .item-box .num{
       color:#fff;
    }

}
@media (max-width: 990px) {
  .join-us-page3 .wrap-box {
    display: block;
  }
}
.join-us-page3 .wrap-box .wrap-left {
  width: 62.05128205%;
}
@media (max-width: 990px) {
  .join-us-page3 .wrap-box .wrap-left {
    width: 100%;
  }
}
.join-us-page3 .wrap-box .wrap-right {
  width: 38.01282051%;
  position: relative;
  padding: 0.85rem 0.72rem;
}
@media (max-width: 990px) {
  .join-us-page3 .wrap-box .wrap-right {
    width: 100%;
    max-width: 100%;
    padding: 0.8rem 0.4rem;
  }
}
.join-us-page3 .wrap-left .public-img {
  height: 100%;
}
.join-us-page3 .wrap-left .public-img::before {
  padding-top: 66.6322314%;
}
.join-us-page3 .wrap-right .public-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 990px) {
  .join-us-page3 .wrap-right .public-img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.join-us-page3 .swiper-main {
  height: 100%;
}
.join-us-page3 .swiper-main .join-us-swiper3 {
  height: 100%;
}
.join-us-page3 .swiper-main .join-us-swiper3.active .swiper-pagination {
  opacity: 1;
  bottom: 0.4rem;
}
.join-us-page3 .swiper-main .join-us-swiper3.active .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}
.join-us-page3 .swiper-main .join-us-swiper3.active .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-active);
}
.join-us-page3 .text-main {
  position: relative;
  z-index: 2;
}
.join-us-page3 .text-main .text-body {
  color: #fff;
  line-height: 1.8;
  line-height: 180%;
  /*max-height: calc(10em * 1.8);*/
  overflow: auto;
  padding-right: 0.2rem;
  z-index: 2;
  padding-top: 0.32rem;
  margin-top: 0.32rem;
  position: relative;
}
.join-us-page3 .text-main .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: #fff;
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0;
}
.join-us-page3 .text-main .text-body p {
  position: relative;
  padding-left: 0.28rem;
  margin-bottom: 0.13rem;
}
.join-us-page3 .text-main .text-body img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  width: 0.12rem;
  position: absolute;
  left: 0;
  top: 0.13rem;
}
.join-us-page4 {
  padding: 1.28rem 0;
}
@media (max-width: 480px) {
    .join-us-page4 {
      padding:0 0 .8rem 0 ;
    }
    .join-us-page3 .text-main .text-body::before{
         left: 50%;
        transform:translateX(-50%);
    }
}

.join-us-page4 .up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 0.72rem;
}
.join-us-page4 .swiper-main {
  margin-right: -0.34rem;
}
@media (max-width: 1024px) {
  .join-us-page4 .swiper-main {
    margin: 0;
  }
}
.join-us-page4 .join-us-swiper4 {
  overflow: visible;
}
@media (max-width: 1024px) {
  .join-us-page4 .join-us-swiper4 {
    padding-bottom: 40px;
  }
  .join-us-page4 .join-us-swiper4 .swiper-pagination {
    opacity: 1;
  }
}
.join-us-page4 .join-us-swiper4 .swiper-slide {
  height: auto;
}
.join-us-page4 .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.join-us-page4 .item-box .public-img::before {
  padding-top: 66.7961165%;
}
.contact-page {
  padding-top: 1.28rem;
}
.contact-page .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.3rem;
  margin-top: 0.72rem;
}

.contact-page .page-center{
    position: relative;
}
.contact-page .page-center:after{
        content: '';
    width: 0.56rem;
    height: 0.04rem;
    background-color: var(--color-active);
    border-radius: 99px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.1rem;
    margin: auto;
}

@media (max-width: 767px) {
  .contact-page .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .contact-page .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-page .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.89rem 0.96rem 0.63rem;
  border-radius: 0.04rem;
  border: 1px solid #EEF0F5;
  text-align: center;
}
@media (max-width: 1024px) {
  .contact-page .list .item .item-box {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
}
.contact-page .list .item .item-box .icon img,
.contact-page .list .item .item-box .icon svg {
  width: auto;
  height: 0.42rem;
}
.contact-page .list .item .item-box .text-box {
  margin-top: 0.24rem;
}
.contact-page .list .item .item-box .text-box .title {
  color: #333;
}
.contact-page .list .item .item-box .text-box .text-body {
  color: #666;
  line-height: 180%;
  margin-top: 0.16rem;
}
.contact-page .list .item .item-box .text-box .text-body * {
  text-align: center;
}
.contact-page .img-main {
  margin-top: 0.52rem;
}
.contact-page .img-main .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}
.contact-page2 {
  padding: 1.28rem 0;
}
.contact-page2 .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.8rem 0.33rem;
  margin-top: 0.72rem;
}
.contact-page2 .page-title .title{
    position: relative;
}
.contact-page2 .page-title .title:after{
        content: '';
    width: 0.56rem;
    height: 0.04rem;
    background-color: var(--color-active);
    border-radius: 99px;
    position: absolute;
    left: 0;
    right: 0;
    
    margin: auto;
        bottom: -.1rem;
}


@media (max-width: 767px) {
  .contact-page2 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-page2 .list .item .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0.04rem;
}
.contact-page2 .list .item .item-box::before {
  content: '';
  width: 100%;
  height: 1.65rem;
  background: -webkit-linear-gradient(90deg, #1D2088 0%, rgba(29, 32, 136, 0) 100%);
  background: linear-gradient(0deg, #1D2088 0%, rgba(29, 32, 136, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.contact-page2 .list .item .item-box .public-img::before {
  padding-top: 57.12418301%;
}
.contact-page2 .list .item .item-box .text-box {
  width: 100%;
  padding: 0 0.32rem 0.32rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}
.contact-page2 .list .item .item-box .text-box .title {
  color: #fff;
}
.contact-page2 .list .item .item-box .text-box .text-body {
  color: #fff;
  line-height: 180%;
  margin-top: 0.08rem;
}
.hi-resume-pop .c-close {
  margin-top: 0.42rem;
  margin-right: 0.42rem;
}
.hi-resume-pop .c-wrap {
  padding: 1rem 0;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .hi-resume-pop .c-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 480px) {
  .hi-resume-pop .c-wrap {
       padding: .5rem 0;
       padding-left: 20px;
    padding-right: 20px;
       
  }
}


.hi-resume-pop .page-main {
  padding: 1.25rem 1.37rem 1.3rem 1.29rem;
  background-color: #fff;
  border-radius: 0.04rem;
  position: relative;
}
@media (max-width: 1024px) {
  .hi-resume-pop .page-main {
    padding: .8rem;
    padding-left: 20px;
    padding-right: 20px;
    
  }
}
@media (max-width: 480px) {
  .hi-resume-pop .page-main {
    padding: .4rem;
    padding-left: 20px;
    padding-right: 20px;
    
  }
}


.hi-resume-pop .up .text-body {
  color: #666;
  line-height: 180%;
  padding-top: 0.28rem;
  margin-top: 0.24rem;
  position: relative;
}
.hi-resume-pop .up .text-body::before {
  content: '';
  width: 0.56rem;
  height: 0.04rem;
  background-color: var(--color-active);
  border-radius: 99px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
.circle-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.circle-progress circle {
  stroke-width: 1;
  transform-origin: center;
  transition: stroke-dashoffset 0.5s ease-in-out;
}

.pro-ban-wrap {
  padding: 1.28rem 0;
  margin-top: var(--header-height);
}
.pro-ban-wrap .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 1.29rem;
}
.pro-ban-wrap .innerbox .left {
  width: 51%;
}
.pro-ban-wrap .innerbox .left .mainimg {
  height: 5.49rem;
  width: 100%;
  overflow: hidden;
}
.pro-ban-wrap .innerbox .left .mainimg img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
}
.pro-ban-wrap .innerbox .left .mainimg .swiper-slide img{
    opacity: 0;
}
.pro-ban-wrap .innerbox .left .mainimg .swiper-slide-active img{
    opacity: 1;
}

.pro-ban-wrap .innerbox .left .imglist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  margin-top: 0.24rem;
}
.pro-ban-wrap .innerbox .left .imglist img {
  border-radius: 4px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: solid 1px rgb(29 32 136 / 10%);
}
.pro-ban-wrap .innerbox .right {
  width: 49%;
}
.pro-ban-wrap .innerbox .right .title {
  color: #333333;
  font-size: var(--font32);
  font-weight: 700;
}
.pro-ban-wrap .innerbox .right .desc {
  color: #666666;
  margin-top: 0.32rem;
  font-size: var(--font18);
  line-height: 180%;
}
.pro-ban-wrap .innerbox .right .mediabtn {
  margin-top: 0.82rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  gap: 0.52rem;
}
.pro-ban-wrap .innerbox .right .mediabtn .m-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
}
.pro-ban-wrap .innerbox .right .mediabtn .m-right .icon {
  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;
  cursor: pointer;
  width: 0.51rem;
  height: 0.51rem;
  min-height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: solid 1px var(--color-active);
}
.pro-ban-wrap .innerbox .right .mediabtn .m-right .icon img {
  width: 0.32rem;
}
@media (max-width: 990px) {
  .pro-ban-wrap {
    margin: 0;
    padding: 0.8rem 0;
  }
  .pro-ban-wrap .innerbox {
    display: inline-block;
    width: 100%;
  }
  .pro-ban-wrap .innerbox .left {
    width: 100%;
  }
  .pro-ban-wrap .innerbox .right {
    width: 100%;
    margin-top: 0.8rem;
  }
}
.features-wrap {
  /*padding-bottom:  1.28rem;*/
  background: url("../images/pro-bg2.png") no-repeat;
}
.features-wrap .innerbox .title {
  font-weight: 700;
}
.features-wrap .innerbox .itemlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.64rem;
  color: #333333;
  margin-top: 0.7rem;
}
.features-wrap .innerbox .itemlist .item {
  position: relative;
  padding-bottom: 0.8rem;
}
.features-wrap .innerbox .itemlist .item .num {
  color: #F1F1F1;
  font-weight: 700;
}
.features-wrap .innerbox .itemlist .item .info {
  position: absolute;
  top: 0.84rem;
  height: 72%;
  border-bottom: solid 1px #D9D9D9;
}
.features-wrap .innerbox .itemlist .item .info p {
  text-align: left;
}
.features-wrap .innerbox .itemlist .item .info .name {
  font-weight: 700;
}
.features-wrap .innerbox .itemlist .item .info .desc {
  margin-top: 0.24rem;
}
@media (max-width: 990px) {
  .features-wrap .innerbox .itemlist .item .info {
    height: 90%;
  }
}
@media (max-width: 767px) {
  .features-wrap .innerbox .itemlist .item .info {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .features-wrap {
    padding: 0.5rem 0;
  }
  .features-wrap .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
  .features-wrap .innerbox .itemlist .item .info {
    height: 80%;
  }
}
.table-data {
  padding-top: 1.28rem;
}
.table-data .title {
  color: #333333;
  margin-bottom: 0.7rem;
  font-weight: 700;
  white-space: pre-line;
  text-transform: uppercase;
}
.table-data .zs {
  margin-top: 0.24rem;
  color: #999999;
}
@media (max-width: 480px) {
  .table-data {
    padding: 0.5rem 0;
  }
}
.product-detail-page2 {
  padding: 1rem 0 1rem;
  background-color: #FBFBFF;
  
}
.product-detail-page2 .page-title .title {
  white-space: pre-line;
  text-transform: uppercase;
}
.product-detail-page2 .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: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.product-detail-page2 .swiper-main {
  margin-top: 0.72rem;
}
.product-detail-page2 .swiper-main .product-detail-swiper {
  padding-bottom: 0.44rem;
  overflow: visible;
}
@media (max-width: 1024px) {
  .product-detail-page2 .swiper-main .product-detail-swiper {
    padding-right: 0;
  }
}
.product-detail-page2 .swiper-main .product-detail-swiper .swiper-slide {
  height: auto;
}
.product-detail-page2 .item-box {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0.04rem;
}
.product-detail-page2 .item-box .public-img::before {
  padding-top: 119.8156682%;
}
.product-detail-page2 .item-box .text-box {
  width: 100%;
  z-index: 3;
}
.product-detail-page2 .item-box .text-box .title {
  color: #666666;
  line-height: 180%;
  margin-top: 0.32rem;
  text-align: center;
}
@media (max-width: 480px) {
  .product-detail-page2 {
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }
  .product-detail-page2 .swiper-pagination {
    opacity: 1;
  }
}
.related-products {
  padding: 1rem 0;
}
.related-products .title {
  color: #333333;
  margin-bottom: 0.7rem;
  font-weight: 700;
  /*white-space: pre-line;*/
  text-transform: uppercase;
}
.related-products .itemlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}
.related-products .itemlist .item .image {
  height: 3.54rem;
}
.related-products .itemlist .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-products .itemlist .item .r-title {
  margin-top: 0.3rem;
  color: #666666;
  white-space: pre-line;
  text-align: center;
  font-size: var(--font22);
}
@media (max-width: 480px) {
  .related-products {
    padding: 0.5rem 0;
  }
  .related-products .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}