index.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .container {
  2. position: relative;
  3. z-index: 2000;
  4. .content{
  5. overflow: auto;
  6. position: fixed;
  7. bottom: 70px;
  8. top: 70px;
  9. // width: 820px;
  10. }
  11. .footer{
  12. // width: 820px;
  13. position: fixed;
  14. bottom:30px;
  15. text-align: right;
  16. }
  17. // @media print {
  18. // .close{
  19. // display: none;
  20. // }
  21. // .flg {
  22. // display: block !important;
  23. // }
  24. // }
  25. .flg {
  26. display: none;
  27. }
  28. .shade {
  29. position: fixed;
  30. left: 0;
  31. top: 0;
  32. right: 0;
  33. bottom: 0;
  34. background-color: #000;
  35. opacity: 0.6;
  36. filter:alpha(opacity=60);
  37. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
  38. }
  39. .modal {
  40. // width: 820px;
  41. background: #fff;
  42. position: fixed;
  43. left: 50%;
  44. //top: 50%;
  45. // margin-left: -410px;
  46. top: 65px;
  47. bottom: 65px;
  48. }
  49. .close {
  50. padding: 15px 15px 15px 20px;
  51. border-bottom: 1px solid #EAEDF1;
  52. background: #e5eefe;
  53. img{
  54. vertical-align: text-top;
  55. }
  56. .closeIcon{
  57. float:right;
  58. cursor: pointer;
  59. margin-top: -5px;
  60. }
  61. }
  62. .button {
  63. position: fixed;
  64. bottom: 75px;
  65. left: 50%;
  66. margin-left: 280px;
  67. span{
  68. display: inline-block;
  69. width: 80px;
  70. height: 34px;
  71. background: #3B9ED0;
  72. font-size: 14px;
  73. color: #FFFFFF;
  74. font-size: 14px;
  75. text-align: center;
  76. line-height: 34px;
  77. border-radius: 4px;
  78. cursor: pointer;
  79. }
  80. }
  81. }