index.less 423 B

12345678910111213141516171819202122232425
  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: #333;
  12. opacity: .6;
  13. filter:alpha(opacity=60);
  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. }
  22. p{
  23. color: #fff;
  24. }
  25. }