index.less 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. }
  36. img{
  37. cursor: pointer;
  38. position: absolute;
  39. top: 10px;
  40. right: 10px;
  41. z-index: 100;
  42. }
  43. .button {
  44. position: fixed;
  45. bottom: 75px;
  46. left: 50%;
  47. margin-left: 280px;
  48. span{
  49. display: inline-block;
  50. width: 80px;
  51. height: 34px;
  52. background: #3B9ED0;
  53. font-size: 14px;
  54. color: #FFFFFF;
  55. font-size: 14px;
  56. text-align: center;
  57. line-height: 34px;
  58. border-radius: 4px;
  59. cursor: pointer;
  60. }
  61. }
  62. }