index.wxss 745 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .ant-page-infinite {
  2. position: relative;
  3. width: 100%;
  4. box-sizing: border-box;
  5. }
  6. .ant-page-infinite-content {
  7. width: 100%;
  8. }
  9. .ant-page-infinite-content::-webkit-scrollbar {
  10. display: none;
  11. }
  12. .ant-page-infinite-wrap {
  13. position: absolute;
  14. bottom: 1px;
  15. left: 0;
  16. right: 0;
  17. width: 100%;
  18. height: 3px;
  19. z-index: 2;
  20. pointer-events: none;
  21. }
  22. .ant-page-infinite-area {
  23. position: absolute;
  24. left: 50%;
  25. width: 26px;
  26. height: 3px;
  27. overflow: hidden;
  28. border-radius: 2px / 2;
  29. transform: translateX(-50%);
  30. background-color: #f5f5f5;
  31. }
  32. .ant-page-infinite-move {
  33. position: absolute;
  34. bottom: 0;
  35. left: 0;
  36. width: 50%;
  37. height: 100%;
  38. transition: all 100ms linear;
  39. border-radius: 2px / 2;
  40. background-color: #1677ff;
  41. }