.home-product-container {
  position: relative;
  /* height: 85vh; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0;
  gap: 80px;
}
.product-module {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* 左侧内容区域 */
.home-product-content-left {
  width: 31%;
  height: 100%;
  z-index: 10;
  position: relative;
  text-align: center;
}
.home-product-text-carousel {
  position: absolute;
  width: 100%;
  top: 35%;
  /* min-height: 400px; */
}
.home-product-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-product-carousel-item.home-product-active {
  z-index: 99;
  opacity: 1;
  transform: translateY(0);
}
.home-product-desc {
  font-size: var(--text-size);
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 25px;
  max-width: none;
  font-family: var(--font-family);
}
.home-product-carousel-item .home-product-subtitles {
  font-size: var(--subtitle-size);
  color: #ccc;
  letter-spacing: -0.01em;
}
.home-product-title {
  font-size: var(--title-size-small);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.home-product-highlight {
  color: #e74c3c;
  font-weight: 500;
}
.home-product-subtitle {
  font-size: var(--text-size);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 300;
}
.home-product-description {
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.5;
}
.home-product-container .product-features .feature {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
.home-product-cta-button {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}
.home-product-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}
/* 右侧产品展示区域 */
.home-product-content-right {
  /* flex: 0 0 calc(100% - 640px); */
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 5;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 40px 0;
  position: relative;
  min-height: 30vw;
  margin-left: 0;
  /* 调试 */
  /* left: -35%; */
}
.home-product-swiper {
  width: 135%;
  height: 300px;
  overflow: visible;
  position: relative;
  margin-left: 0;
  padding-left: 0;
}
.home-product-swiper .swiper-wrapper {
  align-items: flex-end;
  height: 100%;
  padding-bottom: 0;
}
.home-product-swiper .swiper-slide {
  width: 100px;
  /* height: 100px; */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  /* margin-right: 20px; */
  z-index: 2;
}
.home-product-item {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  /* overflow: hidden; */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-end;
}
.swiper-slide.swiper-slide-active .home-product-item {
  padding: 0;
}
.swiper-slide img {
  width: 100%;
  /* border: 1px solid red !important; */
}
.swiper-slide:not(.swiper-slide-active) .home-product-item {
  opacity: 0.7;
  transform: scale(1);
}
.swiper-slide:not(.swiper-slide-active):hover .home-product-item {
  opacity: 1;
  transform: scale(1.05);
}
.swiper-slide-active {
  width: 0 !important;
  z-index: 1;
  position: relative;
  align-self: flex-end;
  margin-left: 0 !important;
  opacity: 0;
  /* margin-right: 20px !important; */
}
.swiper-slide-active .home-product-item {
  /* border-color: #e74c3c; */
  opacity: 1;
  transform: scale(1);
  /* box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4); */
  /* width: 200px;
  height: 200px; */
}
.swiper-slide-active .home-product-item img {
  position: relative;
}
.swiper-slide {
  /* border: 1px solid blue; */
}
.swiper-slide-active .home-product-item img {
  /* max-height: 200%; */
}
.home-product-container .swiper-slide-prev img {
  display: none;
}
.swiper-slide-next .home-product-item {
  /* padding: 0 0 0 30%; */
}
.home-product-item.home-product-enlarged {
  transform: scale(1.1) !important;
  z-index: 20;
  /* box-shadow: 0 25px 60px rgba(231, 76, 60, 0.6) !important; */
}
.home-product-item img {
  /* max-height: 200px; */
  object-fit: contain;
  transition: transform 0.4s ease;
}
.home-product-item:hover img {
  transform: scale(1.05);
}
/* 背景装饰元素 */
.home-product-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.home-product-bg-shape {
  position: absolute;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
  border-radius: 50%;
  animation: home-product-float 6s ease-in-out infinite;
}
.home-product-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}
.home-product-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}
.home-product-shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}
@keyframes home-product-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
/* 响应式设计 */
@media (max-width: 1200px) {
  .home-product-container {
    gap: 80px;
  }
  .home-product-content-left {
    flex: 0 0 224px;
    max-width: 224px;
    /* margin-right: 20px; */
  }
  /* .swiper-slide-active {
    width: 250px !important;
    height: 188px !important;
  } */
  .swiper-slide {
    max-width: 150px !important;
  }
  .swiper-slide-active .home-product-item {
    width: 250px;
    height: 188px;
  }
}
@media (max-width: 768px) {
  .home-product-container {
    flex-direction: column;
    padding: 40px 0;
    gap: 40px;
    justify-content: space-between;
  }
  .home-product-content-left {
    flex: none;
    max-width: 100%;
    text-align: center;
    margin-right: 0;
  }
  .home-product-content-right {
    flex: none;
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }
  .home-product-swiper {
    height: 200px;
  }
  .home-product-swiper .swiper-slide {
    /* width: 80px;
    height: 60px; */
    /* margin-right: 10px; */
  }
  /* .swiper-slide-active {
    width: 200px !important;
    height: 150px !important;
  } */
  /* 
  .swiper-slide-active .home-product-item {
    width: 200px;
    height: 150px;
  } */
  .home-product-item.home-product-enlarged {
    transform: scale(1.05);
  }
  .industry-content .industry-box .indystry-left-title {
    margin-bottom: 0;
  }
}
.industry-box {
  width: 100%;
}
.industry-box .indystry-left-title {
  /* display: inline-block;
  width: 40%; */
  font-size: var(--title-size-small);
  margin-bottom: 100px;
}
.industry-box .indystry-right-content {
  /* display: inline-block;
  width: 54%; */
}
.carousel-dots .dot {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  justify-content: center !important;
  flex-direction: column;
  min-height: 75px;
}
@media (max-width: 768px) {
  .carousel-dots .dot {
    min-height: 52px;
  }
}
.industry-module .slide-content-full {
  padding: 20px 0;
}
.carousel-dots .dot span {
  display: block;
}
.carousel-dots .dot img {
  width: 25px;
}
.home-product-content-rights {
  width: 65%;
}
.home-product-content-rights-img-wrap {
  vertical-align: bottom;
  height: 100%;
  display: inline-block;
  width: 60%;
  text-align: center;
  position: relative;
}
@media (max-width: 1200px) {
  .home-product-content-rights-img-wrap {
    width: 59%;
  }
}
@media (max-width: 768px) {
  .product-module {
    height: 56vh;
  }
  .product-module .home-product-content-left {
    width: 100%;
    height: auto;
  }
  .home-product-content-rights {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 768px) and (max-width: 1200px) {
  .home-product-content-rights-img-wrap {
    width: 59%;
  }
}
.home-product-content-rights-img-wrap img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  max-width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.home-product-content-rights-img-wrap img.active {
  width: 100%;
  opacity: 1;
  transform: translateY(0);
}
.home-product-content-rights .swiper-wraps {
  width: 39%;
  /* border: 1px solid red; */
  display: inline-block;
}
.home-product-container .industry-buttons {
  justify-content: center;
}
.home-product-container .public-btn {
  margin-top: 20px;
}
.home-industry-carousel-full-width {
  width: 100%;
}
@media (max-width: 480px) {
  .carousel-wrapper.carousel-wrapper-industry {
    margin: 0;
  }
}
