/* img{
    width: 100%;
    height: 100%;
} */
/* Our Approach */
/* 标题 */
/* .section-head{
    padding-top: 20px;
} */
/* .ApproachSER-img{
    width: 100%;
    height: 450px;
} */

/* Swiper轮播图样式 - 简化版 */
.swiper {
  width: 100%;
  height: 600px; /* 设置固定高度 */
  margin-top: 30px;
  position: relative;
  overflow: hidden; /* 确保轮播项在容器内 */
  /* background-color: #f8fafc; */
  border-radius: var(--radius);
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
}

/* 使用Swiper默认的显示逻辑，不添加额外的透明度或变换效果 */
.swiper-slide {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

/* 确保轮播项内容正确显示 */
.swiper-slide .about-grid {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.swiper-slide .about-points,
.swiper-slide .Historyimg {
  height: 100%;
  overflow: hidden;
}

/* 轮播图导航按钮样式 */
.swiper-button-prev,
.swiper-button-next {
  color: var(--primary);
  background-color: transparent;
  width: auto;
  height: auto;
  box-shadow: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: transparent;
  transform: none;
  transition: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}

/* 轮播图分页指示器样式 */
.swiper-pagination {
  bottom: -20px !important;
}

.swiper-pagination-bullet {
  background-color: var(--soft);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary);
  width: 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: auto;
    height: auto;
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 12px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-points,
  .Historyimg {
    grid-column: span 12 !important;
  }
}