index.less 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. .shade{
  19. display: none;
  20. }
  21. }*/
  22. .shade {
  23. position: fixed;
  24. left: 0;
  25. top: 0;
  26. right: 0;
  27. bottom: 0;
  28. background-color: #000;
  29. opacity: 0.6;
  30. filter:alpha(opacity=60);
  31. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
  32. }
  33. .modal {
  34. // width: 820px;
  35. background: #fff;
  36. position: fixed;
  37. left: 50%;
  38. //top: 50%;
  39. // margin-left: -410px;
  40. top: 65px;
  41. bottom: 65px;
  42. }
  43. .close {
  44. padding: 15px 15px 15px 20px;
  45. border-bottom: 1px solid #EAEDF1;
  46. background: #e5eefe;
  47. img{
  48. vertical-align: text-top;
  49. }
  50. .closeIcon{
  51. float:right;
  52. cursor: pointer;
  53. margin-top: -5px;
  54. }
  55. }
  56. .button {
  57. position: fixed;
  58. bottom: 75px;
  59. left: 50%;
  60. margin-left: 280px;
  61. span{
  62. display: inline-block;
  63. width: 80px;
  64. height: 34px;
  65. background: #3B9ED0;
  66. font-size: 14px;
  67. color: #FFFFFF;
  68. font-size: 14px;
  69. text-align: center;
  70. line-height: 34px;
  71. border-radius: 4px;
  72. cursor: pointer;
  73. }
  74. }
  75. }