* {
  margin: 0px;
  padding: 0px;
  font-family: PingFang SC;
  box-sizing: border-box;
/*  user-select: none;*/
  border: 0;
  vertical-align: middle;
  list-style: none;
}

body .swiper-header {
  display: flex;
  width: 100%;
  height: 800px;
  cursor: pointer;
  position: relative;
}
body .swiper-header .swiper-wrapper {
  width: 100%;
  height: 100%;
  min-height: 640px;
  max-height: 800px;
}
body .swiper-header .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
body .swiper-header .swiper-wrapper .swiper-slide .bgmedia {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .swiper-header .swiper-wrapper .swiper-slide .bgmedia :nth-child(1) {
  display: block;
}
body .swiper-header .swiper-wrapper .swiper-slide .bgmedia :nth-child(2) {
  display: none;
}
body .swiper-header .swiper-wrapper .swiper-slide .bgmedia :nth-child(3) {
  display: none;
}
body .swiper-header .swiper-wrapper .swiper-slide .bgmedia img, body .swiper-header .swiper-wrapper .swiper-slide .bgmedia video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
body .swiper-header .swiper-wrapper .swiper-slide .info {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}
body .swiper-header .swiper-wrapper .swiper-slide .info p {
  padding: 15px 0;
  font-size: 16px;
  color: #000000;
  animation: infoAni 0.5s ease forwards;
  transform: translateY(-30px);
  opacity: 0;
}
body .swiper-header .swiper-wrapper .swiper-slide .info h1 {
  margin-top: 10px;
  font-size: 54px;
  color: #000000;
  animation: infoAni 0.5s ease forwards;
  animation-delay: 0.1s;
  transform: translateY(-30px);
  opacity: 0;
}
body .swiper-header .swiper-wrapper .swiper-slide .info button {
  margin-top: 14px;
  width: 120px;
  height: 36px;
  border-radius: 36px;
  background: #FFFFFF;
  color: #000000;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: infoAni 0.5s ease forwards;
  animation-delay: 0.1s;
  transform: translateY(-40px);
  opacity: 0;
  cursor: pointer;
}
body .swiper-header .swiper-wrapper .swiper-slide .info button img {
  width: 14px;
  margin-left: 4px;
}
@keyframes infoAni {
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
body .swiper-header .swiperPages {
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  bottom: 114px;
  display: flex;
}
body .swiper-header .swiperPages li {
  background: #FFFFFF;
  border-radius: 8px;
  margin-right: 5px;
  height: 2px;
  width: 40px;
  opacity: 0.5;
  transition: all 0.3s;
}
body .swiper-header .swiperPages .pitch {
  opacity: 1;
}
body .swiper-header .prevSwiper, body .swiper-header .nextSwiper {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.3s;
}
body .swiper-header .prevSwiper img, body .swiper-header .nextSwiper img {
  filter: invert(100%);
  width: 20px;
}
body .swiper-header .prevSwiper:hover, body .swiper-header .nextSwiper:hover {
  background: rgba(255, 255, 255, 0.4);
}
body .swiper-header .prevSwiper {
  left: 0px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
body .swiper-header .prevSwiper img {
  transform: rotate(180deg);
}
body .swiper-header .nextSwiper {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  right: 0px;
}
body .navigation {
  position: fixed;
  z-index: 99;
  top: 0px;
  left: 0px;
  width: 100%;
}
body .navigation .nav {
  padding: 0px 50px;
  height: 64px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
body .navigation .nav .logo {
  margin-right: 30px;
  padding-bottom: 3px;
}
body .navigation .nav .logo img {
  width: 103px;
  filter: invert(100%);
}
body .navigation .nav .menu {
  display: flex;
  font-size: 15px;
  height: 100%;
}
body .navigation .nav .menu li {
  height: 100%;
  color: #ECF4F8;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0px 28px;
  white-space: nowrap;
}
body .navigation .nav .menu li span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 3px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
body .navigation .nav .menu li:hover {
  color: #FFFFFF;
}
body .navigation .nav .menu li:hover span {
  border-bottom: 3px solid #FF4610;
}
body .navigation .nav .funs {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: end;
}
body .navigation .nav .funs .items {
  width: 55px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body .navigation .nav .funs .items ul {
  width: 36px;
  height: 36px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}
body .navigation .nav .funs .items ul img {
  width: 24px;
  opacity: 0.8;
  transition: all 0.3s;
}
body .navigation .nav .funs .items .option {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
}
body .navigation .nav .funs .items .loginList {
  background: #FFFFFF;
  border-radius: 2px;
  width: 120px;
  transition: all 0.6s;
  height: 0px;
  overflow: hidden;
}
body .navigation .nav .funs .items .loginList li {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s;
}
body .navigation .nav .funs .items .loginList li:hover {
  background: #F6F7F8;
}
body .navigation .nav .funs .items .langTips {
  display: flex;
  background: #373739;
  width: 82px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.6s;
  height: 0px;
  overflow: hidden;
  border-radius: 4px;
  animation: langTipsAni 1.2s linear infinite;
  animation-delay: 0.7s;
}
@keyframes langTipsAni {
  50% {
    top: 72px;
  }
  100% {
    top: 64px;
  }
}
body .navigation .nav .funs .items:hover ul {
  background: #1A1B1E;
}
body .navigation .nav .funs .items:hover ul img {
  opacity: 1;
}
body .navigation .nav .funs .items:hover .loginList {
  height: 150px;
}
body .navigation .nav .funs .items:hover .langTips {
  height: 28px;
}
body .navigation .nav .funs .line {
  height: 18px;
  width: 1px;
  border-radius: 2px;
  background: #FFFFFF;
  opacity: 0.8;
  margin: 0px 6px;
}
body .navigation .nav .button {
  width: 98px;
  min-width: 98px;
  height: 26px;
  border-radius: 23px;
  color: #000000;
  font-size: 12px;
  background: #FFFFFF;
  opacity: 0.8;
  overflow: hidden;
  margin-left: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
body .navigation .nav .button p {
  height: 26px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pani 10s ease infinite;
}
@keyframes pani {
  25% {
    transform: translateY(-26px);
  }
  50% {
    transform: translateY(-26px);
  }
  75% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
body .navigation .nav .button:hover {
  opacity: 1;
}
body .navigationHoverOptions {
  position: fixed;
  z-index: 99;
  top: 64px;
  left: 0px;
  width: 100vw;
  height: calc(100vh - 64px);
  display: none;
}
body .navigationHoverOptions .mask {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  animation: maskAni 0.6s ease forwards;
}
@keyframes maskAni {
  to {
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}
body .navigationHoverOptions .maskLeave {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  animation: maskLeaveAni 0.6s ease forwards;
}
@keyframes maskLeaveAni {
  to {
    background: rgba(0, 0, 0, 0);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
  }
}
body .navigationHoverOptions .options {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 0px;
  box-shadow: 0 18px 30px -28px rgba(0, 0, 0, 0.8);
  transition: all 0.6s;
  overflow: hidden;
}
body .navigationHoverOptions .options .op {
  display: none;
  width: 100%;
  height: 100%;
}
body .navigationHoverOptions .options .op2, body .navigationHoverOptions .options .op4, body .navigationHoverOptions .options .op5, body .navigationHoverOptions .options .op6, body .navigationHoverOptions .options .op7 {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}
body .navigationHoverOptions .options .op2 .content, body .navigationHoverOptions .options .op4 .content, body .navigationHoverOptions .options .op5 .content, body .navigationHoverOptions .options .op6 .content, body .navigationHoverOptions .options .op7 .content {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
}
body .navigationHoverOptions .options .op2 .content li, body .navigationHoverOptions .options .op4 .content li, body .navigationHoverOptions .options .op5 .content li, body .navigationHoverOptions .options .op6 .content li, body .navigationHoverOptions .options .op7 .content li {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}
body .navigationHoverOptions .options .op2 .content li p, body .navigationHoverOptions .options .op4 .content li p, body .navigationHoverOptions .options .op5 .content li p, body .navigationHoverOptions .options .op6 .content li p, body .navigationHoverOptions .options .op7 .content li p {
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
}
body .navigationHoverOptions .options .op2 .content li span, body .navigationHoverOptions .options .op4 .content li span, body .navigationHoverOptions .options .op5 .content li span, body .navigationHoverOptions .options .op6 .content li span, body .navigationHoverOptions .options .op7 .content li span {
  margin-top: 6px;
  font-size: 14px;
  transform: scale(0.9);
  color: #666;
  transition: all 0.3s;
}
body .navigationHoverOptions .options .op2 .content li:hover, body .navigationHoverOptions .options .op4 .content li:hover, body .navigationHoverOptions .options .op5 .content li:hover, body .navigationHoverOptions .options .op6 .content li:hover, body .navigationHoverOptions .options .op7 .content li:hover {
  background: #F6F7F8;
}
body .navigationHoverOptions .options .op2 .content li:hover p, body .navigationHoverOptions .options .op4 .content li:hover p, body .navigationHoverOptions .options .op5 .content li:hover p, body .navigationHoverOptions .options .op6 .content li:hover p, body .navigationHoverOptions .options .op7 .content li:hover p {
  color: #FF4610;
}
body .navigationHoverOptions .options .op2 .content li:hover span, body .navigationHoverOptions .options .op4 .content li:hover span, body .navigationHoverOptions .options .op5 .content li:hover span, body .navigationHoverOptions .options .op6 .content li:hover span, body .navigationHoverOptions .options .op7 .content li:hover span {
  color: #000000;
}
body .navigationHoverOptions .options .op3 {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}
body .navigationHoverOptions .options .op3 .content {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
}
body .navigationHoverOptions .options .op3 .content .chunk {
  width: 50%;
  padding: 35px 30px;
  transition: all 0.3s;
  cursor: pointer;
}
body .navigationHoverOptions .options .op3 .content .chunk .title {
  display: flex;
  align-items: center;
  font-weight: 700;
  transition: all 0.3s;
}
body .navigationHoverOptions .options .op3 .content .chunk .title img {
  width: 18px;
  margin-left: 10px;
}
body .navigationHoverOptions .options .op3 .content .chunk .title:hover {
  color: #FF4610;
}
body .navigationHoverOptions .options .op3 .content .chunk .list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
}
body .navigationHoverOptions .options .op3 .content .chunk .list li {
  width: 50%;
  margin-bottom: 16px;
  transition: all 0.1s;
}
body .navigationHoverOptions .options .op3 .content .chunk .list li:hover {
  color: #FF4610;
}
body .navigationHoverOptions .options .op3 .content .chunk:hover {
  background: #F6F7F8;
}
body .navigationHoverOptions .options .ops {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}
body .navigationHoverOptions .options .ops .content {
  width: 900px;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}
body .navigationHoverOptions .options .ops .content .inputs {
  margin-top: 46px;
  width: 100%;
  min-height: 62px;
  height: 62px;
  display: flex;
  border-radius: 10px;
  border: 1px solid #E5E6EB;
}
body .navigationHoverOptions .options .ops .content .inputs img {
  filter: invert(100%);
  width: 20px;
  margin: 0px 20px;
}
body .navigationHoverOptions .options .ops .content .inputs input {
  border: none;
  outline: none;
  height: 100%;
  flex: 1;
}
body .navigationHoverOptions .options .ops .content .linktitle {
  margin-top: 24px;
  font-size: 12px;
  color: #828898;
}
body .navigationHoverOptions .options .ops .content .linklist {
  margin-top: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .navigationHoverOptions .options .ops .content .linklist li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #828898;
  transition: all 0.3s;
  padding: 2px;
  border-radius: 4px;
}
body .navigationHoverOptions .options .ops .content .linklist li img {
  width: 24px;
  margin-right: 10px;
}
body .navigationHoverOptions .options .ops .content .linklist li:hover {
  background: #FAFAFB;
}
body .navigationHoverOptions .options .op1 {
  width: 100%;
  height: 100%;
}
body .navigationHoverOptions .options .op1 .title {
  width: 100%;
  height: 64px;
  background: #E6E7EA;
}
body .navigationHoverOptions .options .op1 .title .titleList {
  width: 1194px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .navigationHoverOptions .options .op1 .title .titleList li {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
}
body .navigationHoverOptions .options .op1 .title .titleList li img {
  width: 14px;
  margin-left: 10px;
}
body .navigationHoverOptions .options .op1 .title .titleList .pitch {
  color: #FF4610;
}
body .navigationHoverOptions .options .op1 .title .titleList li:hover {
  color: #FF4610;
}
body .navigationHoverOptions .options .op1 .content {
  width: 100%;
  background: #FFFFFF;
  height: calc(100% - 64px);
  transition: all 0.5s;
}
body .navigationHoverOptions .options .op1 .content .contentList {
  width: 1200px;
  height: 100%;
  display: none;
  margin: 0 auto;
  padding-bottom: 40px;
}
body .navigationHoverOptions .options .op1 .content .pitch {
  display: flex;
}
body .navigationHoverOptions .options .op1 .content .cl1 {
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
}
body .navigationHoverOptions .options .op1 .content .cl1 li {
  width: calc(25% - 27.5px);
  margin-top: 38px;
  margin-right: 36px;
}
body .navigationHoverOptions .options .op1 .content .cl1 li h6 {
  font-size: 16px;
}
body .navigationHoverOptions .options .op1 .content .cl1 li p {
  font-size: 12px;
  margin-top: 3px;
}
body .navigationHoverOptions .options .op1 .content .cl1 li .imgs {
  width: 100%;
  height: 200px;
  margin-top: 16px;
  background: #F6F7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
}
body .navigationHoverOptions .options .op1 .content .cl1 li .imgs img {
  width: 80%;
  height: 80%;
  object-fit: cover;
}
body .navigationHoverOptions .options .op1 .content .cl1 li .imgs:hover {
  background: linear-gradient(to bottom, #111114, #828898);
}
body .navigationHoverOptions .options .op1 .content .cl1 :nth-child(4n) {
  margin-right: 0px;
}
body .navigationHoverOptions .options .op1 .content .cl2, body .navigationHoverOptions .options .op1 .content .cl4 {
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body .navigationHoverOptions .options .op1 .content .cl2 li, body .navigationHoverOptions .options .op1 .content .cl4 li {
  width: calc(50% - 36px);
  margin-top: 38px;
}
body .navigationHoverOptions .options .op1 .content .cl2 li h6, body .navigationHoverOptions .options .op1 .content .cl4 li h6 {
  font-size: 16px;
}
body .navigationHoverOptions .options .op1 .content .cl2 li p, body .navigationHoverOptions .options .op1 .content .cl4 li p {
  font-size: 12px;
  margin-top: 3px;
}
body .navigationHoverOptions .options .op1 .content .cl2 li .imgs, body .navigationHoverOptions .options .op1 .content .cl4 li .imgs {
  width: 100%;
  height: 200px;
  margin-top: 16px;
  background: #F6F7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
}
body .navigationHoverOptions .options .op1 .content .cl2 li .imgs img, body .navigationHoverOptions .options .op1 .content .cl4 li .imgs img {
  width: 80%;
  height: 80%;
  object-fit: cover;
}
body .navigationHoverOptions .options .op1 .content .cl2 li .imgs:hover, body .navigationHoverOptions .options .op1 .content .cl4 li .imgs:hover {
  background: linear-gradient(to bottom, #111114, #828898);
}
body .navigationHoverOptions .options .op1 .content .cl3, body .navigationHoverOptions .options .op1 .content .cl5 {
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
}
body .navigationHoverOptions .options .op1 .content .cl3 li, body .navigationHoverOptions .options .op1 .content .cl5 li {
  width: calc(33.33% - 36px);
  margin-top: 38px;
  margin-right: 36px;
}
body .navigationHoverOptions .options .op1 .content .cl3 li h6, body .navigationHoverOptions .options .op1 .content .cl5 li h6 {
  font-size: 16px;
}
body .navigationHoverOptions .options .op1 .content .cl3 li p, body .navigationHoverOptions .options .op1 .content .cl5 li p {
  font-size: 14px;
  margin-top: 3px;
}
body .navigationHoverOptions .options .op1 .content .cl3 li .imgs, body .navigationHoverOptions .options .op1 .content .cl5 li .imgs {
  width: 100%;
/*  height: 200px;*/
  margin-top: 16px;
  background: #F6F7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
}
body .navigationHoverOptions .options .op1 .content .cl3 li .imgs img, body .navigationHoverOptions .options .op1 .content .cl5 li .imgs img {
  width: 90%;
/*  height: 100%;*/
  object-fit: cover;
}
body .navigationHoverOptions .options .op1 .content .cl3 li .imgs:hover, body .navigationHoverOptions .options .op1 .content .cl5 li .imgs:hover {
  background: linear-gradient(to bottom, #111114, #828898);
}
body .navigationHoverOptions .options .op1 .content .cl3 :nth-child(3n), body .navigationHoverOptions .options .op1 .content .cl5 :nth-child(3n) {
  margin-right: 0px;
}
body .navigationHoverOptions .options .op1 .content ::-webkit-scrollbar {
  opacity: 0;
}
body .navigation.black {
  animation: navigationBlack 1s ease forwards;
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  background: rgba(29, 29, 31, 0.5);
}
@keyframes navigationBlack {
  to {
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    background: rgba(29, 29, 31, 0.7);
  }
}
body .navigationAtPhone {
  position: fixed;
  z-index: 99;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 58px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  display: none;
}
body .navigationAtPhone .menulogo {
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 20px;
}
body .navigationAtPhone .menulogo .menu {
  width: 30px;
  margin: 0 16px;
}
body .navigationAtPhone .menulogo .logo {
  width: 100px;
}
body .navigationAtPhone .funs {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: end;
}
body .navigationAtPhone .funs li {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  margin-left: 24px;
}
body .navigationAtPhone .funs li img {
  width: 26px;
  filter: invert(100%);
}
body .navigationAtPhone .button {
  width: 98px;
  min-width: 98px;
  height: 26px;
  border-radius: 23px;
  color: #FFFFFF;
  font-size: 12px;
  background: #000000;
  opacity: 0.8;
  overflow: hidden;
  margin: 0px 20px;
  margin-right: 40px;
  cursor: pointer;
  transition: all 0.3s;
}
body .navigationAtPhone .button p {
  height: 26px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pani 10s ease infinite;
}
@keyframes pani {
  25% {
    transform: translateY(-26px);
  }
  50% {
    transform: translateY(-26px);
  }
  75% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
body .scrollText {
  --height: 105px;
  position: relative;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  top: -10vh;
  width: 1150px;
  height: var(--height);
  box-shadow: 0 0 8px 0 #82889861;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(21px);
  -webkit-backdrop-filter: saturate(180%) blur(21px);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
body .scrollText .item {
  flex: 1;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
body .scrollText .item .list {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .scrollText .item .list li {
  width: 100%;
  height: var(--height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .scrollText .item .list li p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 0 20px;
  width: 300px;
}
body .scrollText .item .list li span {
  margin-top: 8px;
  font-size: 14px;
}
body .scrollText .item:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
body .productList {
  width: 1150px;
  margin: 0 auto;
  margin-top: 20px;
}
body .productList .titles {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}
body .productList .titles li {
  width: 20%;
  padding-bottom: 18px;
  text-align: center;
  border-bottom: 2px solid #ccc;
  cursor: pointer;
  transition: all 0.3s;
}
body .productList .titles li:hover {
  color: #FF4610;
  border-bottom: 2px solid #FF4610;
}
body .productList .titles .pitch {
  color: #FF4610;
  border-bottom: 2px solid #FF4610;
}
body .productList .productListBox {
  margin: 70px 0;
  display: flex;
  justify-content: space-between;
  height: 572px;
  display: none;
}
body .productList .productListBox .left {
  width: 25%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  color: #FFFFFF;
  cursor: pointer;
}
body .productList .productListBox .left .img1, body .productList .productListBox .left .img2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: all 0.3s;
  border-radius: 8px;
}
body .productList .productListBox .left .img2 {
  opacity: 0;
}
body .productList .productListBox .left h1 {
  position: absolute;
  width: 240px;
  z-index: 1;
  top: 36px;
  left: 30px;
  font-size: 20px;
}
body .productList .productListBox .left .p1 {
  position: absolute;
  z-index: 1;
  top: 120px;
  left: 30px;
  font-size: 14px;
  opacity: 0.8;
  width: 250px;
}
body .productList .productListBox .left .p2 {
  position: absolute;
  z-index: 1;
  top: 146px;
  left: 30px;
  font-size: 14px;
  opacity: 0.8;
}
body .productList .productListBox .left span {
  position: absolute;
  z-index: 1;
  bottom: 60px;
  right: 30px;
  font-size: 14px;
  display: flex;
  transition: all 0.3s;
}
body .productList .productListBox .left span img {
  width: 14px;
  filter: invert(100%);
}
body .productList .productListBox .left:hover .img2 {
  opacity: 1;
}
body .productList .productListBox .left:hover span {
  color: #FF4610;
}
body .productList .productListBox .right {
  flex: 1;
  margin-left: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body .productList .productListBox .right li {
  height: 278px;
  margin-right: 16px;
  margin-top: 16px;
  border-radius: 8px;
  background: #F6F7F8;
  transition: all 0.3s;
  width: calc(50% - 8px);
  cursor: pointer;
  position: relative;
}
body .productList .productListBox .right li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .productList .productListBox .right li span {
  position: absolute;
  top: 20px;
  z-index: 1;
  font-size: 14px;
  right: 26px;
  padding: 2px 12px;
  letter-spacing: 1px;
  justify-content: center;
  align-items: center;
  border-radius: 33px;
  border: 1px solid #000000;
}
body .productList .productListBox .right li:hover {
  background: #dbdfe2;
}
body .productList .productListBox .right :nth-child(1) {
  margin-top: 0px;
}
body .productList .productListBox .right :nth-child(2) {
  margin-top: 0px;
}
body .productList .productListBox .right :nth-child(2n) {
  margin-right: 0px;
}
body .productList .pitchs {
  display: flex;
}
body .productListss {
  display: none;
}
body .equipmentParams {
  /*margin-top: 50px;*/
  width: 100%;
  height: 810px;
  position: relative;
}
body .equipmentParams .bbg {
  width: 100%;
  height: 100%;
}
body .equipmentParams .bbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .equipmentParams .params {
  position: absolute;
  left: 250px;
  top: 50%;
  width: 640px;
  padding: 60px 80px;
  padding-top: 50px;
  transform: translateY(-50%);
  background: rgba(130, 136, 152, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .equipmentParams .params h2 {
  width: 100%;
  background: linear-gradient(116deg, #fff 4.35%, #b6bbc8 54.58%, #fff 100.79%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 38px;
  opacity: 1;
  text-align: center;
  padding-bottom: 18px;
}
body .equipmentParams .params h3 {
  width: 100%;
  background: linear-gradient(116deg, #fff 4.35%, #b6bbc8 54.58%, #fff 100.79%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  opacity: 1;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #4e525b;
  letter-spacing: 1px;
}
body .equipmentParams .params li {
  width: 100%;
  display: flex;
  justify-content: space-around;
  color: #FFFFFF;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 1px solid #4e525b;
}
body .equipmentParams .params li {
  font-size: 12px;
}
body .equipmentParams .params span {
  text-align: center;
  width: 400px;
  font-size: 12px;
  font-weight: 400;
}
body .equipmentParams .params h4 {
  font-size: 15px;
  font-weight: 500;
  color: #ff8b00;
}
body .scheme {
  width: 100%;
  background: #F6F7F8;
  padding: 80px 0px;
}
body .scheme .title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
body .scheme p {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 30px;
}
body .scheme .list {
  display: flex;
  flex-wrap: wrap;
  width: 1080px;
  margin: 0 auto;
}
body .scheme .list li {
  margin: 0px 15px;
  margin-top: 30px;
  width: 150px;
  height: 150px;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  cursor: pointer;
  transition: ease 0.4s;
}
body .scheme .list li .bgs {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: ease 0.4s;
}
body .scheme .list li .icon {
  position: relative;
  width: 60px;
  transition: ease 0.4s;
}
body .scheme .list li span {
  position: relative;
	text-align: center;
  margin-top: 16px;
  font-size: 14px;
  transition: ease 0.4s;
}
body .scheme .list li:hover {
  transform: translateY(-10px);
}
body .scheme .list li:hover .bgs {
  opacity: 1;
}
body .scheme .list li:hover .icon {
  filter: invert(100%);
}
body .scheme .list li:hover span {
  color: #FFFFFF;
}
body .scheme .list .pitch {
  transform: translateY(0px);
}
body .scheme .list .pitch .bgs {
  opacity: 1;
}
body .scheme .list .pitch .icon {
  filter: invert(100%);
}
body .scheme .list .pitch span {
  color: #FFFFFF;
}
body .scheme .list .pitch:hover {
  transform: translateY(0px);
}
body .scheme .list .pitch:hover .bgs {
  opacity: 1;
}
body .scheme .list .pitch:hover .icon {
  filter: invert(100%);
}
body .scheme .list .pitch:hover span {
  color: #FFFFFF;
}
body .scheme .allText {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.3s;
  cursor: pointer;
}
body .scheme .allText img {
  width: 16px;
  margin-left: 6px;
}
body .scheme .allText:hover {
  color: #FF4610;
}
body .about{
	position: relative; 
	width: 100%;
	margin: 0 auto;;
}
body .abouttext{
	position: absolute;
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 100%;
	margin-top: 9vw;
}
body .abouttext h1{
	text-align: center;
    font-size: 40px;
    font-weight: 700;
}
body .abouttext button{
    margin: 14px auto;
    width: 120px;
    height: 36px;
    border-radius: 36px;
    background: #FFFFFF;
    color: #000000;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
body .aboutall{
	height: 20vw;
	overflow-y: scroll;
	font-size: 14px;
    padding: 2vw 10vw;
}
body .aboutall img{
	padding: 60px 30px 0 0;
}
body .aboutall .redline{
	width: 530px;
    text-align: center;
    margin: auto;
    margin-top: 35px;
    height: 2px;
    background: #FF4610;
}
body .about .mask{
	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background-color: rgba(0, 0, 0, 0.5);
}

body .client {
  width: 100%;
  background: #FFFFFF;
  padding: 50px 0px;
}
body .client .title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
body .client p {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 30px;
}
body .client .swiper-client {
  width: 1100px;
  margin-top: 60px;
  height: 500px;
  border-radius: 8px;
  display: flex;
}
body .client .swiper-client .swiper-slide {
  width: 100%;
  height: 500px;
  display: flex;
  background: #F6F7F8;
}
body .client .swiper-client .swiper-slide .imgs {
  width: 50%;
  min-width: 50%;
  height: 100%;
}
body .client .swiper-client .swiper-slide .imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .client .swiper-client .swiper-slide .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 70px;
}
body .client .swiper-client .swiper-slide .info .logo img {
  width: 130px;
}
body .client .swiper-client .swiper-slide .info p {
  font-size: 16px;
    line-height: 1.5;
    width: 100%;
    text-align: start;
}
body .client .swiper-client .swiper-slide .info .more {
  display: flex;
  justify-content: space-between;
  width: 14px;
  white-space: nowrap;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 40px;
}
body .client .swiper-client .swiper-slide .info .more img {
  width: 14px;
}
body .client .swiper-client .swiper-slide .info .more :nth-child(1) {
  color: inherit;
  font-weight: 700;
  cursor: pointer;
}
body .client .swiper-client .swiper-slide .info .more :nth-child(2) {
  color: #FF4610;
}
body .client .swiperbutton {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
body .client .swiperbutton div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  border: 1px solid #e3e3e3;
  margin: 0px 15px;
  cursor: pointer;
}
body .client .swiperbutton div img {
  width: 20px;
  opacity: 0.5;
  padding-left: 3px;
  transition: all 0.3s;
}
body .client .swiperbutton .prev img {
  transform: rotate(180deg);
}
body .client .swiperbutton div:hover img {
  opacity: 1;
}
body .cooperation {
  width: 100%;
  background: #FFFFFF;
  margin-top: 20px;
}
body .cooperation .title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
body .cooperation p {
  margin: 20px auto;
  text-align: center;
  margin-bottom: 30px;
}
body .cooperation .logolist {
  display: flex;
  flex-wrap: wrap;
  width: 1100px;
  margin: 0 auto;
}
body .cooperation .logolist li {
  width: 20%;
  margin-top: 20px;
}
body .cooperation .logolist li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .science {
  width: 100%;
  background: #FFFFFF;
}
body .science .title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
body .science p {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 30px;
}
body .science .swiper-science {
  width: 1100px;
  margin-top: 60px;
  height: 270px;
  display: flex;
}
body .science .swiper-science .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 270px;
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
body .science .swiper-science .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .science .swiper-science .swiper-wrapper .swiper-slide p {
  position: absolute;
  z-index: 10;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin: 0;
}
body .science .swiperbutton {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
body .science .swiperbutton div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  border: 1px solid #e3e3e3;
  margin: 0px 15px;
  cursor: pointer;
}
body .science .swiperbutton div img {
  width: 20px;
  opacity: 0.5;
  padding-left: 3px;
  transition: all 0.3s;
}
body .science .swiperbutton .prev img {
  transform: rotate(180deg);
}
body .science .swiperbutton div:hover img {
  opacity: 1;
}
body .global {
  height: 800px;
  margin-top: 20px;
  position: relative;
  white-space: nowrap;
}
body .global .bg1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body .global .bg2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
body .global .text1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 60px;
  font-size: 38px;
  color: #FFFFFF;
  letter-spacing: 1px;
  font-weight: 900;
  z-index: 1;
}
body .global .text2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 130px;
  font-size: 16px;
  color: #FFFFFF;
  z-index: 1;
}
body .global .line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 200px;
  width: 60px;
  height: 2px;
  background: #FF4610;
}
body .global .text3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
body .global .text3 li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px 70px;
}
body .global .text3 li p {
  font-size: 32px;
  font-weight: 900;
}
body .global .text3 li span {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 900;
}
body .images {
  width: 1150px;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
}
body .images li {
  width: calc(25% -20px);
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  color: #FFFFFF;
}
body .images li .bgs {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
body .images li p {
  position: absolute;
  top: 40px;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 24px;
}
body .images li .line {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 60px;
  height: 2px;
  background: #FF4610;
}
body .images li span {
  position: absolute;
  color: #fff;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  z-index: 1;
  display: flex;
  font-size: 16px;
  transition: all 0.3s;
}
body .images li span img {
  width: 22px;
  padding-left: 6px;
  filter: invert(100%);
}
body .images li:hover .bgs {
  transform: scale(1.1);
}
body .images li:hover span {
  transform: translateX(-50%) translateY(0px);
}
body .products {
  /*margin-top: 45px;*/
  width: 100%;
  background: #F6F7F8;
  padding: 80px 0px;
}
body .products .title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}
body .products .list {
  display: flex;
  justify-content: center;
}
body .products .list li {
  width: 210px;
  height: 200px;
  margin: 0px 30px;
  border: 2px solid #090807;
  transition: all 0.3s;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body .products .list li .icon {
  width: 48px;
  margin-bottom: 24px;
  transition: all 0.3s;
}
body .products .list li span {
  font-size: 22px;
  margin-bottom: 8px;
  transition: all 0.3s;
}
body .products .list li .arr {
  width: 24px;
  transition: all 0.3s;
}
body .products .list li:hover {
  background: #090807;
}
body .products .list li:hover .icon {
  filter: invert(100%);
}
body .products .list li:hover span {
  color: #FFFFFF;
}
body .products .list li:hover .arr {
  filter: invert(100%);
}
body .footer {
  padding-top: 30px;
  background: #000000;
  color: #FFFFFF;
}
body .footer .content {
  width: 1120px;
  margin: 0 auto;
}
body .footer .content .tit {
  font-size: 12px;
  opacity: 0.5;
  padding-bottom: 16px;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 60px;
}
body .footer .content .centerContent {
  display: flex;
  height: 260px;
}
body .footer .content .centerContent .left {
  width: 30%;
  margin-right: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .footer .content .centerContent .left .logo {
  width: 150px;
  filter: invert(100%);
}
body .footer .content .centerContent .left h2 {
  font-size: 16px;
  margin-bottom: 13px;
}
body .footer .content .centerContent .left span {
  font-size: 12px;
}
body .footer .content .centerContent .left .inps {
  margin-top: 16px;
  display: flex;
  border: 1px solid #6C7073;
  border-radius: 4px;
  height: 36px;
  width: 240px;
}
body .footer .content .centerContent .left .inps input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  height: 100%;
  font-size: 12px;
  padding-left: 12px;
  color: #FFFFFF;
}
body .footer .content .centerContent .left .inps .imgs {
  background: #6C7073;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  cursor: pointer;
}
body .footer .content .centerContent .left .inps .imgs img {
  width: 16px;
}
body .footer .content .centerContent .right {
  flex: 1;
  display: flex;
}
body .footer .content .centerContent .right .item {
  width: 25%;
}
body .footer .content .centerContent .right .item .lit {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 18px;
}
body .footer .content .centerContent .right .item li {
  margin-bottom: 14px;
  font-size: 11px;
  opacity: 0.7;
  transition: all 0.2s;
  cursor: pointer;
}
body .footer .content .centerContent .right .item li:hover {
  opacity: 1;
}
body .footer .content .more {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #FFFFFF;
}
body .footer .content .more .left {
  display: flex;
  font-size: 13px;
}
body .footer .content .more .left li {
  margin-right: 20px;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.5;
}
body .footer .content .more .left li:hover {
  opacity: 1;
}
body .footer .content .more .right {
  display: flex;
  padding-right: 2px;
}
body .footer .content .more .right li {
  margin-left: 50px;
  cursor: pointer;
}
body .footer .content .more .right li img {
  width: 16px;
}
body .footer .content .copyright {
  display: flex;
  justify-content: space-between;
  opacity: 0.5;
  font-size: 10px;
  padding: 36px 0px;
}
body .footers {
  display: none;
}
body .navigationMenu {
  display: none;
}
body .switchLanguage {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99;
  cursor: pointer;
  display: none;
}
body .switchLanguage .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: maskAni 0.6s ease forwards;
}
body .switchLanguage .langWindow {
  width: 1080px;
  max-height: 90vh;
  overflow-y: auto;
  padding-top: 50px;
  padding-bottom: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%) translateY(-30%);
  animation: langWindowAni 0.7s ease forwards;
  opacity: 0;
}
body .switchLanguage .langWindow .title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 36px;
}
body .switchLanguage .langWindow .lists {
  width: 916px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body .switchLanguage .langWindow .lists li {
  width: 300px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 0px 16px;
  background: #F6F7F8;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
}
body .switchLanguage .langWindow .lists li .ri {
  color: #666666;
  font-weight: 400;
}
body .switchLanguage .langWindow .lists li:hover {
  background: #000000;
  color: #FFFFFF;
}
body .switchLanguage .langWindow .lists li:hover .ri {
  color: #FFFFFF;
}
@keyframes maskAni {
  to {
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }
}
@keyframes langWindowAni {
  to {
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
  }
}
body .popupvideo {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99;
  cursor: pointer;
  display: none;
}
body .popupvideo .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  animation: maskAni 0.6s ease forwards;
}
@keyframes maskAni {
  to {
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
}
body .popupvideo .window {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  width: 1000px;
  overflow: hidden;
  transform: translateX(-50%) translateY(-42%);
  animation: windowAni 0.7s ease forwards;
  opacity: 0;
}
body .popupvideo .window video {
  width: 100%;
}
body .popupvideo .window .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  padding: 28px 0px;
}
body .popupvideo .window .bottom .button {
  padding: 8px 20px;
  border-radius: 40px;
  color: #FFFFFF;
  background: #FF4610;
  font-size: 14px;
  margin-left: 30px;
  cursor: pointer;
}
body .contactus {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 99;
  cursor: pointer;
  display: none;
}
body .contactus .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  animation: maskAni 0.6s ease forwards;
}
@keyframes maskAni {
  to {
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
}
body .contactus .window {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 50px;
  background: #f6f7f8;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  width: 1000px;
  overflow: hidden;
  transform: translateX(-50%) translateY(-42%);
  animation: windowAni 0.7s ease forwards;
  opacity: 0;
}
body .contactus .window video {
  width: 100%;
}
body .contactus .window .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  padding: 28px 0px;
}
body .contactus .window .bottom .button {
  padding: 8px 20px;
  border-radius: 40px;
  color: #FFFFFF;
  background: #FF4610;
  font-size: 14px;
  margin-left: 30px;
  cursor: pointer;
}
@keyframes windowAni {
  to {
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
  }
}
body .switchLanguage_Phone {
  display: none;
}
form {
      display: flex;
      flex-wrap: wrap;
    }

  .form-group {
      width: 45%;
      margin: 10px;
    }

    label {
      display: block;
      margin-bottom: 5px;
    }

    input,
    textarea {
      width: 100%;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 3px;
    }
   .form-slect{
	margin: 0;
    width: 100%;
    height: 40px
}
.sidebar{
    position: fixed;
    top: 250px;
    left: 0px;
    cursor: pointer;
    z-index: 10;
    width: 80px;
}
.sidegif{
    margin-left: 8px;
    width: 80px;
}

@media (max-width: 1200px) {
  body .swiper-header .swiper-wrapper .swiper-slide .bgmedia :nth-child(1) {
    display: none;
  }
  body .swiper-header .swiper-wrapper .swiper-slide .bgmedia :nth-child(2) {
    display: block;
  }
  body .swiper-header .swiper-wrapper .swiper-slide .bgmedia :nth-child(3) {
    display: none;
  }
  body .navigation .nav {
    padding: 0px 30px;
  }
  body .navigation .nav .menu li {
    padding: 0px 20px;
  }
  body .navigation .nav .funs .line {
    margin: 0 0px;
  }
  body .navigationHoverOptions .options .op2 .content, body .navigationHoverOptions .options .op3 .content, body .navigationHoverOptions .options .op4 .content, body .navigationHoverOptions .options .op5 .content, body .navigationHoverOptions .options .op6 .content, body .navigationHoverOptions .options .op7 .content {
    width: 1000px;
  }
  body .navigationHoverOptions .options .op1 .title .titleList {
    width: 894px;
  }
  body .navigationHoverOptions .options .op1 .content .contentList {
    width: 900px;
  }
  body .scrollText {
    --height: 140px;
    top: -70px;
    width: 950px;
  }
  body .scrollText .item .list li p {
    font-size: 16px;
  }
  body .scrollText .item .list li span {
    font-size: 12px;
    margin-top: 8px;
  }
  body .productList {
    width: 950px;
    margin: 0 auto;
    margin-top: 20px;
  }
  body .productList .titles {
    font-size: 18px;
  }
  body .productList .titles li {
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
  }
  body .productList .titles li:hover {
    border-bottom: 1px solid #FF4610;
  }
  body .productList .titles .pitch {
    border-bottom: 1px solid #FF4610;
  }
  body .productList .productListBox {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    height: 572px;
    display: none;
  }
  body .productList .productListBox .left {
    display: none;
  }
  body .productList .productListBox .right {
    margin-left: 0px;
    display: flex;
  }
  body .productList .productListBox .right li {
    height: 278px;
    margin-right: 16px;
    margin-top: 16px;
    border-radius: 8px;
    background: #F6F7F8;
    transition: all 0.3s;
    width: calc(50% - 8px);
    cursor: pointer;
    position: relative;
  }
  body .productList .productListBox .right li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body .productList .productListBox .right li span {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 1;
    font-size: 14px;
  }
  body .productList .productListBox .right li:hover {
    background: #dbdfe2;
  }
  body .productList .productListBox .right :nth-child(1) {
    margin-top: 0px;
  }
  body .productList .productListBox .right :nth-child(2) {
    margin-top: 0px;
  }
  body .productList .productListBox .right :nth-child(2n) {
    margin-right: 0px;
  }
  body .productList .pitchs {
    display: flex;
  }
  body .equipmentParams {
    margin-top: 100px;
    width: 100%;
    height: 810px;
    position: relative;
  }
  body .equipmentParams .bbg {
    width: 100%;
    height: 100%;
  }
  body .equipmentParams .bbg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body .equipmentParams .params {
    position: absolute;
    left: 150px;
    top: 50%;
    width: 500px;
    padding: 60px 80px;
    padding-top: 50px;
    transform: translateY(-50%);
    background: rgba(130, 136, 152, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body .equipmentParams .params h2 {
    width: 100%;
    background: linear-gradient(116deg, #fff 4.35%, #b6bbc8 54.58%, #fff 100.79%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    opacity: 1;
    text-align: center;
    padding-bottom: 18px;
  }
  body .equipmentParams .params h3 {
    width: 100%;
    background: linear-gradient(116deg, #fff 4.35%, #b6bbc8 54.58%, #fff 100.79%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    opacity: 1;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #4e525b;
    letter-spacing: 1px;
  }
  body .equipmentParams .params li {
    width: 100%;
    display: flex;
    justify-content: space-around;
    color: #FFFFFF;
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px solid #4e525b;
  }
  body .equipmentParams .params li span {
    font-size: 12px;
  }
  body .scheme {
    padding: 20px 0px;
  }
  body .scheme .title {
    font-size: 36px;
  }
  body .scheme p {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 14px;
	padding: 0 20px;
  }
  body .scheme .list {
    width: 900px;
  }
  body .scheme .list li {
    margin: 0px 15px;
    margin-top: 30px;
    width: 150px;
    height: 150px;
  }
  body .scheme .list li .icon {
    width: 60px;
  }
  body .scheme .list li span {
    margin-top: 16px;
    font-size: 14px;
  }
  body .abouttext{
	position: absolute;
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 100%;
	margin-top: 9vw;
}
  body .abouttext h1{
	text-align: center;
    font-size: 32px;
	font-weight: 700;
	}
  body .abouttext p{
    font-size: 12px;
	}
  body .client {
    padding: 50px 0px;
  }
  body .client .title {
    font-size: 36px;
  }
  body .client p {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 14px;
  }
  body .client .swiper-client {
    width: 900px;
    height: 400px;
  }
  body .client .swiper-client .swiper-slide {
    height: 400px;
  }
  body .client .swiper-client .swiper-slide .info {
    padding: 0 10px;
    justify-content: normal;
  }
  body .client .swiper-client .swiper-slide .info .logo {
    margin-bottom: 10px;
  }
  body .client .swiper-client .swiper-slide .info .logo img {
    width: 120px;
  }
  body .client .swiper-client .swiper-slide .info p {
    font-size: 13px;
    line-height: 2;
  }
  body .client .swiper-client .swiper-slide .info .more {
    width: 12px;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  body .client .swiper-client .swiper-slide .info .more img {
    width: 12px;
  }
  body .cooperation {
    width: 100%;
    background: #FFFFFF;
    margin-top: 20px;
  }
  body .cooperation .title {
    font-size: 36px;
  }
  body .cooperation p {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 14px;
  }
  body .cooperation .logolist {
    width: 900px;
  }
  body .science {
    margin-top: 2px;
  }
  body .science .title {
    font-size: 36px;
  }
  body .science p {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 14px;
  }
  body .science .logolist {
    width: 900px;
  }
  body .science .swiper-science {
    width: 900px;
    margin-top: 60px;
    height: 210px;
    border-radius: 8px;
    display: flex;
  }
  body .science .swiper-science .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 210px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
  }
  body .science .swiper-science .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body .global {
    height: 600px;
  }
  body .global .text1 {
    top: 50px;
    font-size: 32px;
  }
  body .global .text2 {
    top: 110px;
    font-size: 16px;
	white-space: break-spaces;
        width: 320px;
        text-align: center;
  }
  body .global .line {
    top: 170px;
    width: 50px;
    height: 1px;
  }
  body .global .text3 {
    top: 205px;
  }
  body .global .text3 li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 50px;
  }
  body .global .text3 li p {
    font-size: 18px;
  }
  body .global .text3 li span {
    margin-top: 6px;
    font-size: 14px;
  }
  body .images {
    width: 950px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
  }
  body .images li {
    width: calc(25% - 20px);
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    color: #FFFFFF;
  }
  body .images li .bgs {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
  }
  body .images li p {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 24px;
  }
  body .images li .line {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 60px;
    height: 2px;
    background: #FF4610;
  }
  body .images li span {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(60px);
    z-index: 1;
    display: flex;
    font-size: 16px;
    transition: all 0.3s;
  }
  body .images li span img {
    width: 22px;
    padding-left: 6px;
    filter: invert(100%);
  }
  body .footer .content {
    width: 950px;
  }
  body .switchLanguage {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 99;
    cursor: pointer;
  }
  body .switchLanguage .mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  body .switchLanguage .langWindow {
    width: 900px;
    padding-top: 40px;
    padding-bottom: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%) translateY(-30%);
    animation: langWindowAni 0.7s ease forwards;
    opacity: 0;
  }
  body .switchLanguage .langWindow .title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 36px;
  }
  body .switchLanguage .langWindow .lists {
    width: 780px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  body .switchLanguage .langWindow .lists li {
    width: 255px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    padding: 0px 16px;
    background: #F6F7F8;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
  }
  body .switchLanguage .langWindow .lists li .ri {
    color: #666666;
    font-weight: 400;
  }
  body .switchLanguage .langWindow .lists li:hover {
    background: #000000;
    color: #FFFFFF;
  }
  body .switchLanguage .langWindow .lists li:hover .ri {
    color: #FFFFFF;
  }
  body .popupvideo .window {
    width: 800px;
  }
  body .popupvideo .window .bottom {
    font-size: 15px;
    padding: 20px 0px;
  }
  body .popupvideo .window .bottom .button {
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 13px;
    margin-left: 24px;
  }
  .sidegif{
    margin-left: 8px;
    width: 70px;
  }
}
@media (max-width: 1023px) {
  body .swiper-header {
    height: 700px;
  }
  body .navigation {
    display: none;
  }
  body .navigationAtPhone {
    display: flex;
  }
  body .scrollText {
    --height: 100px;
    top: -50px;
    width: 700px;
  }
  body .scrollText .item .list li p {
    font-size: 14px;
  }
  body .scrollText .item .list li span {
    font-size: 12px;
    transform: scale(0.9);
    margin-top: 6px;
  }
  body .productList {
    width: 700px;
    margin: 0 auto;
    margin-top: 20px;
  }
  body .productList .titles {
    font-size: 14px;
  }
  body .productList .titles li {
    padding-bottom: 14px;
    border-bottom: 1px solid #ccc;
  }
  body .productList .productListBox {
    margin-top: 40px;
  }
  body .productList .productListBox .right {
    margin-left: 0px;
    display: flex;
  }
  body .productList .productListBox .right li {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .productList .productListBox .right li img {
    width: 80%;
    height: 80%;
    object-fit: cover;
  }
  body .productList .productListBox .right li span {
    top: 22px;
    left: 22px;
    font-size: 12px;
  }
  body .productList .pitchs {
    display: flex;
  }
  body .equipmentParams {
    margin-top: 100px;
    width: 100%;
    height: 810px;
    position: relative;
  }
  body .equipmentParams .bbg {
    width: 100%;
    height: 100%;
  }
  body .equipmentParams .bbg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body .equipmentParams .params {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 500px;
    padding: 60px 80px;
    padding-top: 50px;
    transform: translateY(-50%) translateX(-50%);
    background: rgba(130, 136, 152, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body .equipmentParams .params h2 {
    width: 100%;
    background: linear-gradient(116deg, #fff 4.35%, #b6bbc8 54.58%, #fff 100.79%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    opacity: 1;
    text-align: center;
    padding-bottom: 18px;
  }
  body .equipmentParams .params h3 {
    width: 100%;
    background: linear-gradient(116deg, #fff 4.35%, #b6bbc8 54.58%, #fff 100.79%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    opacity: 1;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #4e525b;
    letter-spacing: 1px;
  }
  body .equipmentParams .params li {
    width: 100%;
    display: flex;
    justify-content: space-around;
    color: #FFFFFF;
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px solid #4e525b;
  }
  body .equipmentParams .params li span {
    font-size: 12px;
  }
  body .scheme {
    padding: 20px 0px;
  }
  body .scheme .title {
    font-size: 36px;
  }
  body .scheme p {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 14px;
	padding: 0 20px;
  }
  body .scheme .list {
    width: 700px;
  }
  body .scheme .list li {
    margin: 0px 15px;
    margin-top: 30px;
    width: 145px;
    height: 145px;
  }
  body .scheme .list li .icon {
    width: 60px;
  }
  body .scheme .list li span {
    margin-top: 16px;
    font-size: 14px;
  }
  body .abouttext{
	position: absolute;
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 100%;
	margin-top: 9vw;
}
  body .abouttext h1{
	text-align: center;
    font-size: 32px;
	font-weight: 700;
	}
  body .abouttext p{
    font-size: 12px;
	}
  body .client {
    padding: 50px 0px;
  }
  body .client .title {
    font-size: 36px;
  }
  body .client p {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 14px;
  }
  body .client .swiper-client {
    width: 700px;
    height: 400px;
  }
  body .client .swiper-client .swiper-slide {
    height: 400px;
  }
  body .client .swiper-client .swiper-slide .info {
    padding: 0 60px;
  }
  body .client .swiper-client .swiper-slide .info .logo {
    margin-bottom: 10px;
  }
  body .client .swiper-client .swiper-slide .info .logo img {
    width: 120px;
  }
  body .client .swiper-client .swiper-slide .info p {
    font-size: 13px;
    line-height: 2;
  }
  body .client .swiper-client .swiper-slide .info .more {
    width: 12px;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  body .client .swiper-client .swiper-slide .info .more img {
    width: 12px;
  }
  body .cooperation {
    width: 100%;
    background: #FFFFFF;
    margin-top: 20px;
  }
  body .cooperation .title {
    font-size: 36px;
  }
  body .cooperation p {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 14px;
  }
  body .cooperation .logolist {
    width: 700px;
  }
  body .science {
    margin-top: 2px;
  }
  body .science .title {
    font-size: 36px;
  }
  body .science p {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 14px;
  }
  body .science .logolist {
    width: 700px;
  }
  body .science .swiper-science {
    width: 700px;
    margin-top: 60px;
    height: 210px;
    border-radius: 8px;
    display: flex;
  }
  body .science .swiper-science .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 210px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
  }
  body .science .swiper-science .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body .science .swiper-science .swiper-wrapper .swiper-slide p {
    font-size: 12px;
    height: 30px;
  }
  body .global .bg1 {
    display: none;
  }
  body .global .bg2 {
    display: block;
  }
  body .global .text1 {
    top: 40px;
    font-size: 24px;
  }
  body .global .text2 {
    top: 90px;
    font-size: 15px;
	  white-space: break-spaces;
        width: 320px;
        text-align: center;
  }
  body .global .line {
    top: 140px;
    width: 50px;
    height: 1px;
  }
  body .global .text3 {
    top: 190px;
  }
  body .global .text3 li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 50px;
  }
  body .global .text3 li p {
    font-size: 16px;
  }
  body .global .text3 li span {
    margin-top: 6px;
    font-size: 14px;
  }
  body .images {
    width: 700px;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  body .images li {
    width: calc(50% - 10px);
    height: 440px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    color: #FFFFFF;
    margin-top: 20px;
  }
  body .images li .bgs {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
  }
  body .images li p {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 24px;
  }
  body .images li .line {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 60px;
    height: 2px;
    background: #FF4610;
  }
  body .images li span {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(60px);
    z-index: 1;
    display: flex;
    font-size: 16px;
    transition: all 0.3s;
  }
  body .images li span img {
    width: 22px;
    padding-left: 6px;
    filter: invert(100%);
  }
  body .products {
    padding: 70px 0px;
  }
  body .products .title {
    font-size: 30px;
    margin-bottom: 60px;
  }
  body .products .list li {
    width: 164px;
    height: 160px;
    margin: 0px 24px;
  }
  body .products .list li .icon {
    width: 40px;
    margin-bottom: 18px;
  }
  body .products .list li span {
    font-size: 18px;
    margin-bottom: 8px;
  }
  body .products .list li .arr {
    width: 20px;
    transition: all 0.3s;
  }
  body .footer .content {
    width: 700px;
  }
  body .switchLanguage {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 99;
    cursor: pointer;
  }
  body .switchLanguage .mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  body .switchLanguage .langWindow {
    width: 640px;
    padding-top: 36px;
    padding-bottom: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%) translateY(-30%);
    animation: langWindowAni 0.7s ease forwards;
    opacity: 0;
  }
  body .switchLanguage .langWindow .title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 36px;
  }
  body .switchLanguage .langWindow .lists {
    width: 540px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  body .switchLanguage .langWindow .lists li {
    width: 263px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    padding: 0px 16px;
    background: #F6F7F8;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
  }
  body .switchLanguage .langWindow .lists li .ri {
    color: #666666;
    font-weight: 400;
  }
  body .switchLanguage .langWindow .lists li:hover {
    background: #000000;
    color: #FFFFFF;
  }
  body .switchLanguage .langWindow .lists li:hover .ri {
    color: #FFFFFF;
  }
  body .popupvideo .window {
    width: 630px;
  }
  body .popupvideo .window .bottom {
    font-size: 14px;
    padding: 20px 0px;
  }
  body .popupvideo .window .bottom .button {
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 12px;
    margin-left: 20px;
  }
  .sidegif{
    margin-left: 8px;
    width: 60px;
  }
}
@media (max-width: 767px) {
  body .swiper-header .swiper-wrapper .swiper-slide .bgmedia :nth-child(1) {
    display: none;
  }
  body .swiper-header .swiper-wrapper .swiper-slide .bgmedia :nth-child(2) {
    display: none;
  }
  body .swiper-header .swiper-wrapper .swiper-slide .bgmedia :nth-child(3) {
    display: block;
  }
  body .swiper-header .swiper-wrapper .swiper-slide .none {
    display: none;
  }
  body .swiper-header .swiper-wrapper .swiper-slide .info {
    top: 30vw;
  }
  body .swiper-header .swiper-wrapper .swiper-slide .info p {
        font-size: 3.5vw;
        padding: 20px 0px;
        text-align: center;
        width: 320px;
        white-space: break-spaces;
  }
  body .swiper-header .swiper-wrapper .swiper-slide .info h1 {
        font-size: 8vw;
	    white-space: break-spaces;
        width: 340px;
        text-align: center;
  }
	
  body .swiper-header .swiper-wrapper .swiper-slide .info h3 {
	white-space: normal;
    font-size: 19px;
    padding: 15px;
    width: 385px;
    text-align: center;
    word-wrap: break-word;
  }
	
  body .swiper-header .swiper-wrapper .swiper-slide .info button {
    width: 30.2vw;
    height: 7.2vw;
    border-radius: 9.6vw;
    font-size: 3.2vw;
  }
  body .swiper-header .swiper-wrapper .swiper-slide .info button img {
    width: 3.3vw;
  }
  body .swiper-header .swiperPages {
    bottom: 12vw;
  }
  body .swiper-header .swiperPages li {
    width: 2.133vw;
    height: 2.133vw;
    border-radius: 2.133vw;
    background: #FFFFFF;
    margin-right: 7px;
    opacity: 0.5;
    transition: all 0.3s;
  }
  body .swiper-header .prevSwiper, body .swiper-header .nextSwiper {
    display: none;
  }
  body .navigationAtPhone .funs {
    margin-right: 30px;
  }
  body .navigationAtPhone .button {
    display: none;
    border: 1px solid red;
  }
  body .scrollText {
    --height: 70px;
    width: 85vw;
    top: -35px;
  }
  body .scrollText .item .list li p {
    font-size: 16px;
  }
  body .scrollText .item .list li span {
    display: none;
    font-size: 12px;
    transform: scale(0.9);
    margin-top: 6px;
  }
  body .scrollText .item:nth-child(1) {
    display: none;
  }
  body .scrollText .item:nth-child(3) {
    display: none;
  }
  body .productList {
    display: none;
  }
  body .productListss {
    display: block;
  }
  body .productListss li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  body .productListss li .title {
    width: 320px;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #f37d08;
  }
  body .productListss li .swiper {
    display: flex;
    width: 90%;
    height: 310px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    cursor: pointer;
  }
  body .productListss li .swiper .swiper-wrapper {
    width: 100%;
    height: 310px;
  }
  body .productListss li .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #F6F7F8;
  }
  body .productListss li .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    object-fit: cover;
  }
  body .productListss li .swiper .swiper-wrapper .swiper-slide span {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 1;
    font-size: 18px;
    font-weight: 600;
  }
  body .productListss li .swiper .swiperPages {
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    display: flex;
  }
  body .productListss li .swiper .swiperPages .pages {
    margin-right: 5px;
    width: 2.133vw;
    height: 2.133vw;
    border-radius: 2.133vw;
    transition: all 0.3s;
    border: 1px solid #000000;
  }
  body .productListss li .swiper .swiperPages .pitch {
    background: #000000;
  }
  body .equipmentParams {
    margin-top: 40px;
    width: 100%;
    height: 810px;
    position: relative;
  }
  body .equipmentParams .bbg {
    width: 100%;
    height: 100%;
  }
  body .equipmentParams .bbg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body .equipmentParams .params {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80vw;
    padding: 10vw 6vw;
    padding-top: 8vw;
    transform: translateY(-50%) translateX(-50%);
    background: rgba(130, 136, 152, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body .equipmentParams .params h2 {
    width: 100%;
    background: linear-gradient(116deg, #fff 4.35%, #b6bbc8 54.58%, #fff 100.79%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 6vw;
    opacity: 1;
    text-align: center;
    padding-bottom: 3vw;
  }
  body .equipmentParams .params h3 {
    width: 100%;
    background: linear-gradient(116deg, #fff 4.35%, #b6bbc8 54.58%, #fff 100.79%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5vw;
    opacity: 1;
    text-align: center;
    padding-bottom: 3.2vw;
    border-bottom: 1px solid #7c7f85;
    letter-spacing: 1px;
  }
  body .equipmentParams .params li {
    width: 100%;
    display: flex;
    justify-content: space-around;
    color: #FFFFFF;
    font-weight: 700;
    padding: 8px 0;
    border-bottom: 1px solid #7c7f85;
  }
  body .equipmentParams .params li span {
    font-size: 3vw;
  }
  body .scheme {
    padding: 20px 0px;
  }
  body .scheme .title {
    font-size: 32px;
  }
  body .scheme p {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 12px;
	padding: 0 20px;
  }
  body .scheme .list {
    width: 700px;
    width: 80%;
    justify-content: space-between;
  }
  body .scheme .list li {
    margin: 0px 0vw;
    margin-top: 4vw;
    width: 21vw;
    height: 21vw;
  }
  body .scheme .list li .icon {
    width: 8vw;
  }
  body .scheme .list li span {
    margin-top: 10px;
    font-size: 12px;
  }
  body .abouttext{
	position: absolute;
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 100%;
	margin-top: 9vw;
}
  body .abouttext h1{
	text-align: center;
    font-size: 32px;
	font-weight: 700;
	}
  body .abouttext p{
    font-size: 12px;
	}
  body .client {
    padding: 50px 0px;
  }
  body .client .title {
    font-size: 32px;
  }
  body .client p {
    margin-top: 12px;
	padding: 0 12px;
    margin-bottom: 24px;
    font-size: 14px;
  }
  body .client .swiper-client {
    width: 88%;
    margin-top: 30px;
    height: 800px;
    border-radius: 8px;
    display: flex;
  }
  body .client .swiper-client .swiper-slide {
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
    background: #F6F7F8;
  }
  body .client .swiper-client .swiper-slide .imgs {
    width: 100%;
  }
  body .client .swiper-client .swiper-slide .imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body .client .swiper-client .swiper-slide .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: inherit;
  }
  body .client .swiper-client .swiper-slide .info .logo img {
    width: 110px;
  }
  body .client .swiper-client .swiper-slide .info p {
    font-size: 13px;
    line-height: 1.5;
/*    letter-spacing: 1px;*/
    width: 100%;
    text-align: start;
  }
  body .client .swiper-client .swiper-slide .info .more {
    display: flex;
    justify-content: space-between;
    width: 14px;
    white-space: nowrap;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 20px;
  }
  body .client .swiper-client .swiper-slide .info .more img {
    width: 14px;
  }
  body .client .swiper-client .swiper-slide .info .more :nth-child(1) {
    color: #444444;
    font-weight: 700;
  }
  body .client .swiper-client .swiper-slide .info .more :nth-child(2) {
    color: #FF4610;
  }
  body .cooperation {
    width: 100%;
    background: #FFFFFF;
    margin-top: 20px;
  }
  body .cooperation .title {
    font-size: 32px;
  }
  body .cooperation p {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 12px;
  }
  body .cooperation .logolist {
    width: 90%;
  }
  body .cooperation .logolist li {
    width: 25%;
  }
  body .science {
    margin-top: 1px;
  }
  body .science .title {
    font-size: 32px;
  }
  body .science p {
    margin-top: 12px;
    margin-bottom: 24px;
    font-size: 14px;
	padding: 0 20px;
  }
  body .science .logolist {
    width: 90%;
  }
  body .science .logolist li {
    width: 25%;
  }
  body .science .swiper-science {
    width: 88%;
    margin-top: 60px;
    height: 140px;
    border-radius: 8px;
    display: flex;
  }
  body .science .swiper-science .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 140px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
  }
  body .science .swiper-science .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  body .global {
	height: 55vw;
    background: #000000;
  }
  body .global .bg1 {
    display: none;
  }
  body .global .bg2 {
    display: block;
  }
  body .global .text1 {
    top: 40px;
    font-size: 24px;
  }
	body .aboutall .redline{
		width: 300px;
	}
/*
  body .global .text2 {
    top: 90px;
    font-size: 15px;
	white-space: break-spaces;
        width: 320px;
        text-align: center;
	 overflow: hidden;
    width: 300px;
    overflow-x: auto;
    white-space: nowrap;
  }
*/
	 body .global .text2 {
    top: 90px;
    font-size: 15px;
  }
  body .global .line {
    display: none;
  }
  body .global .text3 {
    display: none;
  }
  body .images {
    width: 90vw;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  body .images li {
    width: calc(50% - 10px);
    height: 58vw;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    color: #FFFFFF;
    margin-top: 20px;
  }
  body .images li .bgs {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
  }
  body .images li p {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 24px;
  }
  body .images li .line {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 60px;
    height: 2px;
    background: #FF4610;
  }
  body .images li span {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(60px);
    z-index: 1;
    display: flex;
    font-size: 16px;
    transition: all 0.3s;
  }
  body .images li span img {
    width: 22px;
    padding-left: 6px;
    filter: invert(100%);
  }
  body .products {
    margin-top: 0px;
    width: 100%;
    background: #FFFFFF;
    padding: 80px 0px;
  }
  body .products .title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 120px;
  }
  body .products .list {
    width: 90vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  body .products .list li {
    width: 100%;
    border-radius: 2.133vw;
    height: 16vw;
    margin-bottom: 4.267vw;
    padding: 4.8vw 6.4vw;
    border: 0.267vw solid #000;
    transition: all 0.3s;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  body .products .list li .icon {
    width: 6.4vw;
    height: 6.4vw;
    margin-bottom: 0px;
    transition: all 0.3s;
  }
  body .products .list li span {
    margin-bottom: 0px;
    font-size: 4.8vw;
    transition: all 0.3s;
  }
  body .products .list li .arr {
    width: 6.4vw;
    height: 6.4vw;
    margin-bottom: -5px;
    transition: all 0.3s;
  }
  body .footer {
    display: none;
  }
  body .footers {
    display: block;
    background: #000000;
    color: #FFFFFF;
    padding: 5.333vw;
  }
  body .footers .tit {
    font-size: 2.8vw;
    opacity: 0.5;
    margin-bottom: 5.867vw;
  }
  body .footers .list li {
    font-size: 16px;
    padding: 10px 0px;
    border-bottom: 1px solid #FFFFFF;
    display: flex;
    justify-content: space-between;
  }
  body .footers .list li span {
    font-size: 20px;
  }
  body .footers .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 10vw;
  }
  body .footers .info .logo {
    width: 66px;
    filter: invert(100%);
  }
  body .footers .info h2 {
    font-size: 16px;
    margin-bottom: 13px;
  }
  body .footers .info span {
    font-size: 12px;
  }
  body .footers .info .inps {
    margin-top: 16px;
    display: flex;
    border: 1px solid #6C7073;
    border-radius: 4px;
    height: 36px;
  }
  body .footers .info .inps input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    height: 100%;
    font-size: 12px;
    padding-left: 12px;
    color: #FFFFFF;
  }
  body .footers .info .inps .imgs {
    background: #6C7073;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    cursor: pointer;
  }
  body .footers .info .inps .imgs img {
    width: 16px;
  }
  body .footers .link {
    display: flex;
    justify-content: space-between;
    margin-top: 10vw;
    padding: 2px 0;
    padding-bottom: 5vw;
    border-bottom: 1px solid #FFFFFF;
  }
  body .footers .link .left {
    display: flex;
  }
  body .footers .link .left li {
    margin-right: 40px;
  }
  body .footers .link .left li img {
    width: 16px;
  }
  body .footers .link .right {
    font-size: 13px;
    opacity: 0.7;
  }
  body .footers .copyright {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 8vw;
    margin-bottom: 3vw;
  }
  body .footers .copyright p {
    margin-top: 2vw;
  }
  body .navigationMenu {
    display: block;
    z-index: 100;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #FFFFFF;
    width: 100vw;
    height: 0vh;
    flex-direction: column;
    transition: ease 0.5s;
    overflow: hidden;
  }
  body .navigationMenu .navt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    padding: 0px 20px;
  }
  body .navigationMenu .navt .left img {
    width: 22px;
  }
  body .navigationMenu .navt .funs {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  body .navigationMenu .navt .funs li {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    margin-left: 24px;
  }
  body .navigationMenu .navt .funs li img {
    width: 26px;
    filter: invert(100%);
  }
  body .navigationMenu .itembox {
    width: 100vw;
    height: calc(100vh - 138px);
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 20px;
  }
  body .navigationMenu .itembox .item .title {
    display: flex;
    font-size: 20px;
    font-weight: 700;
    justify-content: space-between;
    padding: 20px 40px;
  }
  body .navigationMenu .itembox .item .title img {
    width: 18px;
    transition: all 0.3s;
  }
  body .navigationMenu .itembox .item .title .down {
    transform: rotate(90deg);
  }
  body .navigationMenu .itembox .item .title .up {
    transform: rotate(-90deg);
  }
  body .navigationMenu .itembox .item .list {
    height: 0px;
    overflow: hidden;
    transition: ease 0.4s;
  }
  body .navigationMenu .itembox .item .list li {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    justify-content: space-between;
    height: 55px;
    padding: 0px 40px 0px 60px;
    opacity: 0.8;
  }
  body .navigationMenu .itembox .item .list li img {
    width: 14px;
    opacity: 0.5;
  }
  body .navigationMenu .buttonLs {
    height: 60px;
    display: flex;
    color: #FFFFFF;
  }
  body .navigationMenu .buttonLs .left {
    width: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
  }
  body .navigationMenu .buttonLs .righ {
    width: 50%;
    background: #FF4610;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
  }
  body .navigationMenuShow {
    height: 100vh;
  }
  body .switchLanguage {
    display: none;
  }
  body .switchLanguage_Phone {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    background: #FFFFFF;
    width: 100vw;
    height: 0vh;
    flex-direction: column;
    transition: ease 0.6s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  body .switchLanguage_Phone .navt {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 18px;
    color: #000;
    position: relative;
    font-weight: 700;
    transition: all 0.3s;
  }
  body .switchLanguage_Phone .navt .ri {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body .switchLanguage_Phone .navt .ri img {
    width: 18px;
  }
  body .switchLanguage_Phone .list {
    height: calc(100vh - 80px);
    padding: 0px 10vw;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 20px;
    padding-bottom: 50px;
    transition: all 0.3s;
  }
  body .switchLanguage_Phone .list li {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 700;
    padding: 0px 16px;
    background: #F6F7F8;
    border-radius: 4px;
  }
  body .switchLanguage_Phone .list li .ri {
    color: #666666;
    font-weight: 400;
  }
  body .switchLanguage_PhoneShow {
    height: 100vh;
  }
  body .popupvideo .window {
    width: 88vw;
  }
  body .popupvideo .window .bottom {
    font-size: 14px;
    padding: 20px 26px;
  }
  body .popupvideo .window .bottom span {
    flex: 1;
  }
  body .popupvideo .window .bottom .button {
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 12px;
    margin-left: 26px;
  }
	body .contactus .window {
	width: 400px;
	}
	body .contactus .window form{
    display: block;
	}
	.sidegif{
    margin-left: 8px;
    width: 60px;
    display: none;
  }
}
a {
  text-decoration: none;
  color: inherit;
}
.longtext{
	width: 290px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}