index.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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: 65px;
  22. bottom: 65px;
  23. }
  24. .close {
  25. padding: 15px 15px 15px 20px;
  26. border-bottom: 1px solid #EAEDF1;
  27. img{
  28. float:right;
  29. cursor: pointer;
  30. margin-top: -5px;
  31. }
  32. }
  33. .button {
  34. position: fixed;
  35. bottom: 75px;
  36. left: 50%;
  37. margin-left: 280px;
  38. span{
  39. display: inline-block;
  40. width: 80px;
  41. height: 34px;
  42. background: #3B9ED0;
  43. font-size: 14px;
  44. color: #FFFFFF;
  45. font-size: 14px;
  46. text-align: center;
  47. line-height: 34px;
  48. border-radius: 4px;
  49. cursor: pointer;
  50. }
  51. }
  52. }