index.wxss 382 B

1234567891011121314151617181920212223
  1. /* components/swiper-dots/index.wxss */
  2. .dots{
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. }
  7. .dots>view view{
  8. display: inline-block;
  9. }
  10. .dots .dot{
  11. margin: 0 8rpx;
  12. width: 8rpx;
  13. height: 8rpx;
  14. background: #D8D8D8;
  15. border-radius: 4rpx;
  16. transition: all .6s;
  17. }
  18. .dots .dot.active{
  19. width:32rpx;
  20. border-radius:4rpx;
  21. background: #5575FF;
  22. }