#app{
  background: #FBFFFF;
}

html,
body {
  height: 100%;
}

body {
  overflow: hidden;
}

.home-screen-swiper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.home-screen-swiper > .swiper-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition-property: transform;
  box-sizing: content-box;
}

.home-screen-swiper > .swiper-wrapper > .swiper-slide {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 100vh !important;
  min-height: 100vh;
  max-height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
}

.home-screen-swiper > .swiper-wrapper > .swiper-slide:nth-child(2) {
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-padding-top: 80px;
}

/* banner样式 */
.banner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #d8edf9;
}

.banner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(
    180deg,
    rgba(178, 215, 243, 0) 0%,
    rgba(178, 215, 243, 0.35) 45%,
    rgba(178, 215, 243, 1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

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

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

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

.banner .swiper-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  transition: transform 0.5s ease;
}

.banner .swiper-slide-active > img,
.banner .banner_slide_active > img {
  transform: none;
  transition: transform 0.5s ease;
}

.banner .banner-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.banner .banner-content .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.banner .banner-content .title p {
  font-family: "Chonburi";
  font-weight: 400;
  font-size: 47px;
  line-height: 68px;
  color: #223E56;
  text-transform: uppercase;
}

.banner .banner-content .desc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
}

.banner .banner-content .desc p {
  width: 60%;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  color: #3d3d3d;
  text-transform: uppercase;
}

.banner .banner-content .btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 42px;
  width: 100%;
  margin-top: 34px;
}

.banner .banner-content .btn a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 55px;
  padding: 0 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.banner .banner-content .btn a p {
  white-space: nowrap;
}

.banner .banner-content .btn a .btn-icon {
  flex: 0 0 auto;
}

.banner .banner-content .btn a .btn-icon svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.banner .banner-content .btn a:first-child {
  background: #223E56;
}

.banner .banner-content .btn a:last-child {
  background: #1D82B8;
}

.banner .banner-content .btn a:first-child p {
  color: #ffffff;
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  text-transform: uppercase;
}

.banner .banner-content .btn a:last-child p {
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
}

.banner .banner-content .btn a:first-child .btn-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  max-width: 38px;
  max-height: 38px;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.banner .banner-content .btn a:last-child .btn-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  max-width: 26px;
  max-height: 26px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.5s ease;
}

.banner .banner-content .btn a:first-child:hover {
  background: #1d82b8;
  transform: translateY(-4px);
}

.banner .banner-content .btn a:first-child:hover .btn-icon {
  transform: translateX(6px);
}

.banner .banner-content .btn a:last-child:hover {
  background: #223e56;
  transform: translateY(-4px);
}

.banner .banner-content .btn a:last-child:hover .btn-icon {
  transform: translateX(6px);
}

.product {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 120px 56px 0;
  background: #B2D7F3;
}

.product .product-section-container {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow: hidden;
}

.product .product-section {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow: hidden;
}

.product .product-display {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: 100%;
  align-items: stretch;
  height: 620px;
  overflow: hidden;
}

.product .product-item {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}

.product .product-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(9, 36, 52, 0.24) 0%, rgba(8, 48, 74, 0.62) 100%);
  z-index: 1;
}

.product .main-product {
  flex: 58 1 0;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: flex-end;
  padding: 70px 72px 50px;
}

.product .main-product::before {
  background: linear-gradient(180deg, rgba(8, 34, 54, 0.16) 0%, rgba(8, 45, 70, 0.68) 100%);
}

.product .product-item:not(.main-product) {
  flex: 21 1 0;
  width: auto;
  padding: 70px 34px 40px;
  align-items: stretch;
}

.product .product-title-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}

.product .product-title-container .product-title {
  color: #ffffff;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 35px;
  line-height: 75px;
}

.product .main-product .product-title-container {
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
  gap: 0;
  text-align: left;
}

.product .main-product.inactive .product-title-container {
  top: 50% !important;
}

.product .main-product.inactive .product-title-container svg,
.product .main-product.inactive .product-description {
  display: none;
}

.product .product-description {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 22px;
  position: relative;
  z-index: 2;
}

.product .product-description .main-subtitle {
  color: #ffffff;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  width: 100%;
}

.product .product-item-overlay {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 2;
}

.product .product-item-overlay .product-number {
  color: #ffffff;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}

.product .product-item-overlay > p {
  width: 100%;
  color: #ffffff;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}

.product .product-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  opacity: 0;
  margin-top: auto;
  transition: opacity 0.5s ease;
}

.product .product-content p {
  width: 100%;
  color: #ffffff;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 35px;
  line-height: 43px;
}

.product .more-btn {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  margin-left: auto;
  margin-top: auto;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  text-align: left;
  transition: all 0.5s ease;
  position: relative;
  text-decoration: none;
}

.product .more-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffffff 0%, #8ec5ff 50%, #1d82b8 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease;
}

