index.less 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. @import "~@less/variables.less";
  2. .details-wrapper {
  3. .maskZIndex;
  4. position: fixed;
  5. width: 100%;
  6. height: 100%;
  7. left: 0;
  8. top: 0;
  9. line-height: 20px;
  10. img {
  11. max-width: 100%;
  12. }
  13. }
  14. .details-content-wrapper {
  15. position: fixed;
  16. padding: 50px 0;
  17. width: 80%;
  18. height: 80%;
  19. left: 10%;
  20. top: 10%;
  21. background: #fff;
  22. overflow: hidden;
  23. z-index: 10;
  24. word-break: break-all;
  25. -webkit-touch-callout: none;
  26. -webkit-user-select: none;
  27. -khtml-user-select: none;
  28. -moz-user-select: none;
  29. -ms-user-select: none;
  30. user-select: none;
  31. }
  32. .details-content-name {
  33. position: absolute;
  34. top: 0;
  35. width: 100%;
  36. padding: 0 40px;
  37. height: 50px;
  38. line-height: 50px;
  39. font-size: 32px;
  40. font-weight: bold;
  41. }
  42. .details-content-title-box {
  43. position: relative;
  44. height: 40px;
  45. line-height: 40px;
  46. font-size: 20px;
  47. }
  48. .details-menu-title-wrapper {
  49. padding: 0 0 0 15px;
  50. position: relative;
  51. }
  52. .details-content-title-name {
  53. position: absolute;
  54. font-weight: bold;
  55. background: #fff;
  56. padding-right: 5px;
  57. font-size: 22px;
  58. z-index: 10;
  59. }
  60. .details-close {
  61. position: absolute;
  62. right: 0;
  63. cursor: pointer;
  64. }
  65. .details-content {
  66. position: relative;
  67. height: 100%;
  68. padding: 0 180px 0 40px;
  69. overflow-y: auto;
  70. ul, ol {
  71. padding: 0 0 0 15px;
  72. }
  73. ul li {
  74. list-style: disc;
  75. list-style-position: inside;
  76. }
  77. ol li{
  78. list-style: decimal;
  79. list-style-position: inside;
  80. }
  81. }
  82. .content-menu-box {
  83. position: absolute;
  84. top: 50px;
  85. right: 20px;
  86. width: 160px;
  87. height: 80%;
  88. overflow: hidden;
  89. }
  90. .content-menu-wrapper {
  91. width: 200px;
  92. height: 100%;
  93. overflow-y: auto;
  94. }
  95. .content-menu {
  96. background: #F5F6F7;
  97. border: 1px solid #F5F6F7;
  98. width: 160px;
  99. padding: 15px 18px;
  100. }
  101. .details-content-menu-line {
  102. height: 15px;
  103. width: 0;
  104. background-color: #E0E2E3;
  105. margin-left: 0px
  106. }
  107. .details-content-menu-name {
  108. position: relative;
  109. color: #777777;
  110. font-size: 13px;
  111. cursor: pointer;
  112. }
  113. .details-content-menu-circle-box {
  114. display:inline-block;
  115. position: absolute;
  116. left: -20px;
  117. background: #F5F6F7;
  118. }
  119. .details-content-menu-circle {
  120. position: relative;
  121. display: inline-block;
  122. width: 8px;
  123. height: 8px;
  124. border-radius: 5px;
  125. margin-top: 5px;
  126. background-color: #E0E2E3;
  127. margin-right: 10px;
  128. }
  129. .details-content-menu-img {
  130. position: relative;
  131. z-index: 20;
  132. left: -3px;
  133. top: 0;
  134. }
  135. .details-mask {
  136. position: fixed;
  137. width: 100%;
  138. height: 100%;
  139. left: 0;
  140. top: 0;
  141. background: #000;
  142. opacity: .6;
  143. filter:alpha(opacity=60);
  144. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
  145. }
  146. .details-content-box {
  147. border-left: 1px solid #969C9F;
  148. padding: 0 0 0 20px;
  149. }
  150. .details-content-title-circle-box {
  151. position: absolute;
  152. z-index: 10;
  153. background: #fff;
  154. left: -27px;
  155. height: 32px;
  156. top: 0px;
  157. }
  158. .details-content-title-circle {
  159. display: inline-block;
  160. width: 12px;
  161. height: 12px;
  162. border-radius: 50%;
  163. background: #3B9ED0;
  164. position: relative;
  165. top: 2px;
  166. }
  167. .content-menu-border{
  168. border-left: 2px solid #E0E2E3;
  169. }
  170. pre {
  171. white-space: pre-wrap;
  172. word-wrap: break-word;
  173. font-family: inherit;
  174. color: #333;
  175. margin: 10px 0;
  176. }