index.module.scss 632 B

123456789101112131415161718192021222324252627282930313233343536
  1. .UpAsyncLoding {
  2. opacity: 0;
  3. pointer-events: none;
  4. position: fixed;
  5. z-index: 9997;
  6. top: 0;
  7. left: 0;
  8. width: 100%;
  9. height: 100%;
  10. background-color: rgba(0, 0, 0, .4);
  11. :global {
  12. .progressBox {
  13. position: absolute;
  14. top: 60%;
  15. left: 50%;
  16. transform: translate(-50%, -50%);
  17. width: 500px;
  18. height: 6px;
  19. border-radius: 3px;
  20. border: 1px solid var(--themeColor);
  21. overflow: hidden;
  22. #progress {
  23. position: absolute;
  24. top: 0;
  25. left: 0;
  26. width: 0%;
  27. height: 100%;
  28. background-color: var(--themeColor);
  29. }
  30. }
  31. }
  32. }