loading.wxss 370 B

1234567891011121314151617181920212223242526272829
  1. .mask {
  2. position: absolute;
  3. height: 100vh;
  4. top: 0;
  5. left: 0;
  6. right: 0;
  7. bottom: 0;
  8. z-index: 999;
  9. }
  10. .loading {
  11. display: flex;
  12. flex-direction: column;
  13. position: absolute;
  14. align-items: center;
  15. width: 100%;
  16. top: 45vh;
  17. }
  18. .loading-icon {
  19. width: 44rpx;
  20. height: 44rpx;
  21. }
  22. .loading-text {
  23. margin-top: 28rpx;
  24. font-size: 28rpx;
  25. color: #333333;
  26. }