
img{
  transition: transform 0.3s ease;
}
.prd-h1 {
  font-family: "HarmonyOS Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
  line-height: 40px;
  text-align: center;
  color: #242631;
}
.prd-t{

font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 700;
font-size: 34px;
line-height: 40px;
text-align: center;
color: #242631;
}
.prd-banner {
  width: 100%;
  height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.prd-banner-title {
  position: absolute;
  top: 94px;
  font-family: "HarmonyOS Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
  line-height: 40px;
  text-align: center;
  color: #ffffff !important;
}

/* 为ProductInfo页面的banner标题添加样式 */
.prd-banner .titSh h2 b.prd-banner-title {
  color: #ffffff !important;
  position: relative;
}
.bg-linear {
  background: linear-gradient(
    180deg,
    rgba(237, 241, 247, 0) 0%,
    rgba(195, 219, 255, 0.6) 30.87%,
    rgba(195, 219, 255, 0.6) 69.47%,
    rgba(237, 241, 247, 0) 100%
  );
}
.prd-hero-section {
  background: linear-gradient(90deg, #1B2439 0%, #2D6389 100%);;
  position: relative;
  overflow: hidden;
}

.prd-container {
  margin: 0 auto;
  height: 100%;
  max-width: 1300px;
  position: relative;
}

.prd-hero {
  display: flex;
  align-items: center;
  padding: 20px 0 60px;
  height: 420px;
}

.prd-hero__content {
  flex: 0 0 51%;
}

.prd-hero__title {
  font-family: "HarmonyOS Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 46px;
  line-height: 124%;
  color: #ffffff;
}

.prd-hero__description {
  font-family: "HarmonyOS Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #ffffff;
  margin: 26px 0 50px;
}

.prd-hero__button {
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.prd-hero__button:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.prd-hero__button-text {
  font-size: 16px;
  font-weight: 500;
}

.prd-hero__button-icon {
  font-size: 16px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.prd-hero__button:hover .prd-hero__button-icon {
  transform: translateX(2px);
}

.prd-hero__image-wrapper {
  flex: 0 0 60%;
  max-width: 60%;
  position: relative;
  perspective: 800px;
}

.prd-hero__image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.4) 0%,
    rgba(37, 99, 235, 0.2) 30%,
    rgba(37, 99, 235, 0.1) 50%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.prd-hero__image {
  position: relative;
  height: auto;
  max-width: 629px;
  z-index: 2;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.prd-hero__image:hover {
  transform:  scale(1.05);
}

/* Bottom Navigation */
.prd-bottom-nav {
  background-color: #2B3953;
  height: 65px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.prd-bottom-nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.prd-bottom-nav__item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
}

.prd-bottom-nav__item--active {
  background: #577099;
}

.prd-bottom-nav__link {
  font-size: 15px;
  font-weight: 500;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  font-family: "HarmonyOS Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  /* or 25px */
  text-align: center;

  color: #ffffff;
}

.prd-bottom-nav__item--active .prd-bottom-nav__link {
  color: #ffffff;
}

.prd-bottom-nav__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .prd-hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 80px 0 40px;
  }

  .prd-hero__content,
  .prd-hero__image-wrapper {
    flex: none;
    max-width: 100%;
  }

  .prd-hero__title {
    font-size: 36px;
    max-width: none;
  }

  .prd-hero__description {
    max-width: none;
  }

  .prd-hero__image {
    transform: none;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
  }

  .prd-bottom-nav__list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .prd-bottom-nav__link {
    padding: 0 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .prd-hero {
    padding: 60px 0 20px;
  }

  .prd-hero__title {
    font-size: 28px;
  }

  .prd-hero__description {
    font-size: 14px;
  }

  .prd-hero__button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .prd-bottom-nav__link {
    padding: 0 16px;
    font-size: 13px;
  }
}
/*  banner*/

/* Carousel Section */
.prd-carousel-section {
  padding: 50px 0;
  background-color: #F7F7F7;
}

.prd-carousel-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.prd-carousel {
  position: relative;
  width: 100%;
  height: 188px;
}

.prd-carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.prd-carousel__slide.active {
  opacity: 1;
}

.prd-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carousel Controls */
.prd-carousel-wrapper::before,
.prd-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #e6ebfa;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.prd-carousel-wrapper::before {
  left: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231976D2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15,18 9,12 15,6'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.prd-carousel-wrapper::after {
  right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231976D2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9,18 15,12 9,6'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.prd-carousel-wrapper:hover::before,
.prd-carousel-wrapper:hover::after {
  background-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

/* Carousel Dots */
.prd-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.prd-carousel-dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.prd-carousel-dot.active {
  background-color: #ffffff;
  width: 32px;
}

.prd-carousel-dot:hover {
  background-color: #ffffff;
  width: 28px;
}

/* Smooth Transitions */
.prd-carousel__slide.fade-in {
  opacity: 1;
}

.prd-carousel__slide.fade-out {
  opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .prd-carousel-section {
    padding: 20px 0;
  }

  .prd-carousel {
    height: 300px;
  }

  .prd-carousel-wrapper::before,
  .prd-carousel-wrapper::after {
    width: 28px;
    height: 28px;
  }

  .prd-carousel-wrapper::before {
    left: 8px;
  }

  .prd-carousel-wrapper::after {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .prd-carousel {
    height: 250px;
  }
}

.titSh h2 b{
  color: #242631;
}
/* video */

/* Overview Section */
.prd-overview-section {
  background: #ffffff;
}

.prd-overview-content {
  padding: 60px 110px;
  /* background: #ffffff; */
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  margin: 0 auto;
  text-align: center;


}
.prd-overview-section--nbg{
  background-image:url("/aivon/static/img/product/video-bg.png");
  background-position: 494px -4px;
  background-repeat: no-repeat;
  padding-bottom: 30px;
}
.prd-overview__title {
  font-size: 32px;
  font-weight: 600;
  color: #1a202c;
  text-align: center;
  margin-bottom: 25px;
  margin-top: 80px;
  line-height: 1.2;
}

.prd-overview__description {
  margin-bottom: 24px;
}

.prd-overview__description p {
  font-size: 16px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  max-width: 100%;
  font-family: "HarmonyOS Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  /* or 157% */
  text-align: left;

  color: #26272a;
}

/* Video Player */
.prd-video-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;


}

.prd-video-player {
  position: relative;
  width: 100%;
  width: 525px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prd-video-player:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.prd-video__element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prd-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.63);
  transition: background 0.3s ease;
}

.prd-video-player:hover .prd-video__overlay {
  background: rgba(0, 0, 0, 0.4);
}

.prd-video__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9d9d9;
  transition: all 0.3s ease;
  z-index: 2;
  background: rgba(255, 255, 255, 0.2);
}

.prd-video-player:hover .prd-video__play-button {
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) scale(1.1);
}

.prd-video__play-button svg {
  margin-left: 4px; /* Adjust play icon position */
}

/* Responsive Design */
@media (max-width: 768px) {
  .prd-overview-section {
    padding: 40px 0;
  }

  .prd-overview__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .prd-overview__description p {
    font-size: 15px;
    line-height: 1.7;
  }

  .prd-video-wrapper {
    margin-top: 30px;
  }

  .prd-video__play-button {
    width: 60px;
    height: 60px;
  }

  .prd-video__play-button svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .prd-overview-section {
    padding: 30px 0;
  }

  .prd-overview__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .prd-overview__description {
    margin-bottom: 30px;
  }

  .prd-overview__description p {
    font-size: 14px;
  }

  .prd-video-wrapper {
    margin-top: 24px;
  }

  .prd-video__play-button {
    width: 50px;
    height: 50px;
  }

  .prd-video__play-button svg {
    width: 20px;
    height: 20px;
  }
}
/* Stack-ups Section */
.prd-stackups-section {
  padding: 90px 0;
  background: linear-gradient(
    180deg,
    rgba(237, 241, 247, 0) 0%,
    rgba(195, 219, 255, 0.6) 30.87%,
    rgba(195, 219, 255, 0.6) 69.47%,
    rgba(237, 241, 247, 0) 100%
  );
}

.prd-stackups__main-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a202c;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* Stack-ups Card */
.prd-stackups-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-width: 1300px;
  padding: 40px 40px 40px 60px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  margin: 0 auto;
  min-height: 280px;
}
.prd-stackups-card:hover .prd-stackups-card__img{
  transform: scale(1.05);
}
.prd-stackups-card__image {
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 437px;
  height: 302px;
  /* padding: 18px; */
  border: 1px solid #d9d9d9;
  border-radius: 6px;
}

