1
0

images.wxss 548 B

12345678910111213141516171819202122232425262728293031323334
  1. .loadmore {
  2. height: 35px;
  3. width: 100%;
  4. display: flex;
  5. justify-content: center;
  6. align-items: center;
  7. }
  8. .loadmore text{
  9. font-size: 13px;
  10. color: #bfbfbf;
  11. font-weight: bold;
  12. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  13. }
  14. .icon{
  15. width: 25px;
  16. height: 25px;
  17. margin-right: 10px;
  18. }
  19. .active {
  20. animation: weuiLoading 0.6s steps(12, end) infinite;
  21. }
  22. @keyframes weuiLoading {
  23. 0% {
  24. transform: rotate3d(0, 0, 1, 0deg);
  25. }
  26. 100% {
  27. transform: rotate3d(0, 0, 1, 360deg);
  28. }
  29. }