@charset "utf-8";
body {
  overflow-x: hidden;
}
body.home header {
  position: absolute;
}
/*顶部*/
header {
  z-index: 10;
  width: 100%;
  transition: all 0.5s;
  top: 0;
  position: sticky;
}
header.active {
  box-shadow: 0 0 32px 3px rgba(0, 0, 0, 0.03);
}
header .header-menu {
  transition: all 0.5s ease;
  position: relative;
  background: #353535;
}
header .header-menu .header-box {
  padding: 0 30px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  z-index: 2;
  box-sizing: border-box;
}
header .header-menu .header-box .logo img {
  transition: all 0.5s;
  width: 70px;
}
@media screen and (max-width: 768px) {
  header .header-menu .header-box .logo img {
    width: 60px;
  }
}
header .header-menu .header-box .search {
  position: relative;
  flex-basis: 24px;
  cursor: pointer;
}
header .menu-box {
  height: 75px;
  transition: all 0.5s;
  z-index: 1;
  position: relative;
  top: 0;
  flex-basis: calc(100% - 100px);
}
header .menu-box .phone-show {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 75px;
}
header .menu-box .menu-list {
  display: flex;
  align-items: center;
  color: #fff;
  height: 100%;
  position: relative;
  padding-right: 60px;
  margin-left: auto;
}
header .menu-box .menu-list .firstItem {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  margin-left: clamp(20px, 2vw, 3vw);
}
header .menu-box .menu-list .firstItem.active .firstItem-title a {
  color: #fff;
}
header .menu-box .menu-list .firstItem.active .firstItem-title a::after {
  background: #fff;
}
header .menu-box .menu-list .firstItem .firstItem-title {
  position: relative;
  display: flex;
  align-items: center;
}
header .menu-box .menu-list .firstItem .firstItem-title a {
  color: #9b9b9b;
  font-size: 16px;
  transition: all 0.5s;
  position: relative;
}
header .menu-box .menu-list .firstItem .firstItem-title:hover a {
  color: #fff;
}
header .menu-box .menu-list .firstItem > a {
  font-size: 14px;
  height: 80px;
  line-height: 80px;
}
header .menu-box .menu-list .firstItem .second-box {
  position: fixed;
  top: 75px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  transition: top 0.5s;
  border-radius: 0 0 8px 8px;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list {
  background: #5d5d5d;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  header .menu-box .menu-list .firstItem .second-box .second-box-list {
    margin-top: 0;
    padding-left: 10%;
  }
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item {
  position: relative;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item a {
  color: #9b9b9b;
  height: 60px;
  display: flex;
  align-items: center;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item a:hover {
  color: #fff;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item .three-box {
  display: none;
  position: absolute;
  left: calc(100%);
  top: -10px;
  background: var(--dominant-color);
  width: max-content;
  padding: 10px 0;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item .three-box a {
  padding: 0 20px;
  margin-top: 10px;
}
header .menu-box .menu-list .firstItem .second-box .second-box-list .second-item:hover .three-box {
  display: block;
}
header .menu-box .menu-list .firstItem .second-box a {
  transition: all 0.5s;
  color: #fff;
  display: block;
  text-align: left;
  padding: 10px 30px;
}
header .menu-box .menu-list .firstItem .second-box a:last-child {
  margin-bottom: 0;
}
header .menu-box .menu-list .firstItem .second-box .second-container {
  width: 90%;
  max-width: 1380px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header .menu-box .menu-list .firstItem .second-box .second-container {
    width: 100%;
  }
}
header .menu-box .menu-list .firstItem .second-box .second-container .left {
  flex-basis: 300px;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  header .menu-box .menu-list .firstItem .second-box .second-container .left {
    padding: 0;
    flex-basis: 100%;
    padding-right: 10%;
  }
}
header .menu-box .menu-list .firstItem .second-box .second-container .left .phone-pro {
  display: none;
}
@media screen and (max-width: 768px) {
  header .menu-box .menu-list .firstItem .second-box .second-container .left .phone-pro {
    display: flex;
    grid-gap: 20px;
    margin-bottom: 10px;
  }
}
header .menu-box .menu-list .firstItem .second-box .second-container .left .phone-pro .title {
  font-size: 12px;
  text-align: center;
}
header .menu-box .menu-list .firstItem .second-box .second-container .left .phone-pro a::after {
  display: none;
}
header .menu-box .menu-list .firstItem .second-box .second-container .left a {
  color: #9b9b9b;
  transition: all 0.5s;
  position: relative;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  header .menu-box .menu-list .firstItem .second-box .second-container .left a {
    font-size: 14px;
  }
}
header .menu-box .menu-list .firstItem .second-box .second-container .left a.active,
header .menu-box .menu-list .firstItem .second-box .second-container .left a:hover {
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .menu-box .menu-list .firstItem .second-box .second-container .left a.active,
  header .menu-box .menu-list .firstItem .second-box .second-container .left a:hover {
    color: #333;
  }
}
header .menu-box .menu-list .firstItem .second-box .second-container .left a.active::after,
header .menu-box .menu-list .firstItem .second-box .second-container .left a:hover::after {
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .menu-box .menu-list .firstItem .second-box .second-container .left a.active::after,
  header .menu-box .menu-list .firstItem .second-box .second-container .left a:hover::after {
    color: #9b9b9b;
  }
}
header .menu-box .menu-list .firstItem .second-box .second-container .left a::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #9b9b9b;
  transition: all 0.5s;
  height: fit-content;
}
header .menu-box .menu-list .firstItem .second-box .second-container .right {
  flex-basis: calc(100% - 350px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  header .menu-box .menu-list .firstItem .second-box .second-container .right {
    display: none;
  }
}
header .menu-box .menu-list .firstItem .second-box .second-container .right .product-item {
  display: none;
  transition: all 0.5s;
  grid-template-columns: repeat(3, 1fr);
}
header .menu-box .menu-list .firstItem .second-box .second-container .right .product-item.active {
  display: grid;
}
header .menu-box .menu-list .firstItem .second-box .second-container .right .product-item .item {
  position: relative;
}
header .menu-box .menu-list .firstItem .second-box .second-container .right .product-item .item .title {
  text-align: center;
  font-size: 16px;
  /*position: absolute;*/
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
header .menu-box .menu-list .firstItem .second-box .second-container .right .product-item .item .img {
  height: 0;
  padding-bottom: calc(300/700 * 100%);
  position: relative;
  margin-top: 40px;
  margin-bottom: 15px;
}
header .menu-box .menu-list .firstItem .second-box .second-container .right .product-item .item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .menu-box .menu-list .language {
  display: none;
  margin-top: 50px;
  padding: 0 5%;
}
header .menu-box .menu-list .language .language-click {
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
}
header .menu-box .menu-list .language a {
  margin-right: 10px;
}
header .menu-box .menu-list .language img {
  width: 40px;
}
header .information {
  height: inherit;
  display: flex;
  align-items: center;
  margin-left: auto;
}
header .information .search img,
header .information .language img {
  width: 15px;
}
header .information .language {
  margin-left: 15px;
  display: flex;
  color: #9b9b9b;
  align-items: center;
  line-height: 1.8;
  cursor: pointer;
  position: relative;
  height: inherit;
}
header .information .language img {
  margin-right: 6px;
}
header .information .language .language-box {
  background: var(--dominant-color);
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: 80px;
  text-align: center;
}
header .information .language .language-box a {
  display: block;
  color: #fff;
  font-size: 12px;
  margin: 5px auto;
}
header .information .user {
  padding-left: 20px;
  margin-left: 20px;
  position: relative;
}
header .information .user::after {
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 15px;
  background: #717171;
  position: absolute;
}
header .information .user img {
  width: 16px;
}
/*首页*/
.section1 .line {
  position: absolute;
  right: 2vw;
  bottom: 60px;
  z-index: 5;
  width: 7px;
  height: 104px;
}
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
}
.banner .swiper-slide {
  height: 100vh;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .text {
  max-width: 1600px;
  width: 90%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 30%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.banner .text .title {
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 60px;
  color: #fff;
  font-family: Manrope-Bold;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.banner .text .summary {
  font-size: 30px;
  margin-bottom: 3%;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.banner .text .banner-more {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
  text-align: center;
}
.banner .text .banner-more .more {
  margin-left: auto;
  margin-right: auto;
}
.banner .swiper-slide-active .title {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.banner .swiper-slide-active .summary {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.banner .swiper-slide-active .banner-more {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}
.banner .swiper-horizontal > .swiper-pagination-bullets,
.banner .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 60px;
  width: 90%;
  max-width: 1720px;
  margin: auto;
  left: 0;
  right: 0;
  text-align: left;
}
.banner .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: transparent;
  opacity: 0.8;
  --swiper-pagination-bullet-width: 25px;
  --swiper-pagination-bullet-height: 25px;
  --swiper-pagination-bullet-horizontal-gap: 10px;
  position: relative;
}
.banner .swiper-pagination-bullet::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  opacity: 0.8;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-pagination-color: transparent;
  background: url('../images/img22.png') no-repeat center / 22px;
  opacity: 1;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: var(--dominant-color);
  opacity: 0;
}
.more {
  width: 200px;
  height: 54px;
  border: 1px solid #fff;
  border-radius: 27px;
  display: flex;
  align-items: center;
  padding: 0 35px;
  font-size: 16px;
  transition: all 0.5s;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  position: relative;
}
.more::after,
.more2::after {
  content: '→';
  position: absolute;
  right: 5px;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--dominant-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.5s;
  color: #fff;
  overflow: hidden;
}
.more:hover,
.more2:hover {
  border-color: var(--dominant-color);
  background: var(--dominant-color);
  color: #fff !important;
}
.more:hover::after,
.more2:hover::after {
  background: #fff;
  color: var(--dominant-color);
}
.more2 {
  margin: auto;
  position: relative;
  height: 44px;
  width: 44px;
}
.more2::after {
  right: 0;
  border: 1px solid #ccc;
  background: #fff;
  color: #ccc;
}
.more2:hover {
  background: none;
}
.more2:hover::after {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
  color: #fff;
}
.index-title {
  text-align: center;
  padding: 90px 0;
}
.index-title .title {
  font-size: 55px;
  color: #333;
  font-family: Manrope-Bold;
}
.index-title .summary {
  font-size: 18px;
  color: #837474;
}
#fp-nav.white ul li a span,
.fp-slidesNav.white ul li a span {
  background: #fff !important;
}
.section2 .sections {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section2 .sections .left .top-title .title {
  font-size: 40px;
  font-family: Manrope-Bold;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.section2 .sections .left .top-title .sub {
  font-size: 30px;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.section2 .sections .left .bottom {
  margin-top: 50px;
  max-width: 620px;
}
.section2 .sections .left .bottom .item {
  padding-left: 55px;
  position: relative;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.section2 .sections .left .bottom .item::before,
.section2 .sections .left .bottom .item::after {
  content: '';
  position: absolute;
  left: 0;
}
.section2 .sections .left .bottom .item::before {
  width: 1px;
  height: 100%;
  background: #eee;
  left: 5px;
  top: 20px;
}
.section2 .sections .left .bottom .item::after {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--dominant-color);
  left: 0;
  top: 20px;
  z-index: 1;
}
.section2 .sections .left .bottom .item .icon {
  height: 42px;
}
.section2 .sections .left .bottom .item .icon img {
  height: 100%;
  object-fit: contain;
}
.section2 .sections .left .bottom .item .title {
  font-size: 24px;
  font-family: Manrope-Bold;
  margin: 10px 0 6px;
}
.section2 .sections .left .bottom .item .summary {
  font-size: 16px;
  opacity: 0.6;
}
.section2 .sections .left .bottom .item:not(:last-child) {
  padding-bottom: 50px;
}
.section2 .sections .right {
  position: relative;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.section2 .sections .right .line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 750px;
  height: 750px;
}
.section2 .sections .right .line .line1,
.section2 .sections .right .line .line2,
.section2 .sections .right .line .line3,
.section2 .sections .right .line .line4,
.section2 .sections .right .line .line5,
.section2 .sections .right .line .line6 {
  position: absolute;
  width: 550px;
  height: 550px;
  border: 1px solid #ffa85a;
  box-sizing: content-box;
  animation: line1 6s infinite;
  border-radius: 10px;
}
.section2 .sections .right .line .line1 {
  animation-delay: 1s;
}
.section2 .sections .right .line .line2 {
  animation-delay: 2s;
}
.section2 .sections .right .line .line3 {
  animation-delay: 3s;
}
.section2 .sections .right .line .line4 {
  animation-delay: 4s;
}
.section2 .sections .right .line .line5 {
  animation-delay: 5s;
}
.section2 .sections .right .line .line6 {
  animation-delay: 6s;
}
.section2 .sections .right .line .img {
  border-radius: 10px;
  width: 554px;
  height: 554px;
  position: absolute;
  overflow: hidden;
}
.section2 .sections .right .line .img .imgs {
  animation: img 15s infinite;
}
.section2 .sections .right .line .img .play {
  position: absolute;
  top: auto;
  bottom: 10%;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  background: var(--dominant-color);
  border: 1px solid var(--dominant-color);
  width: 180px;
  height: 54px;
  border-radius: 27px;
  transition: all 0.5s;
}
.section2 .sections .right .line .img .play:hover {
  background: none;
  color: var(--dominant-color);
}
.section2 .sections .right .line .img .line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.section2 .sections .right .line .img .line .line1 {
  width: 615px;
  height: 615px;
  border: 1px solid #fe881f;
}
.section2 .sections .right .line::after {
  content: '';
  position: absolute;
  background: url('../images/img7.png') no-repeat center right;
  top: 0;
  width: 652px;
  height: 734px;
  z-index: -1;
  right: -25%;
}
.section.section2.active .top-title .title {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}
.section.section2.active .top-title .sub {
  transition-delay: 0.9s;
  transform: translateY(0);
  opacity: 1;
}
.section.section2.active .left .bottom .item {
  transform: translateY(0);
  opacity: 1;
}
.section.section2.active .left .bottom .item:nth-of-type(1) {
  transition-delay: 1.1s;
}
.section.section2.active .left .bottom .item:nth-of-type(2) {
  transition-delay: 1.3s;
}
.section.section2.active .left .bottom .item:nth-of-type(3) {
  transition-delay: 1.5s;
}
.section.section2.active .right {
  transition-delay: 0.7s;
  transform: translateY(0);
  opacity: 1;
}
@keyframes line1 {
  0% {
    opacity: 1;
    padding: 0;
  }
  /*25% {
    opacity: 0;
  }*/
  /*50% {
    opacity: 0.5;
  }*/
  /*75% {
    opacity: 1;
  }*/
  100% {
    opacity: 0;
    padding: 10%;
  }
}
@media screen and (max-width: 768px) {
  @keyframes line1 {
    0% {
      opacity: 1;
      padding: 0;
    }
    /*25% {
      opacity: 0;
    }*/
    /*50% {
      opacity: 0.5;
    }*/
    /*75% {
      opacity: 1;
    }*/
    100% {
      opacity: 0;
      padding: 20%;
    }
  }
}
@keyframes img {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.section3 {
  position: relative;
}
.section3 .container-box-button {
  display: none;
}
.section3 .big-swiper {
  width: 100%;
}
.section3 .big-swiper .swiper-slide {
  height: 100vh;
}
.section3 .big-swiper .swiper-slide .img {
  height: 100%;
}
.section3 .big-swiper .swiper-slide .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.section3 .big-swiper .swiper-slide .text {
  position: absolute;
  top: 24%;
  left: 0;
  right: 0;
  height: fit-content;
  color: #fff;
  transform: translateY(100px);
  transition: all 1s;
  opacity: 0;
  text-align: center;
}
.section3 .big-swiper .swiper-slide .text .top-title {
  font-size: 40px;
  font-family: Manrope-Bold;
}
.section3 .big-swiper .swiper-slide .text .sub {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 10px;
  font-family: Manrope-Bold;
}
.section3 .big-swiper .swiper-slide .text .summary {
  font-size: 16px;
}
.section3 .big-swiper .swiper-slide .text .container-box {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.section3 .big-swiper .swiper-slide .text .container-box .item {
  margin-right: 10px;
  width: calc((100% - 70px) / 8);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  flex-direction: column;
  padding: 50px 10px 80px;
  transition: all 0.5s;
  pointer-events: inherit;
}
.section3 .big-swiper .swiper-slide .text .container-box .item:last-child {
  margin-right: 0;
}
.section3 .big-swiper .swiper-slide .text .container-box .item.swiper-slide {
  height: auto;
}
.section3 .big-swiper .swiper-slide .text .container-box .item:hover {
  background: rgba(255, 255, 255, 0.2);
}
.section3 .big-swiper .swiper-slide .text .container-box .item .icon {
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
}
.section3 .big-swiper .swiper-slide .text .container-box .item .icon img {
  object-fit: contain;
}
.section3 .big-swiper .swiper-slide .text .container-box .item .title {
  font-size: 16px;
  position: absolute;
  top: 110px;
}
.section3 .small-swiper {
  position: absolute;
  top: auto;
  right: 0;
  left: 0;
  bottom: 10vh;
  margin: auto;
  z-index: 1;
  height: fit-content;
  width: fit-content;
}
.section3 .small-swiper .swiper-slide {
  width: 82px;
  height: 82px;
  border: 1px dashed #cdcdcd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.section3 .small-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  height: 1px;
  margin: auto;
  width: 30px;
  background: #cdcdcd;
}
.section3 .small-swiper .swiper-slide:last-child {
  margin-bottom: 0 !important;
}
.section3 .small-swiper .swiper-slide:last-child::after {
  display: none;
}
.section3 .small-swiper .swiper-slide .icon {
  background: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;
  position: relative;
  overflow: hidden;
}
.section3 .small-swiper .swiper-slide .icon::after {
  content: '';
  position: absolute;
  top: auto;
  bottom: -200%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: var(--dominant-color);
  border-radius: 50%;
  transition: all 0.5s;
}
.section3 .small-swiper .swiper-slide .icon img {
  width: 100%;
  height: 20px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.section3 .small-swiper .swiper-slide.swiper-slide-thumb-active .icon::after {
  bottom: 0;
}
.section3 .small-swiper .swiper-slide.swiper-slide-thumb-active .icon img {
  filter: grayscale(1) brightness(10);
}
.section.section3.active .text {
  opacity: 1;
  transition-delay: 0.7s;
  transform: translateY(0);
}
.section4 .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section4 .top .title {
  font-size: 40px;
  font-family: Manrope-Bold;
}
.section4 .top .summary {
  font-size: 16px;
  opacity: 0.6;
}
.section4 .top .more {
  color: rgba(0, 0, 0, 0.6);
  border-color: #e9e9e9;
}
.section4 .product {
  min-height: 50vh;
  margin-top: 5%;
}
.section4 .product .swiper-slide {
  transition: all 1s;
}
@media screen and (min-width: 769px) {
  .section4 .product .swiper-slide.swiper-slide-active {
    width: 40% !important;
    opacity: 1;
  }
}
.section4 .product .swiper-slide.swiper-slide-active .img {
  background: url('../images/img31.png') no-repeat center / contain;
}
.section4 .product .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .section4 .product .swiper-slide.swiper-slide-prev,
  .section4 .product .swiper-slide.swiper-slide-next {
    opacity: 0.4;
    width: 30% !important;
    margin-top: 4%;
  }
}
.section4 .product .swiper-slide.swiper-slide-prev .text,
.section4 .product .swiper-slide.swiper-slide-next .text {
  opacity: 0;
}
.section4 .product .swiper-slide.swiper-slide-prev:hover,
.section4 .product .swiper-slide.swiper-slide-next:hover {
  opacity: 1;
}
.section4 .product .swiper-slide.swiper-slide-prev:hover .text,
.section4 .product .swiper-slide.swiper-slide-next:hover .text {
  opacity: 1;
}
.section4 .product .swiper-slide:hover .more2::after {
  background: var(--dominant-color);
  color: #fff;
  border-color: var(--dominant-color);
}
.section4 .product .img {
  height: 0;
  padding-bottom: calc(3 / 7 * 100%);
}
.section4 .product .img img {
  position: absolute;
  height: 100%;
  object-fit: contain;
}
.section4 .product .text {
  display: flex;
  transition: all 0.5s;
  flex-direction: column;
  text-align: center;
  margin-top: 30px;
}
.section4 .product .text .title {
  font-size: 24px;
  font-family: Manrope-Bold;
}
.section4 .product .text .summary {
  font-size: 16px;
  opacity: 0.6;
  margin: 10px auto 30px;
  line-height: 1.6;
}
.section4 .product .swiper-button-prev,
.section4 .product .swiper-button-next {
  width: 44px;
  height: 44px;
  bottom: auto;
  top: 30%;
}
.section4 .product .swiper-button-prev::after,
.section4 .product .swiper-button-next::after {
  font-size: 16px;
}
.section4 .product .swiper-button-prev.more2::after {
  content: '←';
}
.section4 .product .swiper-button-next.more2::after {
  content: '→';
}
.section5 .sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  transition: 1s;
  transform: translateY(100px);
  opacity: 0;
}
.section5 .sections .item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.02);
  background: #fff;
}
.section5 .sections .item .img {
  height: 0;
  padding-bottom: calc(365 / 520 * 100%);
  position: relative;
}
.section5 .sections .item .img img {
  position: absolute;
}
.section5 .sections .item .text {
  padding: 2vw 20px;
  text-align: center;
}
.section5 .sections .item .text .title {
  font-size: 24px;
  font-family: Manrope-Bold;
}
.section5 .sections .item .text .summary {
  font-size: 16px;
  opacity: 0.6;
  margin: 10px auto 30px;
}
.section5 .sections .item .text .more {
  width: 44px;
  height: 44px;
  margin: auto;
  background: #fff;
  border: none;
  padding: 0;
}
.section5 .sections .item .text .more::after {
  background: #fff;
  border: 1px solid #cccccc;
  color: #cccccc;
  right: 0;
}
.section5 .sections .item:hover .text .more::after {
  background: var(--dominant-color);
  color: #fff;
  border-color: var(--dominant-color);
}
.section.section5.active .sections {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.section6 .img img {
  width: 100%;
}
.section6 .text {
  position: absolute;
  top: 0;
  bottom: 10%;
  margin: auto;
  width: 100%;
  height: fit-content;
}
.section6 .text .title {
  font-size: 40px;
  color: #fff;
  font-family: Manrope-Bold;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.section6 .text .summary {
  font-size: 16px;
  color: #fff;
  margin: 20px 0 50px;
  max-width: 780px;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.section6 .text .more-delay {
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.section6 .text .text-icon {
  max-width: 600px;
  justify-content: space-between;
  display: flex;
  margin-top: 50px;
  transition: all 1s;
  transform: translateY(100px);
  opacity: 0;
}
.section6 .text .text-icon .item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  width: calc((100% - 40px) / 3);
  padding: 40px 10px;
}
.section6 .text .text-icon .icon-img {
  width: 50px;
  height: 50px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .section6 .text .text-icon .icon-img {
    width: 40px;
    height: 40px;
  }
}
.section6 .text .text-icon .icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section6 .text .text-icon .titles {
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  margin-top: 10px;
}
.section.section6.active .text .title {
  opacity: 1;
  transition-delay: 0.7s;
  transform: translateY(0);
}
.section.section6.active .text .summary {
  opacity: 1;
  transition-delay: 0.9s;
  transform: translateY(0);
}
.section.section6.active .text .more-delay {
  opacity: 1;
  transition-delay: 1.1s;
  transform: translateY(0);
}
.section.section6.active .text .text-icon {
  opacity: 1;
  transition-delay: 1.3s;
  transform: translateY(0);
}
.section8 .tab-show {
  width: 100%;
  height: 100vh;
}
.section8 .tab-show .item {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}
.section8 .tab-show .item .title {
  color: #fff;
  font-size: 40px;
  font-family: Manrope-Bold;
  text-align: center;
  line-height: 1.3;
  margin-top: 15vh;
}
@media screen and (max-width: 1366px) {
  .section8 .tab-show .item .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .section8 .tab-show .item .title {
    font-size: 20px;
  }
}
.section8 .tab-show .item .summary {
  color: #fff;
  text-align: center;
  max-width: 80%;
  margin: auto;
  opacity: 0.6;
  font-size: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 1366px) {
  .section8 .tab-show .item .summary {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .section8 .tab-show .item .summary {
    font-size: 14px;
  }
}
.section8 .tab-show .item.active {
  opacity: 1;
}
.section8 .tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  position: absolute;
  bottom: 10vh;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .section8 .tabs {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section8 .tabs .item {
  border-radius: 20px;
  backdrop-filter: blur(20px);
  padding: 10% 20px;
  box-shadow: 0 0 10px 5px rgba(181, 181, 181, 0.1);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .section8 .tabs .item {
    padding: 10px;
  }
}
.section8 .tabs .item .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 1366px) {
  .section8 .tabs .item .icon {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .section8 .tabs .item .icon {
    margin-bottom: 6px;
    width: 20px;
    height: 20px;
  }
}
.section8 .tabs .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section8 .tabs .item .title {
  font-size: 20px;
  color: #fff;
  font-family: Manrope-Bold;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  .section8 .tabs .item .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .section8 .tabs .item .title {
    font-size: 12px;
  }
}
.section8 .tabs .item.active {
  background: #fff;
}
.section8 .tabs .item.active .icon img {
  filter: brightness(0);
}
.section8 .tabs .item.active .title {
  color: #000;
}
.section9 .box {
  height: fit-content;
  max-width: 600px;
  padding: 5%;
  margin-right: 0;
  margin-left: auto;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 10px 5px rgba(181, 181, 181, 0.1);
}
.section9 .box .text .title {
  color: #fff;
  font-size: 40px;
  font-family: Manrope-Bold;
  line-height: 1.3;
}
@media screen and (max-width: 1366px) {
  .section9 .box .text .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .section9 .box .text .title {
    font-size: 20px;
  }
}
.section9 .box .text .summary {
  color: #fff;
  opacity: 0.6;
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .section9 .box .text .summary {
    font-size: 14px;
  }
}
.section9 .box .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.section9 .box .items .item {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.section9 .box .items .item .icon {
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 768px) {
  .section9 .box .items .item .icon {
    width: 20px;
    height: 20px;
  }
}
.section9 .box .items .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section9 .box .items .item .title {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .section9 .box .items .item .title {
    font-size: 12px;
  }
}
.section9 .box .more {
  border-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  .section9 .box .more {
    width: 160px;
  }
}
.section10 .sections {
  width: 100%;
  max-width: 100%;
}
.section10 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1720px;
  margin: 0 auto 3%;
}
.section10 .top .title {
  font-size: 40px;
  font-family: Manrope-Bold;
  color: #000;
}
@media screen and (max-width: 1366px) {
  .section10 .top .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .section10 .top .title {
    font-size: 16px;
  }
}
.section10 .top .right .button {
  display: flex;
  align-items: center;
}
.section10 .top .right .button .button-left {
  margin-right: 20px;
  transform: rotate(180deg);
}
.section10 .top .right .button .more2 {
  cursor: pointer;
}
.section10 .top .right .button .more2::after {
  border: none;
  background: #dadada;
  color: #fff;
}
.section10 .top .right .button .more2:hover::after {
  background: var(--dominant-color);
}
.section10 .section10-box {
  width: 90%;
  max-width: 1720px;
  margin: auto;
}
.section10 .section10-box .swiper {
  overflow: inherit;
  padding-bottom: 40px;
}
.section10 .section10-box .swiper .swiper-slide {
  height: auto;
}
.section10 .section10-box .swiper .swiper-slide .img {
  transition: all 0.5s;
  overflow: hidden;
  border-radius: 10px;
}
.section10 .section10-box .swiper .swiper-slide .text {
  position: absolute;
  top: 20px;
  left: 20px;
  height: calc(100% - 40px);
  width: 40%;
  border-radius: 10px;
  backdrop-filter: blur(20px);
  padding: 5% 30px;
  color: #fff;
  box-shadow: 0 0 10px 5px rgba(181, 181, 181, 0.1);
}
.index-case.section10 .section10-box .swiper .swiper-slide {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .section10 .section10-box .swiper .swiper-slide .text {
    width: 80%;
  }
}
.section10 .section10-box .swiper .swiper-slide .text .time {
  font-size: 16px;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .section10 .section10-box .swiper .swiper-slide .text .time {
    font-size: 12px;
  }
}
.section10 .section10-box .swiper .swiper-slide .text .title {
  font-size: 24px;
  font-family: Manrope-Bold;
  color: #fff;
}
@media screen and (max-width: 1366px) {
  .section10 .section10-box .swiper .swiper-slide .text .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .section10 .section10-box .swiper .swiper-slide .text .title {
    font-size: 12px;
  }
}
.section10 .section10-box .swiper .swiper-slide .view {
  font-size: 16px;
  opacity: 0.6;
  text-decoration: underline;
  position: absolute;
  bottom: 5%;
  left: 30px;
}
@media screen and (max-width: 768px) {
  .section10 .section10-box .swiper .swiper-slide .view {
    font-size: 12px;
  }
}
.section10 .section10-box .swiper .swiper-slide:hover img {
  transform: scale(1.1);
}
.section10 .section10-box .swiper .swiper-pagination-progressbar {
  bottom: 0;
  top: auto;
  height: 2px;
}
.section10 .section10-box .swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--dominant-color));
}
.section11 .sections {
  display: flex;
  justify-content: space-between;
}
.section11 .sections .left {
  flex-basis: 45%;
}
@media screen and (max-width: 768px) {
  .section11 .sections .left {
    flex-basis: 100%;
  }
}
.section11 .sections .left .title {
  font-size: 40px;
  color: #000;
  font-family: Manrope-Bold;
  margin-bottom: 20%;
}
@media screen and (max-width: 1366px) {
  .section11 .sections .left .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 1366px) {
  .section11 .sections .left .title {
    font-size: 18px;
  }
}
.section11 .sections .left .footer-code {
  display: flex;
}
.section11 .sections .left .footer-code a {
  font-size: 20px;
  opacity: 0.5;
  margin-right: 20px;
}
@media screen and (max-width: 1366px) {
  .section11 .sections .left .footer-code a {
    font-size: 14px;
  }
}
.section11 .sections .left label {
  display: block;
  position: relative;
  margin: 30px 0;
}
.section11 .sections .left label input {
  height: 70px;
  border: 1px solid #eee;
  border-radius: 10px;
}
@media screen and (max-width: 1366px) {
  .section11 .sections .left label input {
    height: 50px;
  }
}
.section11 .sections .left label button {
  color: #fff;
  background: #000;
  position: absolute;
  right: 0;
  top: 0;
  height: 70px;
  font-family: Manrope-Bold;
  font-size: 20px;
  border-radius: 10px;
  width: 200px;
}
@media screen and (max-width: 1366px) {
  .section11 .sections .left label button {
    font-size: 12px;
    width: 120px;
    height: 50px;
  }
}
.section11 .sections .left .check {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.section11 .sections .left .check span {
  color: #000;
  opacity: 0.6;
  font-size: 16px;
  flex-basis: calc(100% - 18px);
}
@media screen and (max-width: 1366px) {
  .section11 .sections .left .check span {
    font-size: 12px;
  }
}
.section11 .sections .right {
  flex-basis: 40%;
}
@media screen and (max-width: 768px) {
  .section11 .sections .right {
    display: none;
  }
}
.footer {
  padding: 4vh 0 0;
  background: #353535;
}
.footer .footer-top {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .footer .footer-top {
    flex-direction: column;
  }
}
.footer .footer-top .footer-menu {
  color: #fff;
  display: flex;
  padding-bottom: 100px;
  flex-basis: calc(100% - 440px);
  justify-content: space-between;
  max-width: 1000px;
}
.footer .footer-top .footer-menu .item {
  margin-right: 1%;
}
.footer .footer-top .footer-menu .item .item-title {
  margin-bottom: 20px;
  font-size: 18px;
  display: block;
  color: #fff;
  font-family: Manrope-Bold;
  line-height: 1;
}
.footer .footer-top .footer-menu .item .item-title:hover {
  text-decoration: underline;
}
.footer .footer-top .footer-menu .item .line {
  width: 120px;
  height: 1px;
  background: #3b3b3b;
  margin-bottom: 20px;
}
.footer .footer-top .footer-menu .item .item-box a {
  display: block;
  color: #fff;
  transition: all 0.5s;
  font-size: 14px;
  margin-bottom: 4px;
  opacity: 0.6;
}
.footer .footer-top .footer-menu .item .item-box a:hover {
  opacity: 1;
}
.footer .footer-top .footer-messages {
  flex-basis: 420px;
}
@media screen and (max-width: 1280px) {
  .footer .footer-top .footer-messages {
    flex-basis: auto;
  }
}
.footer .footer-top .footer-messages .title {
  font-size: 18px;
  color: #fff;
  font-family: Manrope-Bold;
  text-align: right;
  margin-bottom: 30px;
  line-height: 1;
}
.footer .footer-top .footer-messages label {
  position: relative;
}
.footer .footer-top .footer-messages label input {
  background: #515151;
  border-radius: 4px;
  border: none;
  height: 50px;
  color: #fff;
  font-size: 14px;
}
.footer .footer-top .footer-messages label input::placeholder {
  color: #fff;
}
.footer .footer-top .footer-messages label button {
  position: absolute;
  right: 0;
  width: 110px;
  background: var(--dominant-color);
  height: 50px;
  border: none;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
}
.footer .footer-top .footer-messages .footer-code {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
}
.footer .footer-top .footer-messages .footer-code .item {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  position: relative;
}
.footer .footer-top .footer-messages .footer-code .item:last-child {
  margin-right: 0;
}
.footer .footer-top .footer-messages .footer-code .item .fab {
  color: #919699;
  font-size: 20px;
}
.footer .footer-top .footer-messages .footer-code .item:hover {
  border-color: var(--dominant-color);
}
.footer .footer-top .footer-messages .footer-code .item:hover .fab {
  color: var(--dominant-color);
}
.footer .footer-top .footer-messages .footer-code .item:hover .show-code {
  display: block;
  width: 100px;
  height: 100px;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  position: absolute;
}
.footer .footer-top .footer-messages .footer-code .item .show-code {
  display: none;
}
.footer .footer-bottom .footer-logo {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}
.footer .footer-bottom .footer-logo img {
  width: 75px;
}
.footer .footer-bottom .copy-right {
  text-align: center;
  color: #8d8d8d;
  padding: 30px 0;
  display: flex;
  justify-content: flex-start;
}
.footer .footer-bottom .copy-right .item {
  color: #fff;
  opacity: 0.6;
  padding-right: 20px;
  margin-right: 20px;
  position: relative;
}
.footer .footer-bottom .copy-right .item:last-child::after {
  display: none;
}
.footer .footer-bottom .copy-right .item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 16px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #eee;
  opacity: 0.3;
}
.footer .footer-bottom .copy-right a.item {
  color: #fff;
  opacity: 0.6;
  transition: all 0.5s;
}
.footer .footer-bottom .copy-right a.item:hover {
  opacity: 1;
}
.goTop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  right: 5%;
  bottom: 10%;
  transition: all 0.5s;
  z-index: 1000;
  display: none;
}
/*内页*/
/*内页通用*/
.page-title-box {
  color: #000;
  margin-bottom: 60px;
}
.page-title-box .page-title {
  font-size: 40px;
  font-family: Manrope-Bold;
  text-align: center;
  line-height: 1.3;
}
.page-title-box .page-summary {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  opacity: 0.6;
  margin-top: 10px;
}
.pageBanner {
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 700px;
}
.pageBanner .page-title,
.pageBanner .page-summary {
  color: #fff;
}
.pageBanner .banner-box {
  width: 100%;
  height: 385px;
  display: flex;
}
.pageBanner .banner-box .img {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}
.pageBanner .banner-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageBanner .banner-box .text {
  position: absolute;
  padding: 70px 50px 70px 50px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  width: 100%;
  text-align: center;
  color: #fff;
}
.pageBanner .banner-box .text .title {
  font-size: 46px;
  margin-bottom: 10px;
  font-family: SourceHanSansCN-Heavy;
}
.pageBanner .banner-box .text .summary {
  font-size: 18px;
  opacity: 0.4;
  font-family: SourceHanSansCN-Light;
}
.page-menu {
  background: #303030;
}
.page-menu .section1600 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.page-menu a {
  color: #9b9b9b;
  font-size: 14px;
  height: 60px;
  margin-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  transition: all 0.5s;
  position: relative;
}
.page-menu a.active,
.page-menu a:hover {
  color: #fff;
}
.locations {
  padding: 0 30px;
}
.location {
  padding-left: 20px;
  display: flex;
  align-items: center;
  color: #aaaaaa;
  height: 70px;
  background: url('../images/icon/home.png') no-repeat center left / 16px;
}
.location a {
  color: #000;
  line-height: 2.5;
  font-size: 14px;
  opacity: 0.6;
  margin: 0 8px;
}
.location a:hover {
  text-decoration: underline;
}
.page-search {
  margin-bottom: 40px;
}
.page-search label {
  position: relative;
}
.page-search label input {
  height: 50px;
}
.page-search label button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: transparent;
  height: 50px;
  width: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-search label button img {
  width: 24px;
  height: 23px;
}
/*翻页*/
.pager {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 60px;
}
.pager .number {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 10px;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s;
  font-size: 18px;
  width: 70px;
  height: 70px;
  border: 1px solid #d9d9d9;
}
.pager .number:hover,
.pager .number.active {
  background: var(--dominant-color);
  transition: all 0.5s;
  color: #fff;
  border-color: var(--dominant-color);
}
.pager .number.prev,
.pager .number.next {
  font-size: 36px;
}
.pagePadding {
  padding: 120px 0 180px;
}
.pagePaddingT {
  padding: 120px 0 0;
}
/*新闻资讯*/
.news-box1 .news-top {
  margin-bottom: 60px;
}
.news-box1 .news-top .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  max-height: 600px;
}
.news-box1 .news-top .swiper-slide .text {
  position: absolute;
  top: 4vw;
  left: 4vw;
  max-width: 700px;
  padding: 20px;
}
.news-box1 .news-top .swiper-slide .text .time {
  font-size: 16px;
  font-family: Manrope-Bold;
}
.news-box1 .news-top .swiper-slide .text .title {
  font-family: Manrope-Bold;
  font-size: 30px;
  line-height: 1.2;
  transition: all 0.5s;
}
.news-box1 .news-top .swiper-slide .text .summary {
  font-size: 16px;
  opacity: 0.6;
  margin-top: 40px;
  margin-bottom: 40px;
}
.news-box1 .news-top .swiper-slide .text .more2 {
  margin-left: 0;
}
.news-box1 .news-top .swiper-slide .text .more2::after {
  background: none;
}
.news-box1 .news-top .swiper-slide:hover .text .title {
  color: var(--dominant-color);
}
.news-box1 .news-top .swiper-slide:hover .text .more2::after {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
  color: #fff;
}
.news-box1 .news-top .swiper-pagination {
  position: initial;
}
.news-box1 .news-top .swiper-pagination .swiper-pagination-bullet {
  margin: 25px 10px;
}
.news-box1 .news-top .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}
.news-box1 .news-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: auto;
  border-top: 1px solid #eee;
}
.news-box1 .news-box .item {
  border-bottom: 1px solid #eee;
  padding: 30px 0;
  color: #000;
  display: flex;
  justify-content: space-between;
}
.news-box1 .news-box .item .imgBox {
  flex-basis: 400px;
  height: 240px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-box1 .news-box .item .text {
  flex-basis: calc(100% - 490px);
  color: #000;
}
.news-box1 .news-box .item .text .time {
  font-size: 16px;
  opacity: 0.6;
  margin: 20px 0 10px;
}
.news-box1 .news-box .item .text .title {
  font-size: 24px;
  font-family: Manrope-Bold;
  line-height: 1.2;
  transition: all 0.5s;
  margin-bottom: 20px;
}
.news-box1 .news-box .item .text .summary {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.6;
}
.news-box1 .news-box .item .text .news-more {
  margin-top: 40px;
  opacity: 0.6;
  font-size: 16px;
  text-decoration: underline;
  transition: all 0.5s;
  display: block;
}
.news-box1 .news-box .item:hover .title,
.news-box1 .news-box .item:hover .news-more {
  color: var(--dominant-color);
}
.news-detail {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.news-detail .news-text {
  flex-basis: 30%;
  max-width: 380px;
  margin-right: 20px;
}
.news-detail .news-text .items {
  border-top: 2px solid #000;
  margin-bottom: 120px;
}
.news-detail .news-text .items .item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}
.news-detail .news-text .items .item .key {
  opacity: 0.6;
}
.news-detail .news-text .items a {
  display: block;
  font-family: Manrope-Bold;
  transition: all 0.5s;
}
.news-detail .news-text .items a:hover {
  color: var(--dominant-color);
}
.news-detail .news-detail-container {
  flex-basis: 70%;
  max-width: 1070px;
}
.news-detail .news-detail-container .news-detail-title {
  margin-bottom: 30px;
}
.news-detail .news-detail-container .news-detail-title .title {
  margin-top: -10px;
  font-size: 40px;
  font-family: Manrope-Bold;
  text-align: left;
  margin-bottom: 40px;
  line-height: 1.4;
  border-bottom: 1px solid #eee;
  padding-bottom: 40px;
}
.news-detail .news-detail-container .news-detail-box {
  font-size: 16px;
  color: #666;
  line-height: 2.2;
  min-height: 300px;
}
.news-detail .news-detail-container .news-detail-box img {
  max-width: 100% !important;
  height: auto !important;
  width: 100% !important;
}
/*关于我们*/
.about .items {
  height: calc(100vh - 75px);
  position: relative;
}
.about .items .img {
  height: 100%;
}
.about .items .img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.about .items .text {
  max-width: 1600px;
  width: 90%;
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  z-index: 1;
}
.about .items .text .page-title-box .page-title {
  color: #fff;
}
.about .items .text .page-title-box .page-sub {
  font-size: 24px;
  color: var(--dominant-color);
  font-family: Manrope-Bold;
  text-align: center;
  margin-top: 50px;
}
.about .items .text .page-title-box .page-summary {
  color: #fff;
}
.about .items .text .list-box {
  display: grid;
  grid-gap: 10px;
}
.about .items .text .list-box.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.about .items .text .list-box.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.about .items .text .list-box .list {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 50px 30px;
  color: #fff;
}
.about .items .text .list-box .list .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
}
.about .items .text .list-box .list .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about .items .text .list-box .list .title {
  font-size: 24px;
  font-family: Manrope-Bold;
  margin-bottom: 10px;
  text-align: center;
}
.about .items .text .list-box .list .summary {
  font-size: 16px;
  text-align: center;
  opacity: 0.6;
}
.about .items .text .container-box-swiper {
  margin-bottom: 20%;
}
.about .items .text .container-box-swiper .container-box-button {
  display: none;
}
.about .items .text .container-box-swiper .container-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.about .items .text .container-box-swiper .container-box .item {
  width: calc((100% - 70px) / 8);
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 50px 20px 70px;
  transition: all 0.5s;
}
.about .items .text .container-box-swiper .container-box .item:last-child {
  margin-right: 0;
}
.about .items .text .container-box-swiper .container-box .item .icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 25px;
}
.about .items .text .container-box-swiper .container-box .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about .items .text .container-box-swiper .container-box .item .title {
  text-align: center;
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 110px;
  width: 100%;
  left: 0;
}
.about .items .text .container-box-swiper .container-box .item:hover {
  background: rgba(255, 255, 255, 0.3);
}
.about .train-box {
  max-width: 1800px;
  margin: auto;
  position: relative;
}
.about .train-box .swiper {
  max-width: calc(100% - 200px);
  padding: 30px 5px;
}
.about .train-box .swiper .swiper-slide {
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.05);
}
.about .train-box .swiper .swiper-slide .imgBox {
  border-radius: 10px 10px 0 0;
  height: 0;
  padding-bottom: calc(280 / 520 * 100%);
}
.about .train-box .swiper .swiper-slide .imgBox img {
  position: absolute;
}
.about .train-box .swiper .swiper-slide .text {
  padding: 40px 20px;
  text-align: center;
}
.about .train-box .swiper .swiper-slide .text .title {
  font-family: Manrope-Bold;
  font-size: 24px;
}
.about .train-box .swiper .swiper-slide .text .summary {
  color: #666;
  font-size: 16px;
  margin-top: 10px;
}
.about .train-box .swiper-button-prev,
.about .train-box .swiper-button-next {
  width: 44px;
  height: 44px;
}
.about .train-box .swiper-button-prev::after,
.about .train-box .swiper-button-next::after {
  font-size: 16px;
}
.about .train-box .swiper-button-prev {
  left: 30px;
}
.about .train-box .swiper-button-prev::after {
  content: '←';
}
.about .train-box .swiper-button-next {
  right: 30px;
}
.about .train-box .swiper-button-next::after {
  content: '→';
}
@media screen and (max-width: 768px) {
}
.about .mission .text-box {
  padding: 8% 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about .mission .text-box {
    flex-direction: column;
  }
}
.about .mission .text-box .text {
  flex-basis: 40%;
}
@media screen and (max-width: 768px) {
  .about .mission .text-box .text {
    flex-basis: 100%;
  }
}
.about .mission .text-box .text .title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  font-family: Manrope-Bold;
}
@media screen and (max-width: 768px) {
  .about .mission .text-box .text .title {
    font-size: 24px;
  }
}
.about .mission .text-box .text .summary {
  margin-top: 50px;
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .about .mission .text-box .text .summary {
    margin-top: 20px;
  }
}
.about .mission .text-box .text .text-img {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .about .mission .text-box .text .text-img {
    margin-top: 20px;
  }
}
.about .mission .text-box .number {
  flex-basis: 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .about .mission .text-box .number {
    width: 100%;
    margin-bottom: 50px;
    grid-gap: 20px;
  }
}
.about .mission .text-box .number .item {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30% 20px;
  border-radius: 20px;
}
.about .mission .text-box .number .item:nth-child(1) {
  background: url(../images/img122.png) no-repeat right bottom;
}
.about .mission .text-box .number .item:nth-child(2) {
  background: url(../images/img123.png) no-repeat right bottom;
}
.about .mission .text-box .number .item .num-box {
  display: flex;
  align-items: flex-end;
  color: var(--dominant-color);
  font-size: 16px;
}
.about .mission .text-box .number .item .num-box .num {
  font-size: 64px;
  line-height: 1;
  margin-right: 10px;
  font-family: Manrope-Bold;
}
@media screen and (max-width: 768px) {
  .about .mission .text-box .number .item .num-box .num {
    font-size: 24px;
  }
}
.about .mission .img .swiper-slide {
  max-height: 860px;
}
.about .mission .img img {
  width: 100%;
}
.about .mission .img .swiper-button-prev,
.about .mission .img .swiper-button-next {
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.about .mission .img .swiper-button-prev::after,
.about .mission .img .swiper-button-next::after {
  font-size: 14px;
  color: var(--dominant-color);
}
/*support*/
.support .img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 120px;
}
.support .img img {
  transition: all 0.5s;
}
.support .img:hover img {
  transform: scale(1.1);
}
.support .faq-box,
.support .download-box {
  display: flex;
  flex-direction: column;
}
.support .faq-box .item,
.support .download-box .item {
  background: #f7f7f7;
  margin-bottom: 20px;
}
.support .faq-box .item .title,
.support .download-box .item .title {
  font-size: 20px;
  padding: 20px 50px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-family: Manrope-Bold;
}
.support .faq-box .item .title .key,
.support .download-box .item .title .key {
  flex-basis: calc(100% - 300px);
  font-family: Manrope-Bold;
  margin-right: auto;
}
.support .faq-box .item .title .value,
.support .download-box .item .title .value {
  display: flex;
  justify-content: space-between;
  flex-basis: 220px;
  align-items: center;
}
.support .faq-box .item .title .value .download-button,
.support .download-box .item .title .value .download-button {
  color: var(--dominant-color);
  opacity: 0.6;
  font-size: 16px;
  background: url('../images/icon/download.png') no-repeat center right / 27px;
  padding-right: 40px;
  filter: grayscale(1) brightness(0.5);
  transition: all 0.5s;
}
.support .faq-box .item .title .value .download-button:hover,
.support .download-box .item .title .value .download-button:hover {
  filter: none;
}
.support .faq-box .item .title .value i,
.support .download-box .item .title .value i {
  background: #c6c6c6 url('../images/icon/triangle2.png') no-repeat center / 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transition: all 0.5s;
  transform: rotate(-90deg);
  margin-left: auto;
}
.support .faq-box .item .title::before,
.support .download-box .item .title::before {
  content: 'Q: ';
  margin-right: 4px;
}
.support .faq-box .item .title::after,
.support .download-box .item .title::after {
  content: '';
  width: 3px;
  height: 23px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--dominant-color);
  opacity: 0;
  transition: all 0.5s;
}
.support .faq-box .item .summary,
.support .download-box .item .summary {
  border-top: 1px solid #eee;
  font-size: 16px;
  color: #666;
  display: none;
  padding: 30px 50px 100px;
}
.support .faq-box .item .summary .value,
.support .download-box .item .summary .value {
  display: flex;
}
.support .faq-box .item .summary .value::before,
.support .download-box .item .summary .value::before {
  content: 'A: ';
  margin-right: 4px;
}
.support .faq-box .item.active .title i,
.support .download-box .item.active .title i {
  transform: rotate(0deg);
  background-color: var(--dominant-color);
}
.support .faq-box .item.active .title::after,
.support .download-box .item.active .title::after {
  opacity: 1;
}
.support .download-box .item .title::before {
  display: none;
}
.support .warranty-box .item .item-top {
  display: flex;
  justify-content: space-between;
}
.support .warranty-box .item .item-top .left {
  flex-basis: 30%;
}
.support .warranty-box .item .item-top .left .page-title {
  text-align: left;
}
.support .warranty-box .item .item-top .right {
  flex-basis: calc(70% - 100px);
  max-width: 900px;
}
.support .warranty-box .item .item-top .right .summary {
  font-size: 16px;
  color: #666;
}
.support .warranty-box .item .item-top .right .list-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-top: 30px;
}
.support .warranty-box .item .item-top .right .list-box .list {
  background: #f6f6f6;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 30px 30px;
  min-height: 190px;
}
.support .warranty-box .item .item-top .right .list-box .list .icon {
  height: 40px;
  margin-bottom: 15px;
}
.support .warranty-box .item .item-top .right .list-box .list .icon img {
  height: 100%;
  object-fit: contain;
}
.support .warranty-box .item .item-top .right .list-box .list .title {
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
}
.support .warranty-box .item .item-bottom {
  margin-top: 70px;
}
.support .warranty-box .item .item-bottom .img {
  margin-bottom: 0;
}
.support .warranty-box .item:not(:first-child) {
  margin-top: 140px;
}
.support .warranty-button {
  width: 220px;
  height: 54px;
  background: var(--dominant-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 27px;
  border: 1px solid var(--dominant-color);
  transition: all 0.5s;
}
.support .warranty-button:hover {
  background: #fff;
  color: var(--dominant-color);
}
.support .support-box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.support .support-box .item {
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 60px 20px 80px;
}
.support .support-box .item .icon {
  margin-bottom: 20px;
  filter: grayscale(1) brightness(0.3);
  transition: all 0.5s;
}
.support .support-box .item .text .title {
  font-size: 24px;
  font-family: Manrope-Bold;
  transition: all 0.5s;
}
.support .support-box .item .text .summary {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
}
.support .support-box .item:hover .icon {
  filter: none;
}
.support .support-box .item:hover .text .title {
  color: var(--dominant-color);
}
.support .support_img {
  margin-top: 160px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .support .support_img {
    margin-top: 50px;
  }
}
.support .support_img .section1600 {
  padding: 5% 0 8%;
}
.support .support_img .section1600 .text {
  font-size: 1.875vw;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}
.support .support_img .section1600 .map-box {
  max-width: 1162px;
  margin: auto;
  position: relative;
}
.support .support_img .section1600 .map-box .map-item {
  position: absolute;
  cursor: pointer;
}
.support .support_img .section1600 .map-box .map-item img {
  transition: all 0.5s;
  transform: scale(0.9);
}
@media screen and (max-width: 768px) {
  .support .support_img .section1600 .map-box .map-item img {
    width: 20px;
  }
}
.support .support_img .section1600 .map-box .map-item:hover img {
  transform: scale(1);
}
.support .support_img .section1600 .map-box .map-item .map-on {
  position: relative;
}
.support .support_img .section1600 .map-box .map-item .map-on .on-text {
  position: absolute;
  font-size: 16px;
}
.support .support_img .section1600 .map-box .map-item .map-text {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  bottom: 60px;
  margin: auto;
  width: 300px;
  display: none;
  z-index: 2;
}
.support .support_img .section1600 .imgClick {
  width: 55%;
  cursor: pointer;
}
.support .support_img .section1600 .imgClick img {
  width: 100%;
}
.support .service-box-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.support .service-box-top .item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.05);
}
.support .service-box-top .item .imgBox {
  height: 0;
  padding-bottom: calc(365/790 * 100%);
}
.support .service-box-top .item .imgBox img {
  position: absolute;
}
.support .service-box-top .item .text-box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .support .service-box-top .item .text-box {
    padding: 20px;
  }
}
.support .service-box-top .item .text {
  display: flex;
  justify-content: space-between;
  padding: 0;
  align-items: center;
}
.support .service-box-top .item .text .title .key {
  font-size: 16px;
  color: #666;
}
.support .service-box-top .item .text .title .value {
  font-size: 24px;
  color: #000;
  font-family: Manrope-Bold;
}
.support .service-box-top .item .text .icon {
  width: 40px;
  height: 40px;
}
.support .service-box-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 920px;
}
.support .service-box-bottom .page-title,
.support .service-box-bottom .page-summary {
  color: #fff;
}
.support .service-box-bottom .service-box-bottom-box {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.support .service-box-bottom .service-box-bottom-box .item {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 80px 20px;
}
.support .service-box-bottom .service-box-bottom-box .item .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 30px;
}
.support .service-box-bottom .service-box-bottom-box .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.support .service-box-bottom .service-box-bottom-box .item .title {
  font-family: Manrope-Bold;
  font-size: 24px;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
.support .service-box-bottom .join-button {
  width: 300px;
  height: 54px;
  background: #f77435;
  border: 1px solid #f77435;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  border-radius: 27px;
  margin: 60px auto 0;
  transition: all 0.5s;
}
.support .service-box-bottom .join-button:hover {
  background: none;
  color: #f77435;
}
.slide-more {
  width: 160px;
  height: 54px;
  border-radius: 27px;
  display: flex;
  justify-content: center;
  border: 1px solid var(--dominant-color);
  align-items: center;
  margin: 60px auto 0;
  font-size: 16px;
  color: var(--dominant-color);
  transition: all 0.5s;
  cursor: pointer;
}
.slide-more:hover {
  background: var(--dominant-color);
  color: #fff;
}
.assist-tools .assist-tools-item {
  display: flex;
  align-items: center;
}
.assist-tools .assist-tools-item .section1600 {
  display: flex;
  align-items: center;
}
.assist-tools .assist-tools-item .section1600 .left {
  flex-basis: calc(860 / 1600 * 100%);
}
.assist-tools .assist-tools-item .section1600 .right {
  flex-basis: calc(620 / 1600 * 100%);
}
.assist-tools .assist-tools-item .section1600 .right .page-title-box .page-title,
.assist-tools .assist-tools-item .section1600 .right .page-title-box .page-summary {
  text-align: left;
}
.assist-tools .assist-tools-item .section1600 .right .page-title-box .page-title.colorW,
.assist-tools .assist-tools-item .section1600 .right .page-title-box .page-summary.colorW {
  color: #fff;
}
.assist-tools .assist-tools-item .section1600 .right .app {
  display: flex;
}
.assist-tools .assist-tools-item .section1600 .right .app a {
  margin-right: 20px;
  display: inline-block;
  border-radius: 4px;
  overflow: hidden;
}
.assist-tools .assist-tools-item .section1600 .right .app a img {
  height: 45px;
  object-fit: contain;
}
.assist-tools .assist-tools-item .section1600 .right .assist-icon {
  display: flex;
}
.assist-tools .assist-tools-item .section1600 .right .assist-icon.bg-1 .icon-item {
  background: rgba(255, 255, 255, 0.1);
}
.assist-tools .assist-tools-item .section1600 .right .assist-icon.bg-1 .icon-item .title {
  color: #fff;
}
.assist-tools .assist-tools-item .section1600 .right .assist-icon.bg-2 .icon-item {
  background: rgba(164, 164, 164, 0.1);
}
.assist-tools .assist-tools-item .section1600 .right .assist-icon .icon-item {
  padding: 60px 80px;
  border-radius: 10px;
  margin-right: 20px;
}
.assist-tools .assist-tools-item .section1600 .right .assist-icon .icon-item .icon {
  width: 40px;
  height: 40px;
  margin: auto;
}
.assist-tools .assist-tools-item .section1600 .right .assist-icon .icon-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.assist-tools .assist-tools-item .section1600 .right .assist-icon .icon-item .title {
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
}
.assist-tools .assist-tools-item:nth-of-type(2n - 1) .section1600 {
  flex-direction: row-reverse;
}
.assist-tools .items .text .list-box .list {
  padding: 70px 30px;
  background: rgba(255, 255, 255, 0.1);
}
.assist-tools .items .text .list-box .list .title {
  font-size: 20px;
}
.assist-tools-down-box {
  max-width: 1100px;
  margin: auto;
}
.assist-tools-down-box .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.assist-tools-down-box .item .title {
  font-size: 20px;
  font-family: Manrope-Bold;
}
.assist-tools-down-box .item .download {
  color: var(--dominant-color);
  opacity: 0.6;
  font-size: 16px;
  background: url('../images/icon/download.png') no-repeat center right / 27px;
  padding-right: 40px;
  filter: grayscale(1) brightness(0.5);
  transition: all 0.5s;
}
.assist-tools-down-box .item:hover .download {
  filter: none;
}
/*download*/
.download .download-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.download .download-top .download-menu {
  flex-basis: calc(100% - 350px);
}
.download .download-top .download-menu a {
  font-size: 20px;
  color: #000;
  transition: all 0.5s;
  position: relative;
  padding-bottom: 10px;
  margin-right: 4vw;
}
.download .download-top .download-menu a:last-child {
  margin-right: 0;
}
.download .download-top .download-menu a.active,
.download .download-top .download-menu a:hover {
  color: var(--dominant-color);
}
.download .download-top .download-menu a.active::after,
.download .download-top .download-menu a:hover::after {
  width: 100%;
}
.download .download-top .download-menu a::after {
  content: '';
  height: 1px;
  width: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
  position: absolute;
  background: var(--dominant-color);
}
.download .download-top .download-search {
  flex-basis: 310px;
}
.download .download-top .download-search label {
  position: relative;
  display: block;
}
.download .download-top .download-search label input {
  border: none;
  border-bottom: 1px solid #000;
  padding-left: 0;
  height: 50px;
  text-indent: 0;
}
.download .download-top .download-search label button {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: none;
  padding: 0;
}
.download .download-top .download-search label button img {
  width: 20px;
  filter: brightness(0.5);
}
.download .download-bottom {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.download .download-bottom .item {
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.05);
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}
.download .download-bottom .item .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  filter: grayscale(1) brightness(0.5);
  transition: all 0.5s;
}
.download .download-bottom .item .title {
  font-size: 24px;
  font-family: Manrope-Bold;
  transition: all 0.5s;
}
.download .download-bottom .item .download {
  margin-top: 30px;
  font-size: 16px;
  opacity: 0.6;
  background: url('../images/icon/download3.png') no-repeat center right;
  padding-right: 30px;
  padding-top: 4px;
}
.download .download-bottom .item:hover .icon {
  filter: none;
}
.download .download-bottom .item:hover .title {
  color: var(--dominant-color);
}
/*联系我们*/
.messages-box .messages {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.messages-box .messages label {
  flex-basis: calc((100% - 40px) / 2);
  margin-right: 40px;
  display: block;
  margin-bottom: 35px;
}
.messages-box .messages label:nth-child(2n) {
  margin-right: 0;
}
.messages-box .messages label .text {
  font-size: 16px;
  margin-bottom: 10px;
}
.messages-box .messages label .text span {
  color: #fc2a00;
}
.messages-box .messages label.textarea {
  font-size: 16px;
  flex-basis: 100%;
  margin-right: 0;
}
.messages-box .messages label.textarea textarea {
  margin-top: 10px;
  height: 54px;
  min-height: 54px;
  border-radius: 6px;
  padding: 12px 0;
}
.messages-box .messages label.textarea textarea::placeholder {
  font-size: 16px;
}
.messages-box .messages label input {
  height: 54px;
  border-radius: 6px;
}
.messages-box .messages label input::placeholder {
  font-size: 16px;
}
.messages-box .messages label input:valid ~ span {
  display: none;
}
.messages-box .messages label select {
  font-size: 16px;
  border-radius: 0;
  height: 54px;
}
.messages-box .messages label select::placeholder {
  font-size: 16px;
}
.messages-box .messages label.two {
  display: flex;
  justify-content: space-between;
}
.messages-box .messages label.two input {
  flex-basis: calc(50% - 15px);
}
.messages-box .messages label.two .two-list1 {
  flex-basis: 150px;
}
.messages-box .messages label.two .two-list2 {
  flex-basis: calc(100% - 160px);
}
.messages-box .messages label.two .two-list3 {
  flex-basis: 180px;
}
.messages-box .messages label.two .two-list4 {
  flex-basis: calc(100% - 190px);
}
.messages-box .messages .button {
  text-align: center;
  margin: 50px auto 140px;
}
.messages-box .messages button {
  width: 160px;
  height: 54px;
  color: #fff;
  font-size: 16px;
  border-radius: 27px;
  background: var(--dominant-color);
  margin: auto;
  transition: all 0.5s;
}
.messages-box .messages button:hover {
  width: 180px;
  background: var(--dominant-color);
}
.messages-box .contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
}
.messages-box .contact-box .item {
  margin-bottom: 30px;
}
.messages-box .contact-box .item:last-child {
  margin-bottom: 0;
}
.messages-box .contact-box .item .key {
  opacity: 0.6;
  margin-bottom: 6px;
}
.messages-box .contact-box .item .value {
  font-family: Manrope-Bold;
}
#mapContainer {
  width: 100%;
  height: 550px;
  z-index: 0;
}
#tip {
  height: 30px;
  background-color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  font-size: 12px;
  right: 10px;
  bottom: 20px;
  border-radius: 3px;
  line-height: 30px;
  border: 1px solid #ccc;
}
div.info-top {
  position: relative;
  background: none repeat scroll 0 0 #F9F9F9;
  border-bottom: 1px solid #CCC;
  border-radius: 5px 5px 0 0;
}
div.info-top div {
  display: inline-block;
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  line-height: 31px;
  padding: 0 10px;
  text-align: left;
}
div.info-top img {
  position: absolute;
  top: 10px;
  right: 10px;
  transition-duration: 0.25s;
}
div.info-top img:hover {
  box-shadow: 0px 0px 5px #000;
}
div.info-middle {
  font-size: 12px;
  padding: 10px;
  line-height: 21px;
  text-align: left;
}
div.info-bottom {
  height: 0px;
  width: 100%;
  clear: both;
  text-align: center;
}
div.info-bottom img {
  position: relative;
  z-index: 104;
}
.pages {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 30px;
  border-top: 1px solid #eee;
  padding-top: 50px;
}
.pages .prev,
.pages .next {
  flex-basis: 100%;
  transition: all 0.5s;
  font-size: 20px;
  color: var(--dominant-color);
  margin-bottom: 20px;
  display: inline-block;
}
.pages .prev:hover,
.pages .next:hover {
  text-decoration: underline;
}
.goBack {
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 10px 30px;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  transition: all 0.5s;
}
.goBack:hover {
  background: var(--dominant-color);
  color: #fff;
}
.cookie .cookies-box p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .cookie .cookies-box h1 {
    font-size: 16px;
  }
}
/*响应式*/
@media screen and (max-width: 1600px) {
  /*默认*/
  .banner .text .title {
    font-size: 48px;
  }
  .banner .text .summary {
    font-size: 20px;
    margin-bottom: 50px;
  }
  .pager .number {
    width: 50px;
    height: 50px;
  }
  .pagePadding {
    padding: 100px 0 120px;
  }
  .pagePaddingT {
    padding: 100px 0 0;
  }
  .page-title-box .page-title {
    font-size: 32px;
  }
  .page-title-box .page-summary {
    font-size: 14px;
  }
  .pageBanner {
    height: 500px;
  }
  .section2 .sections .left {
    width: 100%;
  }
  .section2 .sections .left .top-title .title {
    font-size: 28px;
  }
  .section2 .sections .left .top-title .sub {
    font-size: 20px;
  }
  .section2 .sections .left .bottom .item {
    padding-bottom: 20px !important;
  }
  .section2 .sections .left .bottom .item .title {
    font-size: 18px;
  }
  .section2 .sections .left .bottom .item .summary {
    font-size: 14px;
  }
  .section2 .sections .right .line {
    width: 600px;
    height: 600px;
  }
  .section2 .sections .right .line .line1,
  .section2 .sections .right .line .line2,
  .section2 .sections .right .line .line3,
  .section2 .sections .right .line .line4,
  .section2 .sections .right .line .line5,
  .section2 .sections .right .line .line6 {
    width: 395px;
    height: 395px;
  }
  .section2 .sections .right .line .img {
    width: 400px;
    height: 400px;
  }
  .section2 .sections .right .line::after {
    width: 100%;
    height: 100%;
    background-size: contain;
    right: -15%;
  }
  .section3 .big-swiper .swiper-slide .text .top-title {
    font-size: 28px;
  }
  .section3 .big-swiper .swiper-slide .text .sub {
    margin-top: 10px;
    font-size: 20px;
  }
  .section3 .big-swiper .swiper-slide .text .summary {
    font-size: 14px;
  }
  .section3 .big-swiper .swiper-slide .text .container-box .item .title {
    font-size: 14px;
  }
  .section4 .top .title {
    font-size: 28px;
  }
  .section4 .product .text .title {
    font-size: 14px;
  }
  .section4 .product .img {
    padding-bottom: calc(3 / 7 * 80%);
  }
  .section5 .sections .item .img {
    padding-bottom: calc(365 / 520 * 80%);
  }
  .section5 .sections .item .text .title {
    font-size: 18px;
  }
  .section5 .sections .item .text .summary {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .section6 .img {
    height: 80vh;
  }
  .section6 .img img {
    height: 100%;
    object-fit: cover;
  }
  .section6 .text .title {
    font-size: 28px;
  }
  .section6 .text .text-icon .item {
    padding: 30px 10px;
  }
  /*news*/
  .news-box1 .news-top .swiper-slide .text .title {
    font-size: 24px;
  }
  .news-box1 .news-box .item .text {
    flex-basis: calc(100% - 450px);
  }
  .news-box1 .news-box .item .text .title {
    font-size: 20px;
  }
  /*support*/
  .support .support-box {
    margin-top: 0;
  }
  .support .support-box .item .text .title {
    font-size: 20px;
  }
  .support .support-box .item .text .summary {
    line-height: 1.2;
  }
  .support .faq-box .item .title,
  .support .download-box .item .title {
    font-size: 16px;
  }
  .support .faq-box .item .summary,
  .support .download-box .item .summary {
    font-size: 14px;
  }
  .support .service-box-top .item .text .title .value {
    font-size: 20px;
  }
  .support .service-box-bottom .service-box-bottom-box .item .title {
    font-size: 18px;
  }
  /*about*/
  .about .items .text .list-box .list .title {
    font-size: 20px;
  }
  .about .train-box .swiper .swiper-slide .text .title {
    font-size: 20px;
  }
  .about .train-box .swiper .swiper-slide .text .summary {
    font-size: 14px;
  }
  /*download*/
  .download .download-top .download-menu a {
    font-size: 16px;
  }
  .download .download-bottom .item .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .banner .text .title {
    font-size: 36px;
  }
  .banner .text .summary {
    font-size: 18px;
    margin-bottom: 50px;
  }
  .page-title-box .page-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 1366px) {
  .page-title-box .page-title {
    font-size: 24px;
  }
  /*about*/
  .about .items .text .container-box-swiper .container-box .item {
    width: calc((100% - 50px) / 6);
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .about .items .text .container-box-swiper .container-box .item:nth-child(6n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1280px) {
  .banner .text .title {
    font-size: 24px;
  }
  .banner .text .summary {
    font-size: 14px;
    margin-bottom: 50px;
  }
  .more {
    height: 40px;
    font-size: 12px;
    padding: 0 20px;
    width: 130px;
  }
  .more::after {
    width: 30px;
    height: 30px;
  }
  .section2 .sections .left {
    width: 100%;
  }
  .section2 .sections .left .top-title .title {
    font-size: 20px;
  }
  .section2 .sections .left .top-title .sub {
    font-size: 14px;
  }
  .section2 .sections .left .bottom .item .title {
    font-size: 14px;
  }
  .section2 .sections .left .bottom .item .summary {
    font-size: 12px;
  }
  .section2 .sections .right .line {
    width: 500px;
    height: 500px;
  }
  .section2 .sections .right .line .line1,
  .section2 .sections .right .line .line2,
  .section2 .sections .right .line .line3,
  .section2 .sections .right .line .line4,
  .section2 .sections .right .line .line5,
  .section2 .sections .right .line .line6 {
    width: 295px;
    height: 295px;
  }
  .section2 .sections .right .line .img {
    width: 300px;
    height: 300px;
  }
  .section2 .sections .right .line::after {
    width: 100%;
    height: 100%;
    background-size: contain;
    right: -15%;
  }
  .section3 .big-swiper .swiper-slide .text .top-title {
    font-size: 20px;
  }
  .section3 .big-swiper .swiper-slide .text .sub {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
  }
  .section3 .big-swiper .swiper-slide .text .summary {
    font-size: 14px;
  }
  .section3 .big-swiper .swiper-slide .text .container-box .item {
    padding: 30px 20px 50px;
  }
  .section3 .big-swiper .swiper-slide .text .container-box .item .title {
    font-size: 14px;
    top: 85px;
    line-height: 1;
  }
  .section3 .small-swiper .swiper-slide {
    width: 40px;
    height: 40px;
  }
  .section3 .small-swiper .swiper-slide .icon {
    width: 30px;
    height: 30px;
  }
  .section3 .small-swiper .swiper-slide .icon img {
    height: 12px;
  }
  .section4 .top .title {
    font-size: 20px;
  }
  .section4 .product {
    margin-top: 2%;
  }
  .section4 .product .text .title {
    font-size: 14px;
  }
  .section4 .product .text .summary {
    font-size: 12px;
  }
  .section4 .product .text .more2 {
    display: none;
  }
  .section4 .product .img {
    padding-bottom: calc(3 / 7 * 80%);
  }
  .section5 .sections .item .img {
    padding-bottom: calc(365 / 520 * 80%);
  }
  .section5 .sections .item .text .title {
    font-size: 16px;
  }
  .section5 .sections .item .text .summary {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .section6 .text .title {
    font-size: 20px;
  }
  .footer .footer-top .footer-menu .item .item-title {
    font-size: 14px;
  }
  .footer .footer-top .footer-menu .item .item-box a {
    font-size: 12px;
  }
  .footer .footer-messages .title {
    font-size: 14px;
  }
  /*download*/
  .download .download-top {
    flex-direction: column-reverse;
  }
  .download .download-top .download-menu {
    width: 100%;
  }
  .download .download-top .download-menu a {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 30px;
  }
  .download .download-top .download-search {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  .download .download-bottom {
    margin-top: 30px;
  }
  .download .download-bottom .item {
    padding: 60px 20px;
  }
  .download .download-bottom .item .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  /*header*/
  header .header-menu .header-box-bg .header-box {
    height: 80px;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child span {
    display: inline-block;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child img {
    display: none;
  }
  header .section .header-box .menu-box .menu-list .firstItem:last-child .firstItem-title {
    border: none;
  }
  .pageBanner .banner-box .text {
    top: 0;
    left: 0;
    width: 90%;
  }
  .pageBanner .banner-box .text .summary {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  /*默认*/
  .banner .text .title {
    font-size: 20px;
  }
  .banner .text .summary {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .pager {
    margin-top: 50px;
  }
  .pager .number {
    width: 30px;
    height: 30px;
    font-size: 12px !important;
    margin: 0 5px;
  }
  .pagePadding {
    padding: 50px 0;
  }
  .pagePaddingT {
    padding: 50px 0 0;
  }
  .page-title-box {
    margin-bottom: 20px;
  }
  .page-title-box .page-title {
    font-size: 20px;
  }
  .page-title-box .page-summary {
    font-size: 12px;
    margin-top: 0;
  }
  .pageBanner {
    height: 300px;
  }
  .pageBanner .page-title-box {
    max-width: 90%;
    margin: auto;
  }
  /*首页*/
  .section2 .sections {
    flex-direction: column;
  }
  .section2 .sections .left {
    width: 100%;
  }
  .section2 .sections .left .top-title .title {
    font-size: 16px;
  }
  .section2 .sections .left .top-title .sub {
    font-size: 14px;
  }
  .section2 .sections .left .bottom {
    margin-top: 20px;
  }
  .section2 .sections .left .bottom .item {
    padding-bottom: 0 !important;
    padding-left: 20px;
  }
  .section2 .sections .left .bottom .item .icon {
    height: 30px;
  }
  .section2 .sections .left .bottom .item .title {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .section2 .sections .left .bottom .item .summary {
    font-size: 12px;
    line-height: 1.4;
  }
  .section2 .sections .left .bottom .item::before {
    top: 12px;
  }
  .section2 .sections .left .bottom .item::after {
    top: 12px;
  }
  .section2 .sections .right {
    margin-top: 4vh;
  }
  .section2 .sections .right .line {
    width: 210px;
    height: 210px;
  }
  .section2 .sections .right .line .line1,
  .section2 .sections .right .line .line2,
  .section2 .sections .right .line .line3,
  .section2 .sections .right .line .line4,
  .section2 .sections .right .line .line5,
  .section2 .sections .right .line .line6 {
    width: 145px;
    height: 145px;
  }
  .section2 .sections .right .line .img {
    width: 150px;
    height: 150px;
  }
  .section2 .sections .right .line .img .play {
    height: 40px;
    width: 110px;
    font-size: 12px;
    top: 0;
  }
  .section2 .sections .right .line::after {
    width: 100%;
    height: 100%;
    background-size: contain;
    right: -15%;
  }
  .section3 .big-swiper .swiper-slide .text .top-title {
    font-size: 16px;
  }
  .section3 .big-swiper .swiper-slide .text .sub {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .section3 .big-swiper .swiper-slide .text .summary {
    font-size: 12px;
  }
  .section3 .big-swiper .swiper-slide .text .container-box {
    width: 100%;
    max-width: 100%;
    display: flex;
    grid-gap: 0;
    justify-content: flex-start;
  }
  .section3 .big-swiper .swiper-slide .text .container-box .item {
    padding: 30px 20px;
    justify-content: flex-start;
  }
  .section3 .big-swiper .swiper-slide .text .container-box .item .title {
    font-size: 12px;
    position: initial;
  }
  .section3 .big-swiper .swiper-slide .text .container-box-button {
    display: flex;
    width: 100px;
    justify-content: flex-start;
    margin: 20px 0 0 auto;
  }
  .section3 .big-swiper .swiper-slide .text .swiper-button-prev,
  .section3 .big-swiper .swiper-slide .text .swiper-button-next {
    width: 40px;
    height: 40px;
    position: relative;
    margin: auto;
    right: auto;
    left: auto;
  }
  .section3 .big-swiper .swiper-slide .text .swiper-button-prev::after,
  .section3 .big-swiper .swiper-slide .text .swiper-button-next::after {
    font-size: 14px;
    width: 40px;
    height: 40px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }
  .section3 .big-swiper .swiper-slide .text .swiper-button-prev::after {
    content: '←';
  }
  .section3 .big-swiper .swiper-slide .text .swiper-button-next::after {
    content: '→';
  }
  .section3 .small-swiper {
    width: fit-content;
    right: 0;
    bottom: 10vh;
    left: 0;
    top: auto;
  }
  .section3 .small-swiper .swiper-slide {
    width: 40px;
    height: 40px;
  }
  .section3 .small-swiper .swiper-slide::after {
    width: 10px;
    height: 1px;
    right: -10px;
    left: auto;
    top: 0;
    bottom: 0;
  }
  .section3 .small-swiper .swiper-slide .icon {
    width: 30px;
    height: 30px;
  }
  .section3 .small-swiper .swiper-slide .icon img {
    height: 12px;
  }
  .section4 .right {
    display: none;
  }
  .section4 .top .title {
    font-size: 16px;
  }
  .section4 .top .summary {
    font-size: 12px;
  }
  .section4 .product {
    margin-top: 6vh;
  }
  .section4 .product .text .title {
    font-size: 14px;
  }
  .section4 .product .text .summary {
    font-size: 12px;
  }
  .section4 .product .text .more2 {
    display: none;
  }
  .section5 .sections {
    grid-template-columns: repeat(1, 1fr);
  }
  .section5 .sections .item {
    height: 20vh;
    position: relative;
  }
  .section5 .sections .item .text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
  }
  .section5 .sections .item .text .title {
    font-size: 14px;
  }
  .section5 .sections .item .text .summary {
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 0;
  }
  .section5 .sections .item .text .more {
    display: none;
  }
  .section6 .text .title {
    font-size: 16px;
  }
  .section6 .text .summary {
    font-size: 12px;
    margin-top: 4px;
  }
  .section6 img {
    height: 100vh;
    object-fit: cover;
  }
  .footer .footer-top {
    margin-top: 0;
  }
  .footer .footer-top .footer-menu {
    display: none;
  }
  .footer .footer-top .footer-messages {
    flex-basis: 100%;
  }
  .footer .footer-top .footer-messages .title {
    text-align: left;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer .footer-top .footer-messages label input {
    height: 40px;
  }
  .footer .footer-top .footer-messages label button {
    height: 40px;
  }
  .footer .footer-top .footer-messages .footer-code {
    justify-content: flex-start;
    margin-top: 20px;
  }
  .footer .footer-bottom .footer-logo {
    display: none;
  }
  .footer .footer-bottom .copy-right {
    flex-wrap: wrap;
  }
  .footer .footer-bottom .copy-right .item {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .footer .footer-bottom .copy-right .item:last-child {
    margin-left: 0;
  }
  header .header-menu .header-box {
    padding: 0;
    height: 60px;
  }
  header .header-menu .header-box .logo {
    margin-left: 5%;
    position: relative;
    z-index: 100;
  }
  header .header-menu .header-box .menu-box {
    background: none;
    display: flex;
    align-items: center;
    height: 60px;
    position: absolute;
    z-index: 10;
    top: 0 !important;
    width: 100%;
    justify-content: flex-end;
  }
  header .header-menu .header-box .menu-box .phone-click {
    cursor: pointer;
    width: 22px;
    height: 16px;
    display: flex;
    align-items: center;
    position: relative;
    right: 5%;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line {
    height: 2px;
    background: #fff;
    width: 100%;
    transition: all 0.5s;
    overflow: hidden;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line::before,
  header .header-menu .header-box .menu-box .phone-click .phone-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line::before {
    top: 0;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click .phone-line::after {
    bottom: 0;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click.active .phone-line {
    background: rgba(255, 255, 255, 0);
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .phone-click.active .phone-line::before {
    margin: auto;
    transition: all 0.5s;
    transform: translateY(7px) rotate(45deg);
  }
  header .header-menu .header-box .menu-box .phone-click.active .phone-line::after {
    margin: auto;
    transition: all 0.5s;
    transform: translateY(-7px) rotate(-45deg);
  }
  header .header-menu .header-box .menu-box .phone-show {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    top: 60px;
    height: 100vh;
    z-index: 10;
    left: 0;
    margin-left: 0;
    padding-top: 30px;
  }
  header .header-menu .header-box .menu-box .menu-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
  }
  header .header-menu .header-box .menu-box .menu-list .language {
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem {
    height: auto;
    width: 100%;
    border-bottom: 1px solid #eee;
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem.active .firstItem-title a {
    color: var(--dominant-color);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem.active .firstItem-title a::after {
    background: var(--dominant-color);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title {
    height: 50px;
    width: 100%;
    padding: 0;
    position: relative;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title a {
    color: #2a2a2a;
    font-size: 14px;
    display: block;
    width: 100%;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title a:hover {
    color: var(--dominant-color);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title a:hover::after {
    background: var(--dominant-color);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i {
    width: 50px;
    height: 50px;
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i.active {
    transform: rotate(45deg);
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i::before {
    content: '';
    width: 16px;
    position: absolute;
    height: 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #000;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title i::after {
    content: '';
    height: 16px;
    position: absolute;
    width: 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #000;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .firstItem-title::after {
    display: none;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box {
    top: 0 !important;
    border-top: none;
    box-shadow: none;
    position: relative;
    left: 0;
    font-size: 12px;
    transform: translateX(0);
    width: 100%;
    margin-left: 20px;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box .second-box-list {
    margin-top: 0;
    padding: 2px;
    background: none;
    justify-content: flex-start;
    flex-direction: column;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box .second-box-list::after {
    left: 20px;
    right: auto;
    display: none;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box a {
    text-align: left;
    margin-bottom: 10px;
    color: #333;
    padding: 0;
    height: auto;
  }
  header .header-menu .header-box .menu-box .menu-list .firstItem .second-box a:hover {
    color: #333;
    text-decoration: underline;
  }
  header .header-menu .header-box .menu-box .menu-list-phone {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    position: absolute;
    height: 100vh;
    left: 0;
    width: 100%;
    top: 50px;
    padding: 20px;
    display: none;
    z-index: 10;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-list-box {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside {
    border-right: 1px solid #e1e3e6;
    height: 100%;
    overflow: hidden;
    width: 120px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside .item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 10px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside .item a {
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-aside .item.active::after {
    content: '';
    width: 4px;
    height: 15px;
    background: var(--dominant-color);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content {
    flex: auto;
    width: calc(100% - 120px);
    padding: 0 10px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-content {
    display: none;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-content.active {
    display: block;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list {
    display: flex;
    flex-wrap: wrap;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item {
    width: 50%;
    padding: 0 20px;
    margin-bottom: 20px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .title {
    font-size: 12px;
    color: #666;
    text-align: center;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .summary {
    font-size: 12px;
    text-align: center;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .imgBox {
    height: auto;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .news-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .news-title {
    text-align: center;
    font-size: 12px;
  }
  header .header-menu .header-box .menu-box .menu-list-phone .menu-content .item-list .item .second-item-support-link a {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 10px;
  }
  header .information {
    margin-top: 30px;
    margin-left: 20px;
  }
  .phone-search-click {
    position: fixed;
    top: 0;
    right: calc(5% + 50px);
    display: flex;
    bottom: 0;
    align-items: center;
    width: 20px;
    z-index: 100;
    cursor: pointer;
    height: 80px;
  }
  /*news*/
  .news-box1 .news-top {
    margin-bottom: 0;
  }
  .news-box1 .news-top .swiper-slide .imgBox {
    border-radius: 10px;
    height: 200px;
  }
  .news-box1 .news-top .swiper-slide .text {
    position: initial;
    padding: 20px 0;
  }
  .news-box1 .news-top .swiper-slide .text .title {
    font-size: 16px;
  }
  .news-box1 .news-top .swiper-slide .text .summary {
    margin: 10px 0 0;
    font-size: 14px;
  }
  .news-box1 .news-top .swiper-slide .text .more2 {
    display: none;
  }
  .news-box1 .news-box .item {
    flex-direction: column;
  }
  .news-box1 .news-box .item .imgBox {
    flex-basis: 200px;
  }
  .news-box1 .news-box .item .text .time {
    font-size: 12px;
  }
  .news-box1 .news-box .item .text .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .news-box1 .news-box .item .text .summary {
    font-size: 14px;
  }
  .news-box1 .news-box .item .text .news-more {
    margin-top: 10px;
    font-size: 12px;
  }
  .locations {
    display: none;
  }
  .news-detail {
    flex-direction: column-reverse;
  }
  .news-detail .news-detail-container .news-detail-title {
    margin-bottom: 0;
  }
  .news-detail .news-detail-container .news-detail-title .title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 20px;
  }
  .news-detail .news-detail-container .news-detail-box {
    font-size: 14px;
  }
  .news-detail .news-text {
    flex-basis: 100%;
    margin-top: 50px;
    max-width: 100%;
    margin-right: 0;
  }
  .news-detail .news-text .items {
    margin-bottom: 50px;
  }
  .news-detail .news-text .items .item {
    padding: 10px 0;
    font-size: 12px;
  }
  /*contact*/
  .messages-box .messages label {
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .messages-box .messages label .text {
    font-size: 12px;
  }
  .messages-box .messages label input,
  .messages-box .messages label .select2-container,
  .messages-box .messages label .select2-container .select2-selection--single,
  .messages-box .messages label .select2-container--default .select2-selection--single .select2-selection__rendered,
  .messages-box .messages label .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    line-height: 40px;
  }
  .messages-box .messages label .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 12px;
  }
  .messages-box .messages label.two {
    flex-direction: column;
  }
  .messages-box .messages label.two .two-list1,
  .messages-box .messages label.two .two-list2,
  .messages-box .messages label.two .two-list3,
  .messages-box .messages label.two .two-list4 {
    flex-basis: auto;
  }
  .messages-box .messages label.two .two-list1,
  .messages-box .messages label.two .two-list3 {
    margin-bottom: 20px;
  }
  .messages-box .messages .button {
    margin: 20px auto 100px;
  }
  .messages-box .messages .button button {
    font-size: 12px;
  }
  .messages-box .contact-box {
    padding: 20px;
  }
  .select2-results__option {
    font-size: 12px;
  }
  /*support*/
  .support .support-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .support .support-box .item {
    padding: 20px;
  }
  .support .support-box .item .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  .support .support-box .item .text .title {
    font-size: 14px;
  }
  .support .support-box .item .text .summary {
    font-size: 12px;
  }
  .support .faq-box .item .title,
  .support .download-box .item .title {
    padding: 20px;
    font-size: 14px;
  }
  .support .faq-box .item .title .key,
  .support .download-box .item .title .key {
    flex-basis: auto;
    width: calc(100% - 70px);
  }
  .support .faq-box .item .title .value,
  .support .download-box .item .title .value {
    flex-basis: auto;
    width: 70px;
  }
  .support .faq-box .item .summary,
  .support .download-box .item .summary {
    font-size: 12px;
    padding: 20px;
  }
  .support .warranty-box .item .item-top {
    flex-direction: column;
  }
  .support .warranty-box .item .item-top .right .summary {
    font-size: 12px;
  }
  .support .warranty-box .item .item-top .right .list-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .support .warranty-box .item .item-top .right .list-box .list {
    padding: 30px 20px;
    min-height: auto;
  }
  .support .warranty-box .item .item-top .right .list-box .list .icon {
    height: 30px;
  }
  .support .warranty-box .item .item-top .right .list-box .list .title {
    font-size: 12px;
  }
  .support .warranty-box .item .item-bottom {
    margin-top: 20px;
  }
  .support .warranty-box .item:not(:first-child) {
    margin-top: 70px;
  }
  .support .warranty-button {
    margin-bottom: 30px;
    font-size: 12px;
    height: 40px;
    width: 160px;
  }
  .support .img {
    margin-bottom: 60px;
  }
  .support .download-box .item .title .value .download-button {
    flex-basis: 30px;
    padding-right: 0;
    color: rgba(0, 0, 0, 0);
    margin-right: 0;
    overflow: hidden;
  }
  .support .service-box-top {
    grid-template-columns: repeat(1, 1fr);
  }
  .support .service-box-top .item .text .title .key {
    font-size: 12px;
  }
  .support .service-box-top .item .text .title .value {
    font-size: 14px;
  }
  .support .service-box-top .item .text .icon {
    width: 30px;
    height: 30px;
  }
  .support .service-box-bottom {
    height: auto;
    padding: 50px 0;
  }
  .support .service-box-bottom .service-box-bottom-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .support .service-box-bottom .service-box-bottom-box .item {
    padding: 20px;
  }
  .support .service-box-bottom .service-box-bottom-box .item .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  .support .service-box-bottom .service-box-bottom-box .item .title {
    font-size: 12px;
  }
  .support .service-box-bottom .join-button {
    font-size: 12px;
    margin-top: 30px;
  }
  .slide-more {
    font-size: 12px;
    margin-top: 30px;
    height: 40px;
    width: 150px;
  }
  .assist-tools .assist-tools-item {
    padding: 80px 0;
    height: auto;
  }
  .assist-tools .assist-tools-item .section1600 {
    flex-direction: column !important;
  }
  .assist-tools .assist-tools-item .section1600 .right {
    width: 100%;
    flex-basis: 100%;
  }
  .assist-tools .assist-tools-item .section1600 .right .app a {
    height: 30px;
  }
  .assist-tools .assist-tools-item .section1600 .right .app a img {
    height: 100%;
    object-fit: contain;
  }
  .assist-tools .assist-tools-item .section1600 .right .assist-icon {
    display: flex;
  }
  .assist-tools .assist-tools-item .section1600 .right .assist-icon .icon-item {
    padding: 30px 10px;
    flex-basis: calc((100% - 20px) / 2);
  }
  .assist-tools .assist-tools-item .section1600 .right .assist-icon .icon-item .icon {
    width: 30px;
    height: 30px;
  }
  .assist-tools .assist-tools-item .section1600 .right .assist-icon .icon-item .title {
    font-size: 12px;
  }
  .assist-tools .assist-tools-item .section1600 .right .assist-icon .icon-item:nth-child(2n) {
    margin-right: 0;
  }
  /*about*/
  .about .items {
    height: auto;
  }
  .about .items .img {
    position: absolute;
  }
  .about .items .text {
    padding: 80px 0;
    position: initial;
  }
  .about .items .text .list-box {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .about .items .text .list-box .list {
    padding: 20px;
  }
  .about .items .text .list-box .list .icon {
    width: 30px;
    height: 30px;
  }
  .about .items .text .list-box .list .title {
    font-size: 14px;
  }
  .about .items .text .list-box .list .summary {
    font-size: 12px;
    line-height: 1.4;
  }
  .about .items .text .page-title-box .page-sub {
    font-size: 14px;
    margin-top: 20px;
  }
  .about .items .text .container-box-swiper .container-box {
    flex-wrap: initial;
    justify-content: flex-start;
  }
  .about .items .text .container-box-swiper .container-box .item {
    padding: 30px 20px;
    height: auto;
  }
  .about .items .text .container-box-swiper .container-box .item .title {
    font-size: 12px;
    position: initial;
  }
  .about .items .text .container-box-swiper .container-box-button {
    display: flex;
    width: 100px;
    justify-content: flex-start;
    margin: 20px 0 0 auto;
  }
  .about .items .text .container-box-swiper .container-box-button .swiper-button-prev,
  .about .items .text .container-box-swiper .container-box-button .swiper-button-next {
    width: 40px;
    height: 40px;
    position: relative;
    margin: auto;
    right: auto;
    left: auto;
  }
  .about .items .text .container-box-swiper .container-box-button .swiper-button-prev::after,
  .about .items .text .container-box-swiper .container-box-button .swiper-button-next::after {
    font-size: 14px;
    width: 40px;
    height: 40px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }
  .about .items .text .container-box-swiper .container-box-button .swiper-button-prev::after {
    content: '←';
  }
  .about .items .text .container-box-swiper .container-box-button .swiper-button-next::after {
    content: '→';
  }
  .about .train-box .swiper {
    max-width: 90%;
  }
  .about .train-box .swiper .swiper-slide .text {
    padding: 20px;
  }
  .about .train-box .swiper .swiper-slide .text .title {
    font-size: 14px;
  }
  .about .train-box .swiper .swiper-slide .text .summary {
    font-size: 12px;
  }
  /*download*/
  .download .download-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .download .download-bottom .item {
    padding: 40px 20px;
  }
  .download .download-bottom .item .icon {
    width: 30px;
    height: 30px;
  }
  .download .download-bottom .item .title {
    font-size: 14px;
  }
  .download .download-bottom .item .download {
    font-size: 12px;
  }
  .assist-tools-down-box .item {
    padding: 10px 0;
  }
  .assist-tools-down-box .item .title {
    font-size: 12px;
  }
  .assist-tools-down-box .item .download {
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.index-cookies {
  background-color: #353535;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 1010;
  padding: 30px 0;
  display: none;
}
.index-cookies .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 90%;
  max-width: 1720px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .index-cookies .container {
    flex-direction: column;
  }
}
.index-cookies .container .left {
  flex-basis: 59.375%;
}
.index-cookies .container .left .cn1 {
  color: #ffffff;
  line-height: 1.5em;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .index-cookies .container .left .cn1 {
    font-size: 14px;
  }
}
.index-cookies .container .left .cn2 {
  margin-top: 6px;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .index-cookies .container .left .cn2 {
    font-size: 12px;
  }
}
.index-cookies .container .left .cn2 a {
  color: var(--dominant-color);
  text-decoration: underline;
}
.index-cookies .container .right {
  flex-basis: 40.625%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .index-cookies .container .right {
    margin-top: 20px;
  }
}
.index-cookies .container .right .public-btnblack {
  color: #ffffff;
  background-color: #353535;
  line-height: 0.6rem;
  border-radius: 25px;
  text-align: center;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .index-cookies .container .right .public-btnblack {
    padding: 10px 20px;
    font-size: 12px;
  }
}
.index-cookies .container .right .public-btnwhite {
  color: #000;
  background-color: #fff;
  line-height: 0.6rem;
  border-radius: 25px;
  text-align: center;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .index-cookies .container .right .public-btnwhite {
    padding: 10px 20px;
    font-size: 12px;
  }
}
.index-cookies .container .right .public-btnblack {
  border: solid 1px #ffffff;
}
.index-cookies .container .right .public-btnwhite {
  border: 1px solid #fff;
  margin-left: 20px;
}
.index-cookies .container .right a {
  transition: all 0.5s;
}
.index-cookies .container .right a:hover {
  background: var(--dominant-color);
  color: #fff;
  border-color: var(--dominant-color);
}
/*# sourceMappingURL=index.css.map */