.prd-stackups-card__img {
  width: 437px;
  height: 302px;
  object-fit: cover;
  display: block;
  max-width: 100%;
  background-color: transparent;
}

.prd-stackups-card__content {
  max-height: 322px;
  flex: 1;
  padding: 0px 20px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.prd-stackups-card__title {
  font-family: "HarmonyOS Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 24px;
  color: #26272a;
  margin: 0px 0 20px 0;
}

.prd-stackups-card__text {
  font-size: 16px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 16px;
}

.prd-stackups-card__text:last-of-type {
  margin-bottom: 24px;
}

.prd-stackups-card__link {
  display: inline-flex;
  align-items: center;
  color: #0066ff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 40px;
  gap: 12px;
}

.prd-stackups-card__link:hover {
  gap: 12px;
  color: #0052cc;
}

.prd-stackups-card__link-text {
  line-height: 1;
}

.prd-stackups-card__link-icon {
  transition: transform 0.3s ease;
}

.prd-stackups-card__link:hover .prd-stackups-card__link-icon {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 968px) {
  .prd-stackups-card {
    flex-direction: column;
  }

  .prd-stackups-card__image {
    flex: none;
    width: 100%;
    min-height: 300px;
  }

  .prd-stackups-card__content {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .prd-stackups-section {
    padding: 40px 0;
  }

  .prd-stackups__main-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .prd-stackups-card__image {
    min-height: 250px;
  }

  .prd-stackups-card__title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .prd-stackups-card__text {
    font-size: 13px;
  }

  .prd-stackups-card__link {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .prd-stackups-section {
    padding: 30px 0;
  }

  .prd-stackups__main-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .prd-stackups-card {
    border-radius: 8px;
  }

  .prd-stackups-card__image {
    min-height: 200px;
  }

  .prd-stackups-card__content {
    padding: 24px 20px;
  }

  .prd-stackups-card__title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .prd-stackups-card__text {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .prd-stackups-card__text:last-of-type {
    margin-bottom: 20px;
  }
}

/* Cards Grid */
.prd-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Card */
.prd-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  border: 1px solid #BFD7FF;
}

.prd-card:hover {
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); */
  background: #eff5ff;
  transform: translateY(-2px);
  /* border-color: #d1d5db; */
}

.prd-card__icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.prd-card__icon svg {
  width: 24px;
  height: 24px;
}

.prd-card__title {
  font-family: "HarmonyOS Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  /* or 133% */
  margin-bottom: 22px;
  color: #26272a;

  display: flex;
  align-items: center;
  gap: 12px;
}

.prd-card__text {
  font-family: "HarmonyOS Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  padding: 0 16px;
  line-height: 22px;
  color: #26272a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .prd-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .prd-cards-section {
    padding: 40px 0;
  }

  .prd-cards-grid {
    gap: 16px;
  }

  .prd-card {
    padding: 24px 20px;
  }

  .prd-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .prd-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .prd-card__title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .prd-card__text {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .prd-cards-section {
    padding: 30px 0;
  }

  .prd-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .prd-card {
    padding: 20px 16px;
  }

  .prd-card__title {
    font-size: 14px;
  }

  .prd-card__text {
    font-size: 12px;
    line-height: 1.5;
  }
}
/* tab */
/* Product Section */

  /* Tab Navigation */
  .prd-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  
  .prd-tabs__item {
    background: transparent;
    border: none;
    padding: 16px 0;
    margin: 0 32px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
  }
  
  .prd-tabs__item:hover {
    color: #2563EB;
  }
  
  .prd-tabs__item--active {
    color: #2563EB;
    border-bottom-color: #2563EB;
    font-weight: 700;
  }
  
  /* Tab Content */
  .prd-tab-content {
    position: relative;
  }
  
  .prd-tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .prd-tab-panel--active {
    display: block;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Product Card */
  .prd-product-card {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
  }
  
  .prd-product-card__image {
    flex: 0 0 530px;
    height: 270px;
    position: relative;
    overflow: hidden;
  }
  
  .prd-product-card__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .prd-product-card__image:hover .prd-product-card__img{
    transform: scale(1.05);
  }
  .prd-product-card__content {
    flex: 1;
    padding: 24px 40px 24px 10px;
  }
  
  .prd-product-card__title {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.3;
  }
  
  .prd-product-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .prd-product-card__item {
    padding: 16px 0 ;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .prd-product-card__item p {
    font-size: 16px; /* 修改字体大小为16px，可根据需要调整 */
    line-height: 1.5;
  }
  
  .prd-product-card__item:last-child {
    border-bottom: none;
  }
  
  .prd-product-card__code {
    font-size: 15px;
    font-weight: 600;
    color: #2563EB;
    display: inline-block;
  }
  
  .prd-product-card__desc {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .prd-product-card {
      flex-direction: column;
      gap: 32px;
    }
    
    .prd-product-card__image {
      flex: none;
      width: 100%;
      max-width: 500px;
    }
  }
  
  @media (max-width: 768px) {
    .prd-product-section {
      padding: 40px 0;
    }
    
    .prd-tabs {
      flex-direction: column;
      border-bottom: none;
      gap: 8px;
      margin-bottom: 32px;
    }
    
    .prd-tabs__item {
      padding: 12px 16px;
      text-align: left;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      margin-bottom: 0;
    }
    
    .prd-tabs__item--active {
      background: #EBF5FF;
      border-color: #2563EB;
    }
    
    .prd-product-card {
      gap: 24px;
    }
    
    .prd-product-card__image {
      max-width: 100%;
    }
    
    .prd-product-card__title {
      font-size: 20px;
      margin-bottom: 20px;
    }
    
    .prd-product-card__item {
      padding: 12px 0;
    }
    
    .prd-product-card__code {
      font-size: 14px;
    }
    
    .prd-product-card__desc {
      font-size: 13px;
    }
  }
  
  @media (max-width: 640px) {
    .prd-product-section {
      padding: 30px 0;
    }
    
    .prd-tabs__item {
      font-size: 14px;
      padding: 10px 12px;
    }
    
    .prd-product-card__title {
      font-size: 18px;
      margin-bottom: 16px;
    }
    
    .prd-product-card__code {
      font-size: 13px;
    }
    
    .prd-product-card__desc {
      font-size: 12px;
    }
  }
  /* table */
  /* Table Section */

  
.prd-table-wrapper {
  background: #ffffff;
  border-radius: 10px 10px 0 0;
  max-height: 400px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  position: relative;
  transition: max-height 0.3s ease;
}
  
  .prd-table-wrapper.prd-table-wrapper--expanded {
    /* max-height 由 JS 控制，这里移除以修复动画问题 */
  }
  
  .prd-table-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .prd-table-wrapper.prd-table-wrapper--expanded::after {
    opacity: 0;
  }
  
  /* Table */
  .prd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    box-sizing: border-box;
  }
  
  /* Table Head */
  .prd-table__head {
    background: #f7f7f7;
  }
  .prd-table__header:first-child {
    border-radius: 10px 0 0 0;
  }
  .prd-table__header:last-child {
    border-radius: 0 10px 0 0;
  }
  .prd-table__header {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #1a202c;
    border: 1px solid #e5e7eb;


font-family: 'HarmonyOS Sans';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 22px;
/* identical to box height, or 157% */

color: #26272A;


  }
  
  .prd-table__header--center {
    text-align: center;
  }
  
  .prd-table__model {
    padding: 12px;
    text-align: center;
    font-weight: 600;
    background: #f7f7f7;
    border: 1px solid #e5e7eb;
    font-size: 13px;


position: absolute;
width: 128px;
height: 22px;
left: 741.02px;
top: 2238px;
  }
  
  /* Table Body */
  .prd-table__body tr {
    border-bottom: 1px solid #e5e7eb;
  }
  
  .prd-table__body tr:hover {
    background: #f9fafb;
  }
  
  .prd-table__cell {
    padding: 14px 12px;
    color: #4a5568;
    border: 1px solid #e5e7eb;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .prd-table__cell:first-child {
    font-weight: 500;
    color: #1a202c;
  }
  
  /* Table Toggle Button */
  .prd-table-toggle {
    text-align: center;
    padding: 16px 0;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 12px 12px;
  }
  
  .prd-table-toggle__btn {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: #2563EB;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
  }
  
  .prd-table-toggle__btn:hover {
    color: #1d4ed8;
    text-decoration: underline;
  }
  
  .prd-table-toggle__btn.prd-table-toggle__btn--hidden {
    display: none;
  }
  
  .prd-table-toggle__icon {
    transition: transform 0.3s ease;
    width: 12px;
    height: 12px;
  }
  
  .prd-table-toggle__btn.prd-table-toggle__btn--expanded .prd-table-toggle__icon {
    transform: rotate(180deg);
  }
  .prd-table-section{
    margin-bottom: 62px;
  }

/* Capability Carousel Styles */
.aiv-capability-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.aiv-capability-carousel__wrapper {
  position: relative;
  width: 100%;
}

.aiv-capability-carousel__container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 200%; /* 2 slides */
}

.aiv-capability-carousel__slide {
  width: 50%; /* Each slide takes half of container */
  flex-shrink: 0;
}

.aiv-capability-carousel__slide:not(.aiv-capability-carousel__slide--active) {
  opacity: 0.7;
}

.aiv-capability {
  display: flex;
  gap: 36px;
}

/* Navigation Arrows */
.aiv-capability-carousel__nav {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #eeeeee;
  color: #242631;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0.8;
}

.aiv-capability-carousel__nav:hover {
  background: #eeeeee;
  transform: translateY(-50%) scale(1.1) translateX(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.aiv-capability-carousel__nav--prev {
  left: -60px;
  transform: translateY(-50%) translateX(-100%);
  animation: slideInLeft 0.5s ease-out forwards;
}

.aiv-capability-carousel__nav--next {
  right: -60px;
  transform: translateY(-50%) translateX(100%) ;
  animation: slideInRight 0.5s ease-out forwards;
}

.aiv-capability-carousel__nav--prev:hover {
  transform: translateY(-50%) translateX(-8px) scale(1.1);
}

.aiv-capability-carousel__nav--next:hover {
  transform: translateY(-50%) translateX(8px) scale(1.1);
}

/* Keyframe animations for navigation arrows */
@keyframes slideInLeft {
  from {
    transform: translateY(-50%) translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(-50%) translateX(0);
    opacity: 0.8;
  }
}

@keyframes slideInRight {
  from {
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateY(-50%) translateX(0);
    opacity: 0.8;
  }
}

/* Show arrows on carousel hover */
.aiv-capability-carousel:hover .aiv-capability-carousel__nav {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Dots Indicator */
.aiv-capability-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.aiv-capability-carousel__dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(36, 38, 49, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.aiv-capability-carousel__dot--active {
  background: #242631;
  width: 40px;
}

.aiv-capability-carousel__dot:hover {
  background: rgba(36, 38, 49, 0.6);
  width: 36px;
}

/* Responsive Design for Carousel */
@media (max-width: 1024px) {
  .aiv-capability {
    gap: 24px;
  }
  
  .aiv-capability-carousel__nav {
    width: 40px;
    height: 40px;
  }
  
  .aiv-capability-carousel__nav--prev {
    left: -20px;
  }
  
  .aiv-capability-carousel__nav--next {
    right: -20px;
  }
}

@media (max-width: 768px) {
  .aiv-capability {
    flex-direction: column;
    gap: 20px;
  }
  
  .aiv-capability__card {
    max-width: 100%;
  }
  
  .aiv-capability-carousel__nav {
    width: 36px;
    height: 36px;
  }
  
  .aiv-capability-carousel__nav--prev {
    left: -18px;
  }
  
  .aiv-capability-carousel__nav--next {
    right: -18px;
  }
  
  .aiv-capability-carousel__dots {
    margin-top: 30px;
  }
}
  /* Responsive Design */
  @media (max-width: 768px) {
    .prd-table-section {
      padding: 40px 0;
    }
    
    .prd-table-wrapper {
      border-radius: 8px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    .prd-table {
      font-size: 11px;
      min-width: 600px;
    }
    
    .prd-table__header {
      padding: 12px 8px;
      font-size: 11px;
      white-space: nowrap;
    }
    
    .prd-table__size {
      font-size: 12px;
      padding: 4px 12px;
    }
    
    .prd-table__subtitle {
      font-size: 11px;
    }
    
    .prd-table__model {
      padding: 10px 8px;
      font-size: 11px;
      white-space: nowrap;
    }
    
    .prd-table__cell {
      padding: 10px 8px;
      font-size: 10px;
      white-space: nowrap;
    }
  }
  
  @media (max-width: 640px) {
    .prd-table-section {
      padding: 30px 0;
    }
    
    .prd-container {
      padding: 0 10px;
    }
    
    .prd-table-wrapper {
      border-radius: 8px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    .prd-table {
      font-size: 10px;
      min-width: 500px;
    }
    
    .prd-table__header,
    .prd-table__model,
    .prd-table__cell {
      padding: 8px 6px;
      white-space: nowrap;
    }
  }
  
/* 锚点定位偏移已在 JavaScript 中处理 */
  