index.wxss 514 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @import '/app.wxss';
  2. .swiper {
  3. width: 100%;
  4. height: 282rpx;
  5. position: relative;
  6. }
  7. .swiper swiper {
  8. width: 100%;
  9. height: 100%;
  10. position: relative;
  11. }
  12. .swiper swiper .slide-image {
  13. width: 100%;
  14. height: 100%;
  15. }
  16. .swiper .dots {
  17. position: absolute;
  18. right: 40rpx;
  19. bottom: 20rpx;
  20. }
  21. .swiper .dots .dot {
  22. width: 12rpx;
  23. height: 12rpx;
  24. border: 2rpx solid #fff;
  25. border-radius: 50%;
  26. margin-right: 15rpx;
  27. }
  28. .swiper .dots .dot.active {
  29. border-color: #e93323;
  30. background-color: #e93323;
  31. }