.product .more-btn:hover::after {
  transform: scaleX(1);
}

/* 企业介绍样式 */
.about1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #B2D7F3 url(../img/index/about1.png) no-repeat center center;
  background-size: 100% auto;
  min-height: 55.21vw;
  padding: 100px 0 200px;
  position: relative;
  
}
.about1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 320px;
  background: linear-gradient(
    180deg,
    rgba(251, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 32%,
    rgba(251, 255, 255, 0.82) 72%,
    rgba(251, 255, 255, 1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.about1 .inner {
  display: flex;
  flex-wrap: wrap;
  width: 84%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about1 .section1 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}

.about1 .section1 .title {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.about1 .section1 .title p {
color: #223e56;
font-family: Chonburi;
font-weight: 400;
font-size: 35px;
line-height: 66px;
}

.about1 .section1 .title span {
color: #1d82b8;
}

.about1 .section1 .desc {
  display: flex;
  flex-wrap: wrap;
  width: 76%;
  margin-top: 44px;
}

.about1 .section1 .desc p {
  font-weight: 400;
  font-size: 16px;
  line-height: 39px;
  color: #000f1a;
}

.about1 .section1 .desc .highlight1 {
  color: #00689f;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 24px;
  line-height: 39px;
}

.about1 .section1 .desc .highlight2 {
  font-weight: 700;
  color: #000f1a;
}

.about1 .section1 .btn {
  width: fit-content;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.5s ease;
  height: 54px;
  border-radius: 27px;
  background: #1d82b8;
  overflow: hidden;
}

.about1 .section1 .btn .btn-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  max-width: 38px;
  max-height: 38px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.5s ease;
}

.about1 .section1 .btn p {
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  transition: transform 0.5s ease;
}

.about1 .section2 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  bottom: -200px;
  padding: 40px;
  border-radius:  45px 0px 45px 0px;
  background: linear-gradient(180deg, #ffffffbf 0%, #ffffffe6 60.76%);
  box-shadow: 0px 6px 30px #47676b54;
  position: absolute;
  z-index: 2;
}

.about1 .section2 .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  gap: 15px;
}

.about1 .section2 .item .icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
}

.about1 .section2 .item .icon svg {
  width: 60px;
  height: 60px;
}

.about1 .section2 .item .content {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  gap: 10px;
}

.about1 .section2 .item .text1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.about1 .section2 .item .text1 p {
  color: #1d82b8;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 30px;
  line-height: 26px;
}

.about1 .section2 .item .text1 span {
  color: #1d82b8;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 56px;
  line-height: 56px;
}

.about1 .section2 .item .text2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.about1 .section2 .item .text2 p {
  color: #2c2c2c;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

/* 全球市场样式 */
.about2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #fbffff;
  padding: 100px 0 0 0;
  position: relative;
}
.about2 .back1 {
  position: absolute;
  top: -15%;
  left: -11%;
  width: 420px;
  height: 777px;
  opacity: 0.42;
  background: radial-gradient(50% 50% at 50% 50%, #32a2de3d 0%, #32a2de00 100%);
  z-index: 2;
}

.about2 .back2 {
  position: absolute;
  bottom: -20%;
  right: -11%;
  width: 359px;
  height: 777px;
  opacity: 0.42;
  background: radial-gradient(50% 50% at 50% 50%, #32a2de3d 0%, #32a2de00 100%);
}
.about2 .back3 {
  position: absolute;
  bottom: -57%;
  left: 0%;
  width: 339px;
  height: 853px;
}
.about2 .back4 {
  position: absolute;
  top: -15%;
  right: 0%;
  width: 548px;
  height: 968px;
}
.about2 .inner {
  display: flex;
  flex-wrap: wrap;
  width: 84%;
  margin: 0 auto;
}

.about2 .section1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.about2 .section1 .title {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.about2 .section1 .title p {
  width: 100%;
  font-family: Chonburi;
  font-weight: 400;
  font-size: 50px;
  line-height: 66px;
  color: #223e56;
}

.about2 .section1 .title p:first-child {
  color: #1d82b8;
}

.about2 .section1 .text1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 64px;
}

.about2 .section1 .text1 p {
  color: #1d82b8;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}

.about2 .section1 .text2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

.about2 .section1 .text2 p {
  width: 80%;
  font-family: Montserrat;
  color: #223e56;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}

.about2 .section2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: url(../img/index/about2.png) no-repeat center;
  background-size: contain;
  margin: 90px 0;
  padding: 300px 0;
  position: relative;
}

.about2 .section2 .item {
  display: flex;
  flex-wrap: wrap;
  width: 40%;
  height: fit-content;
  padding: 20px 30px;
  border-radius: 24px;
  border: 2px solid #32a2de73;
  box-sizing: border-box;
  background: #ffffffbf;
  box-shadow: 0px 0px 13.7px #00000017;
  position: absolute;
  transition: all 0.5s ease;
}

.about2 .section2 .item:hover {
  border-color: #1d82b8;
  background: #ffffff;
  box-shadow: 0px 12px 30px #1d82b830;
  transform: translateY(-8px);
}

.about2 .section2 .item:first-child {
  right: 5%;
  top: 5%;  
}

.about2 .section2 .item:last-child {
  left: 5%;
  bottom: 5%;
}

.about2 .section2 .item .item-top {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.about2 .section2 .item .item-top p {
  color: #0d4564;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
}

.about2 .section2 .item .item-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}

.about2 .section2 .item .item-bottom p {
  color: #1d82b8;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  text-decoration: none;
}

.about2 .section2 .item .item-bottom p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1d82b8 0%, #32a2de 55%, #8ec5ff 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease;
}

.about2 .section2 .item .item-bottom svg {
  margin-left: 8px;
  transition: transform 0.5s ease;
}

.about2 .section2 .item .item-bottom:hover svg {
  transform: translateX(8px);
}

.about2 .section2 .item .item-bottom:hover p {
  text-decoration: none;
}

.about2 .section2 .item .item-bottom:hover p::after {
  transform: scaleX(1);
}

/* 博客样式 */
.blog {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #fbffff;
  padding: 0 0 85px;
  overflow: hidden;
}

.blog .section1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.blog .section1 .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  width: 84%;
  margin: 0 auto;
}

.blog .section1-left {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.blog .section1-left p:first-child {
  width: 100%;
  color: #0f172b;
  font-family: Chonburi;
  font-weight: 400;
  font-size: 45px;
  line-height: 66px;
}

.blog .section1-left p:last-child {
  width: 100%;
  font-family: Chonburi;
  font-weight: 400;
  font-size: 45px;
  line-height: 66px;
  color: #1d82b8;
}

.blog .section1-right {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 0 20px;
  border-radius: 27px;
  background: #1d82b8;
  cursor: pointer;
  transition: all 0.5s ease;
  overflow: hidden;
}

.blog .section1-right .btn-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  max-width: 38px;
  max-height: 38px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.5s ease;
}

.blog .section1-right > p {
  color: #ffffff;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  transition: transform 0.5s ease;
}

.blog .section2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 52px;
}

.blog .section2 .swiper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: visible;
}

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

