* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-text-size-adjust: none;
}

body,
input,
textarea,
button {
  font-family: Oswald-Regular;
}

input {
  outline: none;
}

/* 引入字体 */
@font-face {
  font-family: "Oswald-Regular";
  src: url(../font/Oswald-Regular.ttf);
}

/* 滚动条 */
body::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #eee;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb {
  background: #C6C3C3;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:vertical:hover {
  background: #C6C3C3;
}

a {
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.header {
  transition: all ease 1s;
  transition-delay: 0.3s;
  background: #ffffff;
  z-index: 999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
}

.header .header-box {
  padding: 0 3.125vw;
  height: 4.1667vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .header-box .phone-menu {
  display: none;
}

.header .header-box .logo {
  width: 13.5833vw;
}

.header .header-box .logo img {
  width: 100%;
}

.header .header-box .menu {
  display: flex;
}

.header .header-box .menu .menu-item {
  transition: all ease 0.5s;
  font-size: 0.8333vw;
  color: #000000;
  margin-right: 3.125vw;
  display: block;
}

.header .header-box .menu .language {
  display: flex;
  align-items: center;
}

.header .header-box .menu .language img {
  width: 1.25vw;
  margin-right: 0.6771vw;
}

.header .header-box .menu .language img:first-child {
  display: none;
}

.header .header-box .menu .active {
  position: relative;
  color: #3350f5!important;
}

.header .header-box .menu .active::before {
  content: "";
  position: absolute;
  left: -0.8854vw;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 0.4688vw;
  height: 0.4688vw;
  border-radius: 50%;
  background: #3350f5;
}

.index-page .header {
  transform: translate3d(0, 0, 0);
  background: none;
}

.index-page .header-before-down {
  transform: translate3d(0, -100%, 0) !important;
}

.index-page .header-box .menu .menu-item {
  color: #ffffff;
}

.index-page .header-box .menu .language img:nth-of-type(2) {
  display: none !important;
}

.index-page .header-box .menu .language img:first-child {
  display: block !important;
}

.index-page .header-up {
  background: #ffffff !important;
}

.index-page .header-up .header-box .menu .menu-item {
  color: #000000 !important;
}

.index-page .header-up .header-box .menu .language img:nth-of-type(2) {
  display: block !important;
}

.index-page .header-up .header-box .menu .language img:first-child {
  display: none !important;
}

.index-page .header-up .header-box .menu .language img:nth-of-type(2) {
  display: block !important;
}

.mouse {
  pointer-events: none;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 9.375vw;
  height: 9.375vw;
  min-width: 80px;
  min-height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.mouse .video i {
  font-size: 1.5625vw;
  /* color: #000000; */
  color: #000;
}

.mouse .text {
  width: 100%;
  text-align: center;
  font-size: 1.5625vw;
  /* color: #000000; */
   color: #000;
}

.mouse-hidden {
  transform: scale(0) !important;
}

.all-img-box {
  width: 100%;
  display: none;
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
}

.all-img-box .all-img-content {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.all-img-box .all-img-content .all-swiper-img {
  position: relative;
  width: 80%;
}

.all-img-box .all-img-content .all-swiper-img .img-prev,
.all-img-box .all-img-content .all-swiper-img .img-next {
  cursor: pointer;
  z-index: 2;
  position: absolute;
  width: 3.6979vw;
  height: 3.6979vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.all-img-box .all-img-content .all-swiper-img .img-prev:hover,
.all-img-box .all-img-content .all-swiper-img .img-next:hover {
  background: #000000;
}

.all-img-box .all-img-content .all-swiper-img .img-prev:hover i,
.all-img-box .all-img-content .all-swiper-img .img-next:hover i {
  color: #ffffff;
}

.all-img-box .all-img-content .all-swiper-img .img-prev i,
.all-img-box .all-img-content .all-swiper-img .img-next i {
  font-size: 1.1458vw;
  color: #ffffff;
}

.all-img-box .all-img-content .all-swiper-img .img-prev {
  left: -5.2083vw;
}

.all-img-box .all-img-content .all-swiper-img .img-prev i {
  transform: rotate(180deg);
}

.all-img-box .all-img-content .all-swiper-img .img-next {
  right: -5.2083vw;
}

.all-img-box .all-img-content .all-swiper-img .img-swiper {
  overflow: hidden;
}

.all-img-box .close {
  position: absolute;
  top: 2.6042vw;
  right: 2.6042vw;
  width: 2.6042vw;
  height: 2.6042vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.all-img-box .close span {
  width: 100%;
  height: 2px;
  background: #ffffff;
}

.all-img-box .close span:first-child {
  transform: rotate(45deg) translateY(1px);
}

.all-img-box .close span:last-child {
  transform: rotate(-45deg) translateY(-1px);
}

.index-video-box {
  width: 100%;
  display: none;
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
}

.index-video-box .close {
  position: absolute;
  top: 2.6042vw;
  right: 2.6042vw;
  width: 2.6042vw;
  height: 2.6042vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.index-video-box .close span {
  width: 100%;
  height: 2px;
  background: #ffffff;
}

.index-video-box .close span:first-child {
  transform: rotate(45deg) translateY(1px);
}

.index-video-box .close span:last-child {
  transform: rotate(-45deg) translateY(-1px);
}

.index-video {
  width: 100%;
  height: 100vh;
  background: #000000;
  display: flex;
  justify-content: center;
}

.index-video video {
  width: 80%;
}

.pb-tip,
.pb-title {
  width: 80%;
  text-align: center;
}

.pb-top {
  padding-top: 3.9063vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.pb-top .pb-tip {
  font-size: 0.8333vw;
  color: #8eb9d8;
}

.pb-top .pb-title {
  font-size: 3.02vw;
  font-weight: bold;
  padding: 0 0 3.9063vw;
  /* color: #000000; */ 
  color: #000;
}

.pb-top .pb-img-box {
  width: 93.75vw;
}

.body-un-scroll {
  overflow: hidden;
}

.product-page {
  padding-top: 4.1667vw;
}

.product-page .loading-container {
  display: none !important;
}

@keyframes titleani {

  0%,
  100%,
  50% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0.5;
  }
}

.product-page .p1 .p1-img-box {
  position: relative;
  border-radius: 5.2083vw;
  overflow: hidden;
}

.product-page .p1 .p1-img-box .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.product-page .p1 .p1-img-box .text .p1-title {
  display: flex;
  justify-content: center;
  display: block;
  transition: all ease 0.5s;
  animation: titleani 4s infinite;
  transition: all ease 0.1s;
  font-size: 5.7292vw;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 3vw;
  text-align: center;
  opacity: 0.3;
}

.product-page .p1 .p1-img-box .text .p1-title:last-child {
  margin-right: 0;
}

.product-page .p1 .p1-img-box .text .p1-title span {
  letter-spacing: normal;
}

.product-page .p1 .p1-img-box .text .p1-tip {
  transition: all ease 0.1s;
  padding-top: 1.6146vw;
  color: #ffffff;
  font-size: 1.25vw;
  letter-spacing: 3.125vw;
  text-align: center;
}

.product-page .p1 .p1-img-box .text .p1-tip span {
  letter-spacing: normal;
}

.product-page .p1 .p1-img-box img {
  width: 100%;
}

.product-page .p2 {
  padding: 5.9375vw 10.4167vw;
}

.product-page .p2 .p2-title {
  font-size: 2.5vw;
  font-weight: bold;
  color: #000;
}

.product-page .p2 .list {
  padding-top: 5.2083vw;
  display: flex;
  justify-content: space-between;
}

.product-page .p2 .list .item {
  width: 17vw;
  flex-shrink: 0;
}

.product-page .p2 .list .item .img {
  overflow: hidden;
  width: 3.6458vw;
}

.product-page .p2 .list .item .img img {
  width: 100%;
}

.product-page .p2 .list .item .p2-item-title {
  font-size: 1.25vw;
  padding: 1.5625vw 0 1.1979vw;
  color: #000;
}

.product-page .p2 .list .item .p2-item-tip {
  font-size: 0.7292vw;
  font-weight: 400;
  color: #666666;
  /* color: #000; */
  line-height: 2;
}

.product-page .p2 .list .item:nth-of-type(4n) {
  margin-right: 0;
}

.product-page .p3 {
  position: relative;
  padding: 4.6875vw 10.4167vw 0;
}

.product-page .p3 .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.product-page .p3 .p3-swiper {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.product-page .p3 .p3-swiper .imgMore {
  cursor: pointer;
  position: absolute;
  right: 27.3542vw;
  bottom: 17.9271vw;
  z-index: 2;
  transition: all ease 0.5s;
  width: 3.5417vw;
  height: 3.5417vw;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.product-page .p3 .p3-swiper .imgMore:hover {
  transform: scale(1.1);
}

.product-page .p3 .p3-swiper .imgMore span {
  display: block;
  width: 0.9375vw;
  height: 1px;
  background: #000000;
}

.product-page .p3 .p3-swiper .imgMore span:nth-of-type(1) {
  transform: translateY(0.5px);
}

.product-page .p3 .p3-swiper .imgMore span:nth-of-type(2) {
  transform: rotate(90deg) translateY(-0.5px);
}

.product-page .p3 .p3-swiper .p3-prev,
.product-page .p3 .p3-swiper .p3-next {
  cursor: pointer;
  z-index: 2;
  position: absolute;
  width: 3.6979vw;
  height: 3.6979vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #707070;
  border-radius: 50%;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.product-page .p3 .p3-swiper .p3-prev:hover,
.product-page .p3 .p3-swiper .p3-next:hover {
  background: #000000;
}

.product-page .p3 .p3-swiper .p3-prev:hover i,
.product-page .p3 .p3-swiper .p3-next:hover i {
  color: #ffffff;
}

.product-page .p3 .p3-swiper .p3-prev i,
.product-page .p3 .p3-swiper .p3-next i {
  font-size: 1.1458vw;
  color: #444444;
}

.product-page .p3 .p3-swiper .p3-prev {
  left: 10.4167vw;
  top: 70%;
}

.product-page .p3 .p3-swiper .p3-prev i {
  transform: rotate(180deg);
}

.product-page .p3 .p3-swiper .p3-next {
  right: 10.4167vw;
  top: 70%;
}

.product-page .p3 .p3-swiper .swiper-slide {
  transition: all ease 0.5s;
  position: relative;
  opacity: 0 !important;
}

.product-page .p3 .p3-swiper .swiper-slide img {
  width: 100%;
}

.product-page .p3 .p3-swiper .swiper-slide .swiper-text {
  padding-left: 2px;
  left: 10.4167vw;
  top: 4.6875vw;
}

.product-page .p3 .p3-swiper .swiper-slide .swiper-text .swiper-title {
  font-size: 2.5vw;
  font-weight: bold;
  /* color: #000000; */
  color: #000;
  padding-bottom: 1.8229vw;
}

.product-page .p3 .p3-swiper .swiper-slide .swiper-text .swiper-sm-title {
  font-size: 1.4583vw;
  /* color: #000000; */
  color: #000;
  font-weight: bold;
  padding-bottom: 0.5208vw;
}

.product-page .p3 .p3-swiper .swiper-slide .swiper-text .swiper-tip {
  width: 21.6667vw;
  font-size: 0.8333vw;
  color: #666666;
  line-height: 1.5;
  padding-bottom: 1.0417vw;
  font-weight: 400;
}

.product-page .p3 .p3-swiper .swiper-slide .swiper-text .swiper-btn {
  cursor: pointer;
  transition: all ease 0.5s;
  display: flex;
  border-radius: 1.5625vw;
  width: fit-content;
  background: #3350f5;
  padding: 0.8333vw 2.8125vw 0.9375vw 1.5625vw;
  font-size: 0.8333vw;
  /* color: #bbd7eb; */
  color: #fff;
}

.product-page .p3 .p3-swiper .swiper-slide .swiper-text .swiper-btn:hover {
  background: none;
  box-shadow: 0 0 0 2px #000;
  color: #000;
}

.product-page .p3 .p3-swiper .swiper-slide .swiper-text .swiper-btn:hover i {
  display: block;
  transform: translate3d(50%, 0, 0);
  color: #000;
}

.product-page .p3 .p3-swiper .swiper-slide .swiper-text .swiper-btn i {
  transition: all ease 0.5s;
  margin-left: 2.8646vw;
  font-size: 1.0938vw;
  color: #bbd7eb;
}

.product-page .p3 .p3-swiper .swiper-slide .swiper-img {
  transition: all ease 1s;
  transform: translate3d(-30px, 0, 0);
  width: 100%;
  padding-top: 4.4167vw;
  opacity: 0;
}

.product-page .p3 .p3-swiper .swiper-slide-active {
  z-index: 2;
  opacity: 1 !important;
}

.product-page .p3 .p3-swiper .swiper-slide-active .swiper-img {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.product-page .p4 {
  padding: 4.9479vw 10.4167vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-page .p4 .title {
  font-size: 2.5vw;
  font-weight: bold;
}

.product-page .p5 {
  position: relative;
  overflow: hidden;
  background: #13203A;
}

.product-page .p5 .p5-item {
  position: relative;
}

.product-page .p5 .p5-item .video {
  width: 100%;
}

.product-page .p5 .p5-item .video img {
  width: 100%;
}

.product-page .p5 .p5-item .video video {
  width: 100%;
}

.product-page .p5 .p5-item .p5-item-text {
  position: absolute;
  left: 10.4167vw;
  top: 14.0625vw;
}

.product-page .p5 .p5-item .p5-item-text .p5-item-title {
  font-size: 1.6667vw;
  color: #ffffff;
  padding-bottom: 1.3021vw;
}

.product-page .p5 .p5-item .p5-item-text .p5-item-tip p {
  font-size: 1.0417vw;
  font-weight: 400;
  color: #ffffff;
  padding-bottom: 0.4167vw;
}

.technology-page {
  padding-top: 4.1667vw;
}

.technology-page .loading-container {
  display: none !important;
}

.technology-page .t1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 3.9063vw;
}

.technology-page .t1 .t1-swiper-box {
  overflow: hidden;
  position: relative;
  border-radius: 5.2083vw;
}

.technology-page .t1 .t1-swiper-box .nav {
  z-index: 2;
  position: absolute;
  right: 1.5625vw;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.technology-page .t1 .t1-swiper-box .nav .nav-item {
  font-size: 0.9375vw;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 1.0417vw;
}

.technology-page .t1 .t1-swiper-box .nav .nav-item:last-child {
  margin-bottom: 0;
}

.technology-page .t1 .t1-swiper-box .nav .nav-active {
  position: relative;
}

.technology-page .t1 .t1-swiper-box .nav .nav-active::before {
  content: '';
  position: absolute;
  left: -0.9375vw;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 0;
  height: 0;
  border-top: 0.4167vw solid transparent;
  /* 三角形的上边 */
  border-bottom: 0.4167vw solid transparent;
  /* 三角形的下边 */
  border-left: 0.5208vw solid #ffffff;
  /* 三角形的左边，可以根据需要调整颜色和宽度 */
}

.technology-page .t1 .t1-swiper-box .swiper-pagination {
  left: 7.2917vw;
  bottom: 5.2083vw;
}

.technology-page .t1 .t1-swiper-box .swiper-pagination .swiper-pagination-bullet {
  width: 0.625vw;
  height: 0.625vw;
  margin-right: 0.9375vw;
  background: #f7f7f7;
  opacity: 1;
}

.technology-page .t1 .t1-swiper-box .swiper-pagination .swiper-pagination-bullet-active {
  background: #000000;
}

.technology-page .t1 .t1-swiper-box .swiper-slide {
  position: relative;
}

.technology-page .t1 .t1-swiper-box .swiper-slide img {
  width: 100%;
}

.technology-page .t1 .t1-swiper-box .swiper-slide .text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 9.8958vw 0 9.8958vw 7.2917vw;
}

.technology-page .t1 .t1-swiper-box .swiper-slide .text .top .slide-title {
  font-size: 2.5vw;
  color: #000000;
  font-weight: bold;
  padding-bottom: 1.5104vw;
}

.technology-page .t1 .t1-swiper-box .swiper-slide .text .top .slide-tip {
  font-size: 1.25vw;
  color: #000000;
}

.technology-page .t1 .t1-swiper-box .swiper-slide .text .bottom {
  display: flex;
}

.technology-page .t1 .t1-swiper-box .swiper-slide .text .bottom .bottom-item-left div,
.technology-page .t1 .t1-swiper-box .swiper-slide .text .bottom .bottom-item-right div {
  font-size: 1.25vw;
  font-weight: bold;
  padding-bottom: 0.5208vw;
}

.technology-page .t1 .t1-swiper-box .swiper-slide .text .bottom .bottom-item-left {
  padding-right: 2.5vw;
}

.technology-page .t1 .t1-swiper-box .swiper-slide .text .bottom .bottom-item-left .item-left:nth-of-type(1) {
  color: #000000;
}

.technology-page .t1 .t1-swiper-box .swiper-slide .text .bottom .bottom-item-left .item-left:nth-of-type(2) {
  color: #ed5858;
}

.technology-page .t1 .t1-swiper-box .swiper-slide .text .bottom .bottom-item-left .item-left:nth-of-type(3) {
  color: #34a471;
}

.technology-page .t1 .t1-swiper-box .swiper-slide .text .bottom .bottom-item-left .item-left:nth-of-type(4) {
  color: #7030a0;
}

.technology-page .t1 .t1-swiper-box .swiper-slide .text .bottom .bottom-item-right .item-right {
  color: #666666;
}

.technology-page .t2 {
  padding: 9.2188vw 10.4167vw 13.2813vw;
}

.technology-page .t2 .row {
  display: flex;
  margin-bottom: 6.1458vw;
}

.technology-page .t2 .row:last-child {
  margin-bottom: 0;
}

.technology-page .t2 .row:nth-of-type(2n) .text-box {
  padding-left: 5.5208vw;
  order: -1;
}

.technology-page .t2 .row .img-box {
  overflow: hidden;
  width: 50%;
}

.technology-page .t2 .row .img-box:hover video {
  transform: scale(1.1);
}

.technology-page .t2 .row .img-box video {
  width: 100%;
  transition: all ease 0.5s;
}

.technology-page .t2 .row .text-box {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 5vw;
}

.technology-page .t2 .row .text-box .title {
  font-size: 2.5vw;
  font-weight: bold;
  /* color: #000000; */
  color: #3350f5;
  padding-bottom: 1.0417vw;
}

.technology-page .t2 .row .text-box .tip p {
  font-size: 1.0417vw;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 0.7813vw;
  position: relative;
}

.technology-page .t2 .row .text-box .tip p:last-child {
  margin-bottom: 0;
}

/* .technology-page .t2 .row .text-box .tip p::before {
  content: '';
  position: absolute;
  width: 0.5208vw;
  height: 0.5208vw;
  left: -1.0417vw;
  top: 0.5208vw;
  border-radius: 50%;
  background: #000000;
} */

.news-page {
  padding-top: 4.1667vw;
}

.news-page .loading-container {
  display: none !important;
}

.news-page .ns1 {
  display: flex;
}

.news-page .ns1 .left {
  overflow: hidden;
  width: 50%;
}

.news-page .ns1 .left:hover img {
  transform: scale(1.1);
}

.news-page .ns1 .left img {
  transition: all ease 0.5s;
  width: 100%;
}

.news-page .ns1 .right {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.news-page .ns1 .right .n1-swiper {
  overflow: hidden;
}

.news-page .ns1 .right .n1-swiper .swiper-slide {
  padding: 0 5.2083vw;
}

.news-page .ns1 .right .n1-swiper .swiper-slide .title {
  font-size: 1.25vw;
  /* color: #000000; */
  color: #000;
  padding-bottom: 1.1458vw;
}

.news-page .ns1 .right .n1-swiper .swiper-slide .content,
.news-page .ns1 .right .n1-swiper .swiper-slide .date {
  padding-right: 5.2083vw;
  font-size: 0.7292vw;
  color: #666666;
  font-weight: 400;
  padding-bottom: 1.25vw;
}

.news-page .ns1 .right .n1-swiper .swiper-slide .date {
  padding-bottom: 0;
}

.news-page .ns1 .right .swiper-pagination {
  margin-top: 3.4375vw;
  position: relative;
  text-align: left;
  padding: 0 5.2083vw;
}

.news-page .ns1 .right .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 1.4063vw;
  height: 0.2083vw;
  background: #3350f5;
  margin-right: 0.625vw;
  min-width: 15px;
  min-height: 2px;
}

.news-page .ns1 .right .swiper-pagination .swiper-pagination-bullet-active {
  /* background: #000000; */
  color: #3350f5;
}

.news-page .ns2 {
  padding: 5.2083vw 10.4167vw 5.8854vw;
}

.news-page .ns2 .ns2-list {
  display: flex;
  flex-wrap: wrap;
}

.news-page .ns2 .ns2-list .ns2-item {
  width: 24.7958vw;
  margin-right: 2.0833vw;
  margin-bottom: 3.75vw;
}

.news-page .ns2 .ns2-list .ns2-item:hover img {
  transform: scale(1.1);
}

.news-page .ns2 .ns2-list .ns2-item:nth-of-type(3n) {
  margin-right: 0;
}

.news-page .ns2 .ns2-list .ns2-item .img-box {
  overflow: hidden;
}

.news-page .ns2 .ns2-list .ns2-item .img-box img {
  transition: all ease 0.5s;
  width: 100%;
}

.news-page .ns2 .ns2-list .ns2-item .title {
  padding-top: 1.3542vw;
  /* color: #000000; */
  color: #000;
  font-size: 0.9375vw;
  font-weight: bold;
}

.news-page .ns2 .ns2-list .ns2-item .content,
.news-page .ns2 .ns2-list .ns2-item .date {
  font-size: 0.7292vw;
  color: #666666;
  font-weight: 400;
}

.news-page .ns2 .ns2-list .ns2-item .content {
  padding-top: 0.8333vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-page .ns2 .ns2-list .ns2-item .date {
  padding-top: 1.0417vw;
}

.news-page .ns2 .paging {
  padding-top: 1.5625vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-page .ns2 .paging .item {
  width: 3.75vw;
  height: 3.75vw;
  background: #F7F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-weight: 400;
  border-radius: 50%;
  margin-right: 1.3021vw;
}

.news-page .ns2 .paging .item:last-child {
  margin-right: 0;
}

.news-page .ns2 .paging .active {
  /* background: #000000; */
  background-color: #3350f5;
  color: #ffffff;
}

.news-page .n3 {
  position: relative;
}

.news-page .n3 img {
  width: 100%;
}

.news-page .n3 .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.news-page .n3 .text .title {
  font-size: 2.5vw;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding-bottom: 0.9896vw;
}

.news-page .n3 .text .contact-btn {
  transition: all ease 0.5s;
  display: flex;
  align-items: center;
  padding: 0.8333vw 2.8125vw 0.8333vw 1.5625vw;
  background: #ffffff;
  border-radius: 1.5625vw;
  font-size: 0.8333vw;
  /* color: #000000; */
  color: #000;
}

.news-page .n3 .text .contact-btn:hover {
  background: #3350f5;
  color: #fff;
}

.news-page .n3 .text .contact-btn:hover i {
  color: #fff;
  transform: translate3d(1.0417vw, 0, 0);
}

.news-page .n3 .text .contact-btn i {
  display: block;
  transition: all ease 0.5s;
  margin-left: 2.8646vw;
  font-size: 1.0938vw;
  color: #000000;
}

.news-detail-page {
  padding-top: 4.1667vw;
}

.news-detail-page .loading-container {
  display: none !important;
}

.news-detail-page .detail {
  padding: 4.8438vw 29.1667vw 5.8333vw;
}

.news-detail-page .detail .title {
  font-size: 1.875vw;
  font-weight: bold;
  color: #000000;
  line-height: 1.5;
  padding-bottom: 0.8333vw;
}

.news-detail-page .detail .tip {
  display: flex;
}

.news-detail-page .detail .tip div {
  font-size: 0.8333vw;
  font-weight: 400;
  color: #454545;
  margin-right: 2.3958vw;
}

.news-detail-page .detail .tip div:last-child {
  margin-right: 0;
}

.news-detail-page .detail .content {
  padding-top: 2.0313vw;
}

.news-detail-page .detail .content p {
  font-size: 0.8333vw;
  color: #666666;
  padding-bottom: 1.5625vw;
  line-height: 1.5;
}

.news-detail-page .detail .content p img {
  width: 100%;
}

.news-detail-page .detail .share {
  padding-top: 3.0208vw;
  display: flex;
  align-items: center;
}

.news-detail-page .detail .share .share-title {
  font-size: 0.8333vw;
  color: #000000;
  padding-right: 1.0417vw;
}

.news-detail-page .detail .share .list {
  display: flex;
}

.news-detail-page .detail .share .list .item-box {
  position: relative;
  margin-right: 0.7292vw;
  cursor: pointer;
}

.news-detail-page .detail .share .list .item-box:hover .item-tip {
  display: block;
}

.news-detail-page .detail .share .list .item-box:last-child {
  margin-right: 0;
}

.news-detail-page .detail .share .list .item-box .item {
  width: 2.3958vw;
  overflow: hidden;
}

.news-detail-page .detail .share .list .item-box .item-tip {
  display: none;
  position: absolute;
  white-space: nowrap;
  left: 50%;
  bottom: -1.9271vw;
  padding: 0.2083vw 0.4167vw;
  color: #666666;
  font-size: 0.625vw;
  font-weight: 400;
  background: rgba(102, 102, 102, 0.18);
  transform: translate3d(-50%, 0, 0);
}

.news-detail-page .detail .share .list .item-box .item-tip::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate3d(-50%, -100%, 0);
  border-bottom: 0.4688vw solid rgba(102, 102, 102, 0.18);
  /* 三角形的上边 */
  border-right: 0.2344vw solid transparent;
  /* 三角形的下边 */
  border-left: 0.2344vw solid transparent;
  /* 三角形的左边，可以根据需要调整颜色和宽度 */
}

.news-detail-page .more-swiper-box {
  position: relative;
  padding: 5.2083vw 0 6.25vw 10.4167vw;
}

.news-detail-page .more-swiper-box .more-mask {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-page .more-swiper {
  padding-top: 3px;
  overflow: hidden;
  position: relative;
}

.news-detail-page .more-swiper .top {
  padding-right: 10.4167vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-detail-page .more-swiper .top .top-title {
  font-size: 0.9375vw;
  font-weight: bold;
  color: #000000;
}

.news-detail-page .more-swiper .top .more-btn {
  display: flex;
  align-items: center;
  padding: 0.8333vw 2.8125vw 0.8333vw 1.5625vw;
  font-size: 0.8333vw;
  color: #000000;
  background: #000000;
  border-radius: 1.5625vw;
  color: #BBD7EB;
  transition: all ease 0.5s;
}

.news-detail-page .more-swiper .top .more-btn:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 0 2px #000000;
}

.news-detail-page .more-swiper .top .more-btn:hover i {
  color: #000000;
  transform: translate3d(0.7813vw, 0, 0);
}

.news-detail-page .more-swiper .top .more-btn i {
  transition: all ease 0.5s;
  display: block;
  margin-left: 2.8125vw;
  font-size: 1.0938vw;
}

.news-detail-page .more-swiper .swiper-box {
  margin-top: 2.6042vw;
  margin-right: 10.4167vw;
  position: relative;
}

.news-detail-page .more-swiper .swiper-box .navi {
  z-index: 2;
  position: absolute;
  right: 1.875vw;
  top: 8.8021vw;
  transform: translate3d(100%, -50%, 0);
  display: flex;
}

.news-detail-page .more-swiper .swiper-box .navi div {
  width: 3.75vw;
  height: 3.75vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  margin-right: 1.6667vw;
  transition: all ease 0.5s;
}

.news-detail-page .more-swiper .swiper-box .navi div:last-child {
  margin-right: 0;
  transform: rotate(180deg);
}

.news-detail-page .more-swiper .swiper-box .navi div i {
  transition: all ease 0.5s;
  font-size: 1.0417vw;
}

.news-detail-page .more-swiper .swiper-box .navi div:hover {
  background: #000000;
}

.news-detail-page .more-swiper .swiper-box .navi div:hover i {
  color: #ffffff;
}

.news-detail-page .more-swiper .swiper-box .swiper-slide:hover .slide-img img {
  transform: scale(1.1);
}

.news-detail-page .more-swiper .swiper-box .swiper-slide .slide-img {
  overflow: hidden;
}

.news-detail-page .more-swiper .swiper-box .swiper-slide .slide-img img {
  transition: all ease 0.5s;
  width: 100%;
}

.news-detail-page .more-swiper .swiper-box .swiper-slide .slide-title {
  font-size: 0.9375vw;
  color: #000000;
  font-weight: bold;
  padding: 1.3542vw 0 1.25vw;
}

.news-detail-page .more-swiper .swiper-box .swiper-slide .slide-date {
  font-size: 0.8333vw;
  color: #111111;
  font-weight: 100;
}

.about-page {
  padding-top: 4.1667vw;
}

.about-page .a1 {
  padding-top: 7.3438vw;
}

.about-page .a1 .a1-title {
  font-size: 3.0208vw;
  /* color: #000000; */
  color: #000;
  font-weight: bold;
  padding-bottom: 3.9063vw;
}

.about-page .a1 .a1-img-box {
  border-radius: 5.2083vw;
  overflow: hidden;
  position: relative;
}

.about-page .a1 .a1-img-box img {
  width: 100%;
}

.about-page .a1 .a1-img-box .a1-text {
  position: absolute;
  left: 8.1771vw;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.about-page .a1 .a1-img-box .a1-text .item {
  padding-bottom: 3.6458vw;
}

.about-page .a1 .a1-img-box .a1-text .item:last-child {
  padding-bottom: 0;
}

.about-page .a1 .a1-img-box .a1-text .item .title {
  display: flex;
  color: #ffffff;
  align-items: flex-end;
  font-weight: bold;
}

.about-page .a1 .a1-img-box .a1-text .item .title span {
  display: block;
  line-height: 1;
}

.about-page .a1 .a1-img-box .a1-text .item .title span:nth-of-type(1) {
  font-size: 2.5vw;
}

.about-page .a1 .a1-img-box .a1-text .item .title span:nth-of-type(2) {
  font-size: 2.5vw;
}

.about-page .a1 .a1-img-box .a1-text .item .title span:nth-of-type(3) {
  padding-bottom: 0.3125vw;
  font-size: 1.0938vw;
  padding-left: 0.6771vw;
}

.about-page .a1 .a1-img-box .a1-text .item .tip {
  font-size: 1.0417vw;
  color: #ffffff;
  padding-top: 0.9375vw;
}

.about-page .a2 {
  padding: 6.7708vw 10.4167vw 0 11.4583vw;
}

.about-page .a2 .a2-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 4.2188vw;
}

.about-page .a2 .a2-item .a2-title {
  width: 100%;
  font-size: 2.5vw;
  /* color: #000000; */
  color: #000;
  font-weight: bold;
}

.about-page .a2 .a2-item .a2-swiper-box {
  padding: 0 1px;
  overflow: hidden;
  flex-shrink: 0;
  width: 49.4792vw;
}

.about-page .a2 .a2-item .a2-swiper-box .swiper-slide .a2-slide-title {
  font-size: 0.8333vw;
  color: #666666;
  font-weight: 400;
  padding-top: 0.625vw;
  text-align: center;
}

.about-page .a2 .a2-item .a2-swiper-box .swiper-slide .a2-slide-img {
  box-sizing: border-box;
  transition: all ease 0.5s;
  border-top: solid 1px #f0f0f0;
  border-bottom: solid 1px #f0f0f0;
  border-right: solid 1px #f0f0f0;
}

.about-page .a2 .a2-item .a2-swiper-box .swiper-slide .a2-slide-img:first-child {
  border-left: solid 1px #f0f0f0;
}

.about-page .a2 .a2-item .a2-swiper-box .swiper-slide .a2-slide-img img {
  width: 100%;
}

.about-page .a2 .a2-item .a2-swiper-box .swiper-slide:hover .a2-slide-img {
  box-shadow: 0.7292vw 0.8333vw 1.5625vw 0.0521vw rgba(0, 0, 0, 0.16);
}

.about-page .a2 .a2-item .swiper-pagination {
  padding-top: 2.2917vw;
  position: relative;
}

.about-page .a2 .a2-item .swiper-pagination .swiper-pagination-bullet {
  width: 0.625vw;
  height: 0.625vw;
  background: #c9c9c9 !important;
  margin-right: 0.9375vw;
}

.about-page .a2 .a2-item .swiper-pagination .swiper-pagination-bullet-active {
  background: #000000 !important;
}

.about-page .a3 {
  position: relative;
}

.about-page .a3 img {
  width: 100%;
}

.about-page .a3 .a3-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  padding: 0 18.75vw;
  text-align: center;
}

.about-page .a3 .a3-text .a3-title {
  font-size: 2.5vw;
  color: #ffffff;
  font-weight: bold;
  padding-bottom: 0.9375vw;
}

.about-page .a3 .a3-text .a3-content p {
  font-size: 1.0417vw;
  color: #ffffff;
  line-height: 1.7;
}

.about-page .a4 {
  padding: 5.4167vw 13.5417vw 6.25vw;
  background: #F1F3F7;
}

.about-page .a4 .a4-box {
  position: relative;
}

.about-page .a4 .a4-box .a4-img {
  position: absolute;
  bottom: 0;
  right: 2.9167vw;
  width: 25vw;
}

.about-page .a4 .a4-box .a4-img img {
  transition: all ease 0.4s;
  width: 100%;
}

.about-page .a4 .a4-box .a4-img .hide {
  opacity: 0;
  transform: translate3d(20px, 0, 0);
}

.about-page .a4 .a4-box .a4-title {
  padding-top: 2.2396vw;
  font-size: 2.5vw;
  /* color: #000000; */
  color: #000;
  font-weight: bold;
}

.about-page .a4 .a4-box .a4-scroll-box {
  margin-top: 3.8542vw;
  height: 21vw;
  overflow: auto;
}

.about-page .a4 .a4-box .a4-scroll-box::-webkit-scrollbar {
  padding: 50px 0;
  width: 4px;
  height: 100px;
}

.about-page .a4 .a4-box .a4-scroll-box::-webkit-scrollbar-track {
  background-color: rgb(208, 217, 226);
}

.about-page .a4 .a4-box .a4-scroll-box::-webkit-scrollbar-thumb {
  background: #3350f5;
  border-radius: 0;
}

.about-page .a4 .a4-box .a4-scroll .item {
  width: 50%;
  font-size: 1.25vw;
  color: #000000;
  opacity: 0.4;
  margin-bottom: 2.0833vw;
  position: relative;
  padding-left: 1.5625vw;
}

.about-page .a4 .a4-box .a4-scroll .item:last-child {
  margin-bottom: 0;
}

.about-page .a4 .a4-box .a4-scroll .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.4167vw;
  height: 0.4167vw;
  background: #3350f5;
  opacity: 0.4;
  transform: translate3d(0, -50%, 0);
  border-radius: 50%;
}

.about-page .a4 .a4-box .a4-scroll .active {
  opacity: 1;
  color: #3350f5;
}

.about-page .a4 .a4-box .a4-scroll .active::before {
  opacity: 1;
}

.about-page .a5 {
  padding: 9.5313vw 10.3125vw 10.5729vw 7.2917vw;
  position: relative;
}

.about-page .a5 .a5-mask {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .a5 .a5-title {
  font-size: 2.5vw;
  font-weight: 600;
  /* color: #000000; */
  color: #000;
  padding-left: 3.125vw;
  padding-bottom: 2.7604vw;
}

.about-page .a5 .a5-swiper {
  overflow: hidden;
}

.about-page .a5 .a5-swiper .a5-slide-img {
  overflow: hidden;
}

.about-page .a5 .a5-swiper .a5-slide-img:hover img {
  transform: scale(1.1);
}

.about-page .a5 .a5-swiper .a5-slide-img img {
  transition: all ease 0.5s;
  width: 100%;
}

.about-page .a5 .a5-swiper .a5-slide-text .title {
  padding: 0.625vw 0;
  display: flex;
  align-items: center;
  font-size: 0.8333vw;
  font-weight: bold;
  /* color: #000000; */
  color: #000;
}

.about-page .a5 .a5-swiper .a5-slide-text .title i {
  font-size: 0.8333vw;
  color: #000;
  margin-right: 0.4167vw;
}

.about-page .a5 .a5-swiper .a5-slide-text .site {
  font-size: 0.7292vw;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
}

.join-page {
  padding-top: 4.1667vw;
}

.join-page .p1-img-box {
  border-radius: 5.2083vw;
  overflow: hidden;
}

.join-page .j2 {
  padding: 4.6875vw 14.7917vw 6.25vw 10.4167vw;
}

.join-page .j2-swiper {
  overflow: hidden;
}

.join-page .j2-swiper .img {
  width: 100%;
  overflow: hidden;
}

.join-page .j2-swiper .img:hover img {
  transform: scale(1.1);
}

.join-page .j2-swiper .img img {
  transition: all ease 0.5s;
  width: 100%;
}

.join-page .j2-swiper .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.join-page .j2-swiper .left .img:first-child {
  height: 21.5625vw;
  margin-bottom: 1.1979vw;
}

.join-page .j2-swiper .left .img:last-child {
  height: 14.8958vw;
}

.join-page .j2-swiper .center .img {
  height: 37.6563vw;
}

.join-page .j2-swiper .right .img:first-child {
  height: 14.8958vw;
  margin-bottom: 1.1979vw;
}

.join-page .j2-swiper .right .img:last-child {
  height: 21.5625vw;
}

.join-page .j2-swiper .swiper-pagination {
  padding-top: 2.2917vw;
  position: relative;
}

.join-page .j2-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.625vw;
  height: 0.625vw;
  background: #c9c9c9 !important;
  margin-right: 0.9375vw;
}

.join-page .j2-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #000000 !important;
}

.join-page .j3 {
  padding: 0 10.4167vw;
  display: flex;
  width: 100%;
}

.join-page .j3 .j3-left {
  width: 18.75vw;
  flex-shrink: 0;
  font-size: 2.5vw;
  color: #000;
  font-weight: bold;
}

.join-page .j3 .j3-right {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.join-page .j3 .j3-right .j3-item {
  padding: 0 1.0417vw;
  width: 25%;
  margin-bottom: 5.2083vw;
}

.join-page .j3 .j3-right .j3-item .img-box {
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  width: 6.4583vw;
  height: 6.4583vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-page .j3 .j3-right .j3-item .img-box img {
  width: 100%;
}

.join-page .j3 .j3-right .j3-item .img-box:hover {
  background: #000000;
  box-shadow: 0 0 0 2px #000000;
}

.join-page .j3 .j3-right .j3-item .img-box:hover img:first-child {
  display: none;
}

.join-page .j3 .j3-right .j3-item .img-box:hover img:last-child {
  display: block;
}

.join-page .j3 .j3-right .j3-item .img-box img:first-child {
  display: block;
}

.join-page .j3 .j3-right .j3-item .img-box img:last-child {
  display: none;
}

.join-page .j3 .j3-right .j3-item .title {
  text-align: center;
  padding-top: 0.625vw;
  font-size: 1.25vw;
  color: #000000;
  font-weight: bold;
  opacity: 0.4;
}

.join-page .j4 {
  padding: 5vw 11.3021vw 5vw 10.4167vw;
  position: relative;
}

.join-page .j4 .j4-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.join-page .j4 .top {
  display: flex;
  justify-content: space-between;
}

.join-page .j4 .top .left {
  font-size: 2.5vw;
  font-weight: 600;
  /* color: #000000; */
  color: #000;
}

.join-page .j4 .top .right .right-btn {
  transition: all ease 0.5s;
  display: flex;
  border-radius: 1.5625vw;
  width: fit-content;
  background: #3350f5;
  padding: 0.8333vw 2.8125vw 0.9375vw 1.5625vw;
  font-size: 0.8333vw;
  color: #fff;
}

.join-page .j4 .top .right .right-btn:hover {
  background: #000;
  box-shadow: 0 0 0 2px #000000;
  /* color: #000000; */
  color: #fff;
}

.join-page .j4 .top .right .right-btn:hover i {
  color: #fff;
  display: block;
  transform: translate3d(50%, 0, 0);
}

.join-page .j4 .top .right .right-btn i {
  transition: all ease 0.5s;
  margin-left: 2.8646vw;
  font-size: 1.0938vw;
  color: #bbd7eb;
}

.join-page .j4 .bottom {
  padding-top: 3.4375vw;
  display: flex;
  justify-content: space-between;
}

.join-page .j4 .bottom .card {
  transition: all ease 0.5s;
  background: #ffffff;
  width: 37.8646vw;
  padding: 2.3438vw 2.7083vw;
  box-shadow: 0px 3px 14px 1px rgba(0, 0, 0, 0.13);
}

.join-page .j4 .bottom .card:hover {
  transform: translate3d(0, -15px, 0);
}

.join-page .j4 .bottom .card .title {
  font-size: 1.25vw;
  /* color: #000000; */
  color: #000;
  font-weight: bold;
  padding-bottom: 0.4688vw;
}

.join-page .j4 .bottom .card .site {
  width: fit-content;
  position: relative;
  background-image: url(/static/img/join/sitemask.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  font-size: 0.7292vw;
  padding: 0.2083vw 1.2813vw 0.2083vw 0.625vw;
}

.join-page .j4 .bottom .card .content {
  padding-top: 0.5208vw;
}

.join-page .j4 .bottom .card .content p {
  font-size: 0.7292vw;
  font-weight: 400;
  color: #111111;
  line-height: 2;
}

.network-page {
  padding-top: 4.1667vw;
}

.network-page .nt1 {
  padding: 6.25vw 21.875vw 6.25vw 20.4688vw;
}

.network-page .nt1 .nt-title {
  font-size: 1.875vw;
  color: #000;
  font-weight: bold;
  text-align: center;
}

.network-page .nt1 .nt-btn-list {
  padding-top: 5.2083vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-page .nt1 .nt-btn-list .item {
  padding: 0.7292vw 2.8125vw;
  color: #000;
  background: none;
  border-radius: 1.5625vw;
  margin-right: 2.6042vw;
  font-size: 0.9375vw;
}

.network-page .nt1 .nt-btn-list .item:last-child {
  margin-right: 0;
}

.network-page .nt1 .nt-btn-list .active {
  color: #ffffff;
  background: #3350f5;
}

.network-page .nt1 .nt2-content {
  padding-top: 4.1667vw;
}

.network-page .nt1 .nt2-content .nt2-item {
  display: flex;
  padding-bottom: 2.7604vw;
}

.network-page .nt1 .nt2-content .nt2-item:last-child {
  padding-bottom: 0;
}

.network-page .nt1 .nt2-content .nt2-item .left {
  width: 100%;
  font-size: 1.4583vw;
  color: #000;
  font-weight: bold;
}

.network-page .nt1 .nt2-content .nt2-item .right {
  width: 33.9583vw;
  flex-shrink: 0;
}

.network-page .nt1 .nt2-content .nt2-item .right h1 {
  font-size: 0.9375vw;
  color: #000;
  padding-bottom: 0.4688vw;
  font-weight: bold;
}

.network-page .nt1 .nt2-content .nt2-item .right p {
  font-size: 0.8333vw;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
}

.network-page .nt1 .nt2-content .nt2-item .right span {
  font-size: 0.625vw;
  color: #666666;
  font-weight: 400;
}