index.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @import './variables.scss';
  2. @import './mixin.scss';
  3. @import './animate.css';
  4. html,
  5. body .app {
  6. color: #333333;
  7. // font-family: Arial, Helvetica, 'STHeiti STXihei', 'Microsoft YaHei', Tohoma, sans-serif;
  8. background-color: $background-color;
  9. }
  10. .app-container {
  11. // padding-bottom: 50px;
  12. }
  13. #__vconsole {
  14. display: none;
  15. }
  16. .mask {
  17. background-color: rgba(0, 0, 0, 0);
  18. position: fixed;
  19. top: 0;
  20. left: 0;
  21. width: 100%;
  22. height: 100%;
  23. z-index: 20000;
  24. display: flex;
  25. align-items: center;
  26. justify-content: center;
  27. }
  28. .progressBox {
  29. width: 250px;
  30. height: 150px;
  31. background: #fff;
  32. border-radius: 10px;
  33. box-shadow: 0 0 6px 1px #bfbfbf;
  34. display: flex;
  35. align-items: center;
  36. justify-content: center;
  37. flex-direction: column;
  38. position: relative;
  39. color: #6c6c6c;
  40. font-size: 16px;
  41. }
  42. .progressBox {
  43. .el-progress-bar__outer {
  44. background-color: #d1dfff !important;
  45. .el-progress-bar__innerText{
  46. color: #fff !important;
  47. }
  48. }
  49. }
  50. .progressBox .lbox {
  51. height: 50px;
  52. font-size: 18px;
  53. display: flex;
  54. align-items: center;
  55. color: #747474;
  56. }
  57. .progressBox .lbox img {
  58. width: 40px;
  59. margin-right: 20px;
  60. }