index.less 509 B

123456789101112131415161718192021222324252627282930
  1. @import "~@less/variables.less";
  2. .loading{
  3. .maskZIndex;
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. width: 100%;
  8. height: 100%;
  9. .cover{
  10. width: 100%;
  11. height: 100%;
  12. background: #000;
  13. opacity: .4;
  14. filter:alpha(opacity=40);
  15. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
  16. }
  17. .info{
  18. position: absolute;
  19. top: 40%;
  20. left: 45%;//calc(50% - 50px);
  21. text-align: center;
  22. img{
  23. width: 40px;
  24. height: 40px;
  25. }
  26. }
  27. p{
  28. color: #fff;
  29. }
  30. }