index.less 752 B

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