index.wxss 366 B

1234567891011121314151617181920212223
  1. .loading-content {
  2. width: 100%;
  3. height: 100%;
  4. background-color: rgba(0, 0, 0, 0.6);
  5. position: relative;
  6. }
  7. .loading-content.absolute {
  8. position: absolute;
  9. z-index: 1;
  10. left: 0;
  11. top: 0;
  12. }
  13. .loading-content.fixed {
  14. position: fixed;
  15. z-index: 1;
  16. left: 0;
  17. top: 0;
  18. }
  19. .loading-content .loading {
  20. width: 100%;
  21. height: 100%;
  22. visibility: visible;
  23. }