body {
  background: #f3f3f3;
}
.banner1 .title p{
  color: #ffffff;
}
.banner1 .desc p{
  color: #e5e7eb;
}
.factory {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 58px 0 64px;
  background: #f3f3f3;
}

.factory > .title {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.factory > .title > p {
  margin-top: 20px;
text-align: center;
color: #003771;
font-family: "Alibaba PuHuiTi";
font-weight: 700;
font-size: 30px;
line-height: 36px;
}

.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.tag .line {
  width: 32px;
  height: 2px;
  background: #f97316;
}

.tag p {
  color: #f97316;
  font-family: "Noto Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.factory .wrap {
  display: flex;
  flex-wrap: wrap;
  width: 82%;
  gap: 24px 2.5%;
  margin-top: 48px;
}

.factory .item {
  display: flex;
  flex: 0 0 31.666%;
  overflow: hidden;
  aspect-ratio: 1.43;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #d9e0e8;
  cursor: pointer;
}

.factory .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.factory .item:hover img {
  transform: scale(1.04);
}

.factory .page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
  margin-top: 42px;
}

.factory .pre-pageBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 58px;
  max-width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 0.6px solid #e5e7eb;
  box-sizing: border-box;
  background: #fb903b;
}

.factory .next-pageBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 58px;
  max-width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 0.6px solid #e5e7eb;
  box-sizing: border-box;
  background: #fb903b;
}

.factory .page-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.factory .pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.factory .num {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 58px;
  max-width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 0.6px solid #e5e7eb;
  box-sizing: border-box;
  background: #ffffff;
  text-align: center;
  color: #4a5565;
  font-family: "Noto Sans SC";
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
}

.factory .num-active {
  background: #003771;
  box-shadow: 0px 2px 4px -2px #0000001a, 0px 4px 6px -1px #0000001a;
  color: #ffffff;
}

.factory .ellipsis {
  color: #7f8c9d;
  font-size: 13px;
}

.video {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 58px 0 92px;
  overflow: hidden;
  background: #f7f7f7;
}

.video > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video > .title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.video > .title > p {
  margin-top: 20px;
  text-align: center;
  color: #003771;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}

.video .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 46px;
}

.video .swiper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.video .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76%;
  gap: 5%;
}

.video .swiper-slide {
  display: none;
  flex: 0 0 45%;
}

.video .swiper-slide.video-active {
  display: flex;
  order: 1;
}

.video .swiper-slide.video-next-active {
  display: flex;
  order: 2;
}

.video .img-inner {
  display: flex;
  width: 100%;
}

.video .img-poster {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1.78;
  border-radius: 8px;
  background: #1d2a35;
  cursor: pointer;
}

.video .img-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video .mask {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.34);
}

.video .play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 76px;
  border-radius: 12px;
  background: #ffffff4d;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video .play svg {
  margin-left: 4%;
}

.video .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69px;
  min-width: 69px;
  max-width: 69px;
  height: 69px;
  border-radius: 50px;
  background: #0069bb;
  cursor: pointer;
}

.video .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69px;
  min-width: 69px;
  max-width: 69px;
  height: 69px;
  border-radius: 50px;
  background: #fb903b;
  cursor: pointer;
}

.video .video-nav-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.factory-preview {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5%;
  background: rgba(4, 20, 35, 0.82);
}

.factory-preview.preview-open {
  display: flex;
}

.factory-preview img {
  width: 80%;
  max-height: 88%;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

.factory-preview button {
  position: absolute;
  top: 4%;
  right: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5%;
  aspect-ratio: 1;
  color: #ffffff;
  font-size: 28px;
  border: 0;
  border-radius: 50%;
  background: #fb7f2c;
  cursor: pointer;
}

.factory-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5%;
  background: rgba(4, 20, 35, 0.82);
}

.factory-video-modal.video-open {
  display: flex;
}

.factory-video-modal video {
  width: 82%;
  max-height: 88%;
  background: #000000;
  border-radius: 8px;
}

.factory-video-modal button {
  position: absolute;
  top: 4%;
  right: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5%;
  aspect-ratio: 1;
  color: #ffffff;
  font-size: 28px;
  border: 0;
  border-radius: 50%;
  background: #fb7f2c;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .factory .wrap {
    width: 88%;
    gap: 18px 2.5%;
  }

  .video .swiper-wrapper {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .factory {
    padding: 38px 0 48px;
  }

  .factory > .title > p {
    font-size: 24px;
    line-height: 32px;
  }

  .factory .wrap {
    width: 90%;
    gap: 12px 3%;
    margin-top: 34px;
  }

  .factory .item {
    flex-basis: 48.5%;
  }

  .factory .page {
    gap: 12px;
    margin-top: 30px;
  }

  .factory .pre-pageBtn {
    width: 10%;
  }

  .factory .next-pageBtn {
    width: 10%;
  }

  .factory .pages {
    gap: 10px;
  }

  .factory .num {
    width: 10%;
    padding: 0 11px;
  }

  .video {
    padding: 42px 0 60px;
  }

  .video > .title > p {
    font-size: 24px;
    line-height: 32px;
  }

  .video .swiper-wrapper {
    width: 74%;
    gap: 0;
  }

  .video .swiper-slide {
    flex-basis: 100%;
  }

  .video .swiper-slide.video-next-active {
    display: none;
  }

  .video .prev {
    left: 3%;
    width: 10%;
  }

  .video .next {
    right: 3%;
    width: 10%;
  }

  .factory-preview img {
    width: 92%;
  }

  .factory-preview button {
    width: 12%;
  }

  .factory-video-modal video {
    width: 92%;
  }

  .factory-video-modal button {
    width: 12%;
  }
}

@media (max-width: 414px) {
  .factory > .title > p,
  .video > .title > p {
    font-size: 22px;
    line-height: 30px;
  }

  .factory .wrap {
    width: 94%;
  }

  .factory .page,
  .factory .pages {
    gap: 8px;
  }
}
