style.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .hc-loading-box {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. background: rgba(0, 0, 0, .6);
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. z-index: 9999999;
  12. transition: .3s;
  13. .loader-inner {
  14. position: relative;
  15. text-align: center;
  16. margin-left: 100px;
  17. .loader-icon-span {
  18. transition: .3s;
  19. animation: loader-icon-rotation 3s linear infinite;
  20. }
  21. .loader-icon {
  22. font-size: 200px;
  23. color: #e99d42;
  24. }
  25. .loader-num {
  26. position: absolute;
  27. font-size: 28px;
  28. top: 85px;
  29. text-align: center;
  30. width: 100%;
  31. color: #e99d42;
  32. }
  33. .loader-tip {
  34. color: var(--el-color-primary);
  35. font-size: 19px;
  36. font-weight: 500;
  37. }
  38. }
  39. }
  40. @keyframes loader-icon-rotation {
  41. from {
  42. transform: rotate(0deg)
  43. }
  44. to {
  45. transform: rotate(360deg)
  46. }
  47. }