.blog .section2 .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 28%;
  margin-right: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 0.6px solid #f1f5f9;
  box-sizing: border-box;
  background: #f4f6f7;
  box-shadow: 0px 0px 15px #00000026;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.blog .section2 .swiper-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(34, 62, 86, 0.24);
}

.blog .section2 .swiper-slide .img {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}

.blog .section2 .swiper-slide .img img {
  display: block;
  width: 100%;
  transition: transform 0.5s ease;
}

.blog .section2 .swiper-slide .img:hover img {
  transform: scale(1.05);
}

.blog .section2 .swiper-slide .content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex: 1;
  padding: 30px;
}

.blog .section2 .swiper-slide .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.blog .section2 .swiper-slide .time {
  display: flex;
  flex-wrap: wrap;
}

.blog .section2 .swiper-slide .time p {
  color: #90a1b9;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.blog .section2 .swiper-slide .tag {
  display: flex;
  flex-wrap: wrap;
  padding: 4px 12px;
  border-radius: 2px;
  background: #1d82b8;
}

.blog .section2 .swiper-slide .tag p {
  color: #eff6ff;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}

.blog .section2 .swiper-slide .title {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 16px;
}

.blog .section2 .swiper-slide .title p {
  color: #1d82b8;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  cursor: pointer;
  transition: 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog .section2 .swiper-slide:hover .title p {
  color: #223e56;
}

.blog .section2 .swiper-slide .desc {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 16px;
}

.blog .section2 .swiper-slide .desc p {
  color: #62748e;
  font-family: Montserrat;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  cursor: pointer;
  transition: 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog .section2 .swiper-slide .more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding-top: 40px;
  cursor: pointer;
}

.blog .section2 .swiper-slide .more p {
  color: #223e56;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.blog .section2 .swiper-slide .more svg {
  margin-left: 8px;
}

/* responsive: index page */
@media only screen and (max-width: 1280px) {
  .banner::after {
    height: 260px;
  }

  .banner .banner-content {
    padding: 0 48px;
  }

  .banner .banner-content .title p {
    width: 100%;
    font-size: 42px;
    line-height: 58px;
  }

  .banner .banner-content .desc {
    margin-top: 24px;
  }

  .banner .banner-content .desc p {
    width: 70%;
    font-size: 15px;
    line-height: 30px;
  }

  .banner .banner-content .btn {
    gap: 32px;
    margin-top: 30px;
  }

  .banner .banner-content .btn a {
    height: 52px;
    padding: 0 18px;
  }

  .banner .banner-content .btn a:first-child p,
  .banner .banner-content .btn a:last-child p {
    font-size: 17px;
    line-height: 22px;
  }

  .banner .banner-content .btn a:first-child .btn-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
  }

  .banner .banner-content .btn a:last-child .btn-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
  }

  .product {
    padding: 104px 44px 0;
  }

  .product .product-display {
    gap: 24px !important;
    height: 560px !important;
  }

  .product .main-product {
    padding: 62px 50px 36px !important;
  }

  .product .product-item:not(.main-product) {
    padding: 62px 28px 36px !important;
  }

  .product .product-title-container .product-title {
    font-size: 48px !important;
    line-height: 58px !important;
  }

  .product .product-description .main-subtitle {
    font-size: 15px;
    line-height: 23px;
  }

  .product .product-item-overlay .product-number,
  .product .product-item-overlay > p {
    font-size: 22px;
    line-height: 28px;
  }

  .product .product-content {
    width: 76% !important;
  }

  .product .product-content p {
    font-size: 30px;
    line-height: 38px;
  }

  .product .more-btn {
    font-size: 15px;
    line-height: 20px;
  }

  .about1 {
    min-height: 670px;
    padding: 90px 0 170px;
    background-size: 100% auto;
  }

  .about1::after {
    height: 280px;
  }

  .about1 .inner {
    width: 88%;
  }

  .about1 .section1 .title p {
    font-size: 32px;
    line-height: 54px;
  }

  .about1 .section1 .desc {
    width: 82%;
    margin-top: 36px;
  }

  .about1 .section1 .desc p {
    font-size: 15px;
    line-height: 34px;
  }

  .about1 .section1 .desc .highlight1 {
    font-size: 22px;
    line-height: 34px;
  }

  .about1 .section1 .btn {
    height: 52px;
    margin-top: 50px;
  }

  .about1 .section1 .btn .btn-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
  }

  .about1 .section1 .btn p {
    font-size: 17px;
    line-height: 24px;
  }

  .about1 .section2 {
    bottom: -150px;
    gap: 20px;
    padding: 32px;
    border-radius: 36px 0 36px 0;
  }

  .about1 .section2 .item {
    gap: 12px;
  }

  .about1 .section2 .item .icon,
  .about1 .section2 .item .icon svg {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    max-width: 54px;
    max-height: 54px;
  }

  .about1 .section2 .item .text1 p {
    font-size: 26px;
    line-height: 26px;
  }

  .about1 .section2 .item .text1 span {
    font-size: 50px;
    line-height: 50px;
  }

  .about1 .section2 .item .text2 p {
    font-size: 17px;
    line-height: 24px;
  }

  .about2 {
    padding: 80px 0 0;
  }

  .about2 .inner {
    width: 88%;
  }

  .about2 .back1 {
    width: 360px;
    height: 640px;
  }

  .about2 .back2 {
    width: 310px;
    height: 640px;
  }

  .about2 .back3 {
    width: 270px;
    height: auto;
  }

  .about2 .back4 {
    width: 430px;
    height: auto;
  }

  .about2 .section1 .title p {
    font-size: 44px;
    line-height: 58px;
  }

  .about2 .section1 .text1 {
    margin-top: 52px;
  }

  .about2 .section1 .text1 p,
  .about2 .section1 .text2 p {
    font-size: 17px;
    line-height: 22px;
  }

  .about2 .section1 .text2 p {
    width: 84%;
  }

  .about2 .section2 {
    margin: 76px 0;
    padding: 260px 0;
  }

  .about2 .section2 .item {
    width: 43%;
    padding: 20px 26px;
    border-radius: 20px;
  }

  .about2 .section2 .item .item-top p {
    font-size: 16px;
    line-height: 28px;
  }

  .blog {
    padding: 0 0 76px;
  }

  .blog .section1 .inner {
    width: 88%;
  }

  .blog .section1-left p:first-child,
  .blog .section1-left p:last-child {
    font-size: 40px;
    line-height: 58px;
  }

  .blog .section1-right {
    height: 52px;
  }

  .blog .section1-right .btn-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
  }

  .blog .section1-right > p {
    font-size: 17px;
    line-height: 22px;
  }

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

  .blog .section2 .swiper-slide {
    width: 32%;
    margin-right: 32px;
  }

  .blog .section2 .swiper-slide .content {
    padding: 26px;
  }

  .blog .section2 .swiper-slide .title p {
    font-size: 22px;
    line-height: 30px;
  }

  .blog .section2 .swiper-slide .desc p {
    font-size: 15px;
    line-height: 24px;
  }

  .blog .section2 .swiper-slide .more {
    padding-top: 32px;
  }
}

