index.less 477 B

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