﻿/* banner styles */
.banner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  background: #111111;
}

.banner .swiper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.banner .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.banner .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1440 / 705;
}

.banner .swiper-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.2);
  transform-origin: center center;
  transition: transform 1.4s ease;
  will-change: transform;
}

.banner .swiper-slide-active > img,
.banner .banner_slide_active > img {
  transform: scale(1);
  transition: transform 1.4s ease 1s;
}

.banner .swiper-pagination,
.banner .swiper-horizontal > .swiper-pagination-bullets,
.banner .swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 4.6%;
  top: 47%;
  z-index: 4;
  gap: 14px;
  width: auto;
  left: auto;
  bottom: auto;
  margin: 0;
  transform: none;
}

.banner .swiper-pagination-bullet,
.banner .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
  background: #ffffff;
  opacity: 1;
  width: auto;
  margin: 0;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 8px;
  height: 33px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 1);
}

.banner .swiper-pagination-bullet-active,
.banner .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active,
.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 14px;
  height: 78px;
  border-radius: 13px;
  background: rgba(240, 153, 22, 1);
  opacity: 1;
}

.banner .content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  height: 70%;
  position: absolute;
  left: 8.3%;
  top: 15.6%;
  right: 8.3%;
  color: #ffffff;
  z-index: 3;
}

.banner .content-top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.banner .content-top .tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: flex-start;
  padding: 8px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
}

.banner .content-top .tag .dot {
  display: flex;
  width: 12px;
  height: 12px;
  border-radius: 25px;
  background: rgba(240, 153, 22, 1);
  margin-right: 8px;
}

.banner .content-top .tag p {
  display: flex;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Source Han Sans SC";
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.banner .content-top .title {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.banner .content-top .title p {
  display: flex;
  flex-wrap: wrap;
  color: #ffffff;
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 45px;
  line-height: 75px;
}

.banner .content-top .title p span {
  display: flex;
  color: #fb903b;
}

.banner .content-top .desc {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
}

.banner .content-top .desc p {
  display: flex;
  color: rgba(229, 231, 235, 1);
  font-family: "Source Han Sans SC";
  font-weight: 400;
  font-size: 18px;
  line-height: 29.3px;
}

.banner .content-middle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.banner .content-middle .btn1 {
  display: flex;
  height: 58px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fb903b;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.banner .content-middle .btn1 p {
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  margin-right: 10px;
  letter-spacing: 0;
}

.banner .content-middle .btn1 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 12px;
  background: #ffffff;
  width: 37px;
  height: 37px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 1);
}

.banner .content-bottom-left svg{
  transform: translate3d(0, 0, 0);
  animation: verticalMove 2s linear infinite;
}
.banner .content-middle .btn2 {
  display: flex;
  height: 58px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.5s ease;
}

.banner .content-middle .btn2 p {
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  margin-right: 10px;
  letter-spacing: 0;
}

.banner .content-middle .btn2 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .content-middle .btn1:hover,
.banner .content-middle .btn2:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.banner .content-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

.banner .content-bottom-left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  max-width: 47px;
  min-width: 47px;
  height: 47px;
  border-radius: 33554400px;
  background: rgba(255, 255, 255, 1);
}

.banner .content-bottom-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 70px;
}

.banner .content-bottom-right .item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}

.banner .content-bottom-right .item .text1 {
  display: flex;
  margin-bottom: 7px;
}

.banner .content-bottom-right .item .text1 p {
  display: flex;
  color: rgba(251, 144, 59, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 43px;
  line-height: 40px;
}

.banner .content-bottom-right .item .text2 {
  display: flex;
}

.banner .content-bottom-right .item .text2 p {
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: "Source Han Sans SC";
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}

.banner .content-bottom-right .line {
  display: flex;
  width: 1px;
  height: 75px;
  background: rgba(255, 255, 255, 1);
}

/* product center styles */
.proi {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 82px 0 52px;
  background: #ffffff;
  background-image: linear-gradient(rgba(57, 49, 132, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(57, 49, 132, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
}

.proi > img {
  display: none;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.proi .section1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
}


.proi .section1 .inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}

.proi .section1 .tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.proi .section1 .tag p {
  display: flex;
  color: rgba(251, 144, 59, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.proi .section1 .tag .line {
  display: flex;
  width: 32px;
  height: 2px;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(251, 144, 59, 1) 100%);
  margin-left: 18px;
}

.proi .section1 .title {
  display: flex;
}

.proi .section1 .title p {
  display: flex;
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 30px;
  line-height: 48px;
}

.proi .section1 .desc {
  display: flex;
}

.proi .section1 .desc p {
  display: flex;
  color: rgba(0, 0, 0, 1);
  font-family: "Source Han Sans SC";
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
}

.proi .section2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 52px;
}

.proi .section2 .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
}

.proi .section2 .item {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-radius: 7px;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
  border-radius: 16px;
}

.proi .section2 .item:hover {
  transform: translateY(-4px);
}

.proi .section2 .item .img {
  height: 128px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 4px solid transparent;
  border-radius: 7px;
  background: rgba(255, 255, 255, 1);
  border: 2px solid rgba(124, 124, 124, 0.1);
  box-sizing: border-box;
  background: rgba(250, 250, 250, 1);
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.proi .section2 .item .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  opacity: 0.78;
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.proi .section2 .item:hover .img img {
  filter: grayscale(0);
  opacity: 1;
}

.proi .section2 .item-active .img {
  border: 4px solid rgba(251, 144, 59, 1);
}

.proi .section2 .item-active .img img {
  filter: grayscale(0);
  opacity: 1;
}

.proi .section2 .item .img .title {
  display: flex;
  justify-content: center;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 4px 10px;
  z-index: 2;
}

.proi .section2 .item .img .title p {
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0;
}

.proi .section2 .item-active .img .title p {
  color: rgba(251, 144, 59, 1);
}

.proi .section2 .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  opacity: 0;
}

.proi .section2 .item-active .icon {
  opacity: 1;
}

.proi .section3 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 62px;
  overflow: hidden;
}

.proi .section3 .swiper {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.proi .section3 .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  align-items: stretch;
  gap: 30px;
  padding: 0 7%;
}

.proi .section3 .swiper-slide {
  display: flex;
  height: auto !important;
  flex-shrink: 0;
  flex-wrap: wrap;
  width: 20%;
  position: relative;
  padding: 18px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(57, 49, 132, 0.13);
}


.proi .section3 .swiper-slide.proi-empty-slide {
  width: 86%;
  min-height: 280px;
}

.proi .section3 .swiper-slide.proi-empty-slide .content {
  justify-content: center;
}

.proi .section3 .swiper-slide.proi-empty-slide .content p {
  margin-top: 0;
}

.proi .section3 .swiper-slide > img {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.proi .section3 .swiper-slide .content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 1;
}

.proi .section3 .swiper-slide .content .img {
  display: flex;
  width: 92%;
  overflow: hidden;
  justify-content: center;
  border-radius: 12px;
  border: 0.6px solid rgba(244, 244, 245, 1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.54);
  position: relative;
}

.proi .section3 .swiper-slide .content .img img {
  display: block;
  width: 70%;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.proi .section3 .swiper-slide .content .img img:hover { transform: scale(1.05);
}
.proi .section3 .swiper-slide .content .img::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 5%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(11, 11, 11, 0.24) 0%, rgba(217, 217, 217, 0) 100%);
}

.proi .section3 .swiper-slide .content p {
  display: flex;
  justify-content: center;
  margin-top: 5px;
  text-align: center;
  color: rgba(30, 26, 77, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 18px;
  line-height: 24.8px;
}

.proi .section4 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 54px;
}

