html {
  font-size: 62.5%;
}
body {
  width: 100%;
}
body .app {
  width: 100%;
  /* ── Mobile Navigation ── */
}
body .app .container {
  max-width: 1440px;
  width: 83.3%;
  margin: 0 auto;
  overflow: hidden;
}
body .app .site-nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 92.08%;
  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;
}
body .app .site-nav img {
  width: 100px;
  height: 56px;
}
body .app .site-nav ul {
  height: 37px;
  display: flex;
  align-items: center;
  gap: 8px;
}
body .app .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;
  text-transform: uppercase;
}
body .app .site-nav ul li a {
  text-decoration: none;
  color: #656565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
}
body .app .site-nav ul li img {
  width: 19px;
  height: 19px;
}
body .app .site-nav ul .a:hover {
  background: #57a6df;
  font-family: "Alibaba PuHuiTi";
}
body .app .site-nav ul .a:hover a {
  color: #ffffff;
}
body .app .site-nav ul li.has-dropdown {
  position: relative;
}
body .app .site-nav ul li.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  /* 紧贴 li 下方 */
  left: 0;
  width: fit-content;
  height: fit-content;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  padding: 8px;
  margin: 0;
  list-style: none;
  z-index: 100;
  transition: all 0.5s ease;
}
body .app .site-nav ul li.has-dropdown .dropdown div {
  padding: 9px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
body .app .site-nav ul li.has-dropdown .dropdown div a {
  white-space: nowrap;
  text-decoration: none;
  color: #656565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
}
body .app .site-nav ul li.has-dropdown:hover .dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 9px;
  color: #656565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  border-radius: 12px;
  cursor: pointer;
}
body .app .site-nav ul li.has-dropdown:hover .dropdown div:hover {
  background: #57a6df;
  font-family: "Alibaba PuHuiTi";
}
body .app .site-nav ul li.has-dropdown:hover .dropdown div:hover a {
  color: #ffffff;
}
body .app .site-nav .other {
  width: 210px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .app .site-nav .other img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
body .app .site-nav .other div {
  width: 1px;
  height: 35px;
  border-radius: 1px;
  background: #b8b8b8;
}
body .app .site-nav .other a {
  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;
  text-decoration: none;
}
body .app .site-nav .other a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
body .app .site-nav.nav-hidden {
  transform: translateX(-50%) translateY(-150%);
}
body .app .site-nav.nav-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
body .app .header-nav {
  width: 100%;
  padding: 0 105px;
  height: 122px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #e5e5ea;
  background: #fff;
}
body .app .header-nav .header-nav-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.84);
}
body .app .header-nav .header-nav-inner .header-logo img {
  width: 100px;
  height: 56px;
  display: block;
}
body .app .header-nav .header-nav-inner ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body .app .header-nav .header-nav-inner ul li {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
body .app .header-nav .header-nav-inner ul li a,
body .app .header-nav .header-nav-inner ul li span {
  color: #656565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-decoration: none;
  transition: color 0.3s ease;
}
body .app .header-nav .header-nav-inner ul li a:hover,
body .app .header-nav .header-nav-inner ul li span:hover {
  color: #2534b3;
}
body .app .header-nav .header-nav-inner ul li img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}
body .app .header-nav .header-nav-inner ul li.has-dropdown {
  position: relative;
}
body .app .header-nav .header-nav-inner ul li.has-dropdown .has {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
body .app .header-nav .header-nav-inner ul li.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  /* 紧贴 li 下方 */
  left: 0;
  width: fit-content;
  height: fit-content;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  padding: 8px;
  margin: 0;
  list-style: none;
  z-index: 100;
  transition: all 0.5s ease;
}
body .app .header-nav .header-nav-inner ul li.has-dropdown .dropdown div {
  padding: 9px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
body .app .header-nav .header-nav-inner ul li.has-dropdown .dropdown div a {
  white-space: nowrap;
  color: #656565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-decoration: none;
  transition: color 0.3s ease;
}
body .app .header-nav .header-nav-inner ul li.has-dropdown:hover .dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 9px;
  color: #656565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  border-radius: 12px;
  cursor: pointer;
}
body .app .header-nav .header-nav-inner ul li.has-dropdown:hover .dropdown div:hover a {
  color: #57a6df;
}
body .app .header-nav .header-nav-inner .other {
  display: flex;
  align-items: center;
  gap: 24px;
}
body .app .header-nav .header-nav-inner .other img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  cursor: pointer;
}
body .app .header-nav .header-nav-inner .other div {
  width: 1px;
  height: 35px;
  border-radius: 1px;
  background: #b8b8b8;
}
body .app .header-nav .header-nav-inner .other button {
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.3px;
  width: 141px;
  height: 37px;
  display: flex;
  place-content: center;
  place-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 0px 10px;
  border-radius: 6px;
  background: #1d218d;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}
body .app .header-nav .header-nav-inner .other button:hover {
  background: #1d2890;
}
body .app .mobile-hamburger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 100000;
}
body .app .mobile-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body .app .mobile-hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
body .app .mobile-hamburger.active span:nth-child(2) {
  opacity: 0;
}
body .app .mobile-hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
body .app .mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
body .app .mobile-drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}
body .app .mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
body .app .mobile-drawer.open {
  transform: translateX(0);
}
body .app .mobile-drawer .mobile-drawer-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #f0f0f0;
}
body .app .mobile-drawer .mobile-drawer-logo {
  display: block;
}
body .app .mobile-drawer .mobile-drawer-logo img {
  display: block;
  width: 90px;
  height: auto;
}
body .app .mobile-drawer .mobile-drawer-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}
body .app .mobile-drawer .mobile-drawer-close:hover {
  background: #f5f5f5;
}
body .app .mobile-drawer .mobile-drawer-close svg {
  display: block;
}
body .app .mobile-drawer .mobile-drawer-menu {
  width: 100%;
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 22px;
  box-sizing: border-box;
  font-family: "Alibaba PuHuiTi";
  font-weight: 500;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-item img {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-item:hover,
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-item:active {
  color: #57a6df;
  background: rgba(87, 166, 223, 0.06);
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-cta {
  margin: 16px 22px;
  padding: 12px 16px;
  background: #57a6df;
  color: #fff;
  border-radius: 8px;
  border-bottom: none;
  justify-content: center;
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-cta:hover,
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-cta:active {
  color: #fff;
  background: rgba(87, 166, 223, 0.9);
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-group {
  border-bottom: 1px solid #f5f5f5;
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-group.open .mobile-drawer-toggle img {
  transform: rotate(180deg);
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-group.open .mobile-drawer-sub {
  max-height: 600px;
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-group .mobile-drawer-toggle {
  border-bottom: none;
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-group .mobile-drawer-sub {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: max-height 0.35s ease;
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-group .mobile-drawer-sub .mobile-drawer-subitem {
  display: block;
  padding: 12px 38px;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease, background 0.3s ease;
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-group .mobile-drawer-sub .mobile-drawer-subitem:last-child {
  border-bottom: none;
}
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-group .mobile-drawer-sub .mobile-drawer-subitem:hover,
body .app .mobile-drawer .mobile-drawer-menu .mobile-drawer-group .mobile-drawer-sub .mobile-drawer-subitem:active {
  color: #57a6df;
  background: rgba(87, 166, 223, 0.06);
}
body .app .company-text-outer {
  width: 100%;
  height: 82.8px;
  position: relative;
}
body .app .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;
}
body .app .company-text-outer .company-text .company-text-item {
  height: 22px;
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
}
body .app .company-text-outer .company-text .company-text-item span {
  line-height: 22px;
  flex-shrink: 0;
  white-space: nowrap;
}
body .app .company-text-outer .company-text .company-text-item .text {
  font-size: 16px;
  color: white;
  font-family: "Alibaba PuHuiTi";
  line-height: 22px;
  margin-right: 11px;
}
body .app .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;
}
body .app .company-text-outer .company-rotate {
  height: 82.8px;
  transform: rotate(-1.444224deg);
  background: #ff7860;
  position: relative;
  z-index: 1;
}
body .app .faq {
  width: 100%;
  height: 841px;
  background: #f3f4f9;
}
body .app .faq .container {
  position: relative;
  background: #f3f4f9;
}
body .app .faq .container .bg {
  position: absolute;
  top: 0;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 231px;
  line-height: 230.4px;
  color: rgba(0, 51, 102, 0.05);
  font-family: Manrope;
  font-weight: 800;
  font-size: 83px;
}
body .app .faq .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;
}
body .app .faq .container .swiperfaq {
  height: 474px;
  width: 83.3%;
  margin: 61px auto 0;
  overflow: hidden;
}
body .app .faq .container .swiper-wrapper {
  width: 1200px;
  width: 100%;
  height: 474px;
}
body .app .faq .container .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;
}
body .app .faq .container .swiper-wrapper .swiper-slide h2 {
  height: 28px;
  color: #101828;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
body .app .faq .container .swiper-wrapper .swiper-slide h2 p {
  width: 718px;
  height: 48px;
  color: #656565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
body .app .faq .container .swiperfaq-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;
}
body .app .faq .container .swiperfaq-button-next span {
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 13px;
  line-height: 48px;
}
body .app .faq .container .swiperfaq-button-next img {
  width: 22px;
  height: 22px;
}
body .app .faq .container .swiperfaq-button-next::after {
  display: none;
}
body .app .after {
  overflow: hidden;
  height: auto;
  background: #f3f4f9;
}
body .app .after .container {
  position: relative;
  overflow: hidden;
}
body .app .after .container .bg {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 665px;
  height: 231px;
  display: flex;
  align-items: center;
  color: rgba(0, 51, 102, 0.05);
  font-family: Manrope;
  font-weight: 800;
  font-size: 120px;
  line-height: 230.4px;
}
body .app .after .container h1 {
  text-align: center;
  width: 320px;
  height: 48px;
  color: #003366;
  font-family: Manrope;
  font-weight: 700;
  font-size: 35px;
  line-height: 48px;
  margin: 110px auto 0;
}
body .app .after .container .swiperafter {
  width: 64.58%;
  width: 930px;
  height: 39.75%;
  margin: 123px auto 0;
  overflow: hidden;
}
body .app .after .container .swiperafter .swiper-pagination {
  width: 1187px;
  height: 82px;
}
body .app .after .container .swiperafter .swiper-slide {
  width: 930px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
}
body .app .after .container .swiperafter .swiper-slide .text {
  width: 40%;
  aspect-ratio: 1.25901639;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .app .after .container .swiperafter .swiper-slide .text h2 {
  margin-left: 2px;
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
}
body .app .after .container .swiperafter .swiper-slide .text .p {
  margin-left: 2px;
  height: 75%;
  color: #616161;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
body .app .after .container .swiperafter .swiper-slide .text .p p {
  text-align: left;
}
body .app .after .container .swiperafter .swiper-slide .imgdiv {
  width: 515px;
  width: 50%;
  aspect-ratio: 1.61949686;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}
body .app .after .container .swiperafter .swiper-slide .imgdiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .app .after .container .service-inner {
  width: 930px;
  max-width: 100%;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
}
body .app .after .container .service-inner .section2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 80px;
}
body .app .after .container .service-inner .section2 .prev,
body .app .after .container .service-inner .section2 .next {
  min-width: 56px;
  max-width: 56px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
body .app .after .container .service-inner .section2 .prev:hover,
body .app .after .container .service-inner .section2 .next:hover {
  transform: scale(1.06);
}
body .app .after .container .service-inner .section2 .swiper1 {
  width: calc(100% - 160px);
  overflow: hidden;
}
body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper {
  width: 100%;
}
body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4%;
}
body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-left {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-left .text1 {
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 60px;
}
body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-left .text2 {
  color: #616161;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-right {
  width: 48%;
  aspect-ratio: 1.61949686;
  border-radius: 14px;
  background: #b5b5b5;
  overflow: hidden;
}
body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-right img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}
body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-right:hover img {
  transform: scale(1.05);
}
body .app .after .container .service-inner .section3 {
  width: 100%;
  overflow: hidden;
}
body .app .after .container .service-inner .section3 .swiper-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
}
body .app .after .container .service-inner .section3 .swiper-wrapper::after {
  content: '';
  width: 1000%;
  border-top: 1px dashed #a4a4a4;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: 0;
}
body .app .after .container .service-inner .section3 .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
body .app .after .container .service-inner .section3 .swiper-wrapper .swiper-slide p {
  text-align: center;
  color: #a4a4a4;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: color 0.3s ease;
  margin: 0;
}
body .app .after .container .service-inner .section3 .swiper-wrapper .swiper-slide .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a4a4a4;
  transition: width 0.4s ease, background 0.3s ease;
  z-index: 1;
}
body .app .after .container .service-inner .section3 .swiper-wrapper .swiper-slide-thumb-active p {
  color: #FF4929;
}
body .app .after .container .service-inner .section3 .swiper-wrapper .swiper-slide-thumb-active .dot {
  width: 48px;
  height: 12px;
  border-radius: 16777200px;
  background: #FF4929;
}
body .app .after .container .swiperafter-button-next::after,
body .app .after .container .swiperafter-button-prev::after {
  display: none;
}
body .app .after .container .swiperafter-button-next {
  position: absolute;
  right: 125.5px;
  right: 0;
  top: 404px;
  width: 72px;
  height: 72px;
  border-radius: 16777200px;
  background: url("../images/manufacturing/swiper6ButtonNext.png") no-repeat center center / cover;
}
body .app .after .container .swiperafter-button-prev {
  position: absolute;
  left: 125.5px;
  left: 0;
  top: 404px;
  width: 72px;
  height: 72px;
  border-radius: 16777200px;
  background: url("../images/manufacturing/swipe6ButtonPrev.png") no-repeat center center / cover;
}
body .app .after .container .swiperafter-pagination {
  position: absolute;
  top: 677px;
  left: 50%;
  transform: translateX(-50%);
  width: 82.43%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
body .app .after .container .swiperafter-pagination .swiper-pagination-bullet {
  width: 160px;
  height: fit-content;
  display: inline-flex;
  flex-direction: column;
  place-content: flex-start;
  place-items: center;
  gap: 12px;
  flex-shrink: 0;
  background: none;
  opacity: 1;
}
body .app .after .container .swiperafter-pagination .swiper-pagination-bullet span {
  text-align: center;
  color: #a4a4a4;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
body .app .after .container .swiperafter-pagination .swiper-pagination-bullet .dot {
  width: 12px;
  height: 12px;
  border-radius: 16777200px;
  background: #a4a4a4;
  transition: all 0.3s ease-in-out;
}
body .app .after .container .swiperafter-pagination .swiper-pagination-bullet-active {
  background: none;
}
body .app .after .container .swiperafter-pagination .swiper-pagination-bullet-active span {
  color: #ff4929;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
body .app .after .container .swiperafter-pagination .swiper-pagination-bullet-active .dot {
  width: 48px;
  height: 12px;
  border-radius: 16777200px;
  background: #ff4929;
}
body .app .contactpage {
  width: 100%;
}
body .app .contactpage .container {
  padding: 6.94% 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
body .app .contactpage .container .left {
  width: 20.97%;
  height: 63.3%;
}
body .app .contactpage .container .left h1 {
  width: auto;
  color: #101828;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}
body .app .contactpage .container .left hr {
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background: #57a6df;
  margin-bottom: 38px;
  border: none;
}
body .app .contactpage .container .left .contact {
  width: auto;
  height: 52px;
  display: flex;
  margin-bottom: 60px;
}
body .app .contactpage .container .left .contact .icon {
  width: 48px;
  height: 48px;
  display: flex;
  place-content: center;
  place-items: center;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0px 14px;
  border-radius: 16777200px;
  background: #f9fafb;
  margin-right: 16px;
}
body .app .contactpage .container .left .contact .icon img {
  width: 20px;
  height: 20px;
}
body .app .contactpage .container .left .contact .content {
  height: 52px;
}
body .app .contactpage .container .left .contact .content a {
  text-decoration: none;
  color: inherit;
}
body .app .contactpage .container .left .contact .content span {
  color: #99a1af;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.2px;
  margin-top: 0.5px;
  margin-bottom: 3.5px;
}
body .app .contactpage .container .left .contact .content p {
  color: #4a5565;
  font-family: "Alibaba PuHuiTi";
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
  white-space: nowrap;
}
body .app .contactpage .main {
  width: 38.13%;
  height: 593px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 18px 33px 31px 33px;
  border-radius: 32px;
  border: 2px dashed #d1d5dc;
  box-sizing: border-box;
  background: #ffffff;
}
body .app .contactpage .main .input {
  width: 100%;
  height: fit-content;
  display: inline-flex;
  flex-direction: column;
  place-content: flex-start;
  place-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}
body .app .contactpage .main .input p {
  color: #364153;
  font-family: "Alibaba PuHuiTi";
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.2px;
}
body .app .contactpage .main .input p span {
  color: #ff0000;
}
body .app .contactpage .main .input input {
  width: 100%;
  height: 58px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-sizing: border-box;
  background: #f9fafb;
}
body .app .contactpage .main .input .input4 {
  width: 100%;
  height: 106px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-sizing: border-box;
  background: #f9fafb;
}
body .app .contactpage .main input:focus {
  caret-color: auto;
  outline: none;
}
body .app .contactpage .main button {
  border: none;
  width: 100%;
  height: 60px;
  border-radius: 14px;
  background: #57a6df;
  padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
body .app .contactpage .main button span {
  text-align: center;
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
}
body .app .contactpage .main button img {
  width: 20px;
  height: 20px;
}
body .app .contactpage .main button:hover {
  transform: scale(1.02);
  opacity: 0.9;
}
body .app .contactpage .right {
  width: 27.05%;
  height: 593px;
  display: inline-flex;
  flex-direction: column;
  place-content: flex-start;
  place-items: center;
  flex-shrink: 0;
}
body .app .contactpage .right .upload {
  width: 100%;
  height: 328px;
  border-radius: 32px;
  border: 2px dashed #d1d5dc;
  box-sizing: border-box;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .app .contactpage .right .upload button {
  border: none;
  width: 80px;
  height: 80px;
  display: flex;
  place-content: center;
  place-items: center;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0px 20px;
  border-radius: 16777200px;
  background: #f9fafb;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: 34px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
body .app .contactpage .right .upload button img {
  width: 44px;
  height: 44px;
}
body .app .contactpage .right .upload button:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
body .app .contactpage .right .upload h2 {
  text-align: center;
  color: #101828;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin-top: 24px;
}
body .app .contactpage .right .upload p {
  width: 90%;
  height: 48px;
  text-align: center;
  color: #6a7282;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: -0.3px;
  margin-top: 10.5px;
}
body .app .contactpage .right .upload p span {
  color: #221f8f;
  font-weight: 700;
}
body .app .contactpage .right .upload .security {
  width: 80%;
  height: 36px;
  place-content: center;
  place-items: center;
  gap: 8px;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0px 58px;
  border-radius: 16777200px;
  background: #f9fafb;
  padding: 0 31px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 33.5px;
}
body .app .contactpage .right .upload .security img {
  width: 16px;
  height: 16px;
}
body .app .contactpage .right .upload .security span {
  text-align: center;
  color: #99a1af;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 11px;
  line-height: 20px;
  letter-spacing: -0.2px;
}
body .app .contactpage .right .download {
  width: 100%;
  height: fit-content;
  display: inline-flex;
  place-content: center;
  place-items: center;
  gap: 22px;
  flex-shrink: 0;
  padding: 16px 32px;
  border-radius: 14px;
  border: 1px solid #57a6df;
  box-sizing: border-box;
  background-color: white;
  margin-top: 25px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
body .app .contactpage .right .download:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
body .app .contactpage .right .download span {
  text-align: center;
  color: #6a6a6a;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
}
body .app .contactpage .right .download img {
  width: 20px;
}
body .app .contactpage .right .qr {
  height: 180px;
  width: 100%;
  position: relative;
}
body .app .contactpage .right .qr .tel {
  position: absolute;
  bottom: 0;
  left: 25%;
  transform: translateX(-50%);
  width: 68px;
  height: 44px;
  cursor: pointer;
}
body .app .contactpage .right .qr .tel:hover ~ .whatsApphover {
  opacity: 1;
  pointer-events: auto;
}
body .app .contactpage .right .qr .wx {
  position: absolute;
  bottom: 0;
  right: 25%;
  transform: translateX(50%);
  width: 46px;
  height: 42px;
  cursor: pointer;
}
body .app .contactpage .right .qr .wx:hover ~ .wxhover {
  opacity: 1;
  pointer-events: auto;
}
body .app .contactpage .right .qr .whatsApphover {
  width: 78px;
  height: 88px;
  position: absolute;
  top: 28px;
  left: 25%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
body .app .contactpage .right .qr .whatsApphover:hover {
  opacity: 1;
  pointer-events: auto;
}
body .app .contactpage .right .qr .whatsApphover .whatshoverqr {
  width: 74px;
  height: 74px;
  border-radius: 10px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  display: block;
  object-fit: cover;
}
body .app .contactpage .right .qr .whatsApphover::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #ffffff;
  filter: drop-shadow(0px -1px 4px rgba(0, 0, 0, 0.25));
  margin: 0 auto 0;
}
body .app .contactpage .right .qr .wxhover {
  width: 74px;
  height: 82px;
  position: absolute;
  top: 28px;
  right: 25%;
  transform: translateX(50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
body .app .contactpage .right .qr .wxhover:hover {
  opacity: 1;
  pointer-events: auto;
}
body .app .contactpage .right .qr .wxhover .square {
  width: 74px;
  height: 77px;
  border-radius: 10px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
body .app .contactpage .right .qr .wxhover .square .blank {
  width: 14px;
  height: 3px;
  background: #ffffff;
  position: absolute;
  bottom: -1px;
  left: 30px;
  z-index: 999;
}
body .app .contactpage .right .qr .wxhover .triangle {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #ffffff;
  filter: drop-shadow(0px -1px 4px rgba(0, 0, 0, 0.25));
  margin: 0 auto 0;
}
body .app .footer {
  height: 541px;
  border-top: 4px solid #ff4929;
  background: #f4f4f5;
}
body .app .footer .container {
  padding: 56px 8% 0 8%;
}
body .app .footer .container .content {
  display: flex;
  justify-content: space-between;
}
body .app .footer .container .content .left {
  height: 260px;
  width: 37.69%;
  width: fit-content;
}
body .app .footer .container .content .left img {
  width: 188px;
  height: 104px;
}
body .app .footer .container .content .left p {
  width: 537px;
  height: 52px;
  color: #6f6f6f;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.3px;
  margin-top: 26px;
  position: relative;
  top: 30px;
  background: linear-gradient(to right, #333333, #333333) no-repeat;
  /* 背景初始宽度为0 高度为2px */
  background-size: 0 2px;
  /* 背景位置在文字底部 */
  background-position: left bottom;
  /* 设置平滑过渡效果 */
  transition: background-size 1.5s ease-in-out;
  cursor: pointer;
}
body .app .footer .container .content .left p:hover {
  background-size: 100% 2px;
}
body .app .footer .container .content .main {
  width: 280px;
  height: 236px;
  width: fit-content;
  margin-top: 24px;
  display: inline-flex;
  flex-direction: column;
  place-content: flex-start;
  place-items: flex-start;
  flex-shrink: 0;
}
body .app .footer .container .content .main h1 {
  color: #6f6f6f;
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
body .app .footer .container .content .main a {
  text-decoration: none;
  display: block;
}
body .app .footer .container .content .main span {
  color: #a3a3a3;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
}
body .app .footer .container .content .main span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #6f6f6f;
  transition: width 0.3s ease;
}
body .app .footer .container .content .main span:hover::after {
  width: 100%;
}
body .app .footer .container .content .right {
  width: 280px;
  height: 236px;
  width: fit-content;
  margin-top: 24px;
  display: inline-flex;
  flex-direction: column;
  place-content: flex-start;
  place-items: flex-start;
  flex-shrink: 0;
}
body .app .footer .container .content .right h1 {
  color: #6f6f6f;
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
body .app .footer .container .content .right a {
  text-decoration: none;
  display: block;
}
body .app .footer .container .content .right span {
  color: #a3a3a3;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
}
body .app .footer .container .content .right span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #6f6f6f;
  transition: width 0.3s ease;
}
body .app .footer .container .content .right span:hover::after {
  width: 100%;
}
body .app .footer .container .icon {
  width: fit-content;
  height: fit-content;
  display: inline-flex;
  place-content: center;
  place-items: center;
  gap: 19px;
  margin-top: 7px;
}
body .app .footer .container .icon img {
  width: 26px;
  height: 26px;
}
body .app .footer .container .icon img:last-child {
  width: 24px;
  height: 24px;
}
body .app .footer .container .bottom {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  flex-shrink: 0;
  padding: 46px 0 0 0;
  border-top: 1px solid #a3a3a3;
  margin-top: 68px;
}
body .app .footer .container .bottom span {
  color: rgba(163, 163, 163, 0.85);
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  cursor: pointer;
}
body .app .footer .container .bottom span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #6f6f6f;
  transition: width 0.3s ease;
}
body .app .footer .container .bottom span:hover::after {
  width: 100%;
}
body .app .footer .container .bottom .links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: default;
}
body .app .footer .container .bottom .links::after {
  display: none;
}
body .app .footer .container .bottom .links a {
  color: inherit;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
body .app .footer .container .bottom .links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #6f6f6f;
  transition: width 0.3s ease;
}
body .app .footer .container .bottom .links a:hover::after {
  width: 100%;
}
@media only screen and (max-width: 1400px) {
  .homepage2 {
    height: auto;
  }
}
@media only screen and (max-width: 1280px) {
  .page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet span {
    font-size: 16px !important;
  }
  .index .page6 p {
    font-size: 12px !important;
  }
  .index .page6 .top .right {
    width: 300px;
  }
  .page4 .swipertreatment .swiper-slide .left .introduction {
    font-size: 14px !important;
  }
  .page4 .swipertreatment .swiper-slide .left .xq {
    font-size: 14px !important;
  }
  .appli .logistics .container .info .cards .card3 li {
    font-size: 13px !important;
  }
  .appli .logistics .container .info .cards .card3 .card-list {
    width: 100% !important;
  }
  .appli .logistics .container .info .cards .card3 .card-list li p {
    font-size: 10px !important;
    width: 130px !important;
  }
  .appli .logistics .container .info .cards .column1 .card .card-list {
    width: 90% !important;
  }
  .swiper3button .swiper-wrapper .swiper-slide p {
    font-size: 15px !important;
  }
  .app .page2 .container .products {
    width: 100%;
    max-width: 1000px;
  }
  .app .page2 .container .products .product {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1;
  }
  .app .page2 .container .products .product .text .xq span {
    font-size: 16px !important;
  }
  .page2 .container .need span {
    font-size: 14px !important;
  }
  .app .page2 .container .newsletter .left h1 {
    font-size: 40px !important;
  }
  .manuapp .page2 .main .top .right .top h2 {
    font-size: 26px !important;
  }
  .manuapp .page2 .main .top .right .top p {
    font-size: 14px !important;
  }
  .manuapp .page2 .main .top .right .buttons .upload span {
    font-size: 10px !important;
  }
  .manuapp .page2 .main .center .left p {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .manuapp .page2 .main .center h2 {
    font-size: 24px !important;
  }
  .manuapp .page2 .main .bottom .left .design h2 {
    font-size: 26px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .index .page3 .container .main .swiper3b-button-prev {
    left: 10%;
  }
  .index .page3 .container .main .swiper3b-button-next {
    right: 10%;
  }
  .index .page6 .top .left span {
    font-size: 10px !important;
  }
  .index .page6 .top .left h1 {
    font-size: 24px !important;
  }
  .index .page6 .top .left hr {
    width: 60px;
  }
  .index .page6 .bottom .left h2 {
    font-size: 18px !important;
  }
  .index .page6 .bottom .left span {
    font-size: 13px !important;
  }
  .index .page6 .bottom .right {
    width: 150px;
  }
  .index .page6 .bottom .right span {
    font-size: 13px !important;
  }
  .page4 .swipertreatment .swiper-slide .left .introduction {
    font-size: 12px !important;
  }
  .page4 .swipertreatment .swiper-slide .left .xq {
    font-size: 12px !important;
  }
  body .app .faq .container .bg {
    font-size: 50px !important;
  }
  .productcenter .page2 .container .categories .title span {
    font-size: 14px !important;
  }
  .manuapp .page4 .swipertreatment .swiper-pagination .swiper-pagination-bullet span {
    font-size: 14px !important;
  }
  .banner .bannerSwiper .swiper-slide .banner-main .span1 {
    font-size: 30px;
  }
  .page3 .container .main .swiper3button .swiper-wrapper .swiper-slide img {
    width: 40px;
    height: 40px;
  }
  .page3 .container .main .swiper3button .swiper-wrapper .swiper-slide p {
    font-size: 12px !important;
  }
  .homepage4 .container .bottom .location .xq p {
    font-size: 12px !important;
    font-weight: 500;
    margin-bottom: 16px !important;
  }
  .homepage4 .container .bottom .location .xq .buttons span {
    font-weight: 500 !important;
    font-size: 12px !important;
  }
  body .app .contactpage .right .upload p {
    font-size: 10px !important;
  }
  body .app .contactpage .right .upload .security span {
    font-size: 7px !important;
  }
  body .app .contactpage .right .download span {
    font-size: 14px !important;
  }
  body .app .footer .container .content .left {
    width: fit-content;
  }
  body .app .footer .container .content .left img {
    width: 130px;
    height: auto;
    display: block;
  }
  body .app .footer .container .content .left p {
    font-size: 12px !important;
    width: 400px;
    margin-top: 0 !important;
  }
  body .app .footer .container .content .main {
    width: fit-content;
  }
  body .app .footer .container .content .main h1 {
    font-size: 14px !important;
  }
  body .app .footer .container .content .main span {
    font-size: 12px !important;
  }
  body .app .footer .container .content .right {
    width: fit-content;
  }
  body .app .footer .container .content .right h1 {
    font-size: 14px !important;
  }
  body .app .footer .container .content .right span {
    font-size: 12px !important;
  }
  body .app .contactpage .container .left h1 {
    font-size: 26px !important;
  }
  body .app .site-nav ul li a {
    font-size: 10px !important;
  }
  .site-nav ul li span {
    font-size: 10px !important;
  }
  .manuapp .page2 .main .top .left p {
    font-size: 12px !important;
  }
  .manuapp .page2 .main .top .right p {
    font-size: 12px !important;
  }
  .manuapp .page2 .main .top .right .top h2 {
    font-size: 22px !important;
  }
  .manuapp .page2 .main .top .right .buttons .upload img {
    width: 18px;
    height: 18px;
  }
  .manuapp .page2 .main .top .right .buttons .upload span {
    font-size: 8px !important;
  }
  .manuapp .page2 .main .top .right .buttons .contact img {
    width: 18px;
    height: 18px;
  }
  .manuapp .page2 .main .top .right .buttons .contact span {
    font-size: 8px !important;
  }
  .manuapp .page2 .main .center h2 {
    font-size: 20px !important;
  }
  .page2 .main .bottom .left .design h2 {
    font-size: 20px !important;
  }
  .blog .page1 {
    height: auto;
    padding-bottom: 60px;
  }
  .blog .page1 .container main .left h1 {
    font-size: 28px !important;
    width: 90% !important;
  }
  .blog .page1 .container .header {
    width: 83.3% !important;
    margin: 80px auto 48px !important;
  }
  .blog .page1 .container .header .left h1 {
    font-size: 36px !important;
  }
  .blog .page1 .container .header p {
    font-size: 14px !important;
  }
  .blog .page1 .container .header .right button {
    font-size: 10px !important;
  }
  .blog .page2 .container .newsletter .left span {
    font-size: 10px !important;
  }
  .blog .page2 .container .newsletter .left h1 {
    font-size: 32px !important;
  }
  .blog .page2 .container .newsletter .left p {
    width: 100% !important;
    font-size: 12px !important;
  }
  .blog .page2 .container .newsletter .right p {
    font-size: 9px !important;
  }
  .blog .page2 .container .newsletter .right .button button {
    font-size: 12px !important;
  }
  .blog .page2 .container .newsletter .right .button input {
    font-size: 10px !important;
  }
  .blog hr {
    width: 83.3% !important;
  }
  .appli .discover .container .content .info h3 {
    font-size: 24px !important;
  }
  .appli .discover .container .content .info .description {
    font-size: 14px !important;
  }
  .appli .discover .container .content .info .cards .column1 .card ul li p {
    font-size: 10px !important;
    width: 100% !important;
  }
  .appli .discover .container .content .info .cards .card3 ul li p {
    font-size: 10px !important;
    width: 100% !important;
  }
  .appli .logistics .container .info h3 {
    font-size: 24px !important;
  }
  .appli .logistics .container .info .desc {
    font-size: 14px !important;
  }
  .appli .logistics .container .info .cards .column1 .card ul li p {
    font-size: 10px !important;
    width: 100% !important;
  }
  .appli .logistics .container .info .cards .card3 ul li p {
    font-size: 10px !important;
    width: 57% !important;
  }
  .appli .equipment .container .content .info h3 {
    font-size: 24px !important;
  }
  .appli .equipment .container .content .info .description {
    font-size: 14px !important;
  }
  .appli .equipment .container .content .info .cards .column1 .card ul li p {
    font-size: 10px !important;
    width: 100% !important;
  }
  .appli .equipment .container .content .info .cards .card3 ul li p {
    font-size: 10px !important;
    width: 100% !important;
  }
  .appli .necessities .container .info h3 {
    font-size: 24px !important;
  }
  .appli .necessities .container .info .desc {
    font-size: 14px !important;
  }
  .appli .necessities .container .info .cards .column1 .card ul li p {
    font-size: 10px !important;
    width: 100% !important;
  }
  .appli .necessities .container .info .cards .card3 ul li p {
    font-size: 10px !important;
    width: 57% !important;
  }
  .appli .long .container .image-block img {
    object-fit: cover;
  }
  .appli .long .container .info h3 {
    font-size: 24px !important;
  }
  .appli .long .container .info .desc {
    font-size: 14px !important;
  }
  .appli .long .container .info .column1 .card ul li p {
    font-size: 10px !important;
    width: 100% !important;
  }
  .appli .long .container .card3 {
    width: 20% !important;
  }
  .appli .long .container .card3 ul li p {
    font-size: 10px !important;
    width: 57% !important;
  }
  .appli .liquid .container .info h3 {
    font-size: 24px !important;
  }
  .appli .liquid .container .info .desc {
    font-size: 14px !important;
  }
  .appli .liquid .container .info .cards .column1 .card ul li p {
    font-size: 10px !important;
    width: 100% !important;
  }
  .appli .liquid .container .info .cards .card3 {
    gap: 20px !important;
  }
  .appli .liquid .container .info .cards .card3 ul li p {
    font-size: 10px !important;
    width: 57% !important;
  }
  .aboutus .page1 .container .left span {
    font-size: 10px !important;
  }
  .aboutus .page1 .container .left h1 {
    font-size: 36px !important;
    width: 100% !important;
  }
  .aboutus .page1 .container .left hr {
    width: 80px !important;
  }
  .aboutus .page1 .container .left img {
    width: 100% !important;
    height: auto !important;
  }
  .aboutus .page1 .container .right .big span {
    font-size: 74px !important;
  }
  .aboutus .page1 .container .right p {
    font-size: 14px !important;
  }
  .aboutus .page1 .container .right .p2 {
    margin-top: 14px !important;
  }
  .aboutus .page1 .container .right .datas .data {
    gap: 12px !important;
    padding: 16px 0 !important;
  }
  .aboutus .page1 .container .right .datas .data .num {
    font-size: 36px !important;
  }
  .aboutus .page1 .container .right .datas .data .text {
    font-size: 8px !important;
  }
  .aboutus .page2 .main main .right .business p {
    font-size: 14px !important;
    width: 100% !important;
  }
  .aboutus .page3 .container .left-section .p2 {
    font-size: 16px !important;
    width: 100%;
  }
  .aboutus .page3 .container .left-section h1 {
    font-size: 48px !important;
    width: 100% !important;
  }
  .aboutus .page3 .container .right-section .timeline {
    margin-left: 10px !important;
  }
  .aboutus .page3 .container .right-section .timeline .timeline-item .content {
    font-size: 17px !important;
  }
  .aboutus .page4 .container .content .left .step h3 {
    font-size: 16px !important;
  }
  .aboutus .page4 .container .content .left .step p {
    font-size: 12px !important;
  }
  .aboutus .page4 .container .content .right {
    width: 50% !important;
  }
  body .app .after .container .swiperafter {
    width: 80% !important;
  }
  body .app .after .container .swiperafter .swiper-slide h2 {
    font-size: 20px !important;
  }
  body .app .after .container .swiperafter .swiper-slide .text .p {
    font-size: 11px !important;
  }
  body .app .after .container .swiperafter-button-prev {
    width: 55px;
    height: 55px;
  }
  body .app .after .container .swiperafter-button-next {
    width: 55px;
    height: 55px;
  }
  body .app .after .container .swiperafter-pagination .swiper-pagination-bullet span {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 834px) {
  .index .page6 {
    height: fit-content !important;
    padding: 0 0 60px 0;
  }
  .index .page6 .top {
    margin: 0 auto;
  }
  .index .page6 .main {
    display: initial;
  }
  .index .page6 .main .hovercontent {
    width: 100%;
  }
  .index .page6 .main .hoverpic {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100% !important;
    margin-top: 30px;
  }
  .productdetail .detailedData .container .main .categories .title {
    font-size: 12px !important;
  }
  .productdetail .detailedData .container .main .categories .title span {
    font-size: 12px !important;
  }
  .index .banner .bannerSwiper .swiper-slide .banner-main .span1 {
    font-size: 24px !important;
  }
  .index .banner .bannerSwiper .swiper-slide .banner-main .text p {
    font-size: 14px !important;
  }
  .index .banner .bannerSwiper .swiper-slide .banner-main .button {
    width: 180px;
    height: 40px;
  }
  .index .banner .bannerSwiper .swiper-slide .banner-main .button span {
    font-size: 12px !important;
  }
  .index .page4 .top {
    width: 100% !important;
  }
  .index .page4 .top .red {
    font-size: 12px !important;
  }
  .index .page4 .top .bolder {
    font-size: 28px !important;
  }
  .index .page4 .top hr {
    width: 60px !important;
  }
  .index .page4 .top .p1 {
    width: 80% !important;
    font-size: 14px !important;
  }
  .index .page4 .top .p1 span {
    font-size: 20px !important;
  }
  .index .page4 .top .p2 {
    width: 80% !important;
    font-size: 14px !important;
  }
  .index .page4 .top .p2 span {
    font-size: 20px !important;
  }
  .index .page4 .swiper4 {
    height: auto;
    min-height: 300px;
  }
  .index .page6 .top .left h1 {
    font-size: 20px !important;
    text-align: start;
  }
  .index .page6 .top .right p {
    font-size: 10px !important;
    width: 300px;
  }
  .index .page6 .bottom .left {
    width: 60%;
  }
  .index .page6 .bottom .left h2 {
    font-size: 18px !important;
  }
  .index .page6 .bottom .left span {
    font-size: 10px !important;
  }
  .index .page3 .container .main .swiper3button .swiper-wrapper .swiper-slide p {
    font-size: 8px !important;
  }
  .index .page3 .container .main .swiper3button .swiper-wrapper .swiper-slide img {
    width: 30px !important;
    height: 30px !important;
  }
  body .app .contactpage {
    height: auto;
    padding: 60px 0;
  }
  body .app .contactpage .container {
    flex-wrap: wrap;
  }
  body .app .contactpage .container .main {
    width: 100%;
  }
  body .app .contactpage .container .main .input {
    margin-bottom: 10px;
  }
  body .app .contactpage .container .right {
    width: 100%;
    max-width: 315px;
  }
  body .app .contactpage .container .right .qr {
    position: relative;
  }
  .manuapp .page4 .swipertreatment .swiper-slide .left .introduction {
    font-size: 13px !important;
  }
  .manuapp .page4 .swipertreatment .swiper-slide .left .xq {
    font-size: 13px !important;
  }
  .manuapp .page5 .container h1 {
    font-size: 26px !important;
  }
  .page7 .container .swiper7 .swiper-wrapper .swiper-slide p {
    width: 100%;
  }
  body .app .after .container .swiperafter .swiper-slide .text .p p {
    font-size: 9px !important;
  }
  body .app .after .container .swiperafter-pagination .swiper-pagination-bullet span {
    font-size: 12px !important;
  }
  .productcenter .page2 .container .products {
    display: flex !important;
    flex-wrap: wrap;
    margin-left: 0 !important;
    justify-content: space-between;
    width: 100%;
    max-width: 530px;
    height: auto;
  }
  .productcenter .page2 .container .categories .category span {
    font-size: 12px !important;
  }
  .productcenter .page2 .container .categories .category img {
    width: 30px !important;
    height: 30px !important;
  }
  body .productdetail .detailedData {
    height: auto;
    padding: 40px 0;
  }
  body .productdetail .detailedData .container .main .right .title h1 {
    font-size: 14px !important;
  }
  body .productdetail .detailedData .container .main .right .title span {
    font-size: 12px !important;
  }
  body .productdetail .detailedData .container .main .right p {
    font-size: 12px !important;
  }
  body .productdetail .detailedData .container .main .right .get {
    margin-top: 13px !important;
  }
  .productdetail .detailedData .container .main .categories .category span {
    font-size: 12px !important;
  }
  .aboutus .page3 {
    padding-left: 4% !important;
  }
  .aboutus .page3 .container .left-section {
    width: 100%;
    max-width: 300px;
  }
  .aboutus .page3 .container .left-section h1 {
    font-size: 44px !important;
  }
  .aboutus .page3 .container .left-section .image-box {
    height: auto;
    aspect-ratio: 0.625;
  }
  .aboutus .page3 .container .left-section .image-box img {
    width: 100%;
    max-width: 250px;
    height: auto !important;
  }
  .aboutus .page3 .container .right-section .timeline .timeline-item .content {
    font-size: 11px !important;
  }
  .aboutus .page4 .container .content .right .info p {
    font-size: 10px !important;
    width: 80% !important;
  }
  .aboutus .page4 .container .content .right .info h4 {
    font-size: 12px !important;
  }
  .cooperate .customer .swiperCustomer1 .swiper-pagination .swiper-pagination-bullet {
    font-size: 12px !important;
  }
  .cooperate .range main .left button {
    margin-top: 40px !important;
  }
  .appli .discover .container .content {
    flex-direction: column !important;
    justify-content: space-between;
  }
  .appli .discover .container .content .info {
    display: block;
    width: 90% !important;
  }
  .appli .discover .container .content .info .cards {
    height: 60% !important;
  }
  .appli .discover .container .content .info .cards .column1 {
    height: 100% !important;
  }
  .appli .discover .container .content .info .cards .column1 .card {
    height: 48% !important;
  }
  .appli .discover .container .content .info .cards .column1 .card .special li:last-child {
    position: relative !important;
    top: -100px;
    left: 160px;
  }
  /* .logistics 布局已在 applicationScenarios.less 中用 flex column 重写，
       以下旧的 absolute + margin-top:310px 方案已废弃 */
  .appli .logistics .container .info .desc {
    margin-bottom: 0 !important;
  }
  .appli .equipment .container .content {
    flex-direction: column !important;
    justify-content: space-between;
  }
  .appli .equipment .container .content .info {
    display: block;
    width: 90% !important;
  }
  .appli .equipment .container .content .info .cards {
    height: 67% !important;
  }
  .appli .equipment .container .content .info .cards .column1 {
    height: 100% !important;
  }
  .appli .equipment .container .content .info .cards .column1 .card {
    height: 48% !important;
  }
  .appli .equipment .container .content .info .cards .column1 .card .special li:last-child {
    position: relative !important;
    top: -100px;
    left: 160px;
  }
  .appli .equipment .container .content .image {
    top: 70px !important;
  }
  .appli .equipment {
    height: auto;
    padding: 60px 0;
  }
  /* .necessities 布局已在 applicationScenarios.less 中用 flex column 重写，
       以下旧的 absolute + margin-top:310px 方案已废弃 */
  body .appli .necessities {
    height: auto;
    padding: 60px 0;
  }
  .appli .liquid .container .content {
    flex-direction: column !important;
    justify-content: space-between;
  }
  .appli .liquid .container .content .info {
    display: block;
    width: 90% !important;
  }
  .appli .liquid .container .content .info .cards {
    height: 67% !important;
  }
  .appli .liquid .container .content .info .cards .column1 {
    height: 100% !important;
  }
  .appli .liquid .container .content .info .cards .column1 .card {
    height: 48% !important;
  }
  .appli .liquid .container .content .info .cards .column1 .card .special li:last-child {
    position: relative !important;
    top: -100px;
    left: 160px;
  }
  .appli .liquid {
    height: auto;
    padding: 60px 0;
  }
  /* .long 布局已在 applicationScenarios.less 中用 flex column 重写，
       以下旧的 absolute + margin-top:200px 方案已废弃 */
  body .appli .long {
    height: auto;
    padding: 60px 0;
  }
  body .app .footer .container .content .main {
    width: fit-content !important;
  }
  body .app .footer .container .content .left {
    width: 35% !important;
  }
  body .app .footer .container .content .left p {
    width: 100% !important;
  }
  body .manuapp .page4 .swipertreatment .swiper-slide .right {
    height: auto;
    min-height: 204px;
  }
  body .manuapp .page2 .container {
    width: 90% !important;
  }
  body .manuapp .page2 .container .top .left .span {
    font-size: 10px !important;
  }
  body .manuapp .page2 .container .top .left h1 {
    font-size: 24px !important;
  }
  body .manuapp .page2 .container .top .right {
    font-size: 12px !important;
  }
  .manuapp .page2 .main .bottom .left .design h2 {
    font-size: 20px !important;
  }
}
/* ── Mobile Navigation Toggle ── */
@media only screen and (max-width: 1024px) {
  body .app .site-nav ul,
  body .app .site-nav .other {
    display: none !important;
  }
  body .app .site-nav .mobile-hamburger {
    display: flex !important;
  }
  body .app .header-nav .header-nav-inner ul,
  body .app .header-nav .header-nav-inner .other {
    display: none !important;
  }
  body .app .header-nav .header-nav-inner .mobile-hamburger {
    display: flex !important;
  }
  body .app .header-nav {
    height: 70px;
    padding: 0;
  }
  body .app .header-nav .header-nav-inner {
    padding: 0 5%;
  }
  body .app .header-nav .header-nav-inner .header-logo img {
    width: 80px;
    height: auto;
  }
  body .app .site-nav {
    width: 92%;
    height: 60px;
    padding: 8px 20px;
  }
  body .app .site-nav .nav-logo {
    width: 80px;
    height: auto;
  }
}
@media only screen and (max-width: 800px) {
  body .app .site-nav {
    height: 56px;
    padding: 6px 16px;
  }
  body .app .site-nav .nav-logo {
    width: 72px;
  }
  body .app .header-nav {
    height: 60px;
  }
  body .app .header-nav .header-nav-inner .header-logo img {
    width: 72px;
  }
  .mobile-drawer {
    width: 280px;
  }
}
/* ── Shared Components Mobile Stacking ── */
@media only screen and (max-width: 1280px) {
  body .app .container {
    width: 90%;
  }
  body .app .contactpage {
    height: auto;
    padding: 60px 0;
  }
  body .app .contactpage .container {
    flex-direction: column;
    gap: 24px;
    padding: 0 4%;
    overflow: visible;
  }
  body .app .contactpage .container .left,
  body .app .contactpage .container .main,
  body .app .contactpage .container .right {
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
  }
  body .app .contactpage .container .left .contact {
    height: auto !important;
    margin-bottom: 20px !important;
  }
  body .app .contactpage .container .left .contact .content {
    height: auto !important;
  }
  body .app .contactpage .container .main .input input {
    height: 48px;
  }
  body .app .contactpage .container .main .input .input4 {
    height: 80px;
  }
  body .app .contactpage .container .main button {
    height: 50px !important;
  }
  body .app .contactpage .container .right .upload {
    height: auto;
    padding-bottom: 24px;
  }
  body .app .contactpage .container .right .upload p {
    height: auto;
  }
  body .app .contactpage .container .right .upload .security {
    height: auto;
    padding: 8px 20px;
  }
  body .app .contactpage .container .right .qr {
    height: auto;
    min-height: 60px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  body .app .contactpage .container .right .qr .tel,
  body .app .contactpage .container .right .qr .wx {
    position: static !important;
    transform: none !important;
  }
  body .app .contactpage .container .right .qr .whatsApphover,
  body .app .contactpage .container .right .qr .wxhover {
    top: auto !important;
    bottom: 100% !important;
    margin-bottom: 6px;
  }
  body .app .faq {
    height: auto;
    padding: 60px 0;
  }
  body .app .faq .container {
    padding: 0 4%;
  }
  body .app .faq .container .swiperfaq {
    height: auto;
    width: 100%;
  }
  body .app .faq .container .swiperfaq .swiper-wrapper {
    height: auto !important;
  }
  body .app .faq .container .swiperfaq .swiper-wrapper .swiper-slide {
    height: auto !important;
  }
  body .app .faq .container .swiperfaq .swiper-wrapper .swiper-slide h2 {
    height: auto !important;
  }
  body .app .faq .container .swiperfaq .swiper-wrapper .swiper-slide p {
    height: auto;
    width: 100%;
  }
  body .app .faq .container .swiperfaq-button-next {
    position: static;
    margin: 16px auto 0;
    transform: none;
  }
  body .app .footer {
    height: auto;
    padding: 40px 0 20px;
  }
  body .app .footer .container {
    padding: 0 6%;
  }
  body .app .footer .container .content {
    flex-direction: column;
    gap: 24px;
  }
  body .app .footer .container .content .left,
  body .app .footer .container .content .main,
  body .app .footer .container .content .right {
    width: 100% !important;
    height: auto !important;
  }
  body .app .footer .container .content .left img {
    width: 140px;
    height: auto;
  }
  body .app .footer .container .content .left p {
    width: 100% !important;
    height: auto;
    top: 0;
    margin-top: 14px;
  }
  body .app .footer .container .icon {
    margin-top: 4px;
  }
  body .app .footer .container .bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 28px;
    padding-top: 20px;
  }
  body .app .footer .container .bottom span,
  body .app .footer .container .bottom .links {
    width: 100%;
  }
  body .app .after .container .swiperafter .swiper-slide {
    flex-direction: column;
    gap: 24px;
  }
  body .app .after .container .swiperafter .swiper-slide .text,
  body .app .after .container .swiperafter .swiper-slide .imgdiv {
    width: 100% !important;
    aspect-ratio: auto;
  }
  body .app .after {
    height: auto;
    min-height: auto;
  }
  body .app .after .container {
    overflow: hidden;
  }
  body .app .after .container .bg {
    overflow: hidden;
    max-width: 100%;
    font-size: 60px;
  }
  body .app .after .container h1 {
    width: auto;
    font-size: 28px;
    margin-top: 60px;
  }
  body .app .after .container .service-inner {
    width: 100%;
  }
  body .app .after .container .service-inner .section2 {
    padding-bottom: 40px;
  }
  body .app .after .container .service-inner .section2 .prev,
  body .app .after .container .service-inner .section2 .next {
    min-width: 44px;
    max-width: 44px;
  }
  body .app .after .container .service-inner .section2 .swiper1 {
    width: calc(100% - 110px);
  }
  body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide {
    flex-direction: column;
    gap: 16px;
  }
  body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-left {
    width: 100%;
  }
  body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-left .text1 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 30px;
  }
  body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-right {
    width: 100%;
    aspect-ratio: 1.6;
  }
  body .app .after .container .service-inner .section3 .swiper-wrapper .swiper-slide p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 800px) {
  body .app .container {
    width: 94%;
  }
  body .app .contactpage {
    padding: 40px 0;
  }
  body .app .contactpage .container .left h1 {
    font-size: 22px !important;
    line-height: 30px !important;
  }
  body .app .contactpage .container .left .contact {
    margin-bottom: 12px !important;
  }
  body .app .contactpage .container .left .contact .content p {
    font-size: 13px !important;
  }
  body .app .contactpage .container .main {
    padding: 16px;
  }
  body .app .contactpage .container .main button {
    height: 44px !important;
  }
  body .app .contactpage .container .main button span {
    font-size: 14px !important;
  }
  body .app .contactpage .container .right .upload {
    padding: 16px;
  }
  body .app .contactpage .container .right .upload h2 {
    font-size: 15px !important;
  }
  body .app .contactpage .container .right .upload p {
    font-size: 12px !important;
  }
  body .app .faq {
    padding: 40px 0;
  }
  body .app .faq .container .bg {
    font-size: 32px !important;
  }
  body .app .faq .container h1 {
    margin-top: 40px;
  }
  body .app .faq .container .swiperfaq {
    height: auto !important;
    margin-top: 24px;
  }
  body .app .faq .container .swiperfaq .swiper-wrapper {
    height: auto !important;
  }
  body .app .faq .container .swiperfaq .swiper-slide {
    height: auto !important;
    padding: 18px 20px;
  }
  body .app .faq .container .swiperfaq .swiper-slide h2 {
    height: auto !important;
    font-size: 16px !important;
    line-height: 24px !important;
  }
  body .app .faq .container .swiperfaq .swiper-slide p {
    height: auto;
    width: 100%;
    font-size: 13px !important;
    line-height: 20px !important;
  }
  body .app .footer {
    padding: 30px 0 16px;
  }
  body .app .footer .container {
    padding: 0 5%;
  }
  body .app .footer .container .content {
    gap: 20px;
  }
  body .app .footer .container .content .left img {
    width: 150px;
    height: auto;
  }
  body .app .footer .container .content .left p {
    font-size: 13px !important;
    line-height: 22px;
    margin-top: 12px;
  }
  body .app .footer .container .content .main h1,
  body .app .footer .container .content .right h1 {
    font-size: 16px !important;
    margin-bottom: 14px;
  }
  body .app .footer .container .content .main span,
  body .app .footer .container .content .right span {
    font-size: 13px !important;
    margin-bottom: 10px;
  }
  body .app .footer .container .icon {
    gap: 14px;
  }
  body .app .footer .container .icon img {
    width: 22px;
    height: 22px;
  }
  body .app .footer .container .icon img:last-child {
    width: 20px;
    height: 20px;
  }
  body .app .footer .container .bottom {
    margin-top: 20px;
    padding-top: 16px;
    gap: 6px;
  }
  body .app .footer .container .bottom span,
  body .app .footer .container .bottom .links a {
    font-size: 12px !important;
    line-height: 20px;
  }
  body .app .footer .container .bottom .links {
    gap: 12px;
  }
  body .app .after .container .bg {
    font-size: 32px !important;
    overflow: hidden;
  }
  body .app .after .container .swiperafter .swiper-slide .text h2 {
    font-size: 18px !important;
    line-height: 26px !important;
  }
  body .app .after .container .swiperafter .swiper-slide .text .p p {
    font-size: 13px !important;
  }
  body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-left .text1 {
    font-size: 18px !important;
    line-height: 26px !important;
  }
  body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-left .text2 {
    font-size: 13px !important;
  }
  body .app .company-text-outer {
    height: 50px !important;
  }
  body .app .company-text-outer .company-text {
    height: 50px !important;
    transform: translateY(-50px) !important;
  }
}
@media only screen and (max-width: 640px) {
  body .app .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  body .app .contactpage {
    padding: 30px 0;
  }
  body .app .contactpage .container .left h1 {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  body .app .contactpage .container .left .contact {
    margin-bottom: 8px !important;
  }
  body .app .faq {
    padding: 30px 0;
  }
  body .app .faq .container h1 {
    margin-top: 30px;
  }
  body .app .faq .container .swiperfaq {
    margin-top: 16px;
  }
  body .app .faq .container .swiperfaq .swiper-slide {
    height: auto !important;
    padding: 14px 16px;
  }
  body .app .faq .container .swiperfaq .swiper-slide h2 {
    height: auto !important;
    font-size: 14px !important;
    line-height: 22px !important;
  }
  body .app .faq .container .swiperfaq .swiper-slide p {
    height: auto;
    width: 100%;
    font-size: 12px !important;
    line-height: 18px !important;
  }
  body .app .footer {
    padding: 24px 0 12px;
  }
  body .app .footer .container {
    padding: 0 4%;
  }
  body .app .footer .container .content {
    gap: 16px;
  }
  body .app .footer .container .content .left img {
    width: 130px;
  }
  body .app .footer .container .content .left p {
    font-size: 12px !important;
    line-height: 20px;
  }
  body .app .footer .container .content .main h1,
  body .app .footer .container .content .right h1 {
    font-size: 14px !important;
    margin-bottom: 10px;
  }
  body .app .footer .container .content .main span,
  body .app .footer .container .content .right span {
    font-size: 12px !important;
    margin-bottom: 8px;
  }
  body .app .footer .container .bottom {
    margin-top: 16px;
    padding-top: 14px;
  }
  body .app .footer .container .bottom span,
  body .app .footer .container .bottom .links a {
    font-size: 11px !important;
    line-height: 18px;
  }
  body .app .footer .container .bottom .links {
    gap: 10px;
  }
  body .app .after .container .swiperafter .swiper-slide .text h2 {
    font-size: 16px !important;
  }
  body .app .after .container .bg {
    font-size: 24px !important;
    overflow: hidden;
  }
  body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-left .text1 {
    font-size: 16px !important;
  }
  body .app .after .container .service-inner .section2 .swiper1 .swiper-wrapper .swiper-slide .section2-left .text2 {
    font-size: 12px !important;
  }
  body .app .after .container .service-inner .section3 .swiper-wrapper .swiper-slide p {
    font-size: 12px;
  }
  body .app .company-text-outer {
    height: 40px !important;
  }
  body .app .company-text-outer .company-text {
    height: 40px !important;
    transform: translateY(-40px) !important;
  }
  body .app .company-text-outer .company-text .company-text-item .text {
    font-size: 13px;
  }
}
/* ---- Search Dialog (yutong style, yuanda brand blue) ---- */
.searchDialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  z-index: 2001;
  display: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.searchDialog .searchDialog-inner {
  width: 90%;
  max-width: 1200px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 5% 5%;
  position: relative;
  overflow: hidden;
}
.searchDialog .searchDialog-inner .searchDialog-close {
  position: absolute;
  cursor: pointer;
  width: 160px;
  height: 160px;
  top: -80px;
  right: -80px;
  background: #57a6df;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  transition: background 0.25s ease;
}
.searchDialog .searchDialog-inner .searchDialog-close:hover {
  background: #1f8ddb;
}
.searchDialog .searchDialog-inner .searchDialog-close svg {
  width: 34px;
  height: 34px;
  margin: 0 0 26px 26px;
}
.searchDialog .searchDialog-inner .searchDialog-title {
  font-family: "Alibaba PuHuiTi", Manrope, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  margin-bottom: 36px;
  line-height: 30px;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner {
  width: 100%;
  height: 42px;
  position: relative;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .input {
  width: 100%;
  height: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 0 40px 0 0;
  font-size: 18px;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.5s, font-size 0.3s;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .input::placeholder {
  color: #999;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .input:focus {
  outline: none;
  font-weight: 400;
  font-size: 24px;
  color: #333333;
  line-height: 42px;
  border: none;
  border-bottom: 1px solid #333;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .icon-searchIcon {
  width: 32px;
  height: 32px;
  position: absolute;
  bottom: 6px;
  right: 4px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .icon-searchIcon:hover {
  opacity: 0.65;
}
.searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .icon-searchIcon img {
  width: 22px;
  height: 22px;
  display: block;
}
@media (max-width: 800px) {
  .searchDialog .searchDialog-inner {
    padding: 40px 24px;
  }
  .searchDialog .searchDialog-inner .searchDialog-close {
    width: 110px;
    height: 110px;
    top: -55px;
    right: -55px;
  }
  .searchDialog .searchDialog-inner .searchDialog-close svg {
    width: 26px;
    height: 26px;
    margin: 0 0 18px 18px;
  }
  .searchDialog .searchDialog-inner .searchDialog-title {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .input {
    font-size: 15px;
  }
  .searchDialog .searchDialog-inner .searchDialog-main .searchDialog-main-inner .input:focus {
    font-size: 18px;
  }
}
/* ---- Sidefixed (PC + Mobile) - ported from yutong ---- */
.sidefixed {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
  z-index: 998;
  display: flex;
  width: 58px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.sidefixed .sideitemBase {
  border-radius: 23px;
}
.sidefixed .sideitemTop {
  background: #57a6df;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
.sidefixed .sideitemTop .icon-box {
  z-index: 801;
  padding: 10px 0;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 58px;
  position: relative;
  color: #fff;
  text-decoration: none;
}
.sidefixed .sideitemTop .icon-box::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.sidefixed .sideitemTop .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  background: transparent !important;
  color: #fff;
  word-break: break-word;
  font-weight: 400;
}
.sidefixed .sideitemTop svg {
  width: 19px;
  height: 19px;
}
.sidefixed .sideitemTop:hover {
  background: #3d8ec7;
}
.sidefixed .sideitem3 {
  cursor: pointer;
  display: flex;
  color: #fff;
  font-size: 12px;
  background: #57a6df;
  transition: 0.5s;
  position: relative;
  right: 0;
}
.sidefixed .sideitem3:first-child {
  border-radius: 0;
}
.sidefixed .sideitem3:hover {
  background: #3d8ec7;
  right: 200px;
  border-radius: 10px !important;
}
.sidefixed .sideitem3:hover .icon-box {
  border-radius: 10px 0 0 10px !important;
  background: #3d8ec7;
}
.sidefixed .sideitem3:hover .sideins {
  border-radius: 0 10px 10px 0;
}
.sidefixed .sideitem3 .icon-box {
  z-index: 801;
  padding: 10px 0;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 58px;
  position: relative;
}
.sidefixed .sideitem3 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  background: transparent !important;
  color: #fff;
  word-break: break-word;
  font-weight: 400;
}
.sidefixed .sideitem3 .icon-box::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.sidefixed .sideitem3 svg {
  width: 19px;
  height: 19px;
}
.sidefixed .sideitem3 .sideins {
  width: 180px;
  background: #3d8ec7;
  padding: 10px;
  color: #fff;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.6;
}
.sidefixed .sideitem3 .sideins .contactWays-value {
  position: relative;
  color: #fff;
}
.sidefixed .sideitem3 .sideins .contactWays-value::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: 0.5s;
}
.sidefixed .sideitem3 .sideins .contactWays-value:hover::after {
  width: 100%;
}
.sidefixed .sideitem3 .sideins p {
  line-height: 20px;
  padding: 8px 0;
  white-space: nowrap;
}
.sidefixed .sideitem3 .p a {
  color: #fff;
  width: 100%;
  display: block;
}
.sidefixed .sideitem3 .p a span {
  white-space: wrap;
}
.sidefixed .sideitem4:hover {
  right: 220px;
}
.sidefixed .sideitem4 .sideins {
  width: 220px;
}
.sidefixed .sideitem4 .sideins p {
  font-size: 12px;
  white-space: normal;
  word-break: break-all;
}
.sidefixed .sideitem2 {
  cursor: pointer;
  width: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  background: #57a6df;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
}
.sidefixed .sideitem2:hover {
  background: #3d8ec7;
}
.sidefixed .sideitem2 .icon-box {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.sidefixed .sideitem2 .icon-box svg {
  width: 10px;
  height: 10px;
  margin-right: 4px;
}
.sidefixed .sideitem2 .icon-box p {
  font-size: 12px;
  background: transparent !important;
}
.sidefixed .sideitemOther {
  display: flex;
  border-radius: 20px;
  background: #fff;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 20px;
  transform: scale(0.7);
  transform-origin: top right;
  width: 100px;
  overflow: hidden;
  transition: width 0.3s;
}
.sidefixed .sideitemOther:hover {
  width: 210px;
}
.sidefixed .sideitemOther .sideitemOther-title {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  padding: 14px 10px;
  width: 100px;
  text-align: center;
  background: #F8F8F8;
  border-radius: 20px 20px 0 0;
  box-sizing: border-box;
}
.sidefixed .sideitemOther .sideitem-chat {
  width: 100%;
  min-width: 100px;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
  position: relative;
}
.sidefixed .sideitemOther .sideitem-chat:last-child {
  border-bottom: none;
}
.sidefixed .sideitemOther .sideitem-chat .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 12px;
  opacity: 0;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.sidefixed .sideitemOther .sideitem-chat .link:hover {
  background: #EFEFEF;
}
.sidefixed .sideitemOther .sideitem-chat .link span {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  text-decoration: underline;
  white-space: nowrap;
}
.sidefixed .sideitemOther .sideitem-chat .link img {
  display: block;
  width: 50px;
}
.sidefixed .sideitemOther .sideitem-chat .gif {
  display: block;
  width: 76px;
  margin: 0 auto;
  transition: 0.3s;
  transform: scale(0.9);
  opacity: 1;
}
.sidefixed .sideitemOther:hover .sideitem-chat .link {
  opacity: 1;
}
.sidefixed .sideitemOther:hover .sideitem-chat .gif {
  opacity: 0;
}
/* ── Sidefixed Mobile ──────────────────────────────────────────── */
.sidefixedM {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 998;
  left: 0;
  display: none;
  justify-content: space-between;
  background: #57a6df;
}
.sidefixedM .sideitem1 {
  width: 20%;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: .5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sidefixedM .sideitem1:hover {
  overflow: visible;
}
.sidefixedM .sideitem1:hover .sideins {
  bottom: calc(105%);
  opacity: 1;
}
.sidefixedM .sideitem1 .icon-box {
  padding: 10px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.sidefixedM .sideitem1 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  word-break: break-word;
  background: transparent !important;
}
.sidefixedM .sideitem1 svg {
  width: 20px;
  height: 20px;
}
.sidefixedM .sideitem1 .sideins {
  border-radius: 6px;
  background: #3d8ec7;
  padding: 5px 5px;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.sidefixedM .sideitem1 .sideins p {
  line-height: 50px;
  white-space: nowrap;
}
.sidefixedM .sideitem1 .sideins p a {
  color: #fff;
}
.sidefixedM .sideitem2 {
  width: 20%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: .5s;
  overflow: hidden;
  position: relative;
}
.sidefixedM .sideitem2 .icon-box {
  padding: 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.sidefixedM .sideitem2 .icon-box svg {
  width: 15px;
  height: 10px;
  margin-bottom: 2px;
  margin-top: 5px;
}
.sidefixedM .sideitem2 .icon-box p {
  margin-top: 4px;
  font-size: 12px;
  background: transparent !important;
}
.sideitemOther {
  display: flex;
  border-radius: 20px;
  background: #fff;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  right: 0;
  bottom: -200px;
  transform: scale(0.7);
  transform-origin: top right;
  z-index: 99;
  width: 100px;
  overflow: hidden;
  transition: width 0.3s;
}
.sideitemOther:hover {
  width: 210px;
}
.sideitemOther:hover .sideitem-chat .link {
  opacity: 1;
}
.sideitemOther:hover .sideitem-chat .gif {
  opacity: 0;
}
.sideitemOther .sideitemOther-title {
  font-size: 20px;
  color: #333333;
  font-weight: bold;
  text-align: center;
  padding: 15px 10px;
  width: 100px;
  box-sizing: border-box;
  background: #F8F8F8;
  border-radius: 20px 20px 0 0;
}
.sideitemOther .sideitem-chat {
  width: 100%;
  min-width: 100px;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  border-bottom: 1px solid #EFEFEF;
  transition: 0.3s;
  position: relative;
}
.sideitemOther .sideitem-chat:last-child {
  border-bottom: none;
}
.sideitemOther .sideitem-chat:last-child:hover::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #EFEFEF;
  position: absolute;
  top: -1px;
  left: 0;
}
.sideitemOther .sideitem-chat .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: 10px;
  opacity: 0;
  transition: 0.5s;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: 10px;
  left: 10px;
}
.sideitemOther .sideitem-chat .link:hover {
  background: #EFEFEF;
}
.sideitemOther .sideitem-chat .link:focus {
  background: #EFEFEF;
}
.sideitemOther .sideitem-chat .link span {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  text-decoration: underline;
  white-space: nowrap;
}
.sideitemOther .sideitem-chat .link img {
  display: block;
  width: 50px;
}
.sideitemOther .sideitem-chat .gif {
  display: block;
  width: 76px;
  margin: 0 auto;
  transition: 0.5s;
  transform: scale(0.9);
  opacity: 1;
}
/* PC shows sidefixed, hides sidefixedM */
@media only screen and (min-width: 1025px) {
  .sidefixed {
    display: flex;
  }
  .sidefixedM {
    display: none !important;
  }
}
/* Mobile shows sidefixedM, hides sidefixed */
@media only screen and (max-width: 1024px) {
  .sidefixed {
    display: none !important;
  }
  .sidefixedM {
    display: flex;
  }
  .footer .bottom {
    padding-bottom: 60px;
  }
  .contactpage {
    padding-bottom: 80px;
  }
}
