You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1 anno fa
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .wux-pagination {
  2. display: block;
  3. width: 100%;
  4. height: 88rpx;
  5. overflow: hidden;
  6. box-sizing: border-box;
  7. position: relative
  8. }
  9. .wux-pagination__prev {
  10. position: absolute;
  11. left: 20rpx;
  12. top: 0
  13. }
  14. .wux-pagination__next {
  15. position: absolute;
  16. right: 20rpx;
  17. top: 0
  18. }
  19. .wux-pagination__number {
  20. width: 100%;
  21. height: 88rpx;
  22. line-height: 88rpx;
  23. margin: 0 auto;
  24. text-align: center
  25. }
  26. .wux-pagination__active {
  27. display: inline;
  28. color: #387ef5
  29. }
  30. .wux-pagination__pointer {
  31. width: 100%;
  32. height: 88rpx;
  33. line-height: 88rpx;
  34. margin: 0 auto;
  35. text-align: center
  36. }
  37. .wux-pagination__dot {
  38. width: 16rpx;
  39. height: 16rpx;
  40. display: inline-block;
  41. margin: 0 4rpx;
  42. border-radius: 50%;
  43. background: #ccc
  44. }
  45. .wux-pagination__dot--active {
  46. background: #888
  47. }
  48. .wux-pagination__button {
  49. display: inline-block;
  50. margin: 0
  51. }