.proi .section4 .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.proi .section4 .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border: 2px solid #393184;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.5s ease;
  width: 56px;
  max-width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 18641400px;
  border: 2px solid rgba(57, 49, 132, 1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.proi .section4 .prev:hover {
  background: rgba(57, 49, 132, 0.08);
}

.proi .section4 a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 13px 34px;
  color: #393184;
  cursor: pointer;
  border: 2px solid rgba(57, 49, 132, 0.72);
  border-radius: 5px;
  background: #ffffff;
  transition: background 0.5s ease, border-color 0.5s ease;
  border-radius: 14px;
  border: 1.7px solid rgba(57, 49, 132, 1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 6px 1.8px -6px rgba(57, 49, 132, 0.08);
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}

.proi .section4 a::before {
  content: none;
}

.proi .section4 a::after {
  content: none;
}

.proi .section4 a:hover::after {
  opacity: 0;
  animation: none;
}

.proi .section4 a:hover {
  background: rgba(57, 49, 132, 0.06);
  border-color: #393184;
}

.proi .section4 a p {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #393184;
  margin-right: 10px;
  z-index: 1;
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}

.proi .section4 a .icon::after {
  content: none;
}

.proi .section4 a:hover .icon {
  opacity: 1;
  animation: none;
}

.proi .section4 a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5px;
  border-radius: 50%;
  background: rgba(57, 49, 132, 0.1);
  transform: none;
  opacity: 1;
  z-index: 1;
  transition: background 0.5s ease;
  width: 32px;
  max-width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 18641400px;
  background: rgba(57, 49, 132, 0.1);
}

.proi .section4 a .icon svg {
  display: block;
}

.proi .section4 .next {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border: 2px solid #393184;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.5s ease;
  width: 56px;
  max-width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 18641400px;
  border: 2px solid rgba(57, 49, 132, 1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.proi .section4 .next:hover {
  background: rgba(57, 49, 132, 0.08);
}

@keyframes proiButtonSmallOne {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes proiButtonSmallTwo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* application styles */
.appli {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #f7f8fb;
  overflow: hidden;
}

.appli .section1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #f59a14;
  padding: 34px 0 30px;
}

.appli .section1 .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.appli .section1-left {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.appli .section1-left .tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
}

.appli .section1-left .tag p {
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.appli .section1-left .tag .line {
  display: flex;
  margin-left: 18px;
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 1);
}

.appli .section1-left .title {
  display: flex;
}

.appli .section1-left .title p {
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 30px;
  line-height: 48px;
}

.appli .section1-right {
  display: flex;
  position: relative;
  padding: 12px 48px 12px 34px;
  cursor: pointer;
  overflow: visible;
}

.appli .section1-right::before {
  content: "";
  display: flex;
  position: absolute;
  left: 0;
  right: 28px;
  top: 0;
  bottom: 0;
  background: #393184;
  transform: skewX(-18deg);
  z-index: 0;
}

.appli .section1-right::after {
  content: "";
  display: flex;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  padding: 0 4px;
  background: #393184;
  transform: skewX(-18deg);
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.appli .section1-right:hover::after {
  opacity: 1;
  animation: appliButtonSmallOne 0.5s ease both;
}

.appli .section1-right p {
  display: flex;
  align-items: center;
  align-self: stretch;
  z-index: 1;
  color: rgba(255, 255, 255, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

.appli .section1-right p::after {
  content: "";
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 4px;
  background: #393184;
  transform: skewX(-18deg);
  opacity: 1;
  transition: opacity 0.5s ease 0.6s;
}

.appli .section1-right:hover p::after {
  opacity: 1;
  animation: appliButtonSmallTwo 0.5s ease 0.6s both;
}

@keyframes appliButtonSmallOne {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes appliButtonSmallTwo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.appli .section2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  padding: 56px 0 80px;
  background-color: #f7f8fb;
  overflow: hidden;
}

.appli .section2 > img {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.appli .section2 > img + img {
  top: 300px;
  opacity: 1;
}

.appli .section2 .inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


.appli .section2 .swiper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.appli .section2 .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  align-items: stretch;
}

.appli .section2 .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  gap: 52px;
}

.appli .section2 .swiper-slide .left {
  display: flex;
  height: auto !important;
  flex-shrink: 0;
  flex-wrap: wrap;
  flex-direction: column;
  width: 53%;
  border-radius: 16px;
  padding: 20px 34px 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 1);
}

.appli .section2 .swiper-slide .left .img {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #111111;
}

.appli .section2 .swiper-slide .left .img img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.appli .section2 .swiper-slide .left .img p {
  display: flex;
  position: absolute;
  left: 24px;
  top: 28px;
  padding: 8px 25px;
  border-radius: 18641400px;
  border: 0.6px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  z-index: 2;
}

.appli .section2 .swiper-slide .left .text1 {
  display: flex;
  justify-content: center;
  padding-top: 22px;
}

.appli .section2 .swiper-slide .left .text1 p {
  display: flex;
  align-items: center;
  color: rgba(57, 50, 131, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
}

.appli .section2 .swiper-slide .left .text1 p span {
  display: flex;
  color: rgba(245, 130, 32, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 30px;
  line-height: 43px;
}

.appli .section2 .swiper-slide .right {
  display: flex;
  height: auto !important;
  flex-shrink: 0;
  flex: 1;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 14px 0 0;
}

.appli .section2 .swiper-slide .right .top {
  display: flex;
  width: 100%;
}

.appli .section2 .swiper-slide .right .top p {
  display: flex;
  color: rgba(57, 50, 131, 1);
  font-family: "Source Han Sans SC";
  font-weight: 400;
  font-size: 18px;
  line-height: 37px;
}

.appli .section2 .swiper-slide .right .bottom {
  display: flex;
  justify-content: flex-end;
  margin-right: 118px;
}

.appli .section2 .swiper-slide .right .bottom p {
  display: flex;
  align-items: flex-end;
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  line-height: 41px;
}

.appli .section2 .swiper-slide .right .bottom p span {
  display: flex;
  color: rgba(240, 153, 22, 1);
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 50px;
  line-height: 69px;
  margin-right: 8px;    
  position: relative;
  bottom: -9px;
}

.appli .section2 .swiper-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 118px;
  width: 100%;
  margin-top: -60px;
  padding-right: 30px;
  position: relative;
  z-index: 2;
}

.appli .section2 .swiper-btn .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  border: 1px solid #f09916;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.5s ease;
  width: 59px;
  max-width: 59px;
  min-width: 59px;
  height: 59px;
  border-radius: 38px;
  border: 1px solid rgba(240, 153, 22, 1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 1);
}

.appli .section2 .swiper-btn .prev:hover {
  background: rgba(240, 153, 22, 0.12);
}

.appli .section2 .swiper-btn .next {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  border: 1px solid #f09916;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.5s ease;
  width: 59px;
  max-width: 59px;
  min-width: 59px;
  height: 59px;
  border-radius: 38px;
  border: 1px solid rgba(240, 153, 22, 1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 1);
}

.appli .section2 .swiper-btn .next:hover {
  background: rgba(240, 153, 22, 0.12);
}

/* about styles */
.abouti {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 92px 0 78px;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        url(../img/index/abouti-back2.png) no-repeat center bottom;
    background-size: 100% auto;
}

.abouti .section1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
}

.abouti .section1 .inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.abouti .section1 .tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.abouti .section1 .tag .dot {
  display: flex;
  width: 8px;
  max-width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 18641400px;
  background: rgba(255, 105, 0, 1);
}

.abouti .section1 .tag p {
  display: flex;
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.abouti .section1 .title {
  display: flex;
  margin-bottom: 34px;
}

.abouti .section1 .title p {
  display: flex;
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 900;
  font-size: 45px;
  line-height: 60px;
}

.abouti .section1 .desc {
  display: flex;
  width: 52%;
  justify-content: center;
}

.abouti .section1 .desc p {
  display: flex;
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 300;
  font-size: 18px;
  line-height: 29.3px;
  text-align: center;
}

.abouti > img {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  top: 358px;
  opacity: 1;
  z-index: 0;
}

.abouti > img:last-child {
  display: none;
}

.abouti .section2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 204px;
  position: relative;
  z-index: 1;
}

.abouti .section2 .inner {
  display: flex;
  flex-wrap: wrap;
  width: 83%;
}

.abouti .section2 .swiper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.abouti .section2 .swiper-wrapper {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
}

.abouti .section2 .swiper-slide {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  justify-content: center;
  background: #f1f2f5;
  aspect-ratio: 1192 / 553;
}

.abouti .section2 .swiper-slide > img {
  display: block;
  width: 100%;
  position: absolute;
  inset: 0;
  object-position: center center;
  object-fit: cover;
}

.abouti .section2 .swiper-slide .content {
  display: flex;
  position: absolute;
  right: 34px;
  bottom: 24px;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  border: 4px solid rgba(255, 183, 41, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.abouti .section2 .swiper-slide .content p {
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: "Source Han Sans SC";
  font-weight: 900;
  font-size: 18px;
  line-height: 37px;
}

.abouti .section2 .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  z-index: 4;
}

.abouti .section2 .swiper-pagination-bullet {
  display: flex;
  padding: 5px;
  border-radius: 10px;
  background: #ffffff;
  opacity: 1;
  margin: 0;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 10.4px;
  height: 10.4px;
  border-radius: 13px;
  background: rgba(247, 245, 242, 1);
}

.abouti .section2 .swiper-pagination-bullet-active {
  width: 25.9px;
  height: 10.4px;
  border-radius: 13px;
  background: rgba(251, 144, 59, 1);
}

.abouti .section3 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 48px;
}

.abouti .section3 .inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 32px;
  width: 83%;
}

.abouti .section3 .swiper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex: 1;
  width: auto;
  min-width: 0;
  overflow: hidden;
}

