style-blue.scss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. .doc-cont {
  2. margin: 0 0 0 60px;
  3. position: relative;
  4. h1 {
  5. font-size: 30px;
  6. font-weight: 700;
  7. margin: 10px 0 20px;
  8. color: #333333;
  9. }
  10. p {
  11. font-size: 14px;
  12. line-height: 1.8;
  13. margin: 10px 0;
  14. }
  15. h1+p,
  16. h1+p+p,
  17. h1+p+p {
  18. color: #333333;
  19. }
  20. h2 {
  21. margin: 30px 0 15px;
  22. font-size: 22px;
  23. font-weight: 400;
  24. color: #333333;
  25. }
  26. h2+p,
  27. h2+p+p {
  28. color: #3F4449;
  29. }
  30. h3 {
  31. margin: 20px 0 10px;
  32. font-size: 18px;
  33. font-weight: 400;
  34. color: #333333;
  35. }
  36. h3+p,
  37. h3+p+p {
  38. color: #3F4449;
  39. }
  40. h4 {
  41. font-size: 14px;
  42. font-weight: normal;
  43. margin: 15px 0;
  44. color: #666666;
  45. }
  46. h4+p,
  47. h4+p+p,
  48. h4+p+p+p {
  49. color: #666666;
  50. }
  51. h4+p::nth-child(n) {
  52. color: #666666;
  53. }
  54. blockquote {
  55. padding: 0;
  56. margin: 0;
  57. p {
  58. margin: 0;
  59. display: inline-block;
  60. background: rgba(83, 150, 255, 0.14);
  61. font-size: 14px;
  62. color: #333333;
  63. border-radius: 4px;
  64. text-decoration-style: none;
  65. border-left: 8px solid #5396FF;
  66. padding: 15px 54px 15px 22px;
  67. line-height: 1.5;
  68. overflow: hidden;
  69. font-style: normal;
  70. }
  71. }
  72. ul {
  73. border-radius: 3px;
  74. padding: 5px 20px 5px 0;
  75. list-style: none;
  76. p {
  77. margin: 0;
  78. }
  79. ul {
  80. margin: 0;
  81. padding: 0;
  82. }
  83. li {
  84. font-size: 14px;
  85. color: #455A64;
  86. padding: 7px;
  87. line-height: 20px;
  88. display: flex;
  89. align-items: center;
  90. }
  91. li:before {
  92. content: '';
  93. width: 6px;
  94. height: 6px;
  95. border: 1px solid #455A64;
  96. border-radius: 14px;
  97. margin-right: 12px;
  98. display: inline-block;
  99. }
  100. }
  101. ol {
  102. background: #F2F4F5;
  103. border-radius: 3px;
  104. padding: 13px 40px;
  105. li {
  106. line-height: 20px;
  107. padding: 7px 0 0 10px;
  108. font-size: 14px;
  109. color: #3F4449;
  110. }
  111. }
  112. ul,
  113. ol,
  114. p,
  115. table {
  116. em {
  117. color: #8cade9;
  118. font-style: normal;
  119. padding: 0 2px;
  120. }
  121. strong {
  122. display: inline-block;
  123. background: #F7F7F7;
  124. border: 1px solid #ECECEC;
  125. border-radius: 2px;
  126. font-size: 13px;
  127. line-height: 1;
  128. color: #3F536E;
  129. padding: 3px 5px;
  130. margin: 0 5px;
  131. }
  132. }
  133. table {
  134. width: 100%;
  135. border-collapse: collapse;
  136. th {
  137. background: #F7F7F7;
  138. border: 1px solid #E9E9E9;
  139. font-size: 14px;
  140. line-height: 1.5;
  141. color: #333333;
  142. height: 40px;
  143. padding: 0 20px 0 14px;
  144. }
  145. td {
  146. border: 1px solid #E9E9E9;
  147. font-size: 14px;
  148. line-height: 1.5;
  149. color: #3F4449;
  150. height: 50px;
  151. padding-left: 14px;
  152. }
  153. }
  154. hr {
  155. height: 1px;
  156. border-width: 0;
  157. background-color: #e7f0ff;
  158. }
  159. img[alt="full"] {
  160. width: 100%;
  161. }
  162. img[alt="flex"] {
  163. flex-shrink: 0;
  164. width: 50%;
  165. padding: 0 15px;
  166. flex-basis: auto;
  167. flex: 1;
  168. }
  169. p {
  170. font-size: 14px;
  171. white-space: unset;
  172. word-break: break-all;
  173. }
  174. a {
  175. color: #5396ff;
  176. text-decoration: none;
  177. &:hover {
  178. text-decoration: underline;
  179. }
  180. }
  181. }
  182. // 书签样式
  183. .markList{
  184. a{
  185. color:#666;
  186. }
  187. .cur{
  188. a{
  189. color:#5396ff;
  190. }
  191. }
  192. }