information.less 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. ul,
  6. li {
  7. list-style: none;
  8. }
  9. table {
  10. border-collapse: collapse;
  11. border-spacing: 0;
  12. }
  13. body {
  14. font-size: 14px;
  15. overflow-y: scroll;
  16. font-family: '微软雅黑', '宋体';
  17. background: #dde2ea;
  18. height: 100%;
  19. color: #1E1E1E;
  20. line-height: 21px;
  21. }
  22. h1 {
  23. margin: 0 0px 30px 0px !important;
  24. font-size: 28px !important;
  25. line-height: 37px;
  26. padding: 0 0 0 20px;
  27. }
  28. .titleH2 {
  29. font-size: 22px;
  30. position: absolute;
  31. background: #fff;
  32. padding-right: 6px;
  33. font-weight: bold;
  34. }
  35. .content {
  36. position: relative;
  37. height: 550px;
  38. }
  39. .infoBox {
  40. border-left: 1px solid #969C9F;
  41. padding: 0 0 0 33px;
  42. margin: 0 0 20px 0;
  43. }
  44. .infoWrapper {
  45. padding: 0 0 0 20px;
  46. }
  47. .circleBox {
  48. position: absolute;
  49. z-index: 10;
  50. background: #fff;
  51. left: -40px;
  52. height: 32px;
  53. top: -1px;
  54. }
  55. .circle {
  56. display: inline-block;
  57. width: 12px;
  58. height: 12px;
  59. border-radius: 50%;
  60. background: #3B9ED0;
  61. position: relative;
  62. top: 2px;
  63. }
  64. .infos {
  65. height: 100%;
  66. overflow-y: auto;
  67. padding: 0 60px 0 0;
  68. }
  69. .infos>div {
  70. margin-right: 160px;
  71. }
  72. .title {
  73. position: relative;
  74. height: 24px;
  75. margin: 0 0 13px;
  76. }
  77. .line {
  78. border-bottom: 1px dashed #ccc;
  79. }
  80. .container {
  81. width: 80%;
  82. overflow: hidden;
  83. background: #fff;
  84. margin: 0 auto;
  85. padding: 43px 0 30px 20px;
  86. }
  87. pre {
  88. white-space: pre-wrap;
  89. word-wrap: break-word;
  90. color: #1E1E1E;
  91. }
  92. .anchors {
  93. width: 200px;
  94. position: absolute;
  95. right:15px;
  96. top: 0;
  97. margin-right: 14px;
  98. overflow: auto;
  99. height: 100%;
  100. }
  101. .anchors ul {
  102. padding: 15px 20px;
  103. border-radius: 4px;
  104. border: 1px solid #F5F6F7;
  105. background-color: #F5F6F7;
  106. line-height: 17px;
  107. }
  108. .anchors li {
  109. position: relative;
  110. border-left: 2px solid #E0E2E3;
  111. }
  112. .anchors .anchor-line {
  113. height: 20px;
  114. width: 0;
  115. border-left: 2px solid #E0E2E3;
  116. }
  117. .anchors .anchor-line:last-child {
  118. display: none;
  119. }
  120. .anchors i {
  121. position: absolute;
  122. display: inline-block;
  123. width: 8px;
  124. height: 8px;
  125. border-radius: 5px;
  126. border: 1px solid #E0E2E3;
  127. background-color: #E0E2E3;
  128. left: -6px;
  129. top: 5px;
  130. }
  131. .anchors a {
  132. display: inline-block;
  133. position: relative;
  134. top: 0;
  135. left: 0;
  136. width: calc(100% - 20px);
  137. padding-left: 20px;
  138. text-decoration: none;
  139. font-size: 14px;
  140. font-weight: 400;
  141. color: #777;
  142. word-wrap: break-word;
  143. }
  144. .anchors .active a {
  145. color: #3B9ED0 !important;
  146. font-weight: 700 !important;
  147. }
  148. .anchors .active i {
  149. width: 16px;
  150. height: 16px;
  151. top: 1px;
  152. left: -8px;
  153. border-radius: 0;
  154. border: none;
  155. background-color: #F5F6F7;
  156. background: url('../images/icon_current.png') center center no-repeat;
  157. }
  158. a:visited {
  159. color: #777;
  160. }
  161. .disCopy {
  162. -webkit-touch-callout: none;
  163. -webkit-user-select: none;
  164. -khtml-user-select: none;
  165. -moz-user-select: none;
  166. -ms-user-select: none;
  167. user-select: none;
  168. }