.abouti .section3 .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border: 3px solid rgba(57, 49, 132, 0.72);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 56px;
  max-width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 18641400px;
  border: 2px solid rgba(57, 49, 132, 1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.abouti .section3 .prev:hover {
  border-color: #fb903b;
}

.abouti .section3 .prev:hover svg path {
  fill: #fb903b;
}

.abouti .section3 .swiper-wrapper {
  width: 100%;
  overflow: visible;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
}

.abouti .section3 .swiper-slide {
  display: flex;
  width: calc((100% - 60px) / 4);
  flex: 0 0 calc((100% - 60px) / 4);
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  border: 3px solid transparent;
  background: #ffffff;
  transition: all 0.5s ease;
  aspect-ratio: 229 / 149;
}

.abouti .section3 .swiper-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center center;
}

.abouti .section3 .swiper-slide .content {
  display: none;
}

.abouti .section3 .swiper-slide .content p {
  display: none;
}

.abouti .section3 .swiper-slide-thumb-active {
  border-color: #f6a816;
}

.abouti .section3 .next {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border: 3px solid rgba(57, 49, 132, 0.72);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 56px;
  max-width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 18641400px;
  border: 2px solid rgba(57, 49, 132, 1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.abouti .section3 .next:hover {
  border-color: #fb903b;
}

.abouti .section3 .next:hover svg path {
  fill: #fb903b;
}

.abouti .section4 {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 78px auto 0;
  padding: 12px 48px 12px 34px;
  cursor: pointer;
  overflow: visible;
}

.abouti .section4::before {
  content: "";
  display: flex;
  position: absolute;
  left: 0;
  right: 28px;
  top: 0;
  bottom: 0;
  background: #393184;
  transform: skewX(-18deg);
  z-index: -1;
}

.abouti .section4::after {
  content: "";
  display: flex;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  padding: 0 4px;
  background: #393184;
  transform: skewX(-18deg);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.abouti .section4:hover::after {
  opacity: 1;
  animation: aboutiButtonSmallOne 0.5s ease both;
}

.abouti .section4 p {
  display: flex;
  align-items: center;
  align-self: stretch;
  color: rgba(255, 255, 255, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  z-index: 1;
}

.abouti .section4 p::after {
  content: "";
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 4px;
  background: #393184;
  transform: skewX(-18deg);
  opacity: 1;
  transition: opacity 0.5s ease 0.6s;
}

.abouti .section4:hover p::after {
  opacity: 1;
  animation: aboutiButtonSmallTwo 0.5s ease 0.6s both;
}

@keyframes aboutiButtonSmallOne {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes aboutiButtonSmallTwo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* factory link styles */
.factoryi {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #111111;
}

.factoryi > img {
  display: block;
  width: 100%;
  opacity: 0.58;
}

.factoryi .inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 33px;
  width: min(92%, 1180px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.factoryi .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.factoryi .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 88px;
  padding: 0;
  margin-bottom: 0;
  cursor: pointer;
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 88px;
  max-width: 88px;
  min-width: 88px;
  height: 88px;
  text-decoration: none;
  border-radius: 64px;
  background: #ffffff9c;
}

.factoryi .icon:hover,
.factoryi .icon:focus-visible {
  opacity: 0.9;
  outline: 0;
  transform: scale(1.04);
}

.factoryi .title {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.factoryi .title p {
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: "Source Han Sans SC";
  font-weight: 900;
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
}

.factoryi .desc {
  display: flex;
  justify-content: flex-start;
}

.factoryi .desc p {
  display: flex;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Source Han Sans SC";
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

/* advantage styles */
.advantagei {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  padding: 126px 0 118px;
  overflow: hidden;
  background: #f8f8fa;
}

.advantagei > img {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 0;
}

.advantagei .inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.advantagei .section1 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  margin-bottom: 84px;
}

.advantagei .section1 .tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 11px;
}

.advantagei .section1 .tag .line {
width: 32px;
height: 2px;
background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(251, 144, 59, 1) 100%);
}

.advantagei .section1 .tag .line:last-child {
width: 32px;
height: 2px;
background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(251, 144, 59, 1) 100%);
}

.advantagei .section1 .tag p {
  display: flex;
  color: rgba(251, 144, 59, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

.advantagei .section1 .title {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.advantagei .section1 .title p {
  display: flex;
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 30px;
  line-height: 48px;
}

.advantagei .section1 .desc {
  display: flex;
  width: 72%;
  justify-content: center;
}

.advantagei .section1 .desc p {
  display: flex;
  color: rgba(74, 85, 101, 1);
  font-family: "Source Han Sans SC";
  font-weight: 400;
  font-size: 18px;
  line-height: 29.3px;
  text-align: center;
}

.advantagei .section2 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  gap: 68px;
}

.advantagei .section2 .item {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.5s ease;
}

.advantagei .section2 .item:hover {
  transform: translateY(-6px);
}

.advantagei .section2 .item .top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 20px;
  border-radius: 12px;
  background: rgba(240, 153, 22, 1);
  margin-bottom: 16px;
}

.advantagei .section2 .item .top p {
  display: flex;
  color: rgba(255, 255, 255, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
}

.advantagei .section2 .item .bottom {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 48px 32px 112px;
  border-radius: 12px;
  border: 2px solid rgba(240, 153, 22, 0.25);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 1);
}

.advantagei .section2 .item .bottom .img {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 38px;
  aspect-ratio: 384 / 224;
}

.advantagei .section2 .item .bottom .img img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

.advantagei .section2 .item .bottom .img:hover img {
  transform: scale(1.05);
}

.advantagei .section2 .item .bottom .text {
  display: flex;
  justify-content: center;
  width: 100%;
}

.advantagei .section2 .item .bottom .text p {
  display: flex;
  color: rgba(74, 85, 101, 1);
  font-family: "Source Han Sans SC";
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
  justify-content: center;
}

.advantagei .section3 {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 92px auto 0;
  padding: 12px 48px 12px 34px;
  cursor: pointer;
  overflow: visible;
}

.advantagei .section3::before {
  content: "";
  display: flex;
  position: absolute;
  left: 0;
  right: 28px;
  top: 0;
  bottom: 0;
  background: #393184;
  transform: skewX(-18deg);
  z-index: -1;
}

.advantagei .section3::after {
  content: "";
  display: flex;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  padding: 0 4px;
  background: #393184;
  transform: skewX(-18deg);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.advantagei .section3:hover::after {
  opacity: 1;
  animation: advantageiButtonSmallOne 0.5s ease both;
}

.advantagei .section3 p {
  display: flex;
  align-items: center;
  align-self: stretch;
  color: rgba(255, 255, 255, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  z-index: 1;
}

.advantagei .section3 p::after {
  content: "";
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 4px;
  background: #393184;
  transform: skewX(-18deg);
  opacity: 1;
  transition: opacity 0.5s ease 0.6s;
}

.advantagei .section3:hover p::after {
  opacity: 1;
  animation: advantageiButtonSmallTwo 0.5s ease 0.6s both;
}

@keyframes advantageiButtonSmallOne {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes advantageiButtonSmallTwo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* service styles */
.servicei {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  background: #ffffff;
  padding: 60px 0 74px;
  overflow: hidden;
}

.servicei::before {
  content: "";
  display: flex;
  position: absolute;
  left: 43%;
  right: -5%;
  top: 0;
  bottom: 34px;
  background: #f59a14;
  transform: skewX(-15deg);
  z-index: 0;
}

.servicei::after {
  content: "";
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 0;
  background: #f59a14;
  z-index: 0;
}

.servicei .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
}

.servicei .inner::before {
  content: none;
}

.servicei .inner::after {
  content: "";
  display: flex;
  position: absolute;
  left: 47%;
  top: -68px;
  bottom: -40px;
  padding: 0 12px;
  background: #ffffff;
  transform: skewX(-15deg);
  z-index: 0;
}

.servicei .section1 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 34%;
  padding-right: 34px;
  position: relative;
  z-index: 1;
}

.servicei .section1 .tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}

.servicei .section1 .tag p {
  display: flex;
  color: rgba(251, 144, 59, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.servicei .section1 .tag .line {
  display: flex;
  margin-left: 18px;
  width: 32px;
  height: 2px;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(251, 144, 59, 1) 100%);
}

.servicei .section1 .title {
  display: flex;
  margin-bottom: 32px;
}

.servicei .section1 .title p {
  display: flex;
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 30px;
  line-height: 43px;
  letter-spacing: 4px;
}

.servicei .section1 .desc {
  display: flex;
  margin-bottom: 58px;
}

.servicei .section1 .desc p {
  display: flex;
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 300;
  font-size: 16px;
  line-height: 32.5px;
}

.servicei .section1 a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 18px 92px;
  border: 2px solid rgba(251, 144, 59, 0.32);
  border-radius: 12px;
  background: rgba(251, 144, 59, 0.06);
  cursor: pointer;
  transition: all 0.5s ease;
  border-radius: 12px;
  border: 2px solid rgba(251, 144, 59, 0.3);
  box-sizing: border-box;
  background: rgba(251, 144, 59, 0.1);
}

.servicei .section1 a:hover {
  border-color: #fb903b;
  background: rgba(251, 144, 59, 0.12);
}

.servicei .section1 a p {
  display: flex;
  color: rgba(251, 144, 59, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-right: 18px;
}

.servicei .section1 a svg {
  display: flex;
  flex-shrink: 0;
}

.servicei .section2 {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  padding-left: 18%;
  position: relative;
  z-index: 1;
}

.servicei .section2::before {
  content: none;
}

.servicei .section2::after {
  content: none;
}

.servicei .section2 .item {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.servicei .section2 .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 5px solid #e8e8f1;
  box-shadow: 0 8px 20px rgba(57, 49, 132, 0.12);
  transition: all 0.5s ease;
  width: 104px;
  max-width: 104px;
  min-width: 104px;
  height: 104px;
  border-radius: 100px;
  border: 4px solid rgba(57, 49, 132, 0.15);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.12);
}

.servicei .section2 .item:hover .icon {
  border-color: #ffffff;
  box-shadow: 0 12px 26px rgba(57, 49, 132, 0.18);
}

.servicei .section2 .item .text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.servicei .section2 .item .text .dot {
  display: flex;
  padding: 5px;
  border-radius: 50%;
  background: #393184;
}

.servicei .section2 .item .text p {
  display: flex;
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  text-align: center;
}

/* blog styles */
.blogi {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
  background: #f7f7f7;
}

.blogi > img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.blogi .section1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
}

.blogi .section1 .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.blogi .section1-left {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.blogi .section1-left .tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}

.blogi .section1-left .tag p {
  display: flex;
  color: rgba(251, 144, 59, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.blogi .section1-left .tag .line {
  display: flex;
  margin-left: 12px;
  width: 32px;
  height: 2px;
  background: rgba(251, 144, 59, 1);
}

.blogi .section1-left .title {
  display: flex;
}

.blogi .section1-left .title p {
  display: flex;
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
}

.blogi .section1-right {
  display: flex;
  position: relative;
  padding: 12px 48px 12px 34px;
  cursor: pointer;
  overflow: visible;
}

.blogi .section1-right::before {
  content: "";
  display: flex;
  position: absolute;
  left: 0;
  right: 28px;
  top: 0;
  bottom: 0;
  background: #393184;
  transform: skewX(-18deg);
  z-index: 0;
}

.blogi .section1-right::after {
  content: "";
  display: flex;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  padding: 0 4px;
  background: #393184;
  transform: skewX(-18deg);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.blogi .section1-right:hover::after {
  opacity: 1;
  animation: blogiButtonSmallOne 0.5s ease both;
}

.blogi .section1-right p {
  display: flex;
  align-items: center;
  align-self: stretch;
  z-index: 1;
  color: rgba(255, 255, 255, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

.blogi .section1-right p::after {
  content: "";
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 4px;
  background: #393184;
  transform: skewX(-18deg);
  opacity: 1;
  transition: opacity 0.5s ease 0.6s;
}

.blogi .section1-right:hover p::after {
  opacity: 1;
  animation: blogiButtonSmallTwo 0.5s ease 0.6s both;
}

@keyframes blogiButtonSmallOne {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes blogiButtonSmallTwo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.blogi .section2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 42px;
}

.blogi .section2 .swiper {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.blogi .section2 .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  align-items: stretch;
  gap: 24px;
  padding-left: 115px;
}

.blogi .section2 .swiper-slide {
  display: flex;
  width: 25%;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(20, 20, 20, 0.08);
  overflow: hidden;
}

.blogi .section2 .swiper-slide .img {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  padding-bottom: 22px;
}

.blogi .section2 .swiper-slide .img img {
  display: block;
  width: 100%;
}

.blogi .section2 .swiper-slide .img .tag {
  display: flex;
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 7px 13px;
  border-radius: 16px;
  background: #ffffff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.blogi .section2 .swiper-slide .img .tag p {
  display: flex;
  color: rgba(57, 49, 132, 1);
  font-family: Inter;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}

.blogi .section2 .swiper-slide .img .date {
  display: flex;
  width: 100%;
  padding: 18px 18px 8px;
}

.blogi .section2 .swiper-slide .img .date p {
  display: flex;
  color: rgba(110, 110, 110, 1);
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  text-transform: capitalize;
}

.blogi .section2 .swiper-slide .img .title {
  display: flex;
  width: 100%;
  padding: 0 18px;
}

.blogi .section2 .swiper-slide .img .title p {
  display: flex;
  color: rgba(57, 50, 131, 1);
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 24px;
  line-height: 41px;
  text-transform: capitalize;
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: 0.5s;
}
@media (max-width: 1380px) { 

  .banner .content-top .title p {
    font-size: 40px;
    line-height: 60px;
}
.banner .content-top .title {
    margin-bottom: 30px;
}
}
/* index responsive styles */
@media only screen and (max-width: 1280px) {
  .banner .swiper-slide {
    aspect-ratio: auto;
  }

  .banner .content {
    left: 8%;
    right: 8%;
    top: 14%;
  }

  .banner .content-top .title,
  .abouti .section1 .title,
  .advantagei .section1 .title,
  .servicei .section1 .title {
    margin-bottom: 18px;
  }

  .banner .content-top .title p {
    font-size: 42px;
    line-height: 64px;
  }

  .proi .section1 .title p,
  .appli .section1-left .title p,
  .advantagei .section1 .title p,
  .servicei .section1 .title p,
  .blogi .section1-left .title p {
    font-size: 26px;
    line-height: 38px;
    letter-spacing: 0;
  }

  .abouti .section1 .title p {
    font-size: 36px;
    line-height: 48px;
  }

  .factoryi .title p {
    font-size: 44px;
    line-height: 48px;
  }

  .blogi .section2 .swiper-slide .img .title p {
    font-size: 20px;
    line-height: 32px;
  }

  .banner .content-top .desc {
    width: 90%;
  }

  .banner .content-top .desc p {
    font-size: 17px;
    line-height: 28px;
  }

  .proi .section1 .desc p,
  .appli .section2 .swiper-slide .right .top p,
  .abouti .section1 .desc p,
  .factoryi .desc p,
  .advantagei .section1 .desc p,
  .advantagei .section2 .item .bottom .text p,
  .servicei .section1 .desc p,
  .servicei .section1 a p {
    font-size: 16px;
    line-height: 25px;
  }

  .blogi .section2 .swiper-slide .img .date p {
    font-size: 14px;
    line-height: 21px;
  }

  .banner .content-middle {
    gap: 18px;
  }

  .banner .content-middle .btn1,
  .banner .content-middle .btn2 {
    padding: 12px 18px;
  }

  .banner .content-middle .btn1 p,
  .banner .content-middle .btn2 p,
  .appli .section1-right p,
  .abouti .section4 p,
  .advantagei .section3 p,
  .blogi .section1-right p {
    font-size: 14px;
    line-height: 20px;
  }

  .banner .content-middle .btn1 .icon {
    width: 37px;
    height: 37px;
    padding: 5px;
  }

  .banner .content-bottom-right {
    gap: 48px;
  }

  .banner .content-bottom-right .item .text1 p {
    font-size: 34px;
    line-height: 36px;
  }

  .banner .content-bottom-right .item .text2 p {
    font-size: 18px;
    line-height: 24px;
  }

  .banner .content-bottom-left {
    width: 47px;
    max-width: 47px;
    min-width: 47px;
    height: 47px;
    padding: 11px;
  }

  .banner .content-bottom-right .line {
    height: 60px;
    padding: 0;
  }

  .banner .swiper-pagination,
  .banner .swiper-horizontal > .swiper-pagination-bullets,
  .banner .swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
  }

  .proi,
  .abouti,
  .advantagei,
  .blogi {
    padding: 60px 0;
  }

  .appli .section1 {
    padding: 30px 0;
  }

  .appli .section2 {
    padding: 48px 0 64px;
  }

  .servicei {
    padding: 52px 0 64px;
  }

  .proi .section2,
  .proi .section3,
  .proi .section4,
  .abouti .section2,
  .abouti .section3,
  .abouti .section4,
  .advantagei .section3,
  .blogi .section2 {
    margin-top: 42px;
  }

  .proi .section2 .inner,
  .proi .section3 .swiper-wrapper,
  .advantagei .section2,
  .servicei .section2,
  .blogi .section2 .swiper-wrapper {
    gap: 28px;
  }

  .proi .section2 .item {
    width: auto;
    flex: 1;
  }

  .proi .section2 .item .img {
    aspect-ratio: 230 / 128;
  }

  .proi .section2 .item .img .title {
    padding: 30px 4px 10px;
  }

  .proi .section2 .item .img .title p {
    font-size: 15px;
    line-height: 22px;
  }

  .proi .section3 .swiper-wrapper,
  .blogi .section2 .swiper-wrapper {
    padding: 0 6%;
  }

  .proi .section3 .swiper-slide,
  .blogi .section2 .swiper-slide {
    width: 20%;
    padding: 18px;
  }

  .proi .section3 .swiper-slide .content p,
  .appli .section2 .swiper-slide .left .text1 p,
  .advantagei .section2 .item .top p,
  .servicei .section2 .item .text p {
    font-size: 18px;
    line-height: 25px;
  }

  .proi .section4 .inner {
    gap: 70px;
  }

  .proi .section4 a p {
    font-size: 16px;
    line-height: 24px;
    margin-right: 10px;
  }

  .proi .section4 a .icon {
    width: 32px;
    max-width: 32px;
    min-width: 32px;
    height: 32px;
    padding: 5px;
  }

  .appli .section2 .swiper-slide {
    gap: 42px;
  }

  .appli .section2 .swiper-slide .left {
    padding: 20px 30px 24px;
  }

  .appli .section2 .swiper-slide .left .img p {
    left: 18px;
    top: 18px;
    padding: 7px 18px;
    font-size: 14px;
    line-height: 20px;
  }

  .appli .section2 .swiper-slide .left .text1 {
    padding-top: 18px;
  }

  .appli .section2 .swiper-slide .left .text1 p span {
    font-size: 20px;
    line-height: 28px;
  }

  .appli .section2 .swiper-slide .right {
    padding: 12px 0 0;
  }

  .appli .section2 .swiper-slide .right .bottom {
    margin-top: 140px;
    margin-right: 70px;
  }

  .appli .section2 .swiper-slide .right .bottom p {
    font-size: 26px;
    line-height: 36px;
  }

  .appli .section2 .swiper-slide .right .bottom p span {
    font-size: 42px;
    line-height: 58px;
    margin-right: 8px;
    bottom: -7px;
  }

  .appli .section2 .swiper-btn {
    gap: 80px;
    padding-right: 24px;
  }

  .abouti .section1 .desc,
  .advantagei .section1 .desc {
    width: 64%;
  }

  .abouti .section2 .inner,
  .abouti .section3 .inner {
    width: 83%;
  }

  .abouti .section2 .swiper-slide .content {
    right: 18px;
    bottom: 18px;
  }

  .abouti .section2 .swiper-slide .content p {
    font-size: 16px;
    line-height: 24px;
  }

  .abouti .section2 .swiper-pagination {
    bottom: 18px;
    gap: 10px;
  }

  .abouti .section2 .swiper-pagination-bullet,
  .abouti .section2 .swiper-pagination-bullet-active {
    width: auto;
    height: auto;
    padding: 5px;
  }

  .factoryi .icon {
    width: 76px;
    height: 76px;
    padding: 18px;
    margin-bottom: 32px;
  }

  .advantagei .section1 {
    margin-bottom: 56px;
  }

  .advantagei .section2 .item {
    width: auto;
    flex: 1;
  }

  .advantagei .section2 .item .bottom {
    padding: 38px 26px 72px;
  }

  .advantagei .section2 .item .bottom .img {
    margin-bottom: 30px;
  }

  .servicei .section1 {
    width: 34%;
    padding-right: 25px;
  }

  .servicei .section1 .desc {
    margin-bottom: 42px;
  }

  .servicei .section1 a {
    padding: 16px 64px;
  }

  .servicei .section2 {
    padding-left: 16%;
  }

  .servicei .section2 .item {
    gap: 30px;
  }

  .servicei .section2 .item .icon {
    width: 94px;
    max-width: 94px;
    min-width: 94px;
    height: 94px;
    padding: 28px;
  }

  .blogi .section2 .swiper-slide .img {
    padding-bottom: 20px;
  }

  .blogi .section2 .swiper-slide .img .date {
    padding: 18px 18px 8px;
  }

  .blogi .section2 .swiper-slide .img .title {
    padding: 0 18px;
  }
}

@media only screen and (max-width: 1024px) {
  .banner {
    padding-top: 62px;
  }
  .banner .content {
    gap: 20px;
  }

  .banner .content-top .desc {
    width: 90%;
  }

  .banner .content-top .title p {
    font-size: 30px;
    line-height: 44px;
  }

  .proi .section1 .title p,
  .appli .section1-left .title p,
  .advantagei .section1 .title p,
  .servicei .section1 .title p,
  .blogi .section1-left .title p {
    font-size: 24px;
    line-height: 34px;
  }

  .abouti .section1 .title p {
    font-size: 30px;
    line-height: 40px;
  }

  .factoryi .title p {
    font-size: 36px;
    line-height: 40px;
  }

  .banner .content-top .desc p,
  .proi .section1 .desc p,
  .appli .section2 .swiper-slide .right .top p,
  .abouti .section1 .desc p,
  .factoryi .desc p,
  .advantagei .section1 .desc p,
  .advantagei .section2 .item .bottom .text p,
  .servicei .section1 .desc p,
  .servicei .section1 a p {
    font-size: 15px;
    line-height: 24px;
  }

  .blogi .section2 .swiper-slide .img .date p {
    font-size: 14px;
    line-height: 21px;
  }

  .banner .content-bottom-right {
    gap: 20px;
  }

  .banner .content-bottom {
    display: none;
  }

  .banner .content-bottom-right .item .text2 p {
    font-size: 15px;
    line-height: 22px;
  }

  .proi .section2 .item {
    width: 31%;
  }

  .proi .section3 .swiper-slide,
  .blogi .section2 .swiper-slide {
    width: 32%;
  }

  .appli .section1 .inner,
  .blogi .section1 .inner {
    gap: 18px;
  }

  .appli .section2 .swiper-slide .left {
    width: 52%;
    padding: 18px;
  }

  .abouti .section1 .desc,
  .advantagei .section1 .desc {
    width: 90%;
  }

  .advantagei .section2 .item {
    width: 31%;
  }

  .servicei::before,
  .servicei .inner::after {
    display: none;
  }

  .servicei .section1 {
    width: 100%;
    padding-right: 0;
    margin-bottom: 25px;
  }

  .servicei .section2 {
    width: 100%;
    flex: auto;
    padding-left: 0;
  }

  .servicei .section2 .item {
    width: 26%;
    flex: auto;
  }
}

@media only screen and (max-width: 820px) {
  .banner .content-top .tag,
  .proi .section1 .tag,
  .appli .section1-left .tag,
  .abouti .section1 .tag,
  .advantagei .section1 .tag,
  .servicei .section1 .tag,
  .blogi .section1-left .tag {
    display: none;
  }

  .banner .content-top .title p,
  .proi .section1 .title p,
  .appli .section1-left .title p,
  .abouti .section1 .title p,
  .factoryi .title p,
  .advantagei .section1 .title p,
  .servicei .section1 .title p,
  .blogi .section1-left .title p,
  .blogi .section2 .swiper-slide .img .title p {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
  }

  .banner .content {
    left: 5%;
    right: 5%;
    gap: 18px;
  }

  .banner .content-top .desc {
    width: 100%;
  }

  .banner .content-top .desc p,
  .proi .section1 .desc p,
  .appli .section2 .swiper-slide .right .top p,
  .abouti .section1 .desc p,
  .factoryi .desc p,
  .advantagei .section1 .desc p,
  .advantagei .section2 .item .bottom .text p,
  .servicei .section1 .desc p,
  .servicei .section1 a p,
  .blogi .section2 .swiper-slide .img .date p {
    font-size: 14px;
    line-height: 22px;
  }

  .banner .content-bottom {
    display: none;
  }

  .proi .section2 .item {
    width: 30%;
    flex: none;
  }

  .advantagei .section2 .item,
  .servicei .section2 .item {
    width: 48%;
  }

  .proi .section3 .swiper-slide,
  .blogi .section2 .swiper-slide {
    width: 48%;
  }

  .appli .section2 .swiper-slide .left,
  .appli .section2 .swiper-slide .right {
    width: 100%;
    flex: auto;
  }

  .appli .section2 .swiper-slide .right .bottom {
    justify-content: flex-start;
  }

  .abouti .section2 .inner,
  .abouti .section3 .inner {
    width: 92%;
  }

  .abouti .section3 .swiper {
    overflow: hidden;
  }

  .abouti .section3 .swiper-slide {
    width: calc((100% - 36px) / 3);
    flex: 0 0 calc((100% - 36px) / 3);
  }
  .proi .section2 .inner{
    gap: 15px;
  }
  .proi .section2 .item {
    height: 105px;
  }
  .proi .section2 .item-active .icon{
    display: none;
  }
  .proi .section4 .inner {
    gap: 10px;
  }
  .proi .section4 .prev,
  .proi .section4 .next{
    width: 40px;
    max-width: 40px;
    min-width:  40px;
    height: 40px;
    padding: 0px;
  }
  .proi .section4 .prev svg,
  .proi .section4 .next svg {
    width: 20px;
    height:20px;
  }
  .proi .section4 a{
    padding: 12px 20px;
  }
  .proi .section4 a .icon{
    display: none;;
  }
      .proi .section4 a p {
        font-size: 14px;
        margin-right: 0px;
    }
    .abouti .section3{
      display: none;
    }    
    .advantagei .section1 {
        margin-bottom: 20px;
    }
  .advantagei .section2 {
    flex-direction: column;
}
.advantagei .section2 .item {
        width: 100%;
    }
        .advantagei .section2 .item .bottom {
        padding: 20px;
    }
        .advantagei .section2 .item .bottom .img {
        margin-bottom: 15px;
        height: 150px;
    }
}

@media only screen and (max-width: 768px) {
  .banner .swiper-slide {
    aspect-ratio: auto;
  }

  .banner .content {
    gap: 16px;
  }

  .banner .content-top .desc {
    width: 100%;
  }

  .banner .content-middle {
    display: none;
  }

  .banner .content-bottom-right .line {
    display: none;
  }

  .banner .swiper-pagination,
  .banner .swiper-horizontal > .swiper-pagination-bullets,
  .banner .swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
  }

  .proi .section3 .swiper-wrapper,
  .advantagei .section2,
  .servicei .section2,
  .blogi .section2 .swiper-wrapper {
    gap: 25px;
  }

  .appli .section1 .inner,
  .blogi .section1 .inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .abouti .section2 .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
  }



  .factoryi .icon {
    width: 40px;
    height: 40px;        
    padding: 12px;
    margin-bottom: 15px;
  }
  .factoryi .title {
    margin-bottom: 5px;
}
}

@media only screen and (max-width: 640px) {
  .banner .swiper-slide {
    aspect-ratio: auto;
  }

  .banner .content {
    left: 4%;
    right: 4%;
    gap: 14px;
  }

  .banner .content-top .desc,
  .abouti .section1 .desc,
  .advantagei .section1 .desc {
    width: 100%;
  }

  .banner .content-top .desc p,
  .proi .section1 .desc p,
  .appli .section2 .swiper-slide .right .top p,
  .abouti .section1 .desc p,
  .factoryi .desc p,
  .advantagei .section1 .desc p,
  .advantagei .section2 .item .bottom .text p,
  .servicei .section1 .desc p,
  .servicei .section1 a p,
  .blogi .section2 .swiper-slide .img .date p {
    font-size: 14px;
    line-height: 21px;
  }

  .banner .content-bottom-left {
    display: none;
  }

  .banner .content-bottom-right {
    width: 100%;
    gap: 14px;
  }

  .banner .content-bottom-right .item {
    width: 30%;
  }

  .proi,
  .abouti,
  .advantagei,
  .blogi,
  .servicei,
  .appli .section1,
  .appli .section2 {
    padding: 22px 0;
  }

  .proi .section2 .item {
    width: 48%;
    flex: none;
  }

  .proi .section3 .swiper-slide,
  .advantagei .section2 .item,
  .servicei .section2 .item,
  .blogi .section2 .swiper-slide {
    width: 100%;
  }

  .proi .section3 .swiper-wrapper,
  .blogi .section2 .swiper-wrapper {
    padding: 0 4%;
  }

  .advantagei .section2 .item .bottom {
    padding: 20px;
  }

  .servicei .section2 .item .icon {
    padding: 22px;
  }
}

@media only screen and (max-width: 414px) {
  .banner .swiper-slide {
    aspect-ratio: auto;
  }

  .banner .content {
    gap: 12px;        
    top: 20%;
  }

  .banner .content-top .title p,
  .proi .section1 .title p,
  .appli .section1-left .title p,
  .abouti .section1 .title p,
  .factoryi .title p,
  .advantagei .section1 .title p,
  .servicei .section1 .title p,
  .blogi .section1-left .title p,
  .blogi .section2 .swiper-slide .img .title p {
    font-size: 20px;
    line-height: 26px;
  }

  .banner .content-top .desc p,
  .proi .section1 .desc p,
  .appli .section2 .swiper-slide .right .top p,
  .abouti .section1 .desc p,
  .factoryi .desc p,
  .advantagei .section1 .desc p,
  .advantagei .section2 .item .bottom .text p,
  .servicei .section1 .desc p,
  .servicei .section1 a p,
  .blogi .section2 .swiper-slide .img .date p {
    font-size: 13px;
    line-height: 20px;
  }

  .banner .content-middle .btn1,
  .banner .content-middle .btn2 {
    display: none;
  }

  .banner .content-bottom-right .item .text1 p,
  .appli .section2 .swiper-slide .left .text1 p,
  .appli .section2 .swiper-slide .left .text1 p span,
  .appli .section2 .swiper-slide .right .bottom p,
  .appli .section2 .swiper-slide .right .bottom p span,
  .advantagei .section2 .item .top p,
  .servicei .section2 .item .text p {
    font-size: 18px;
    line-height: 24px;
  }

  .banner .content-bottom-right .item .text2 p,
  .proi .section3 .swiper-slide .content p {
    font-size: 13px;
    line-height: 19px;
  }

  .proi,
  .abouti,
  .advantagei,
  .blogi,
  .servicei,
  .appli .section1,
  .appli .section2 {
    padding: 20px 0;
  }

  .proi .section2,
  .proi .section3,
  .proi .section4,
  .abouti .section2,
  .abouti .section3,
  .abouti .section4,
  .advantagei .section3,
  .blogi .section2 {
    margin-top: 20px;
  }

  .proi .section2 .inner,
  .proi .section3 .swiper-wrapper,
  .advantagei .section2,
  .servicei .section2,
  .blogi .section2 .swiper-wrapper {
    gap: 20px;
  }

  .proi .section3 .swiper-slide,
  .appli .section2 .swiper-slide .left,
  .advantagei .section2 .item .bottom,
  .blogi .section2 .swiper-slide {
    padding: 14px;
  }

  .appli .section2 .swiper-slide {
    gap: 14px;
  }

  .appli .section2 .swiper-slide .left .img p {
    left: 12px;
    top: 12px;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 18px;
  }

  .servicei .section1 a {
    padding: 12px 18px;
  }

  .blogi .section2 .swiper-slide .img .date {
    padding: 14px 14px 8px;
  }

  .blogi .section2 .swiper-slide .img .title {
    padding: 0 14px;
  }
  .proi .section2 .inner{
    gap: 10px;
  }
    .abouti .section2 .swiper-slide .content {
    width: 30px;
    height: 30px;
    display: none;
  }

    .abouti .section2 .swiper-slide .content p {
        font-size: 12px;
    }
    .factoryi {
    height: 200px;
}
.servicei .section2 .item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
    .servicei .section2 .item .icon {
        width: 70px;
        max-width: 70px;
        min-width: 70px;
        height: 70px;
        padding: 15px;
    }
}

/* index application and blog responsive fixes */
@media only screen and (max-width: 1280px) {
  .appli .section2 {
    padding: 40px 0 48px;
  }

  .appli .section2 .swiper-slide {
    align-items: flex-start;
    gap: 34px;
  }

  .appli .section2 .swiper-slide .left {
    width: 52%;
    padding: 18px 25px 22px;
  }

  .appli .section2 .swiper-slide .left .img img {
    aspect-ratio: 530 / 298;
  }

  .appli .section2 .swiper-slide .right {
    justify-content: flex-start;
    padding: 8px 0 0;
  }

  .appli .section2 .swiper-slide .right .bottom {
    margin-top: 25px;
    margin-right: 0;
    justify-content: flex-start;
  }

  .appli .section2 .swiper-slide .right .bottom p {
    font-size: 22px;
    line-height: 30px;
  }

  .appli .section2 .swiper-slide .right .bottom p span {
    font-size: 32px;
    line-height: 40px;
    bottom: 0;
  }

  .appli .section2 .swiper-btn {
    margin-top: 20px;
    gap: 25px;
    padding-right: 0;
  }

  .blogi .section2 .swiper {
    overflow: visible;
  }

  .blogi .section2 .swiper-wrapper {
    gap: 24px;
    padding: 0 5%;
  }

  .blogi .section2 .swiper-slide {
    width: 23%;
    padding: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .appli .section2 {
    padding: 30px 0;
  }

  .appli .section2 .swiper-slide {
    gap: 24px;
  }

  .appli .section2 .swiper-slide .left {
    width: 50%;
    padding: 18px;
  }

  .appli .section2 .swiper-slide .right .bottom {
    margin-top: 18px;
  }

  .blogi .section2 .swiper-wrapper {
    gap: 20px;
    padding: 0 5%;
  }

  .blogi .section2 .swiper-slide {
    width: 31%;
  }
}

@media only screen and (max-width: 820px) {
  .appli .section2 {
    padding: 25px 0;
  }

  .appli .section2 .swiper-slide {
    gap: 18px;
  }

  .appli .section2 .swiper-slide .left,
  .appli .section2 .swiper-slide .right {
    width: 100%;
    flex: none;
  }

  .appli .section2 .swiper-slide .left {
    padding: 16px;
  }

  .appli .section2 .swiper-slide .right {
    padding: 0;
  }

  .appli .section2 .swiper-slide .right .bottom {
    margin-top: 14px;
  }

  .blogi .section2 .swiper-wrapper {
    gap: 18px;
    padding: 0 4%;
  }

  .blogi .section2 .swiper-slide {
    width: 48%;
  }
  .appli .section2 .swiper-btn .prev,
  .appli .section2 .swiper-btn .next {
    width: 40px;
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
  }
}
@media only screen and (max-width: 640px) {
  .appli .section2 {
    padding: 22px 0;
  }

  .appli .section2 .swiper-slide .left {
    padding: 14px;
  }

  .appli .section2 .swiper-slide .left .text1 {
    padding-top: 14px;
  }

  .appli .section2 .swiper-slide .right .bottom p,
  .appli .section2 .swiper-slide .right .bottom p span {
    font-size: 16px;
    line-height: 24px;
  }

  .blogi .section2 .swiper-wrapper {
    gap: 16px;
    padding: 0 4%;
  }

  .blogi .section2 .swiper-slide {
    width: 48%;
  }
}

@media only screen and (max-width: 414px) {
  .appli .section2 {
    padding: 20px 0;
  }

  .appli .section2 .swiper-slide .left {
    padding: 12px;
  }

  .appli .section2 .swiper-slide .left .text1 p,
  .appli .section2 .swiper-slide .left .text1 p span,
  .appli .section2 .swiper-slide .right .bottom p,
  .appli .section2 .swiper-slide .right .bottom p span {
    font-size: 14px;
    line-height: 21px;
  }

  .appli .section2 .swiper-btn {
    margin-top: 16px;
    gap: 16px;
  }

  .blogi .section2 .swiper-wrapper {
    gap: 14px;
    padding: 0 4%;
  }

  .blogi .section2 .swiper-slide {
    width: 100%;
    padding: 0;
  }
}




/* index blog swiper responsive fixes */
@media only screen and (max-width: 1280px) {
  .blogi .section2 .swiper {
    overflow: hidden;
  }

  .blogi .section2 .swiper-wrapper {
    padding: 0;
    gap: 0;
  }

  .blogi .section2 .swiper-slide {
    padding: 0;
  }
}

@media only screen and (max-width: 820px) {
  .blogi .section2 .swiper-slide .img .title p {
    font-size: 18px;
    line-height: 28px;
  }
      .servicei .section1 .desc {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 640px) {
  .blogi .section2 .swiper-slide .img .date p {
    font-size: 14px;
    line-height: 21px;
  }

}

@media only screen and (max-width: 414px) {
  .blogi .section2 .swiper-slide .img .date {
    padding: 14px 14px 8px;
  }

  .blogi .section2 .swiper-slide .img .title {
    padding: 0 14px;
  }
}



/* index about responsive restore */
@media only screen and (max-width: 1280px) {
  .abouti {
    display: flex;
    flex-wrap: wrap;
  }

  .abouti .section2 .inner,
  .abouti .section3 .inner {
    width: 83%;
  }

  .abouti .section3 {
    display: flex;
  }

  .abouti .section3 .swiper {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .abouti .section3 .swiper-wrapper {
    flex-wrap: nowrap;
    gap: 0;
  }

  .abouti .section3 .swiper-slide {
    width: calc((100% - 60px) / 4);
    flex: 0 0 calc((100% - 60px) / 4);
  }
}

@media only screen and (max-width: 1024px) {
  .abouti .section1 .desc {
    width: 90%;
  }

  .abouti .section2 .inner,
  .abouti .section3 .inner {
    width: 88%;
  }
}

@media only screen and (max-width: 820px) {
  .abouti .section2 .inner,
  .abouti .section3 .inner {
    width: 92%;
  }

  .abouti .section3 {
    display: flex;
  }

  .abouti .section3 .swiper {
    overflow: hidden;
  }

  .abouti .section3 .swiper-slide {
    width: calc((100% - 36px) / 3);
    flex: 0 0 calc((100% - 36px) / 3);
  }
  .abouti .section3{
    display: none;
  }
      .abouti .section2 .swiper-slide .content{
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .abouti .section3 .swiper-wrapper {
    gap: 0;
  }
}

@media only screen and (max-width: 640px) {
  .abouti .section1 .desc {
    width: 100%;
  }

  .abouti .section3 .swiper-slide {
    width: calc((100% - 36px) / 3);
    flex: 0 0 calc((100% - 36px) / 3);
  }
}

@media only screen and (max-width: 414px) {
  .abouti .section2 .swiper-slide .content {
    display: flex;
    width: 30px;
    height: 30px;
    right: 12px;
    bottom: 12px;
    padding: 0;
  }

  .abouti .section2 .swiper-slide .content p {
    display: flex;
    font-size: 12px;
    line-height: 20px;
  }
  
.servicei .section2 .item .text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
    .servicei .section2 .item {
        gap: 15px;
    }
}

/* index application height responsive fix */
@media only screen and (max-width: 1280px) {
  .appli .section2 .swiper-wrapper {
    height: auto !important;
    align-items: flex-start;
  }

  .appli .section2 .swiper-slide {
    height: auto !important;
    align-items: flex-start;
  }

  .appli .section2 .swiper-slide .right {
    justify-content: flex-start;
  }

  .appli .section2 .swiper-slide .right .top p {
    line-height: 24px;
  }

  .appli .section2 .swiper-slide .right .bottom {
    margin-top: 16px;
  }

  .appli .section2 .swiper-btn {
    margin-top: 16px;
  }
}

@media only screen and (max-width: 1024px) {
  .appli .section2 .swiper-slide .right .bottom {
    margin-top: 14px;
  }
}

/* index 1280 PC-like responsive restore */
@media only screen and (max-width: 1280px) and (min-width: 1025px) {
  .banner .content-top .title p {
    font-size: 43px;
    line-height: 68px;
  }

  .banner .content-top .desc {
    width: 90%;
  }

  .banner .content-bottom {
    display: flex;
  }

  .banner .swiper-pagination,
  .banner .swiper-horizontal > .swiper-pagination-bullets,
  .banner .swiper-pagination-bullets.swiper-pagination-horizontal {
    display: flex;
  }

  .proi .section1 .title p,
  .appli .section1-left .title p,
  .advantagei .section1 .title p,
  .servicei .section1 .title p,
  .blogi .section1-left .title p {
    font-size: 28px;
    line-height: 44px;
  }

  .abouti .section1 .title p {
    font-size: 42px;
    line-height: 56px;
  }

  .factoryi .title p {
    font-size: 54px;
    line-height: 56px;
  }

  .proi {
    padding: 76px 0 50px;
  }

  .abouti {
    padding: 84px 0 70px;
  }

  .advantagei {
    padding: 104px 0 96px;
  }

  .blogi {
    padding: 74px 0 66px;
  }

  .servicei {
    padding: 58px 0 72px;
  }

  .proi .section2 {
    margin-top: 48px;
  }

  .proi .section3 {
    margin-top: 56px;
  }

  .proi .section4 {
    margin-top: 50px;
  }

  .abouti .section2 {
    margin-top: 180px;
  }

  .abouti .section3 {
    margin-top: 72px;
  }

  .abouti .section4 {
    margin-top: 68px;
  }

  .advantagei .section1 {
    margin-bottom: 72px;
  }

  .servicei .section1 {
    width: 34%;
    padding-right: 30px;
    margin-bottom: 0;
  }

  .servicei .section2 {
    padding-left: 16%;
    gap: 70px;
  }

  .servicei .section2 .item {
    width: auto;
    flex: 1;
  }
}
@media (max-width: 1380px) { 
  .banner{
    padding-top: 75px;
  }
}
@media (max-width: 1025px) { 
  .banner{
    padding-top: 63px;
  }
}
.proi .section4 a .icon svg{
  transform: translate3d(0, 0, 0);
  animation: horizontalMove 2s linear infinite;
}

@media only screen and (max-width: 1024px) {
  .proi .section3 {
    overflow: hidden;
  }

  .proi .section3 .swiper {
    width: 92%;
    margin: 0 auto;
  }

  .proi .section3 .swiper-wrapper {
    gap: 0 !important;
    padding: 0 !important;
    align-items: stretch;
  }

  .proi .section3 .swiper-slide {
    width: 50% !important;
    height: auto !important;
    box-sizing: border-box;
  }

  .proi .section3 .swiper-slide .content .img {
    width: 100%;
    aspect-ratio: 1 / 1;
    align-items: center;
  }

  .proi .section3 .swiper-slide .content .img img {
    width: 82%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}

@media only screen and (max-width: 640px) {
  .proi .section3 .swiper {
    width: 86%;
  }

  .proi .section3 .swiper-slide {
    width: 100% !important;
    padding: 16px !important;
    border-radius: 12px;
  }

  .proi .section3 .swiper-slide .content p {
    width: 100%;
    min-height: 38px;
    margin-top: 10px;
    align-items: center;
  }
}

@media only screen and (max-width: 1024px) {
  .factoryi .inner {
    gap: 33px;
  }

  .factoryi .icon {
    width: 76px;
    max-width: 76px;
    min-width: 76px;
    height: 76px;
    flex-basis: 76px;
    padding: 0;
    margin-bottom: 0;
  }

  .factoryi .icon svg {
    width: 42px;
    height: auto;
  }
}

@media only screen and (max-width: 640px) {
  .factoryi {
    height: auto;
  }

  .factoryi > img {
    min-height: 210px;
    object-fit: cover;
  }

  .factoryi .inner {
    width: 88%;
    justify-content: space-between;
    gap: 24px;
  }

  .factoryi .title {
    margin-bottom: 8px;
  }

  .factoryi .icon {
    width: 54px;
    max-width: 54px;
    min-width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .factoryi .icon svg {
    width: 30px;
  }
}
