/* Tooplate 2127 Little Fashion https://www.tooplate.com/view/2127-little-fashion */
/*--------------------------------------- CUSTOM PROPERTIES ( VARIABLES ) -----------------------------------------*/
:root {
  --theme-color: #26B7BC;
  --primary-color: #26B7BC;
  --section-bg-color: #f0f8ff;
  --white-color: #FFFFFF;
  --dark-color: #1E2D5A;
  --grey-color: #26B7BC;
  --p-color: #A0D2D2;
  --body-font-family: 'Inter', sans-serif;
  --h5-font-size: 24px;
  --p-font-size: 20px;
  --copyright-text-font-size: 16px;
  --product-link-font-size: 14px;
  --custom-link-font-size: 17px;
  --font-weight-thin: 100;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;
}

body,
html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family);
  position: relative;
}

/*--------------------------------------- TYPOGRAPHY -----------------------------------------*/
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: 43px;
  padding-bottom: 113px;
  line-height: normal;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 20px;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

.text-primary {

  font-size: 48px;
  letter-spacing: 22px;
  color: var(--primary-color) !important;
}

.text-dark {
  font-size: 48px;
  letter-spacing: 22px;
  color: #212529 !important
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

/*--------------------------------------- CUSTOM LINK -----------------------------------------*/
.custom-link {
  color: var(--p-color);
  font-size: var(--custom-link-font-size);
  /* font-weight: var(--font-weight-bold); */
  position: relative;
}

.custom-link i {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 100%;
  transition: all 0.3s;
  line-height: normal;
}

.custom-link:hover i {
  opacity: 1;
  left: 101%;
}

.lead {
  font-size: 1.5rem;
  font-weight: var(--font-weight-thin);
}

.lead-text-group {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 75px;
}

@media (min-width: 992px) {
  .lead-text-group {
    padding-left: 242.95px;
    padding-top: 152.93px;
  }

  .fotter-label-text-group {
    padding-left: 188.42px;
    padding-right: 119.81px;
  }


}

.lead-text-title {

  font-size: 28pt;
  letter-spacing: 4.79px;
  padding-bottom: 33.83px;
  color: #1E2D5A;
}


.lead-text {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 16pt;
  font-weight: 500;
  padding-bottom: 21.67px;


}

.lead-text-content {
  letter-spacing: 3px;
  word-wrap: break-word;
  word-break: normal;
  flex: 1;
  min-width: 0;
}

.lead-text-bold {
  font-size: 16pt;
  letter-spacing: 3px;
  color: #1E2D5A;
  font-weight: bold;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*--------------------------------------- PRE LOADER -----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -23px;
  border-radius: 50%;
  border: 1px solid #959595;
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------- CUSTOM BUTTON & ICON -----------------------------------------*/
.custom-btn {
  background: #A0D2D2;
  border-radius: 50px;
  color: var(--white-color);
  font-size: 24px;
  text-transform: uppercase;
  padding: 9.57px 40px;
}

.custom-btn2 {
  background: #1E2D5A;
  color: #FFFFFF;
  border-radius: 50px;
  color: var(--white-color);
  font-size: 24px;
  text-transform: uppercase;
  padding: 9.57px 40px;
}

.social-btn {
  background: transparent;
  border: 1px solid var(--grey-color);
  color: var(--dark-color);
  text-transform: none;
}

.social-btn:hover {
  border-color: transparent;
}

.cart-form-select {
  border-radius: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.cart-btn {
  border-radius: 0;
  width: 100%;
  font-size: var(--product-link-font-size);
}

.custom-btn:hover,
.slick-slideshow .custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

@media (min-width: 992px) {
  .col-lg-61 {
    flex: 0 0 auto;
    /* width: 50%; */
  }

  .col-lg-61 {}
}

@media (min-width: 992px) {
  .col-lg-62 {
    flex: 0 0 auto;
    margin-left: 950px;
    padding-top: 250px;
    /* width: 50%; */
  }

  .products-btn,
  .miniProgram-btn {
    background: var(--dark-color);
    border-radius: 50px;
    color: var(--white-color);
    font-size: 24px;
    text-transform: uppercase;
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn1 {
    transition: none;
    background: #1E2D5A;
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 12px;
    padding: 4px, 12px;
  }
}

.custom-icon {
  color: var(--p-color);
  font-size: 24px;
}

.custom-icon {
  display: inline-block;
  vertical-align: middle;
}

.bi-bag.custom-icon {
  font-size: 17px;
}

.featured-icon {
  color: var(--grey-color);
  font-size: 52px;
}

/*--------------------------------------- DIV SEPARATOR -----------------------------------------*/
.div-separator {
  position: relative;
}

.div-separator::before {
  content: "";
  height: 1px;
  background: var(--grey-color);
  display: block;
  width: 100%;
}

.div-separator span {
  position: absolute;
  top: 50%;
  margin-left: -22.5px;
  left: 50%;
  text-align: center;
  background: var(--white-color);
  margin-top: -11px;
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  width: 35px;
  text-transform: uppercase;
}

/*--------------------------------------- FULL IMAGE -----------------------------------------*/
.full-image-img {
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  width: 100%;
  bottom: -120px;
  min-width: 650px;
}

@media (min-width: 1600px) {
  .full-image-img {
    bottom: -200px;
  }
}

/*--------------------------------------- NAVIGATION -----------------------------------------*/
.navbar {
  background: var(--white-color);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 25px 0;
  z-index: 2;
  will-change: transform;
  transition: transform 300ms linear;
}

.navbar span,
h2 span,
h4 span {
  color: var(--primary-color);
}

.navbar.headroom--not-top {
  padding: 20px 0;
}

.headroom--pinned {
  transform: translate(0, 0);
}

.headroom--unpinned {
  transform: translate(0, -150%);
}

.navbar-brand {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-light);
  margin: 0;
  padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  display: inline-block;
  padding: 0;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.nav-link {
  color: #1E2D5A;
  font-size: 16px;
  position: relative;
}

.navbar .nav-link::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grey-color);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--primary-color);
}

.nav-link:focus,
.nav-link:hover {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*--------------------------------------- SITE HEADER -----------------------------------------*/
.site-header {
  background: linear-gradient(to bottom, #A0D2D2, #FFFFFF);
  ;
  position: relative;
  overflow: hidden;
  margin-top: 86px;
}

.site-header.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.site-header.section-padding-img {
  padding-top: 10rem;
  /* padding-bottom: 10rem; */
}

.header-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------- SLICK SLIDESHOW -----------------------------------------*/
@media (min-width: 992px) {
  .slick-slideshow {
    /* height: 100vh; */
  }

  .products-btn-box {
    position: relative;
    display: inline-block;
    padding-top: 250px;
    padding-left: 100px;
  }
}

.slick-slideshow {
  margin-top: 86px;
}

.slick-title {
  display: flex;
  justify-content: center;
  letter-spacing: 20px;
  color: var(--p-color);
}

.btn-banner-box1 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-banner-box2 {
  width: 100%;
  display: flex;
  padding-left: 45%;
  /* justify-content: center; */
}

.slick-custom {
  position: relative;
}

.slick-custom img {
  height: auto;
  width: 100%;
}

.slick-custom.img-top-icons {
  /* Group */
  position: absolute;
  left: 24.39%;
  right: 69.44%;
  top: 0.85%;
  bottom: 98.27%;
}

.slick-bottom {
  /* background: linear-gradient(to top, var(--dark-color), transparent 90%); */
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 8rem;
  width: 100%;
  height: 100%;
}

.slick-bottom2 {
  /* background: linear-gradient(to top, var(--dark-color), transparent 90%); */
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 8rem;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .slick-bottom {
    padding-top: 21rem;
  }

  .slick-bottom2 {
    padding-top: 45rem;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.slick-bottom .container {
  position: absolute;
}

.banner1-container {}

.info-one {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-two {
  display: flex;
  flex-direction: column;
  padding-top: 351.57px;
  padding-left: 1059.02px;
  padding-right: 20px;
}

.banner2-title {
  display: flex;
  flex-direction: column;
  color: #1E2D5A;
  font-size: 46pt;
  gap: 41.9px;
  letter-spacing: 26.64px;
  padding-bottom: 97.79px;
}

.banner1-title {
  color: #A0D2D2;
  letter-spacing: 26.64px;
  font-size: 46px;
  margin-top: 139.51px;
  padding-bottom: 113.61px;
}

/* .banner2-{ color: #1E2D5A; font-size: 46pt; } */
.info-content {
  display: flex;
  align-items: center;
  gap: 106.07px;
}

.info-content-msg {
  display: flex;
  align-items: center;
  gap: 145.04px;
}

.info-msg {
  width: 900px;
  display: flex;
  flex-wrap: wrap;
  color: #1E2D5A;
  font-size: 28pt;
}

.content-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.item-icon {
  display: flex;
  justify-content: center;
  padding-bottom: 24.53px;
}

.item-label-big {
  display: flex;
  justify-content: center;
  font-size: 30pt;
  font-weight: 500;
  color: #1E2D5A;
}

.item-label-small {
  display: flex;
  padding-top: 25.9px;
  justify-content: center;
  font-size: 21pt;
  color: #1E2D5A;
}

/* -------------------------- 小程序入口按钮 & 二维码 核心样式 --------------------------- */
/* 父容器：作为二维码绝对定位参考 */
/* 二维码容器：默认隐藏 + 顶部定位 + 适配页面风格 */
.miniProgram-qrcode {
  position: absolute;
  bottom: -250px;
  display: none;
  /* 默认隐藏 */
  z-index: 9999;
  /* 置顶，避免被其他元素遮挡 */
  padding: 0;
  margin: 0;
  background: transparent;
  /* display: flex; justify-content: center; */
}

/* 二维码盒子：匹配页面footer的二维码样式 */
.miniProgram-qrcode .qrcode-box {
  margin-bottom: 0;
  /* 清空默认间距 */
  width: 194.46px;
  /* 和footer二维码尺寸一致 */
  height: 232.58px;
  background: #1E2D5A;
  /* 浅蓝底，匹配页面风格 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* 增加阴影，提升层次感 */
}

/* 二维码图片容器：保持和footer一致 */
.miniProgram-qrcode .top-qrcode-content {
  width: 194.46px;
  height: 194.46px;
  background: #FFFFFF;
  border: 1px solid #9BCBCB;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 二维码图片：尺寸匹配 */
.miniProgram-qrcode .img-qrcode {
  width: 173.33px;
  height: 173.33px;
  display: flex;
  justify-content: center;
  object-fit: contain;
}

/* 二维码描述文字：匹配页面风格 */
.miniProgram-qrcode .bottom-qrcode-desc {
  /* padding: 4px 0; */
  font-size: 9pt;
  color: #FFFFFF;
  text-align: center;
  background: #1E2D5A;
  margin: 0;
}

/* 核心：鼠标悬停按钮时显示二维码 */
.miniProgram-btn:hover+.miniProgram-qrcode {
  display: block;
}

/* 优化：鼠标悬停二维码时保持显示（避免移开按钮瞬间消失） */
.miniProgram-qrcode:hover {
  display: block;
}

/* 响应式调整：小屏幕适配 */
.slick-overlay {
  background: linear-gradient(to top, #000, transparent 120%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slick-slideshow .custom-btn {
  font-weight: var(--font-weight-bold);
  display: inline-block;
  padding-right: 32px;
  padding-left: 32px;
}

@media (min-width: 576px) {
  .slick-slideshow .slick-dots {
    max-width: 540px;
  }

  .lead-text-group {
    padding-top: 50px;
  }
}

@media (min-width: 768px) {
  .slick-slideshow .slick-dots {
    max-width: 720px;
  }

  .top-msg-detail {
    display: inline-block;
    color: #1E2D5A;
    font-size: 16pt;
    letter-spacing: 3px;
    margin-top: 26.65px;
    margin-left: 50.7px;
    margin-right: 50.7px;
  }



  .bottom-msg-detail {
    font-size: 16pt;
  }

  .line-one,
  .line-two,
  .line-three {
    font-size: 16pt;
  }

}

@media (min-width: 992px) {
  .slick-slideshow .slick-dots {
    max-width: 960px;
  }


}

@media (min-width: 1200px) {
  .slick-slideshow .slick-dots {
    max-width: 1140px;
  }

}

@media (min-width: 1400px) {
  .slick-slideshow .slick-dots {
    max-width: 1320px;
  }

}

.line-one,
.line-two,
.line-three {
  text-align: center;
  color: #1E2D5A;
  letter-spacing: 3px;
}


.slick-slideshow .slick-dots {
  position: absolute;
  z-index: 2;
  top: 50%;
  /* left: 0; */
  right: 20px;
  transform: translate(0, -50%);
  margin: 0 auto;
  padding: 0;
}

.slick-slideshow .slick-dots li {
  background: transparent;
  border: 7px solid rgba(38, 183, 188, 0.5);
  border-radius: 100%;
  display: block;
  width: 30px;
  height: 30px;
  margin: 10px;
  padding: 5px;
  margin-left: auto;
  cursor: pointer;
}

.slick-slideshow .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  outline: none;
  height: 0;
}

.slick-slideshow .slick-dots li:hover,
.slick-slideshow .slick-dots .slick-active {
  background: var(--theme-color);
}

/*--------------------------------------- CUSTOM CIRCLE IMAGES -----------------------------------------*/
.custom-circle-image {
  /* width: 312.86px; height: 125.75px; */
}

.custom-circle-image.team-image {
  width: 312.86px;
  height: 125.75px;
  border-radius: 8px;
  position: relative;
}

/*--------------------------------------- TESTIMONIAL -----------------------------------------*/
.slick-testimonial .slick-list,
.slick-testimonial .slick-track {
  height: 100%;
}

.slick-testimonial {
  margin: auto;
}

.slick-testimonial-caption {
  quotes: '❝' '❞';
  position: relative;
  padding: 5rem 7rem;
}

.slick-testimonial-caption::before {
  content: open-quote;
  display: inline-block;
  color: var(--primary-color);
  font-family: auto;
  font-size: 100px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-testimonial .slick-dots {
  text-align: center;
}

.slick-testimonial .slick-dots li {
  background: var(--grey-color);
  display: inline-block;
  vertical-align: top;
  width: 16%;
  height: 1px;
}

.slick-testimonial .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.slick-testimonial .slick-dots li:hover,
.slick-testimonial .slick-dots .slick-active {
  background: var(--dark-color);
}

/*--------------------------------------- SECTION -----------------------------------------*/
section {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.section-padding {
  padding-top: 3rem;
  padding-bottom: 7rem;
}

.featured {
  background: var(--section-bg-color);
}

/*--------------------------------------- ABOUT -----------------------------------------*/
.about .nav-pills .nav-item {
  width: 100%;
}

.about .nav-pills .nav-link {
  color: var(--grey-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  border-left: 1px solid var(--grey-color);
  border-radius: 0;
  padding-right: 0;
}

.about .nav-pills .nav-link:hover,
.about .nav-pills .nav-link.active,
.about .nav-pills .show>.nav-link {
  background: transparent;
  border-left-color: var(--primary-color);
  color: var(--primary-color);
}

/*--------------------------------------- FAQ ACCORDION -----------------------------------------*/
.accordion-item {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.accordion-button {
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}

button:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}

.accordion-body {
  border-top: 1px solid rgba(0, 0, 0, .125);
}

.accordion-button {
  font-size: 1.5rem;
  font-weight: var(--font-weight-normal);
  padding-top: 1.5rem;
  padding-right: 0;
  padding-bottom: 1.5rem;
  padding-left: 0;
}

.accordion-body {
  padding: 2rem 0;
}

/*--------------------------------------- TEAM MEMBERS -----------------------------------------*/
.col-12-label {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team {
  background: #D6D9E1;
}

/* 卡片行容器 - 水平排列+居中，适配多卡片 */
.team-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* 让所有卡片高度一致 */
  gap: 18.5px;
  /* 卡片之间的间距 */
  flex-wrap: wrap;
  /* 小屏幕自动换行 */
  padding: 0 15px;
  /* 左右留白，适配屏幕 */
}

/* 单个卡片容器 - 核心布局 */
.team-row-item {
  flex: 1;
  /* 卡片等分宽度 */
  min-width: 280px;
  /* 最小宽度，避免过小 */
  max-width: 400px;
  /* 最大宽度，避免过大 */
  position: relative;
  /* 作为子元素绝对定位的参考 */
  border-radius: 0.25rem;
  overflow: hidden;
  /* 裁剪图片圆角 */
}

/* 卡片背景图片 - 自适应填充 */
.team-image {
  width: 100%;
  height: 150px;
  /* 固定卡片高度，可根据需求调整 */
  object-fit: cover;
  /* 图片等比裁剪，填充容器 */
  opacity: 0.85;
  /* 降低图片透明度，突出文字 */
  transition: opacity 0.3s ease;
  /* hover 过渡 */
}

/* 鼠标悬浮图片时提升透明度 */
.team-row-item:hover .team-image {
  opacity: 1;
}

/* 文字信息容器 - 绝对定位居中 */
.team-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  background: #1E2D5A;
  flex-direction: column;
  justify-content: center;
  /* 垂直居中 */
  align-items: center;
  /* 水平居中 */
  padding: 20px;
  /* 内边距，避免文字贴边 */
  text-align: center;
  /* 文字居中 */
}

/* 标题标签（使命/愿景/价值观） */
.team-info-label h5 {
  color: #A0D2D2;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 17px 0;
  /* 标题下方间距 */
  line-height: 1.2;
}

/* 描述文字样式 */
.team-info .text-muted {
  color: var(--text-dark) !important;
  /* 替换默认浅灰，匹配效果图 */
  font-size: 16pt;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.text-content {
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  /* gap: 15.97px; */
}

.text-content-box {
  display: flex;
  height: 60px;
  align-items: center;

}

/* 响应式适配 - 小屏幕调整尺寸 */
@media (max-width: 768px) {
  .team-image {}

  .team-info-label h5 {
    font-size: 20px;
  }

  .team-info .text-muted {
    font-size: 16pt;
  }
}

@media (max-width: 576px) {
  .team-row {
    gap: 15px;
  }

  .team-image {}

  .team-info {
    padding: 15px;
  }

  .company-introduction-text {
    margin-top: 50px;
    display: flex;
    font-size: 28px;
    letter-spacing: 3px;
    justify-content: center;

  }

  .top-msg-detail {
    font-size: 16px;
    letter-spacing: 3px;
    color: #1E2D5A;
  }

  .bottom-msg-detail {
    font-size: 16px;
  }

  .line-one,
  .line-two,
  .line-three {
    font-size: 16px;
  }

  .img-fluid2 {
    width: 80%;
  }
}

.company-introduction-text {
  font-weight: var(--font-weight-black);
  margin-top: 109.32px;
  display: flex;
  justify-content: center;
  color: #1E2D5A;
  font-size: 28pt;
}

.company-introduction-text-detail {
  display: flex;
  flex-direction: column;
  padding-top: 110.99px;
}

.top-msg {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-bottom: 43.5px;
}



.center-msg {
  display: flex;
  flex-direction: column;

}

.line-one,
.line-two,
.line-three {
  text-align: center;
  color: #1E2D5A;
  letter-spacing: 3px;
}

.bottom-msg {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 182.68px;
}

.bottom-msg-detail {
  text-align: center;
  color: #1E2D5A;
  padding-top: 32.58px;
  /* padding-left: 50.7px; */
}

.right-dots-img {
  padding-bottom: 32.58px;
  /* padding-left: 45.45px; */
}
.text-bold-dark{
  font-weight: var(--font-weight-bold);
}

/* 核心容器：渐变背景+整体布局 */
.bottom-header {
  display: flex;
  /* 匹配效果图浅青到白色的渐变（优化渐变过渡更自然） */
  background: linear-gradient(to bottom, #A0D2D2, #FFFFFF);
  width: 100%;
  /* 保留原有内边距，适配设计尺寸 */
  padding-top: 49.04px;
  padding-bottom: 67.65px;
  padding-left: 80px;
  padding-right: 80px;
  flex-direction: column;
}

/* 内容容器：居中+垂直布局 */
.bottom-header-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  /* 新增：让子元素水平居中 */
  width: 100%;
  /* 新增：占满父容器宽度 */
}

/* 标题样式：匹配效果图字体/对齐/颜色 */
.bottom-header-title {
  text-align: center;
  color: #1E2D5A;
  letter-spacing: 3px;
  /* 深蓝色匹配设计 */
  font-size: 28pt;
  font-weight: 600;
  /* 新增：标题加粗更醒目 */
  margin: 0;
  /* 清除默认边距 */
  line-height: 1.2;
  /* 行高优化 */
  /* 修正：移除top:0（无定位无效） */
}

/* 描述文本容器：间距+居中 */
.desc-text {
  margin-top: 97.68px;
  /* 标题与文本的间距 */
  display: flex;
  /* 新增：flex布局控制行间距 */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  /* 新增：两行文本之间的间距 */
  width: 100%;
  /* 新增：占满宽度 */
}

/* 文本行通用样式：匹配设计 */
.desc-text-line-one,
.desc-text-line-two {
  display: flex;
  flex-wrap: wrap;
  /* 自动换行 */
  justify-content: center;
  /* 文本行内居中 */
  align-items: center;
  text-align: center;
  /* 文本对齐 */
  color: #1E2D5A;
  /* 与标题同色 */
  font-size: 15pt;
  line-height: 1.5;
  /* max-width: 840px; */
  /* 行高优化，提升可读性 */
  /* 修正：宽度改为最大宽度，适配小屏幕 */
  width: 100%;
  margin: 0 auto;
  /* 水平居中 */
}

/* 响应式适配：小屏幕自动调整字体和内边距 */
@media (max-width: 992px) {
  .bottom-header {
    padding-left: 40px;
    padding-right: 40px;
  }

  .bottom-header-title {
    font-size: 24pt;
  }

  .desc-text-line-one,
  .desc-text-line-two {
    font-size: 10pt;
  }
}

@media (max-width: 576px) {
  .bottom-header {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .picture-content-box-one {
    padding-bottom: 40px;
  }

  .bottom-header-title {
    font-size: 28px;
  }

  .company-introduction-text {
    font-size: 28px;
  }

  .desc-text {
    margin-top: 50px;
  }

  .desc-text-line-one,
  .desc-text-line-two {
    /* font-size: 16pt; */
    max-width: 100%;
  }


}

.picture-content {
  width: 100%;
  background: #FFFFFF;
  width: 100%;
  display: flex;
  justify-content: center;
}

.picture-content-box {
  display: flex;
  flex-direction: column;
}


.box-one {
  display: flex;
  justify-content: center;
}

.img-box-one {
  width: 727.56px;
  height: 288.02px;
}

.box-two-text {
  gap: 10px;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  font-size: 16px;
  padding-left: 20px;
  padding-right: 20px;
  letter-spacing: 3px;
  color: #1E2D5A;
  justify-content: center;
  padding-bottom: 30px;
}

.number-bg-style {
  color: #FFFFFF;
  background: #1E2D5A;
  border-radius: 8px;
}

.tech-type {
  margin-top: 91.27px;
  position: relative;
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
}

/* 技术板块容器：通栏布局，高度随图片自适应 */
.tech-section {
  /* background: linear-gradient(to top, var(--dark-color), transparent 90%); */
  position: relative;
  width: 100%;
  height: auto;
  /* 取消固定高度，由图片撑开 */
  overflow: hidden;
  margin-bottom: 0;
  min-height: 400px;
}

.tech-section-box {}

.tech-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, var(--p-color), transparent 50%); */
  z-index: 1;
  pointer-events: none;
}

.text-muted-address {
  color: var(--p-color);
  font-size: 17px;
}

/* 背景图片：宽度100%，高度按比例自动缩放 */
.tech-bg {
  /* 改为relative，撑开容器高度 */
  display: block;
  /* 消除图片默认行内间隙 */
  width: 100%;
  /* 宽度铺满容器 */
  height: auto;
  /* 高度按原图比例自适应 */
  object-fit: cover;
  /* 保持比例，铺满容器（可选，也可删去） */
  object-position: center;
  opacity: 0.9;
  z-index: -1;
}

/* 文字内容容器：绝对定位在图片上方，垂直居中 */
.tech-content {
  position: absolute;
  top: 900px;
  left: 121.76px;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

/* 技术标题样式 */
.tech-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32.15px;
  color: #1E2D5A;
  line-height: 1.2;
}

/* 技术副标题/描述样式 */
.tech-desc {
  font-size: 18px;
  line-height: 1.5;
  color: #2D4071;
  width: 793.98px;
  font-weight: 400;
}

.tech-desc-text {
  padding-bottom: 40.96px;
  color: #1E2D5A;
  font-size: 28px;
}

/* 响应式适配：小屏幕调整 */
@media (max-width: 768px) {
  .tech-section {
    min-height: auto;
    /* 小屏幕最小高度 */
  }

  .tech-content {
    left: 20px;
    max-width: calc(100% - 40px);
  }

  .tech-title {
    font-size: 24px;
  }

  .tech-desc {
    font-size: 16px;
  }
}

/* 第三个板块文字位置微调 */
.tech-section:nth-child(3) .tech-content {
  left: 100px;
}

@media (min-width: 992px) {
  .col-contact {
    flex: 0 0 auto;
  }

  .box-two-text {
    font-size: 20pt;
    padding-bottom: 20px;
  }
}

.custom-modal-btn {
  background: var(--grey-color);
  color: var(--white-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 32px;
  width: 42px;
  height: 42px;
}

.modal-body {
  padding: 4rem;
}

.modal-header {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  margin: 32px;
}

#cart-modal .modal-header .btn-close {
  z-index: 2;
  margin: 22px;
}

#cart-modal .modal-header {
  border-bottom: 0;
  padding: 0;
}

#cart-modal .modal-footer {
  padding: 2rem 4rem;
}

/*--------------------------------------- SKILL - PROGRESS BAR -----------------------------------------*/
.skill-thumb strong {
  display: inline-block;
  margin-bottom: 6px;
}

.skill-thumb span {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.skill-thumb .progress {
  background: var(--white-color);
  box-shadow: none;
  border-radius: 100px;
  height: 1px;
  margin-bottom: 16px;
}

.skill-thumb .progress .progress-bar-primary {
  background: var(--grey-color);
}

/*--------------------------------------- PRODUCT -----------------------------------------*/
.mb-5 {
  font-size: medium;
  color: var(--p-color);
  font-size: 14px;
}

.mb-51 {
  font-size: 28pt;
  letter-spacing: 3px;
  color: var(--dark-color);
  margin-bottom: 3rem !important;
}

.front-product {
  /* background: var(--section-bg-color); */
}

.product-thumb {
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease-out;
}

.product-thumb-box {
  display: flex;
  justify-content: center;
}

.product-image {
  transition: all 0.5s ease-out;
  box-shadow: 3px 3px 8px rgba(184, 184, 184) inset, 8px 7px 6px rgba(184, 184, 184);
}

.product-image-1 {
  padding-left: 20px;
  padding-right: 20px;
  transition: all 0.5s ease-out;
}

.img-fluid2 {
  width: 60%;
  height: auto;
}

.product-image-2 {
  display: flex;
  justify-content: center;
  transition: all 0.5s ease-out;
}

.product-thumb:hover .product-image {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.product-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 20px;
}

.product-info {
  padding: 30px 20px;
}

.product-description,
.product-cart-thumb {
  padding: 0 20px;
}

.product-icon {
  color: var(--white-color);
}

.product-title-link {
  color: var(--dark-color);
}

.product-title {
  margin-bottom: 9px;
}

.product-additional-link {
  display: inline-block;
  vertical-align: top;
  font-size: var(--product-link-font-size);
  margin-top: 32px;
  margin-right: 12px;
}

.product-alert {
  background: var(--white-color);
  color: var(--p-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  padding: 3px 10px;
}

.product-p {
  /* font-size: var(--product-link-font-size); */
  font-size: 14px;
  color: #A0D2D2;
}

.view-all {
  text-transform: uppercase;
  /* color: var(--p-color); */
  color: #A0D2D2;
  font-size: 12pt;
  font-weight: var(--font-weight-bold);
  /* border-bottom: 2px solid var(--grey-color); */
  padding-bottom: 6px;
}

/*--------------------------------------- CONTACT -----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.form-floating>label {
  color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.contact-form button[type='submit'] {
  background: var(--dark-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
}

.contact-form button[type='submit']:hover {
  background: var(--primary-color);
}

/*--------------------------------------- SITE FOOTER -----------------------------------------*/
@media (min-width: 992px) {
  .col-lg-footer {
    flex: 0 0 auto;
    width: 170px;
  }
}

.fotter-row {
  /* --bs-gutter-x: 1.5rem; */
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
  align-items: center;
}

.livai-icon-img {
  margin-bottom: 39.41px;
}

.site-footer {
  background: var(--dark-color);
  padding-top: 5rem;
  padding-bottom: 16.99px;
  display: flex;
  flex-direction: column;
  gap: 34.45px;
}

.footer-container-column {
  display: flex;
  flex-direction: column;
  padding-bottom: 39.41px;
  /* margin-right: 188.67px; */
}

.social-meida {
  display: flex;
  flex-direction: column;
  gap: 22.89px;
  /* font-size: 18px; */
  color: #FFFFFF;
}

.social-meida-title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
}

.business-cooperation {
  padding-top: 30.96px;
  display: flex;
  flex-direction: column;
  gap: 15.47px;
  /* font-size: 18px; */
  color: #FFFFFF;
}

.icon-group {
  display: flex;
  gap: 22.89px;
}

.icon-item {
  position: relative;
  /* 定位参考基准 */
  cursor: pointer;
  /* 鼠标手型 */
  display: inline-block;
  /* 关键：适配图标尺寸，避免定位偏移 */
}

.products-icon-item {
  position: relative;
  /* 定位参考基准 */
  cursor: pointer;
  /* 鼠标手型 */
  display: inline-block;
}

/* 二维码容器：默认隐藏 + 精准定位在图标正上方 */
.drop-content {
  display: none !important;
  /* 强制隐藏，避免其他样式干扰 */
  position: absolute;
  bottom: 140%;
  /* 二维码底部 = 图标顶部（正上方无间距） */
  left: 50%;
  /* 水平居中第一步 */
  transform: translateX(-50%);
  /* 水平居中第二步 */
  z-index: 9999 !important;
  /* 提升层级，避免被 footer 遮挡 */
  padding: 0;
  margin: 0 !important;
  /* 清空默认边距 */
  background: transparent;
}

.drop-content2 {
  display: none !important;
  /* 强制隐藏，避免其他样式干扰 */
  position: absolute;
  top: 120%;
  /* 二维码底部 = 图标顶部（正上方无间距） */
  left: 50%;
  /* 水平居中第一步 */
  transform: translateX(-50%);
  /* 水平居中第二步 */
  z-index: 9999 !important;
  /* 提升层级，避免被 footer 遮挡 */
  padding: 0;
  margin: 0 !important;
  /* 清空默认边距 */
  background: transparent;
}

/* 悬浮触发显示 + 上拉动画 */
.icon-item:hover .drop-content {
  display: block !important;
  /* 强制显示 */
  animation: slideUp 0.3s ease-out forwards;
}

.icon-item:hover .drop-content2 {
  display: block !important;
  /* 强制显示 */
  animation: slideUp 0.3s ease-out forwards;
}

/* 上拉动画：从图标下方滑到正上方 */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    /* 初始在图标下方10px */
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    /* 最终在正上方 */
  }
}

/* 修复二维码盒子样式（强制覆盖全局样式） */
.drop-content .qrcode-box {
  margin-bottom: 0 !important;
  /* 清空底部间距，避免偏移 */
  margin: 0 !important;
  width: 111.33px;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

.drop-content2 .qrcode-box2 {
  margin-bottom: 0 !important;
  /* 清空底部间距，避免偏移 */
  margin: 0 !important;
  width: 180px;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

/* 二维码图片容器 */
.drop-content .top-qrcode-content {
  width: 100%;
  height: 111.33px;
  background: #FFFFFF;
  border: 1px solid #9BCBCB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-content2 .top-qrcode-content2 {
  width: 100%;
  height: 180px;
  background: #1E2D5A;
  border: 1px solid #1E2D5A;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 二维码图片 */
.drop-content .img-qrcode {
  width: 97.6px;
  height: 97.6px;
  object-fit: contain;
  /* 防止图片拉伸 */
}

/* 二维码描述文字 */
.drop-content .bottom-qrcode-desc {
  padding: 4px 0;
  font-size: 8pt;
  color: #1E2D5A;
  text-align: center;
  background: #9BCBCB;
}

.footer-container {
  /* margin-left: 262.79px; margin-right: 258.45px; */
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 992px) {
  .footer-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .picture-content-box-one {
    padding-bottom: 140.73px;
    ;
  }
}

.text-gap {
  display: flex;
  gap: 16.5px;
}

.footer-qrcode {
  display: flex;
  gap: 41.46px;
  /* 保持原有间距，可根据实际调整 */
  align-items: center;
  /* 背景色模拟图片中的深蓝色底，可根据实际页面背景调整 */
  padding: 10px;
}

.qrcode-box {
  margin-bottom: 50.13px;
  display: flex;
  flex-direction: column;
  background: #9BCBCB;
  /* 浅蓝底，匹配图片 */
  border-radius: 16px;
  /* 圆角，匹配图片 */
  width: 111.33px;
  position: relative;
  /* 新增：作为子元素绝对定位的参考 */
  overflow: hidden;
  /* 新增：防止内容溢出圆角 */
}

.top-qrcode-content {
  width: 111.33px;
  height: 111.33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  /* 白色二维码区域，匹配图片 */
  border-radius: 16px;
  /* 仅上半部分圆角，匹配图片 */
  position: relative;
  /* 替换absolute，避免脱离文档流 */
}

.bottom-qrcode-desc {
  /* 移除错位的margin-left */
  margin: 0;
  padding: 4px 0;
  /* 垂直内边距，让文字居中 */
  font-size: 9pt;
  color: #1E2D5A;
  /* 深蓝色文字，匹配图片 */
  text-align: center;
  /* 文字居中，匹配图片 */
  flex: 1;
  /* 自动填充剩余高度 */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.bottom-qrcode-desc2 {
  /* 移除错位的margin-left */
  margin: 0;
  padding: 4px 0;
  /* 垂直内边距，让文字居中 */
  font-size: 10pt;
  color: #FFFFFF;
  background: #1E2D5A;
  /* 深蓝色文字，匹配图片 */
  text-align: center;
  /* 文字居中，匹配图片 */
  flex: 1;
  /* 自动填充剩余高度 */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.img-qrcode {
  width: 97.6px;
  height: 97.6px;
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  display: block;
  /* width: 107.01px; */
}

.footer-sign {
  display: flex;
  border-top: 1px solid #95959536;
  padding-top: 10px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: #B3B3B3;
}

.footer-sign-text {
  text-align: center;
}

.fotter-label-text-group {
  display: flex;
  flex-wrap: wrap;

  gap: 60px;
}

.footer-menu-link {
  color: #FFFFFF;
  font-weight: var(--font-weight-light);
  font-size: 10pt;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
}

.site-footer .social-icon-link {
  margin-top: 4px;
}

.site-footer .social-icon-link:hover,
.footer-menu-link:hover {
  color: var(--white-color);
}

.copyright-text {
  font-size: var(--copyright-text-font-size);
}

/*--------------------------------------- SOCIAL ICON -----------------------------------------*/
.social-icon {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 34.54px;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: #6c757d;
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

.col-81 {
  flex: 0 0 auto;
  /* width: 66.6666666667%; */
}

/*--------------------------------------- RESPONSIVE STYLES -----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 46px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 20px;
    padding-bottom: 20px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 20px;
  }

  .lead {
    font-size: 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-top: 1rem;
  }

  .site-header {
    background-position: bottom;
  }

  #cart-modal .modal-header .btn-close {
    margin: 22px 14px;
  }

  .custom-btn {
    font-size: 7px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .custom-btn2 {
    font-size: 7px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .slick-slideshow .custom-btn {
    margin-top: 5px;
    padding-right: 13px;
    padding-left: 13px;
  }

  .drop-content2 {
    top: -80%;
    left: 55%;
  }

  .slick-slideshow .custom-btn2 {
    margin-top: 60px;
    padding-right: 13px;
    padding-left: 13px;
  }

  .social-login,
  .div-separator {
    width: 75% !important;
  }

  #cart-modal .modal-footer .row {
    width: 100% !important;
  }

  .site-header.section-padding,
  .section-padding {
    padding-top: 1rem;
    padding-bottom: 4rem;
  }

  .site-header-image.section-padding {
    padding-bottom: 0;
  }

  .header-info {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .header-image {
    position: relative;
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
  }

  .slick-testimonial-caption {
    padding: 6rem 3rem 4rem 3rem;
  }

  .slick-slideshow .slick-dots li {
    width: 25px;
    height: 25px;
  }

  .modal-header {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .modal-body {
    padding: 2rem;
  }

  #cart-modal .modal-footer {
    padding-right: 0;
    padding-left: 0;
  }

  #cart-modal .modal-body {
    padding: 4rem 2rem 2rem 2rem;
  }

  .full-image-img {
    bottom: 0;
  }

  .lead-text-title {
    display: flex;
    font-size: 28px;
    letter-spacing: 4.79px;
    justify-content: center;
    /* font-size: 30px; */
  }

  .lead-text {
    justify-content: flex-start;
    font-size: 10pt;
  }

  .lead-text-bold {
    flex-shrink: 0;
    letter-spacing: 3px;
    font-size: 10pt;
  }

  .lead-text-detail-group {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    
  }

  .fotter-label-text-group {
    justify-content: center;
    gap: 50px;
  }

  .footer-qrcode {
    width: 100%;
    padding-top: 50px;
    justify-content: center;
  }

  .footer-container-column {
    width: 100%;
    justify-content: center;
  }

  .livai-icon-img,
  .social-meida-title,
  .social-meida,
  .icon-group,
  .business-cooperation-title,
  .business-cooperation-phone {
    display: flex;
    justify-content: center;
  }

  /* .social-meida-title{
    font-size: 24px;
  } */


  .drop-content2 .qrcode-box2 {
    width: 70px;
    height: auto;
  }

  .drop-content2 .top-qrcode-content2 {
    width: 70px;
    height: auto;
  }

  .bottom-qrcode-desc2 {
    font-size: 8px;
  }

  .mb-51 {
    font-size: 28px;
  }

  .img-fluid2 {
    width: 90%;
  }

  .text-primary{
    font-size: 30px;
  }
  .text-dark{
    font-size: 30px;
  }
}