index.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. .details-wrapper {
  2. position: fixed;
  3. width: 100%;
  4. height: 100%;
  5. left: 0;
  6. top: 0;
  7. z-index: 205;
  8. }
  9. .details-content-wrapper {
  10. position: fixed;
  11. padding: 50px 0;
  12. width: 80%;
  13. height: 80%;
  14. left: 10%;
  15. top: 10%;
  16. background: #fff;
  17. overflow: hidden;
  18. z-index: 10;
  19. }
  20. .details-content-name {
  21. position: absolute;
  22. top: 0;
  23. width: 100%;
  24. padding: 0 40px;
  25. height: 50px;
  26. line-height: 50px;
  27. font-size: 24px;
  28. }
  29. .details-content-title-box {
  30. position: relative;
  31. height: 40px;
  32. line-height: 40px;
  33. font-size: 20px;
  34. }
  35. .details-content-title-name {
  36. position: absolute;
  37. background: #fff;
  38. padding-right: 5px;
  39. font-size: 20px;
  40. z-index: 10;
  41. }
  42. .details-content-title-line {
  43. position: absolute;
  44. width: 100%;
  45. height: 20px;
  46. top: 0;
  47. border-bottom: 1px dashed #ccc;
  48. }
  49. .details-close {
  50. position: absolute;
  51. right: 0;
  52. cursor: pointer;
  53. }
  54. .details-content {
  55. position: relative;
  56. height: 100%;
  57. padding: 0 180px 0 40px;
  58. overflow-y: auto;
  59. }
  60. .content-menu-box {
  61. position: absolute;
  62. top: 50px;
  63. right: 20px;
  64. width: 160px;
  65. height: 80%;
  66. overflow: hidden;
  67. }
  68. .content-menu-wrapper {
  69. width: 200px;
  70. height: 100%;
  71. overflow-y: auto;
  72. }
  73. .content-menu {
  74. background: #eee;
  75. border: 1px solid #eee;
  76. width: 160px;
  77. padding: 15px 18px;
  78. }
  79. .details-content-menu-line {
  80. height: 15px;
  81. width: 0;
  82. border: 1px solid #ccc;
  83. background-color: #ccc;
  84. margin-left: 4px
  85. }
  86. .details-content-menu-name {
  87. color: #33475f;
  88. font-size: 13px;
  89. cursor: pointer;
  90. }
  91. .details-content-menu-circle {
  92. display: inline-block;
  93. width: 8px;
  94. height: 8px;
  95. border-radius: 5px;
  96. border: 1px solid #ccc;
  97. margin-top: 5px;
  98. background-color: #eee;
  99. margin-right: 10px;
  100. }
  101. .details-mask {
  102. position: fixed;
  103. width: 100%;
  104. height: 100%;
  105. left: 0;
  106. top: 0;
  107. background: #000;
  108. opacity: .6;
  109. filter:alpha(opacity=60);
  110. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
  111. }