index.less 941 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .maskCover{
  2. position: fixed;
  3. left: 0;
  4. top: 0;
  5. z-index: 100;
  6. width: 100%;
  7. height: 100%;
  8. background-color: #000;
  9. opacity:0.6;
  10. filter:alpha(opacity=60);
  11. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
  12. }
  13. .contentBox{
  14. width: 600px;
  15. height: 500px;
  16. position: fixed;
  17. bottom: 0;
  18. right: 50%;
  19. margin-right: -600px;
  20. background: #fff;
  21. z-index: 101;
  22. .content{
  23. padding:0 15px;
  24. height: 440px;
  25. overflow-y: auto;
  26. }
  27. h2{
  28. text-align: center;
  29. font-size: 18px;
  30. margin:0 auto;
  31. color: #fff;
  32. background: #4F9FF3;
  33. line-height: 30px;
  34. }
  35. .close{
  36. width: 15px;
  37. float: right;
  38. margin-top: -22px;
  39. margin-right: 10px;
  40. cursor: pointer;
  41. }
  42. .title{
  43. /*text-indent: 20px;*/
  44. margin: 15px auto 8px;
  45. }
  46. th{
  47. border:1px solid #CCD2D9;
  48. background: #d8d8d9;
  49. height: 25px;
  50. line-height: 25px;
  51. white-space: nowrap;
  52. }
  53. td{
  54. border:1px solid #CCD2D9;
  55. text-align: center;
  56. line-height: 25px;
  57. }
  58. }