@charset "utf-8";

/* 轮播图容器样式 */
.swiper-container {
  width: 1200px; /* 根据页面显示区域宽度调整 */
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
}

/* 单个轮播图样式 */
.swiper-container .swiper {
  flex: 1;
  overflow: hidden;
  min-height: 0;
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
}

.swiper-container .swiper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 保持图片完整显示 */
}

/* 轮播图滑块样式 */
.swiper-container .swiper-slide {
  float: none !important;
  display: block;
}

/* 水平轮播图滑块样式 */
.floatL .swiper-slide {
  float: left !important;
  display: block;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .swiper-container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
