/* Swiper容器尺寸 */
#swiper-news .swiper-container {
  width: 100%;
  height: auto;
}

/* 轮播项布局 */
#swiper-news .swiper-slide {
  display: flex;
  flex-direction: column; /* 垂直排列图片和文字 */
  align-items: center;
}

/* 图片样式 */
#swiper-news .swiper-slide img {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

/* 文字描述样式（图片下方） */
#swiper-news .swiper-caption {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

/* 左右箭头样式（Swiper 3.4.1默认样式可能已包含，可根据需要调整） */
/* 隐藏 swiper-news 的左右箭头 */
#swiper-news .swiper-button-prev,
#swiper-news .swiper-button-next {
  display: none !important;
}

#swiper-news .swiper-button-prev,
#swiper-news .swiper-button-next {
  background-color: rgba(0,0,0,0.3);
  color: #fff;
  width: 30px;
  height: 30px;
  background-size: 10px 20px; /* 调整箭头图标大小 */
}