index.less 853 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .container {
  2. position: fixed;
  3. z-index: 2000;
  4. width: 100%;
  5. height: 100%;
  6. .shade {
  7. position: fixed;
  8. left: 0;
  9. top: 0;
  10. right: 0;
  11. bottom: 0;
  12. background-color: #000;
  13. opacity: 0.6;
  14. filter:alpha(opacity=60);
  15. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
  16. }
  17. .modal {
  18. width: 820px;
  19. background: #fff;
  20. position: fixed;
  21. left: 50%;
  22. margin-left: -410px;
  23. top: 7%;
  24. bottom: 7%;
  25. height: 86%;
  26. overflow: hidden;
  27. padding-top: 40px;
  28. }
  29. .close {
  30. padding: 0 15px;
  31. height: 40px;
  32. line-height: 40px;
  33. border-bottom: 1px solid #EAEDF1;
  34. box-sizing: border-box;
  35. position: absolute;
  36. width: 100%;
  37. top: 0;
  38. background-color: #fff;
  39. z-index: 10;
  40. img{
  41. float:right;
  42. cursor: pointer;
  43. margin-top: 10px;
  44. }
  45. }
  46. }