* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
}
.container {
  width: 1440px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.app {
  overflow: hidden;
}
.banner {
  width: 100%;
  height: 660px;
  overflow: hidden;
}
.banner .bannerSwiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .bannerSwiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.banner .bannerSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  position: relative;
  opacity: 1;
  transition: all 0.3s ease;
}
.banner .bannerSwiper .swiper-pagination .swiper-pagination-bullet:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background: #ccc;
}
.banner .bannerSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #e82621;
}
.banner .bannerSwiper .swiper-wrapper {
  position: relative;
  height: 100%;
}
.banner .bannerSwiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .bannerSwiper .swiper-slide .container {
  height: 660px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.banner .bannerSwiper .swiper-slide .banner-img {
  width: 100%;
  position: relative;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner .bannerSwiper .swiper-slide .banner-main {
  position: absolute;
  top: 227px;
  left: 119px;
  width: 957px;
  top: 30%;
  left: 3%;
  width: fit-content;
  z-index: 999;
}
.banner .bannerSwiper .swiper-slide .banner-main .span {
  font-size: 35px;
  font-weight: bold;
  line-height: 48px;
  color: white;
}
.banner .bannerSwiper .swiper-slide .banner-main .text {
  margin-top: 33px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.banner .bannerSwiper .swiper-slide .banner-main .text div {
  width: 4px;
  height: 31px;
  background-color: white;
  margin-right: 12px;
}
.banner .bannerSwiper .swiper-slide .banner-main .text p {
  font-size: 16px;
  color: white;
  font-family: "Alibaba PuHuiTi";
  line-height: 22px;
  width: 590px;
  height: 44px;
}
.banner .bannerSwiper .swiper-slide .banner-main .button {
  margin-top: 52px;
  width: 216px;
  height: 53px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #57a6df;
  border-radius: 6px 79px 6px 6px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
.banner .bannerSwiper .swiper-slide .banner-main .button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.banner .bannerSwiper .swiper-slide .banner-main .button span {
  font-size: 16px;
  margin-left: 32px;
  margin-right: 8px;
}
.banner .bannerSwiper .swiper-slide .banner-main .button img {
  width: 20px;
  height: 20px;
}
.banner .bannerSwiper .swiper-slide .pause {
  width: 41.7px;
  height: 41.7px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  padding: 0 14.6px;
  justify-content: space-between;
  position: absolute;
  right: 126px;
  bottom: 57px;
}
.banner .bannerSwiper .swiper-slide .pause div {
  width: 2px;
  height: 12.5px;
  background-color: #ffffff;
}
.site-nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 1326px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 37px;
  border-radius: 62px;
  background: #ffffff;
  z-index: 99999;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.nav-hidden {
  transform: translateX(-50%) translateY(-150%);
}
.site-nav.nav-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.site-nav img {
  width: 100px;
  height: 56px;
}
.site-nav ul {
  width: 696px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav ul a {
  text-decoration: none;
}
.site-nav ul li {
  display: flex;
  align-items: center;
  padding: 9px;
  color: #656565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  border-radius: 12px;
  cursor: pointer;
}
.site-nav ul li span {
  margin-right: 4px;
}
.site-nav ul li a {
  color: #656565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
}
.site-nav ul li img {
  width: 19px;
  height: 19px;
}
.site-nav ul li:nth-child(2) {
  display: inline-flex;
  place-content: center;
  place-items: center;
  gap: 10px;
  padding: 9px;
  border-radius: 12px;
  background: #57a6df;
}
.site-nav ul li:nth-child(2) a {
  color: #ffffff !important;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
}
.site-nav ul .a:hover {
  background: #57a6df;
  font-family: "Alibaba PuHuiTi";
}
.site-nav ul .a:hover a {
  color: #ffffff;
}
.site-nav .other {
  width: 210px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav .other img {
  width: 20px;
  height: 20px;
}
.site-nav .other div {
  width: 1px;
  height: 35px;
  border-radius: 1px;
  background: #b8b8b8;
}
.site-nav .other button {
  width: 141px;
  height: 37px;
  display: flex;
  place-content: center;
  place-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 0px 10px;
  border-radius: 12px;
  background: #57a6df;
  border: none;
  text-align: center;
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
.site-nav .other button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.company-text-outer {
  width: 100%;
  height: 82.8px;
  position: relative;
}
.company-text-outer .company-text {
  width: 100%;
  height: 100%;
  background-color: #57a6df;
  display: flex;
  flex-direction: row;
  align-items: center;
  transform: translateY(-82.8px);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.company-text-outer .company-text .company-text-item {
  height: 22px;
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.company-text-outer .company-text .company-text-item span {
  line-height: 22px;
  flex-shrink: 0;
  white-space: nowrap;
}
.company-text-outer .company-text .company-text-item .text {
  font-size: 16px;
  color: white;
  font-family: "Alibaba PuHuiTi";
  line-height: 22px;
  margin-right: 11px;
}
.company-text-outer .company-text .company-text-item .dot {
  width: 17px;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: white;
  margin-right: 11px;
}
.company-text-outer .company-rotate {
  width: 120%;
  height: 82.8px;
  transform: rotate(-1.444224deg);
  background: #ff7860;
  position: relative;
  z-index: 1;
}
.page2 {
  height: 1131.8px;
}
.page2 .top {
  width: 100%;
  max-width: 1200px;
  height: 132px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 64.8px auto 0;
}
.page2 .top .left {
  width: 571.8px;
  height: 132px;
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.page2 .top .left span {
  color: #0056b3;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 5.6px;
}
.page2 .top .left h1 {
  width: fit-content;
  height: fit-content;
  white-space: nowrap;
  color: #003366;
  font-family: Manrope;
  font-weight: 700;
  font-size: 35px;
  line-height: 48px;
}
.page2 .top .right {
  width: 40%;
  height: 56px;
  height: fit-content;
  color: #475569;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.page2 .main {
  width: 100%;
  max-width: 1200px;
  height: 795px;
  margin: 65px auto 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  overflow: hidden;
}
.page2 .main .top {
  width: 100%;
  height: 38.23%;
  display: flex;
  justify-content: space-between;
  margin-top: 0;
}
.page2 .main .top .left {
  width: 66.41%;
  height: 100%;
  border-radius: 24px 0px 0px 0px;
  border: 1px solid #e2e8f0;
  box-sizing: border-box;
  background: #cacaca;
  position: relative;
  padding-left: 49px;
  padding: 4%;
  overflow: hidden;
}
.page2 .main .top .left .bg {
  width: 797px;
  height: 304px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.13) 36.49%, rgba(0, 0, 0, 0.65) 100%);
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}
.page2 .main .top .left:hover .bg {
  transform: scale(1.05);
}
.page2 .main .top .left .text {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page2 .main .top .left .oem {
  width: 44px;
  height: 40px;
}
.page2 .main .top .left h2 {
  color: #ff4929;
  font-family: Manrope;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  margin-top: 18px;
}
.page2 .main .top .left p {
  color: #ffffff;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 26px;
}
.page2 .main .top .right {
  width: 32.91%;
  height: 100%;
  padding: 2%;
  border-radius: 0px 24px 0px 0px;
  background: #57a6df;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page2 .main .top .right .top {
  width: 316px;
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page2 .main .top .right .top img {
  width: 21px;
  height: 36px;
}
.page2 .main .top .right .top h2 {
  width: 80%;
  color: #ffffff;
  font-family: Manrope;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}
.page2 .main .top .right p {
  width: 100%;
  height: 78px;
  height: fit-content;
  color: rgba(255, 255, 255, 0.8);
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.page2 .main .top .right .buttons {
  width: 100%;
  height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page2 .main .top .right .buttons button,
.page2 .main .top .right .buttons a {
  width: 46%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  border-radius: 8px;
  background: #ffffff;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page2 .main .top .right .buttons button:hover,
.page2 .main .top .right .buttons a:hover {
  transform: scale(1.05);
}
.page2 .main .top .right .buttons button span,
.page2 .main .top .right .buttons a span {
  font-family: Manrope;
  font-weight: 700;
  font-size: 12px;
  line-height: 36px;
}
.page2 .main .top .right .buttons button img,
.page2 .main .top .right .buttons a img {
  width: 24px;
  height: 24px;
}
.page2 .main .top .right .buttons .contact span {
  color: #ff4929;
}
.page2 .main .top .right .buttons .upload span {
  color: #1d218d;
}
.page2 .main .center {
  width: 100%;
  height: 28.17%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page2 .main .center .left {
  padding: 2% 3%;
  width: 41.25%;
  height: 100%;
  border: 1px solid #d6dfec;
  box-sizing: border-box;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease;
  cursor: pointer;
}
.page2 .main .center .left img {
  width: 40px;
  height: 24px;
}
.page2 .main .center .left h2 {
  color: #57a6df;
  font-family: Manrope;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  transition: color 0.3s ease;
}
.page2 .main .center .left p {
  color: #475569;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  height: 52px;
  transition: color 0.3s ease;
}
.page2 .main .center .left:hover {
  background: #57a6df;
}
.page2 .main .center .left:hover h2 {
  color: #fff;
}
.page2 .main .center .left:hover p {
  color: #fff;
}
.page2 .main .center .right {
  width: 58.08%;
  height: 100%;
  border: 1px solid #d6dfec;
  box-sizing: border-box;
  background: #f3f4f9;
  padding: 2% 3%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease;
  cursor: pointer;
}
.page2 .main .center .right img {
  width: 34px;
  height: 38px;
}
.page2 .main .center .right h2 {
  color: #ff4929;
  font-family: Manrope;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  transition: color 0.3s ease;
}
.page2 .main .center .right p {
  width: 436px;
  height: 48px;
  display: flex;
  align-items: center;
  color: #475569;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: color 0.3s ease;
}
.page2 .main .center .right:hover {
  background: #57a6df;
}
.page2 .main .center .right:hover h2 {
  color: #fff;
}
.page2 .main .center .right:hover p {
  color: #fff;
}
.page2 .main .bottom {
  width: 100%;
  height: 30.31%;
  border-radius: 0px 0px 24px 24px;
  border: 1px solid #d6dfec;
  box-sizing: border-box;
  background: #ffffff;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page2 .main .bottom .left {
  width: 32.75%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.page2 .main .bottom .left .design {
  height: 52px;
  width: 393px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.page2 .main .bottom .left .design img {
  width: 52px;
  height: 52px;
}
.page2 .main .bottom .left .design h2 {
  color: #000000;
  font-family: Manrope;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}
.page2 .main .bottom .left .designpic {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page2 .main .bottom .left .designpic:hover {
  transform: scale(1.1);
}
.page2 .main .bottom .right {
  margin-top: 30px;
  width: 60.41%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page2 .main .bottom .right img {
  cursor: pointer;
  transition: all 0.3s ease;
}
.page2 .main .bottom .right img:hover {
  transform: scale(1.1);
}
.page2 .main .bottom .right img:first-child {
  width: 47.33%;
  height: auto;
}
.page2 .main .bottom .right img:last-child {
  width: 44.41%;
  height: auto;
}
.page3 {
  height: 752px;
}
.page3 .title {
  color: #0056b3;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 5.6px;
  margin-top: 10px;
  margin-left: 120px;
}
.page3 h1 {
  color: #003366;
  font-family: Manrope;
  font-weight: 700;
  font-size: 35px;
  line-height: 48px;
  margin-top: 12px;
  margin-left: 120px;
}
.page3 h1 span {
  color: #ff4929;
  font-weight: 800;
  font-size: 50px;
}
.page3 .main {
  width: 1352px;
  width: 100%;
  height: 79.78%;
  border-radius: 40px;
  border: 4px solid rgba(255, 73, 41, 0.12);
  background: #dbe4ee;
  box-shadow: 0px 0px 8.9px -12px rgba(0, 0, 0, 0.25);
  margin: 45px auto 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.page3 .main .process-item {
  width: 65.8px;
  height: 572px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 24px 0px;
  background-color: #9ea6b3;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.page3 .main .process-item .bgImg {
  display: none;
}
.page3 .main .process-item .bgSpan {
  width: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.page3 .main .process-item .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.page3 .main .process-item .content .item-index {
  color: #62748e;
  font-family: Menlo;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
}
.page3 .main .process-item .content .p1 {
  width: 20px;
  color: #62748e;
  font-family: Inter;
  font-weight: 600;
  font-size: 13px;
  line-height: 19.5px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  writing-mode: vertical-rl;
  transition: all 0.9s ease-out;
}
.page3 .main .process-item .content img {
  width: 48px;
  height: 48px;
}
.page3 .main .process-item .content .p2 {
  width: 0;
  height: 0;
  display: none;
  opacity: 0;
  transition: all 0.9s ease-out;
}
.page3 .main .process-item .content .progess-bar {
  display: none;
}
.page3 .main .process-item:hover .item-index {
  color: #51a2ff;
}
.page3 .main .process-item:hover .p1 {
  color: #51a2ff;
}
.page3 .main .process-item-active {
  position: relative;
  overflow: hidden;
  width: 528px;
  height: 572px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 31.38%, rgba(0, 0, 0, 0) 100%);
}
.page3 .main .process-item-active .bgImg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 528px;
  height: 574px;
  border-radius: 20px;
}
.page3 .main .process-item-active .bgSpan {
  display: block;
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 350.2px;
  height: 267.5px;
  color: rgba(255, 255, 255, 0.3);
  font-family: Inter;
  font-weight: 900;
  font-size: 320px;
  line-height: 320px;
}
.page3 .main .process-item-active .progess-bar {
  position: absolute;
  bottom: 0;
  width: 526px;
  height: 9px;
  background: #9ea6b3;
}
.page3 .main .process-item-active .progress {
  width: 0%;
  height: 100%;
  background: #2c7fff;
  transition: width 0.1s linear;
}
.page3 .main .process-item-active .content {
  height: 100%;
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.page3 .main .process-item-active .content .item-index {
  width: 55px;
  height: 30px;
  color: #51a2ff;
  font-family: Menlo;
  font-weight: 700;
  font-size: 45px;
  line-height: 30px;
  position: absolute;
  top: 33.5px;
  left: 31px;
}
.page3 .main .process-item-active .content img {
  width: 52px;
  height: 52px;
  padding: 12px;
  border-radius: 16777200px;
  background: rgba(43, 127, 255, 0.2);
  box-shadow: 0px 0px 15px rgba(59, 130, 246, 0.3);
  position: absolute;
  top: 79px;
  left: 33px;
}
.page3 .main .process-item-active .content .p1 {
  display: block;
  width: calc(100% - 132px);
  height: auto;
  writing-mode: horizontal-tb;
  color: #ffffff;
  font-family: Inter;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: 0.4px;
  margin-top: 92px;
  margin-left: 108px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.page3 .main .process-item-active .content .p2 {
  opacity: 1;
  display: block;
  width: 383px;
  height: 108px;
  color: #cad5e2;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: -0.4px;
  margin-top: 12px;
  margin-left: 104px;
}
.customizable {
  width: 100%;
  height: 384px;
  margin-top: 75px;
}
.customizable h1 {
  text-align: center;
  color: #000000;
  font-family: Manrope;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 35px;
}
.customizable .swiperCustomizable {
  width: 100%;
  height: 313px;
}
.customizable .swiperCustomizable .swiper-slide {
  width: 418px;
  height: 313px;
  overflow: hidden;
  cursor: pointer;
}
.customizable .swiperCustomizable .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.customizable .swiperCustomizable .swiper-slide:hover img {
  transform: scale(1.08);
}
.page4 {
  height: 976px;
}
.page4 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page4 .title {
  color: #0056b3;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 5.6px;
  margin-top: 75px;
  width: 100%;
  max-width: 1200px;
  align-self: center;
  text-align: left;
}
.page4 h1 {
  color: #003366;
  font-family: Manrope;
  font-weight: 700;
  font-size: 35px;
  line-height: 48px;
  margin-top: 12px;
  width: 100%;
  max-width: 1200px;
  align-self: center;
  text-align: left;
}
.page4 h1 span {
  color: #ff4929;
}
.page4 .swipertreatment {
  box-sizing: border-box;
  border-radius: 14px;
  position: relative;
  margin-top: 71px;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1.57894737;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
  background: url('../images/manufacturing/page4Bg.png') no-repeat center center / cover;
  overflow: hidden;
}
.page4 .swipertreatment .swiper-slide {
  display: flex;
  margin-top: 130px;
  justify-content: center;
  gap: 2%;
  position: relative;
}
.page4 .swipertreatment .swiper-slide .left {
  width: 44%;
  height: 374px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page4 .swipertreatment .swiper-slide .left .introduction {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-family: Manrope;
  font-weight: 700;
  font-size: 16px;
}
.page4 .swipertreatment .swiper-slide .left .xq {
  width: 100%;
  height: 252px;
  align-items: center;
  gap: 10%;
  color: #ffffff;
  font-family: Manrope;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.page4 .swipertreatment .swiper-slide .right {
  width: 41%;
  height: 50%;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.page4 .swipertreatment .swiper-slide .right:hover {
  transform: scale(1.05);
}
.page4 .swipertreatment .swiper-slide .right img {
  width: 100%;
  height: auto;
  display: block;
}
.page4 .swipertreatment .swiper-pagination {
  width: 89.58%;
  height: fit-content;
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
}
.page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet {
  width: fit-content;
  height: fit-content;
  padding: 10px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #c3c3c3;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet:hover {
  background: #57a6df;
}
.page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet:hover span {
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
}
.page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet span {
  transition: all 0.5s ease;
  color: rgba(87, 87, 87, 0.84);
  font-family: Manrope;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  white-space: nowrap;
}
.page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet:last-child {
  width: fit-content;
}
.page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet-active {
  background: #57a6df;
}
.page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet-active span {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}
.page4 small {
  display: block;
  width: 1200px;
  width: 100%;
  text-align: center;
  color: #4a5565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 300;
  font-size: 18px;
  line-height: 29.3px;
  letter-spacing: -0.4px;
  margin-top: 75px;
}
.page5 {
  height: 811px;
  background: #f3f4f9;
}
.page5 .container {
  position: relative;
  height: 185px;
}
.page5 .container .bg {
  position: absolute;
  top: -29px;
  left: 119.5px;
  color: rgba(0, 51, 102, 0.05);
  font-family: Manrope;
  font-weight: 800;
  font-size: 120px;
  line-height: 230.4px;
}
.page5 .container h1 {
  display: block;
  position: absolute;
  top: 63px;
  left: 18%;
  color: #003366;
  font-family: Manrope;
  font-weight: 700;
  font-size: 35px;
  line-height: 48px;
}
.page5 .container button,
.page5 .container .explor-more {
  position: absolute;
  top: 63px;
  right: 119.5px;
  right: 10%;
  width: 175px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14.5px 28px;
  border-radius: 6px 40px 6px 6px;
  background: #57a6df;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.page5 .container button:hover,
.page5 .container .explor-more:hover {
  transform: scale(1.04);
  opacity: 0.92;
}
.page5 .container button span,
.page5 .container .explor-more span {
  text-align: center;
  color: #ffffff;
  line-height: 1;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
}
.page5 .container button img,
.page5 .container .explor-more img {
  width: 20px;
  height: 20px;
}
.page5 .swiper5 {
  height: 626px;
  width: 100%;
}
.page5 .swiper5 .swiper-wrapper {
  height: 467.5px;
}
.page5 .swiper5 .swiper-slide {
  width: 304.5px;
  height: 467.5px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  padding: 17px;
  text-decoration: none;
  color: inherit;
}
.page5 .swiper5 .swiper-slide .img {
  width: 271px;
  height: 287px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.page5 .swiper5 .swiper-slide .img img {
  filter: grayscale(100%);
  display: block;
  width: auto;
  height: 287px;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  transition: filter 0.3s ease-in-out, transform 0.3s ease;
}
.page5 .swiper5 .swiper-slide .img button {
  display: inline-flex;
  flex-direction: column;
  place-content: flex-start;
  place-items: flex-start;
  position: absolute;
  top: 126.8px;
  left: 68.5px;
  border: none;
  width: fit-content;
  height: fit-content;
  padding: 8px 24px;
  border-radius: 4px;
  background: #57a6df;
  color: #ffffff;
  font-family: Inter;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}
.page5 .swiper5 .swiper-slide .img:hover img {
  filter: none;
  transform: scale(1.08);
}
.page5 .swiper5 .swiper-slide .img:hover button {
  opacity: 1;
  transform: translateY(0);
}
.page5 .swiper5 .swiper-slide .text {
  margin-top: 34.5px;
}
.page5 .swiper5 .swiper-slide .text h2 {
  color: #003366;
  font-family: Manrope;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page5 .swiper5 .swiper-slide .text p {
  width: 209.1px;
  height: 40px;
  display: flex;
  align-items: center;
  color: #475569;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}
.page5 .swiper5 .swiper-slide .text a,
.page5 .swiper5 .swiper-slide .text .learn {
  width: 271px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.page5 .swiper5 .swiper-slide .text a span,
.page5 .swiper5 .swiper-slide .text .learn span {
  color: #0056b3;
  font-family: Inter;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.page5 .swiper5 .swiper-slide .text a img,
.page5 .swiper5 .swiper-slide .text .learn img {
  width: 9.3px;
  height: 9.3px;
}
.page5 .swiper5 .buttons {
  position: static;
  width: 133px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 58.5px auto 0;
}
.page5 .swiper5 .swiper-button-next,
.page5 .swiper5 .swiper-button-prev {
  margin-top: 0;
  position: static;
  width: 47px;
  height: 47px;
  border-radius: 100px;
  border: 1px solid #1d218d;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page5 .swiper5 .swiper-button-next::after,
.page5 .swiper5 .swiper-button-prev::after {
  display: none;
}
.page5 .swiper5 .swiper-button-next img,
.page5 .swiper5 .swiper-button-prev img {
  width: 30px;
  height: 30px;
}
.page7 {
  height: 841px;
  background: #f3f4f9;
}
.page7 .container {
  position: relative;
}
.page7 .container .bg {
  position: absolute;
  top: 0;
  left: 145px;
  width: 1200px;
  height: 231px;
  line-height: 230.4px;
  color: rgba(0, 51, 102, 0.05);
  font-family: Manrope;
  font-weight: 800;
  font-size: 83px;
}
.page7 .container h1 {
  width: 67px;
  height: 48px;
  display: flex;
  align-items: center;
  color: #003366;
  font-family: Manrope;
  font-weight: 700;
  font-size: 35px;
  line-height: 48px;
  margin: 99px auto 0;
}
.page7 .container .swiper7 {
  height: 474px;
  width: 1200px;
  width: 83.3%;
  margin: 61px auto 0;
  overflow: hidden;
}
.page7 .container .swiper7 .swiper-wrapper {
  width: 1200px;
  width: 100%;
  height: 474px;
}
.page7 .container .swiper7 .swiper-wrapper .swiper-slide {
  width: 1200px;
  width: 100%;
  height: 134px;
  display: flex;
  flex-direction: column;
  place-content: flex-start;
  place-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
  padding: 25px 25px 1px 25px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-sizing: border-box;
  background: #ffffff;
}
.page7 .container .swiper7 .swiper-wrapper .swiper-slide h2 {
  height: 28px;
  color: #101828;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
.page7 .container .swiper7 .swiper-wrapper .swiper-slide p {
  width: 718px;
  height: 48px;
  color: #656565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.page7 .container .swiper7-button-next {
  width: 124px;
  height: 67px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 723px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.page7 .container .swiper7-button-next::after {
  display: none;
}
.page7 .container .swiper7-button-next span {
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 13px;
  line-height: 48px;
}
.page7 .container .swiper7-button-next img {
  width: 22px;
  height: 22px;
}
/* ── Responsive ── */
@media only screen and (max-width: 1700px) {
  body .manuapp .container {
    width: 92%;
    max-width: 1440px;
  }
}
@media only screen and (max-width: 1470px) {
  body .manuapp .banner {
    height: 560px;
  }
  body .manuapp .banner .container .banner-main .text h1 {
    font-size: 44px;
    line-height: 56px;
  }
  body .manuapp .page2,
  body .manuapp .page3,
  body .manuapp .page4 {
    height: auto;
    padding: 80px 0;
  }
}
@media only screen and (max-width: 1280px) {
  body .manuapp .banner {
    height: 480px;
  }
  body .manuapp .banner .container .banner-main .text h1 {
    font-size: 36px;
    line-height: 46px;
  }
  body .manuapp .page2 {
    padding: 60px 0;
  }
  body .manuapp .page2 .container .top {
    gap: 24px;
  }
  body .manuapp .page2 .container .top .left {
    width: fit-content;
  }
  body .manuapp .page2 .container .top .left h1 {
    font-size: 28px;
    line-height: 38px;
  }
  body .manuapp .page2 .container .top .right {
    width: 50%;
  }
  body .manuapp .page2 .main {
    height: auto;
  }
  body .manuapp .page2 .main .top {
    height: auto;
  }
  body .manuapp .page2 .main .top .left {
    width: 60%;
  }
  body .manuapp .page2 .main .top .left .bg {
    width: 100%;
  }
  body .manuapp .page2 .main .top .right {
    width: 38%;
  }
  body .manuapp .page2 .main .top .right h2 {
    font-size: 24px;
    line-height: 32px;
  }
  body .manuapp .page2 .main .center {
    height: auto;
  }
  body .manuapp .page2 .main .center .left,
  body .manuapp .page2 .main .center .right {
    min-height: 200px;
  }
  body .manuapp .page2 .main .center .right p {
    width: 100%;
  }
  body .manuapp .page2 .main .bottom {
    height: auto;
    min-height: 220px;
  }
  body .manuapp .page3 .title {
    margin-left: 20px;
    letter-spacing: 3px;
  }
  body .manuapp .page3 h1 {
    margin-left: 20px;
    font-size: 22px !important;
  }
  body .manuapp .page3 h1 span {
    font-size: 28px !important;
  }
  body .manuapp .page3 .main {
    border-radius: 20px;
    margin-top: 20px;
  }
  body .manuapp .page3.processes .main .process-item {
    width: 45% !important;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide {
    flex-direction: column;
    gap: 24px;
    margin-top: 80px;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .left,
  body .manuapp .page4 .swipertreatment .swiper-slide .right {
    width: 100%;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .right {
    height: auto;
    overflow: hidden;
    border-radius: 12px;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .right img {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  body .manuapp .banner {
    height: 400px;
  }
  body .manuapp .banner .container .banner-main .text h1 {
    font-size: 30px;
    line-height: 40px;
  }
  body .manuapp .page2,
  body .manuapp .page3,
  body .manuapp .page4 {
    padding: 50px 0;
  }
  body .manuapp .page2 h1,
  body .manuapp .page3 h1,
  body .manuapp .page4 h1,
  body .manuapp .page2 h2,
  body .manuapp .page3 h2,
  body .manuapp .page4 h2 {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  body .manuapp .page2 p,
  body .manuapp .page3 p,
  body .manuapp .page4 p {
    font-size: 14px !important;
    line-height: 22px !important;
  }
  body .manuapp .page2 .container > .top {
    flex-direction: column;
    height: auto;
    margin-top: 30px;
    gap: 12px;
  }
  body .manuapp .page2 .container > .top .left h1 {
    white-space: normal;
    font-size: 24px !important;
  }
  body .manuapp .page2 .container > .top .right {
    width: 100%;
  }
  body .manuapp .page2 .main {
    height: auto !important;
  }
  body .manuapp .page2 .main .top {
    flex-direction: column;
    height: auto !important;
  }
  body .manuapp .page2 .main .top .left {
    width: 100%;
    height: auto !important;
    min-height: 200px;
  }
  body .manuapp .page2 .main .top .left .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  body .manuapp .page2 .main .top .right {
    width: 100%;
    height: auto !important;
    min-height: auto;
    padding: 20px;
    border-radius: 0;
    justify-content: flex-start;
    gap: 12px;
  }
  body .manuapp .page2 .main .top .right .top {
    height: auto !important;
  }
  body .manuapp .page2 .main .top .right .top img {
    width: 28px;
    height: auto;
  }
  body .manuapp .page2 .main .top .right .top h2 {
    width: auto;
    flex: 1;
  }
  body .manuapp .page2 .main .top .right p {
    height: auto !important;
  }
  body .manuapp .page2 .main .top .right .buttons {
    height: auto !important;
    flex-wrap: wrap;
    gap: 10px;
  }
  body .manuapp .page2 .main .top .right .buttons button,
  body .manuapp .page2 .main .top .right .buttons a {
    width: 48%;
    height: 44px;
  }
  body .manuapp .page2 .main .center {
    flex-direction: column;
    height: auto !important;
  }
  body .manuapp .page2 .main .center .left,
  body .manuapp .page2 .main .center .right {
    width: 100%;
    height: auto !important;
    min-height: auto;
    padding: 20px;
  }
  body .manuapp .page2 .main .center .left p {
    height: auto !important;
  }
  body .manuapp .page2 .main .center .right {
    flex-direction: column;
  }
  body .manuapp .page2 .main .center .right p {
    width: 100%;
    height: auto !important;
  }
  body .manuapp .page2 .main .bottom {
    flex-direction: column;
    height: auto !important;
    border-radius: 0 0 24px 24px;
    padding: 20px;
  }
  body .manuapp .page2 .main .bottom .left {
    width: 100%;
    height: auto !important;
  }
  body .manuapp .page2 .main .bottom .left .design {
    width: 100%;
  }
  body .manuapp .page2 .main .bottom .left .designpic {
    width: 100%;
  }
  body .manuapp .page2 .main .bottom .right {
    width: 100%;
    height: auto !important;
    margin-top: 16px;
    flex-wrap: wrap;
  }
  body .manuapp .page2 .main .bottom .right img:first-child,
  body .manuapp .page2 .main .bottom .right img:last-child {
    width: 48%;
  }
  body .manuapp .page3 .title {
    margin-left: 20px;
    letter-spacing: 3px;
  }
  body .manuapp .page3 h1 {
    margin-left: 20px;
    font-size: 22px !important;
  }
  body .manuapp .page3 h1 span {
    font-size: 28px !important;
  }
  body .manuapp .page3 .main {
    border-radius: 20px;
    margin-top: 20px;
  }
  body .manuapp .page3.processes .main .process-item {
    width: 45% !important;
  }
  body .manuapp .page4 .swipertreatment {
    aspect-ratio: unset;
    height: auto;
    padding-bottom: 24px;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide {
    flex-direction: column;
    margin-top: 70px;
    gap: 20px;
    padding: 0 4%;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .left {
    width: 100%;
    height: auto;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .left .introduction {
    font-size: 14px;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .left .xq {
    height: auto;
    gap: 8px;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .left .xq span {
    font-size: 14px;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .right {
    width: 100%;
    height: auto;
    max-height: 280px;
    overflow: hidden;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .right img {
    width: 100%;
    height: auto;
    display: block;
  }
  body .manuapp .page4 .swipertreatment .swiper-pagination {
    top: 16px;
  }
  body .manuapp .page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet {
    padding: 6px 8px;
  }
  body .manuapp .page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet span {
    font-size: 12px;
    line-height: 1.2;
  }
  body .manuapp .page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet-active span {
    font-size: 12px;
  }
  body .manuapp .page5 {
    height: auto;
    padding: 40px 0;
  }
  body .manuapp .page5 .container {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
  }
  body .manuapp .page5 .container .bg {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    width: 100%;
    overflow: hidden;
  }
  body .manuapp .page5 .container h1 {
    position: static;
    font-size: 24px !important;
    line-height: 32px;
    width: auto;
  }
  body .manuapp .page5 .container button,
  body .manuapp .page5 .container .explor-more {
    position: static;
    width: auto;
    height: auto;
    padding: 10px 20px;
  }
  body .manuapp .page5 .swiper5 {
    height: auto;
  }
  body .manuapp .page5 .swiper5 .swiper-wrapper {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  body .manuapp .page5 .swiper5 .swiper-slide {
    width: 46% !important;
    height: auto;
  }
  body .manuapp .page5 .swiper5 .swiper-slide .img {
    width: 100%;
    height: auto;
  }
  body .manuapp .page5 .swiper5 .swiper-slide .img img {
    width: 100%;
    height: auto;
  }
  body .manuapp .page5 .swiper5 .swiper-slide .text {
    margin-top: 12px;
  }
  body .manuapp .page5 .swiper5 .swiper-slide .text p {
    width: 100%;
    height: auto;
  }
  body .manuapp .page5 .swiper5 .swiper-slide .text a {
    width: 100%;
  }
  body .manuapp .page5 .swiper5 .buttons {
    display: none;
  }
  body .manuapp .page7 {
    height: auto;
    padding: 60px 0;
  }
  body .manuapp .page7 .container .bg {
    font-size: 40px;
    overflow: hidden;
    width: auto;
    left: 0;
  }
  body .manuapp .page7 .container .swiper7 {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  body .manuapp .page7 .container .swiper7 .swiper-wrapper {
    height: auto !important;
    flex-direction: column !important;
  }
  body .manuapp .page7 .container .swiper7 .swiper-wrapper .swiper-slide {
    width: 100% !important;
    height: auto !important;
    border: none !important;
  }
  body .manuapp .page7 .container .swiper7 .swiper-wrapper .swiper-slide p {
    width: 100%;
  }
  body .manuapp .page7 .container .swiper7-button-next {
    position: static;
    margin: 20px auto 0;
    transform: none;
  }
}
@media only screen and (max-width: 800px) {
  body .manuapp .banner {
    height: 320px;
  }
  body .manuapp .banner .container .banner-main .text h1 {
    font-size: 24px;
    line-height: 32px;
  }
  body .manuapp .page2,
  body .manuapp .page3,
  body .manuapp .page4 {
    padding: 40px 0;
  }
  body .manuapp .page2 h1,
  body .manuapp .page3 h1,
  body .manuapp .page4 h1,
  body .manuapp .page2 h2,
  body .manuapp .page3 h2,
  body .manuapp .page4 h2 {
    font-size: 22px !important;
    line-height: 30px !important;
  }
  body .manuapp .page2 p,
  body .manuapp .page3 p,
  body .manuapp .page4 p {
    font-size: 13px !important;
  }
  body .manuapp .page3 .title {
    margin-left: 16px;
    letter-spacing: 2px;
    font-size: 12px !important;
  }
  body .manuapp .page3 h1 {
    margin-left: 16px;
  }
  body .manuapp .page3 h1 span {
    font-size: 24px !important;
  }
  body .manuapp .page3 .main {
    border-radius: 16px;
    margin-top: 16px;
  }
  body .manuapp .page3.processes .main .process-item {
    width: 100% !important;
  }
  body .manuapp .page2 .container > .top .left h1 {
    font-size: 22px !important;
  }
  body .manuapp .page2 .main .center .right p {
    width: 100% !important;
    height: auto !important;
  }
  body .manuapp .page4 .swipertreatment .buttons {
    flex-wrap: wrap;
    gap: 8px;
  }
  body .manuapp .page4 .swipertreatment .buttons button {
    font-size: 12px !important;
    padding: 6px 10px !important;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .right {
    height: auto;
    max-height: 200px;
    min-height: 0;
    overflow: hidden;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .right img {
    width: 100%;
    height: auto;
    display: block;
  }
  body .manuapp .page5 .container .bg {
    font-size: 30px;
  }
  body .manuapp .page5 .container h1 {
    font-size: 22px !important;
  }
  body .manuapp .page5 .container button,
  body .manuapp .page5 .container .explor-more {
    padding: 8px 16px;
  }
  body .manuapp .page5 .container button span,
  body .manuapp .page5 .container .explor-more span {
    font-size: 13px;
  }
  body .manuapp .page5 .swiper5 .swiper-slide {
    width: 46% !important;
  }
  body .manuapp .page5 .swiper5 .swiper-slide .text h2 {
    font-size: 16px;
  }
  body .manuapp .page2 .main .top .left .text {
    flex-direction: row;
  }
  body .manuapp .page2 .main .top .left h2 {
    margin-top: 0;
  }
  body .manuapp .page2 .main .top .left p {
    margin-top: 0;
  }
  body .manuapp .page7 {
    height: auto;
    padding: 40px 0;
  }
  body .manuapp .page7 .container .bg {
    font-size: 28px;
    width: auto;
    left: 0;
  }
  body .manuapp .page7 .container h1 {
    margin: 40px auto 0;
  }
  body .manuapp .page7 .container .swiper7 {
    width: 100%;
    height: auto;
    margin-top: 30px;
    overflow: visible;
  }
  body .manuapp .page7 .container .swiper7 .swiper-wrapper {
    height: auto !important;
    flex-direction: column !important;
  }
  body .manuapp .page7 .container .swiper7 .swiper-wrapper .swiper-slide {
    width: 100% !important;
    height: auto !important;
    border: none !important;
    margin-bottom: 10px;
  }
  body .manuapp .page7 .container .swiper7 .swiper-wrapper .swiper-slide h2 {
    font-size: 16px !important;
  }
  body .manuapp .page7 .container .swiper7 .swiper-wrapper .swiper-slide p {
    width: 100%;
    font-size: 13px !important;
    height: auto;
  }
  body .manuapp .page7 .container .swiper7-button-next {
    position: static;
    margin: 16px auto 0;
    transform: none;
  }
  .banner .bannerSwiper .swiper-slide .banner-main {
    top: 15%;
  }
  .page4 .swipertreatment .swiper-pagination {
    padding: 1%;
  }
}
@media only screen and (max-width: 640px) {
  body .manuapp .banner {
    height: 260px;
  }
  body .manuapp .banner .container .banner-main .text h1 {
    font-size: 20px;
    line-height: 28px;
  }
  body .manuapp .page2,
  body .manuapp .page3,
  body .manuapp .page4 {
    padding: 30px 0;
  }
  body .manuapp .page2 h1,
  body .manuapp .page3 h1,
  body .manuapp .page4 h1,
  body .manuapp .page2 h2,
  body .manuapp .page3 h2,
  body .manuapp .page4 h2 {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  body .manuapp .page2 p,
  body .manuapp .page3 p,
  body .manuapp .page4 p {
    font-size: 12px !important;
    line-height: 20px !important;
  }
  body .manuapp .page2 .container > .top {
    margin-top: 20px;
  }
  body .manuapp .page2 .container > .top .left h1 {
    font-size: 20px !important;
  }
  body .manuapp .page2 .main {
    height: auto !important;
  }
  body .manuapp .page2 .main .top,
  body .manuapp .page2 .main .center,
  body .manuapp .page2 .main .bottom {
    flex-direction: column;
    height: auto !important;
  }
  body .manuapp .page2 .main .top .left,
  body .manuapp .page2 .main .center .left,
  body .manuapp .page2 .main .bottom .left,
  body .manuapp .page2 .main .top .right,
  body .manuapp .page2 .main .center .right,
  body .manuapp .page2 .main .bottom .right {
    width: 100%;
    height: auto !important;
  }
  body .manuapp .page2 .main .center .right p {
    width: 100% !important;
    height: auto !important;
  }
  body .manuapp .page2 .main .center .left p {
    height: auto !important;
  }
  body .manuapp .page2 .main .bottom {
    padding: 16px;
  }
  body .manuapp .page2 .main .bottom .left .design {
    width: 100%;
  }
  body .manuapp .page2 .main .bottom .right {
    flex-wrap: wrap;
  }
  body .manuapp .page2 .main .bottom .right img {
    width: 48%;
    height: auto;
  }
  body .manuapp .page3 .title {
    margin-left: 12px;
    letter-spacing: 1.5px;
    font-size: 11px !important;
  }
  body .manuapp .page3 h1 {
    margin-left: 12px;
  }
  body .manuapp .page3 h1 span {
    font-size: 20px !important;
  }
  body .manuapp .page3 .main {
    border-radius: 12px;
    margin-top: 12px;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide {
    margin-top: 60px;
    gap: 16px;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .left .xq {
    gap: 6px;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .left .xq span {
    font-size: 12px;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .left .introduction {
    font-size: 12px !important;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .right {
    max-height: 180px !important;
  }
  body .manuapp .page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet {
    padding: 5px 6px;
  }
  body .manuapp .page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet span {
    font-size: 10px !important;
  }
  body .manuapp .page5 {
    padding: 24px 0;
  }
  body .manuapp .page5 .container .bg {
    font-size: 22px;
  }
  body .manuapp .page5 .container h1 {
    font-size: 20px !important;
  }
  body .manuapp .page5 .container button,
  body .manuapp .page5 .container .explor-more {
    padding: 6px 14px;
    position: relative;
    z-index: 9;
    margin-bottom: 10px;
    left: auto;
    top: auto;
    right: 0;
  }
  body .manuapp .page5 .container button span,
  body .manuapp .page5 .container .explor-more span {
    font-size: 12px;
  }
  body .manuapp .page5 .swiper5 .swiper-slide {
    width: 46% !important;
    padding: 10px;
  }
  body .manuapp .page5 .swiper5 .swiper-slide .img img {
    width: 100%;
    height: auto;
  }
  body .manuapp .page5 .swiper5 .swiper-slide .text {
    margin-top: 8px;
  }
  body .manuapp .page5 .swiper5 .swiper-slide .text h2 {
    font-size: 14px !important;
  }
  body .manuapp .page5 .swiper5 .swiper-slide .text p {
    width: 100%;
    height: auto;
    font-size: 11px !important;
  }
  body .manuapp .page7 {
    height: auto;
    padding: 30px 0;
  }
  body .manuapp .page7 .container .bg {
    font-size: 22px;
    width: 100%;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
  }
  body .manuapp .page7 .container h1 {
    margin: 30px auto 0;
    font-size: 20px !important;
  }
  body .manuapp .page7 .container .swiper7 {
    width: 100%;
    height: auto;
    margin-top: 20px;
    overflow: visible;
  }
  body .manuapp .page7 .container .swiper7 .swiper-wrapper {
    height: auto !important;
    flex-direction: column !important;
  }
  body .manuapp .page7 .container .swiper7 .swiper-wrapper .swiper-slide {
    width: 100% !important;
    height: auto !important;
    border: none !important;
    padding: 16px;
    margin-bottom: 8px;
  }
  body .manuapp .page7 .container .swiper7 .swiper-wrapper .swiper-slide h2 {
    font-size: 14px !important;
    height: auto;
  }
  body .manuapp .page7 .container .swiper7 .swiper-wrapper .swiper-slide p {
    width: 100%;
    font-size: 12px !important;
    height: auto;
  }
  body .manuapp .page7 .container .swiper7-button-next {
    position: static;
    margin: 12px auto 0;
    transform: none;
  }
  .banner .bannerSwiper .swiper-slide .banner-main .span {
    font-size: 26px;
  }
  .manuapp .page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet span {
    font-size: 10px !important;
    line-height: 18px;
  }
  .manuapp .page4 .swipertreatment .swiper-slide .left {
    padding: 0 2%;
  }
  .manuapp .page4 .swipertreatment .swiper-slide .left .introduction {
    font-size: 12px ;
  }
  .manuapp .page4 .swipertreatment .swiper-slide .left .introduction .xq .span {
    font-size: 10px ;
  }
  .manuapp .page5 .container h1 {
    font-size: 22px !important;
  }
}
/* ── manufacturing 移动端 .page3 process-item 横向折叠 / 点击展开 ── */
@media only screen and (max-width: 800px) {
  body .manuapp .page3.processes .main {
    flex-direction: column !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    height: auto !important;
    padding: 16px !important;
    gap: 12px;
  }
  /* 折叠态：横向条形 [01] [Customer Inquiry] [icon] */
  body .manuapp .page3.processes .main .process-item {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 14px 18px !important;
    gap: 14px;
    background-color: #9ea6b3;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease, padding 0.3s ease, min-height 0.3s ease;
  }
  body .manuapp .page3.processes .main .process-item .bgImg,
  body .manuapp .page3.processes .main .process-item .bgSpan,
  body .manuapp .page3.processes .main .process-item .progess-bar {
    display: none !important;
  }
  body .manuapp .page3.processes .main .process-item .content {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: auto !important;
    gap: 14px;
    position: static !important;
    padding: 0 !important;
  }
  body .manuapp .page3.processes .main .process-item .content .item-index {
    font-size: 18px !important;
    line-height: 1 !important;
    color: #62748e !important;
    font-weight: 700;
    flex-shrink: 0;
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }
  body .manuapp .page3.processes .main .process-item .content .p1 {
    writing-mode: horizontal-tb !important;
    width: auto !important;
    height: auto !important;
    flex: 1 1 auto;
    font-size: 13px !important;
    line-height: 1.4 !important;
    letter-spacing: 1.5px !important;
    color: #62748e !important;
    margin: 0 !important;
    font-weight: 600;
  }
  body .manuapp .page3.processes .main .process-item .content .iconImg {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0;
    position: static !important;
    padding: 0 !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
  body .manuapp .page3.processes .main .process-item .content .p2 {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    margin: 0 !important;
  }
  /* 展开态：纵向卡片，bg 图 + 大数字 + 标题 + 描述 + 进度条 */
  body .manuapp .page3.processes .main .process-item-active {
    flex-direction: column !important;
    align-items: stretch !important;
    height: auto !important;
    min-height: 280px !important;
    padding: 0 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 31.38%, rgba(0, 0, 0, 0) 100%);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
  }
  body .manuapp .page3.processes .main .process-item-active .bgImg {
    display: block !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 14px;
    object-fit: cover;
    z-index: 0;
  }
  body .manuapp .page3.processes .main .process-item-active .bgSpan {
    display: block !important;
    position: absolute !important;
    right: -10px;
    bottom: -20px;
    width: auto !important;
    height: auto !important;
    font-size: 130px !important;
    line-height: 1 !important;
    color: rgba(255, 255, 255, 0.25) !important;
    z-index: 1;
  }
  body .manuapp .page3.processes .main .process-item-active .progess-bar {
    display: block !important;
    position: absolute !important;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: 4px !important;
    background: #9ea6b3;
    z-index: 2;
  }
  body .manuapp .page3.processes .main .process-item-active .content {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: auto !important;
    padding: 22px !important;
    gap: 14px;
    position: relative !important;
    z-index: 2;
  }
  body .manuapp .page3.processes .main .process-item-active .content .item-index {
    font-size: 32px !important;
    line-height: 1 !important;
    color: #51a2ff !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }
  body .manuapp .page3.processes .main .process-item-active .content .p1 {
    writing-mode: horizontal-tb !important;
    width: 100% !important;
    height: auto !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    letter-spacing: 0.4px !important;
    color: #fff !important;
    font-weight: 700;
    margin: 0 !important;
  }
  body .manuapp .page3.processes .main .process-item-active .content .iconImg {
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
    border-radius: 50% !important;
    background: rgba(43, 127, 255, 0.2) !important;
    box-shadow: 0px 0px 12px rgba(59, 130, 246, 0.3) !important;
    position: static !important;
    margin: 0 !important;
  }
  body .manuapp .page3.processes .main .process-item-active .content .p2 {
    display: block !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #cad5e2 !important;
    margin: 0 !important;
    letter-spacing: normal !important;
  }
}