@media only screen and (max-width: 1024px) {
  body {
    overflow: auto;
  }

  .home-screen-swiper {
    height: auto !important;
    overflow: visible;
  }

  .home-screen-swiper > .swiper-wrapper {
    display: block;
    height: auto !important;
    transform: none !important;
  }

  .home-screen-swiper > .swiper-wrapper > .swiper-slide {
    height: auto !important;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .home-screen-swiper > .swiper-wrapper > .swiper-slide:nth-child(2) {
    overflow: visible;
    scroll-padding-top: 0;
  }

  .banner {
    height: 720px;
  }

  .banner::after {
    height: 230px;
  }

  .banner .banner-content {
    padding: 0 40px;
  }

  .banner .banner-content .title p {
    width: 100%;
    font-size: 34px;
    line-height: 48px;
  }

  .banner .banner-content .desc {
    margin-top: 22px;
  }

  .banner .banner-content .desc p {
    width: 78%;
    font-size: 15px;
    line-height: 28px;
  }

  .banner .banner-content .btn {
    gap: 24px;
    margin-top: 28px;
  }

  .product {
    padding: 92px 36px 0;
  }

  .product .product-display {
    gap: 20px !important;
    height: 500px !important;
  }

  .product .main-product {
    padding: 56px 42px 34px !important;
  }

  .product .product-item:not(.main-product) {
    padding: 56px 24px 34px !important;
  }

  .product .product-title-container .product-title {
    font-size: 40px !important;
    line-height: 50px !important;
  }

  .product .product-description .main-subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .product .product-item-overlay .product-number,
  .product .product-item-overlay > p {
    font-size: 20px;
    line-height: 26px;
  }

  .product .product-content {
    width: 82% !important;
  }

  .product .product-content p {
    font-size: 28px;
    line-height: 34px;
  }

  .about1 {
    min-height: 600px;
    padding: 80px 0 60px;
  }

  .about1::after {
    height: 250px;
  }

  .about1 .section1 .title p {
    font-size: 30px;
    line-height: 48px;
  }

  .about1 .section1 .desc {
    width: 86%;
    margin-top: 32px;
  }

  .about1 .section1 .desc p {
    font-size: 14px;
    line-height: 32px;
  }

  .about1 .section1 .desc .highlight1 {
    font-size: 20px;
    line-height: 32px;
  }

  .about1 .section1 .btn {
    margin-top: 44px;
  }

  .about1 .section2 {
    position: relative;
    bottom: auto;
    margin-top: 44px;
    gap: 24px;
    padding: 28px;
  }

  .about1 .section2 .item {
    flex: 1 1 45%;
  }

  .about1 .section2 .item .icon,
  .about1 .section2 .item .icon svg {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
  }

  .about1 .section2 .item .text1 span {
    font-size: 46px;
    line-height: 46px;
  }

  .about1 .section2 .item .text2 p {
    font-size: 16px;
    line-height: 24px;
  }

  .about2 {
    padding: 70px 0 0;
  }

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

  .about2 .section1 .text1 {
    margin-top: 44px;
  }

  .about2 .section1 .text2 {
    margin-top: 22px;
  }

  .about2 .section1 .text1 p,
  .about2 .section1 .text2 p {
    font-size: 16px;
    line-height: 22px;
  }

  .about2 .section2 {
    margin: 64px 0;
    padding: 230px 0;
  }

  .about2 .section2 .item {
    width: 46%;
    padding: 18px 22px;
    border-radius: 18px;
  }

  .about2 .section2 .item .item-top p {
    font-size: 15px;
    line-height: 26px;
  }

  .about2 .section2 .item .item-bottom p {
    font-size: 15px;
    line-height: 22px;
  }

  .blog {
    padding: 0 0 64px;
  }

  .blog .section1-left p:first-child,
  .blog .section1-left p:last-child {
    font-size: 34px;
    line-height: 48px;
  }

  .blog .section2 {
    margin-top: 44px;
  }

  .blog .section2 .swiper-slide {
    width: 38%;
    margin-right: 28px;
  }

  .blog .section2 .swiper-slide .content {
    padding: 24px;
  }

  .blog .section2 .swiper-slide .title p {
    font-size: 20px;
    line-height: 28px;
  }

  .blog .section2 .swiper-slide .desc p,
  .blog .section2 .swiper-slide .more p {
    font-size: 15px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 820px) {
  .banner {
    height: 680px;
  }

  .banner::after {
    height: 200px;
  }

  .banner .banner-content {
    padding: 0 32px;
  }

  .banner .banner-content .title p {
    font-size: 28px;
    line-height: 40px;
  }

  .banner .banner-content .desc p {
    width: 84%;
    font-size: 14px;
    line-height: 26px;
  }

  .banner .banner-content .btn {
    gap: 20px;
    margin-top: 26px;
  }

  .product {
    padding: 80px 28px 0;
  }

  .product .product-display {
    gap: 18px !important;
    height: 460px !important;
  }

  .product .main-product {
    padding: 48px 32px 30px !important;
  }

  .product .product-item:not(.main-product) {
    padding: 48px 20px 30px !important;
  }

  .product .product-title-container .product-title {
    font-size: 32px !important;
    line-height: 42px !important;
  }

  .product .product-item-overlay .product-number,
  .product .product-item-overlay > p {
    font-size: 18px;
    line-height: 24px;
  }

  .product .product-content p {
    font-size: 24px;
    line-height: 30px;
  }

  .about1 {
    min-height: 560px;
    padding: 70px 0 20px;
  }

  .about1::after {
    height: 220px;
  }

  .about1 .section1 .title p {
    font-size: 26px;
    line-height: 38px;
  }

  .about1 .section1 .desc {
    width: 92%;
    margin-top: 28px;
  }

  .about1 .section1 .desc p {
    font-size: 14px;
    line-height: 28px;
  }

  .about1 .section1 .desc .highlight1 {
    font-size: 18px;
    line-height: 28px;
  }

  .about1 .section1 .btn {
    height: 48px;
    margin-top: 40px;
  }

  .about1 .section2 {
    position: relative;
    bottom: auto;
    margin-top: 28px;
    padding: 24px;
  }

  .about1 .section2 .item .text1 p {
    font-size: 24px;
    line-height: 24px;
  }

  .about1 .section2 .item .text1 span {
    font-size: 42px;
    line-height: 42px;
  }

  .about2 {
    padding: 60px 0 0;
  }

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

  .about2 .section1 .text1 {
    margin-top: 36px;
  }

  .about2 .section1 .text1 p,
  .about2 .section1 .text2 p {
    font-size: 15px;
    line-height: 22px;
  }

  .about2 .section2 {
    margin: 50px 0;
    padding: 200px 0;
  }

  .about2 .section2 .item {
    width: 48%;
    padding: 18px 20px;
  }

  .about2 .section2 .item .item-top p {
    font-size: 14px;
    line-height: 24px;
  }

  .blog {
    padding: 0 0 52px;
  }

  .blog .section1 .inner {
    align-items: flex-start;
  }

  .blog .section1-left p:first-child,
  .blog .section1-left p:last-child {
    font-size: 30px;
    line-height: 40px;
  }

  .blog .section2 {
    margin-top: 40px;
  }

  .blog .section2 .swiper-slide {
    width: 48%;
    margin-right: 24px;
  }
}

@media only screen and (max-width: 768px) {
  .banner {
    height: 620px;
  }

  .banner::after {
    height: 180px;
  }

  .banner .banner-content {
    padding: 0 20px;
  }

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

  .banner .banner-content .desc {
    margin-top: 20px;
  }

  .banner .banner-content .desc p {
    width: 90%;
    font-size: 14px;
    line-height: 24px;
  }

  .banner .banner-content .btn {
    gap: 14px;
    margin-top: 20px;
  }

  .banner .banner-content .btn a {
    height: 46px;
    padding: 0 16px;
  }

  .banner .banner-content .btn a:first-child p,
  .banner .banner-content .btn a:last-child p {
    font-size: 14px;
    line-height: 20px;
  }

  .banner .banner-content .btn a:first-child .btn-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
  }

  .banner .banner-content .btn a:last-child .btn-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    max-width: 22px;
    max-height: 22px;
  }

  .product {
    padding: 20px 20px 0;
  }

  .product .product-display {
    gap: 16px !important;
    height: 420px !important;
  }

  .product .main-product {
    padding: 20px !important;
  }

  .product .product-item:not(.main-product) {
    padding: 20px 18px 20px !important;
  }

  .product .product-title-container .product-title {
    font-size: 20px !important;
    line-height: 30px !important;
  }

  .product .product-description {
    margin-top: 18px;
  }

  .product .product-description .main-subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .product .product-item-overlay .product-number,
  .product .product-item-overlay > p,
  .product .more-btn {
    font-size: 14px;
    line-height: 20px;
  }

  .product .product-content p {
    font-size: 20px;
    line-height: 26px;
  }

  .about1 {
    min-height: 520px;
    padding: 20px 0;
  }

  .about1::after {
    height: 180px;
  }

  .about1 .section1 .title p {
    font-size: 20px;
    line-height: 30px;
  }

  .about1 .section1 .desc {
    width: 100%;
    margin-top: 20px;
  }

  .about1 .section1 .desc p {
    font-size: 14px;
    line-height: 24px;
  }

  .about1 .section1 .desc .highlight1 {
    font-size: 18px;
    line-height: 24px;
  }

  .about1 .section1 .btn {
    height: 46px;
    margin-top: 20px;
    padding: 0 18px;
  }

  .about1 .section1 .btn .btn-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
  }

  .about1 .section1 .btn p {
    font-size: 14px;
    line-height: 20px;
  }

  .about1 .section2 {
    position: relative;
    bottom: auto;
    margin-top: 20px;
    gap: 12px;
    padding: 20px;
    border-radius: 24px 0 24px 0;
  }

  .about1 .section2 .item {
    flex: 1 1 45%;
    gap: 10px;
  }

  .about1 .section2 .item .icon,
  .about1 .section2 .item .icon svg {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    max-width: 34px;
    max-height: 34px;
  }

  .about1 .section2 .item .content {
    gap: 4px;
  }

  .about1 .section2 .item .text1 p {
    font-size: 16px;
    line-height: 18px;
  }

  .about1 .section2 .item .text1 span {
    font-size: 30px;
    line-height: 32px;
  }

  .about1 .section2 .item .text2 p {
    font-size: 14px;
    line-height: 18px;
  }

  .about2 {
    padding: 20px 0 0;
  }

  .about2 .back1,
  .about2 .back2,
  .about2 .back3,
  .about2 .back4 {
    display: none;
  }

  .about2 .section1 .title p {
    font-size: 20px;
    line-height: 30px;
  }

  .about2 .section1 .text1 {
    margin-top: 20px;
  }

  .about2 .section1 .text2 {
    margin-top: 20px;
  }

  .about2 .section1 .text1 p,
  .about2 .section1 .text2 p {
    font-size: 14px;
    line-height: 22px;
  }

  .about2 .section1 .text2 p {
    width: 100%;
  }

  .about2 .section2 {
    gap: 20px;
    margin: 20px 0;
    min-height: 500px;
    padding: 20px 0;
    position: relative;
    background-position: top center;
    background-size: 100% auto;
  }

  .about2 .section2::before {
    content: "";
    display: none;
    width: 100%;
    height: 0;
  }

  .about2 .section2 .item,
  .about2 .section2 .item:first-child,
  .about2 .section2 .item:last-child {
    position: absolute;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    z-index: 2;
  }

  .about2 .section2 .item:first-child {
    left: 0;
    top: 150px;
  }

  .about2 .section2 .item:last-child {
    left: 0;
    bottom: 20px;
  }

  .about2 .section2 .item .item-top p {
    font-size: 14px;
    line-height: 22px;
  }

  .about2 .section2 .item .item-bottom {
    margin-top: 20px;
  }

  .about2 .section2 .item .item-bottom p {
    font-size: 14px;
    line-height: 20px;
  }

  .blog {
    padding: 0 0 20px;
  }

  .blog .section1 .inner {
    align-items: flex-start;
  }

  .blog .section1-left {
    flex: 1 1 100%;
  }

  .blog .section1-left p:first-child,
  .blog .section1-left p:last-child {
    font-size: 20px;
    line-height: 30px;
  }

  .blog .section1-right {
    height: 46px;
    margin-top: 20px;
    padding: 0 18px;
  }

  .blog .section1-right .btn-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
  }

  .blog .section1-right > p {
    font-size: 14px;
    line-height: 20px;
  }

  .blog .section2 {
    margin-top: 20px;
  }

  .blog .section2 .swiper-slide {
    width: 70%;
    margin-right: 20px;
  }

  .blog .section2 .swiper-slide .content {
    padding: 20px;
  }

  .blog .section2 .swiper-slide .time p,
  .blog .section2 .swiper-slide .tag p {
    font-size: 12px;
    line-height: 16px;
  }

  .blog .section2 .swiper-slide .title p {
    font-size: 18px;
    line-height: 26px;
  }

  .blog .section2 .swiper-slide .desc p,
  .blog .section2 .swiper-slide .more p {
    font-size: 14px;
    line-height: 22px;
  }

  .blog .section2 .swiper-slide .more {
    padding-top: 20px;
  }
}

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

  .banner .banner-content {
    padding: 0 20px;
  }

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

  .banner .banner-content .btn {
    flex-direction: column;
    gap: 12px;
  }

  .banner .banner-content .btn a {
    width: auto;
    min-width: 220px;
    max-width: calc(100vw - 40px);
  }

  .product {
    padding: 20px 20px 0;
  }

  .product .product-display {
    flex-direction: column;
    gap: 20px !important;
    height: auto !important;
  }

  .product .product-item,
  .product .main-product,
  .product .product-item:not(.main-product) {
    flex: none !important;
    width: 100% !important;
    height: 260px !important;
    min-height: 260px;
    padding: 20px !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    align-content: flex-end !important;
    cursor: default !important;
  }

  .product .main-product .product-title-container {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: space-between !important;
    text-align: left !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .product .main-product.inactive {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    align-content: flex-end !important;
    padding: 20px !important;
  }

  .product .main-product.inactive .product-title-container {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: space-between !important;
    text-align: left !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .product .main-product .product-title-container svg {
    display: block !important;
  }

  .product .main-product.inactive .product-title-container svg {
    display: block !important;
  }

  .product .main-product .product-description {
    display: flex !important;
    opacity: 1 !important;
  }

  .product .main-product.inactive .product-description {
    display: flex !important;
    opacity: 1 !important;
  }

  .product .product-description {
    margin-top: 14px;
  }

  .product .product-content {
    display: flex !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 68% !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .product .product-item-overlay {
    position: relative !important;
    flex: 1 1 auto !important;
    align-self: stretch !important;
    width: 100% !important;
  }

  .product .product-item-overlay .product-number,
  .product .product-item-overlay > p {
    opacity: 0 !important;
  }

  .product .more-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
  }

  .about1 {
    min-height: 500px;
    padding: 20px 0;
  }

  .about1 .inner,
  .about2 .inner,
  .blog .section1 .inner {
    width: 90%;
  }

  .about1 .section2 .item {
    flex: 1 1 100%;
    gap: 8px;
  }

  .about1 .section2 .item .icon,
  .about1 .section2 .item .icon svg {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
  }

  .about1 .section2 .item .text1 p {
    font-size: 15px;
    line-height: 17px;
  }

  .about1 .section2 .item .text1 span {
    font-size: 28px;
    line-height: 30px;
  }

  .about1 .section2 .item .text2 p {
    font-size: 14px;
    line-height: 18px;
  }

  .about2 .section2 {
    min-height: 0;
    padding: 20px 0 0;
    background-image: none;
  }

  .about2 .section2::before {
    display: none;
  }

  .about2 .section2 .item,
  .about2 .section2 .item:first-child,
  .about2 .section2 .item:last-child {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .blog .section2 .swiper-slide {
    width: 82%;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 414px) {
  .banner {
    height: 560px;
  }

  .banner .banner-content {
    padding: 0 20px;
  }

  .banner .banner-content .title p {
    font-size: 20px;
    line-height: 28px;
  }

  .banner .banner-content .desc p {
    font-size: 14px;
    line-height: 22px;
  }

  .banner .banner-content .btn a {
    width: auto;
    min-width: 210px;
    max-width: calc(100vw - 40px);
    height: 44px;
  }

  .banner .banner-content .btn a:first-child .btn-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
  }

  .banner .banner-content .btn a:last-child .btn-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
  }

  .product {
    padding: 20px 20px 0;
  }

  .product .product-display {
    gap: 16px !important;
  }

  .product .product-item,
  .product .main-product,
  .product .product-item:not(.main-product) {
    height: 240px !important;
    min-height: 240px;
    padding: 20px !important;
  }

  .product .product-description .main-subtitle {
    line-height: 21px;
  }

  .about1 {
    min-height: 470px;
    padding: 20px 0;
  }

  .about1 .section1 .desc {
    margin-top: 20px;
  }

  .about1 .section1 .btn {
    height: 44px;
    margin-top: 20px;
  }

  .about1 .section2 {
    padding: 18px;
    gap: 10px;
  }

  .about1 .section2 .item .icon,
  .about1 .section2 .item .icon svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
  }

  .about1 .section2 .item .text1 p {
    font-size: 14px;
    line-height: 16px;
  }

  .about1 .section2 .item .text1 span {
    font-size: 26px;
    line-height: 28px;
  }

  .about1 .section2 .item .text2 p {
    line-height: 18px;
  }

  .about2 .section2 {
    padding: 20px 0 0;
  }

  .about2 .section2 .item {
    padding: 18px;
  }

  .blog .section2 .swiper-slide {
    width: 86%;
    margin-right: 18px;
  }

  .blog .section2 .swiper-slide .content {
    padding: 18px;
  }

  .blog .section2 .swiper-slide .title p {
    font-size: 17px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 375px) {
  .banner {
    height: 540px;
  }

  .banner .banner-content {
    padding: 0 20px;
  }

  .banner .banner-content .btn a {
    width: auto;
    min-width: 200px;
    max-width: calc(100vw - 40px);
  }

  .product {
    padding: 20px 20px 0;
  }

  .product .product-item,
  .product .main-product,
  .product .product-item:not(.main-product) {
    height: 230px !important;
    min-height: 230px;
    padding: 20px !important;
  }

  .about1 {
    min-height: 450px;
    padding: 20px 0;
  }

  .about1 .section2 {
    margin-top: 20px;
    padding: 16px;
  }

  .about2 .section2 {
    padding: 20px 0 0;
  }

  .blog .section2 .swiper-slide {
    width: 88%;
    margin-right: 16px;
  }
}
