index.less 557 B

12345678910111213141516171819202122232425262728293031
  1. .mask {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. background: #000;
  8. opacity: .4;
  9. filter:alpha(opacity=40);
  10. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=40);";
  11. z-index: 100;
  12. }
  13. .load{
  14. width: 40px;
  15. height: 40px;
  16. position: absolute;
  17. top: 50%;
  18. left:50%;
  19. margin-top: -20px;
  20. margin-left: -20px;
  21. }
  22. .confirm-info {
  23. text-align: center;
  24. font-size: 16px;
  25. padding-top: 10px;
  26. padding-bottom: 10px;
  27. }
  28. .tip {
  29. text-align: center;
  30. padding-bottom: 30px;
  31. }