.swiper-fu .swiper-container{
	position: relative;
    --swiper-theme-color: #ff6600;
    --swiper-pagination-color: #00ff33;/* 两种都可以 */
    --swiper-theme-color: #ff6600;/* 设置Swiper风格 */
    --swiper-navigation-color: #00ff33;/* 单独设置按钮颜色 */
    --swiper-navigation-size: 30px;/* 设置按钮大小 */
  }

.swiper-fu .swiper-slide{
	  width: 100%;
	  height: 0;
	  padding-bottom: 36%;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-size: 100%;
  }
.swiper-pagination-index{
	text-align: center;
	position: absolute;
	z-index: 1000;
}
  @media screen and (max-width: 800px) {
  .swiper-fu .swiper-slide {
  	width: 100%;
	  padding-bottom: 48%;
	background-size: cover;
  }
  }