default.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. .parse {
  2. width: 100%;
  3. box-sizing: border-box;
  4. font-family: Helvetica, sans-serif;
  5. font-size: 16px;
  6. color: #666;
  7. line-height: 1.8;
  8. overflow-x: hidden!important;
  9. }
  10. .parse view {
  11. word-break: hyphenate;
  12. }
  13. .parse .inline {
  14. display: inline;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. .parse div {
  19. margin: 0;
  20. padding: 0;
  21. }
  22. .parse h1 {
  23. color: #666;
  24. font-size: 2em;
  25. margin: 0.67em;
  26. text-align: left;
  27. }
  28. .parse h2 {
  29. font-size: 1.5em;
  30. margin: 0.83em;
  31. }
  32. .parse h3 {
  33. font-size: 1.17em;
  34. margin: 1em;
  35. }
  36. .parse h4 {
  37. margin: 1.33em;
  38. }
  39. .parse h5 {
  40. font-size: 0.83em;
  41. margin: 1.67em;
  42. }
  43. .parse h6 {
  44. font-size: 0.67em;
  45. margin: 2.33em;
  46. }
  47. .parse h1 ,
  48. .parse h2 ,
  49. .parse h3 ,
  50. .parse h4 ,
  51. .parse h5 ,
  52. .parse h6 ,
  53. .parse b,
  54. .parse strong {
  55. font-weight: bolder;
  56. }
  57. .parse p {
  58. margin: 1em;
  59. }
  60. .parse i,
  61. .parse cite,
  62. .parse em,
  63. .parse var,
  64. .parse address {
  65. font-style: italic;
  66. }
  67. .parse pre,
  68. .parse tt,
  69. .parse code,
  70. .parse kbd,
  71. .parse samp {
  72. font-family: monospace;
  73. }
  74. .parse pre {
  75. overflow: auto;
  76. background: #f5f5f5;
  77. padding: 16upx;
  78. white-space: pre;
  79. margin: 1em;
  80. }
  81. .parse code {
  82. display: inline;
  83. background: #f5f5f5;
  84. }
  85. .parse big {
  86. font-size: 1.17em;
  87. }
  88. .parse small,
  89. .parse sub,
  90. .parse sup {
  91. font-size: 0.83em;
  92. }
  93. .parse sub {
  94. vertical-align: sub;
  95. }
  96. .parse sup {
  97. vertical-align: super;
  98. }
  99. .parse s,
  100. .parse strike,
  101. .parse del {
  102. text-decoration: line-through;
  103. }
  104. .parse strong,
  105. .parse s {
  106. display: inline;
  107. }
  108. .parse a {
  109. color: deepskyblue;
  110. }
  111. .parse video {
  112. text-align: center;
  113. margin: 22upx 0;
  114. }
  115. .parse .video-video {
  116. width: 100%;
  117. }
  118. .parse img {
  119. // display: inline-block;
  120. // width: 0;
  121. // height: 0;
  122. // max-width: 100%;
  123. // overflow: hidden;
  124. display: inline-block;
  125. max-width: 100%;
  126. overflow: hidden;
  127. }
  128. .parse blockquote {
  129. margin: 10upx 0;
  130. padding: 22upx 0 22upx 22upx;
  131. font-family: Courier, Calibri, "宋体";
  132. background: #f5f5f5;
  133. border-left: 6upx solid #dbdbdb;
  134. }
  135. .parse blockquote p {
  136. margin: 0;
  137. }
  138. .parse ul, .parse ol {
  139. display: block;
  140. margin: 1em 0;
  141. padding-left: 33upx;
  142. }
  143. .parse ol {
  144. list-style-type: disc;
  145. }
  146. .parse ol {
  147. list-style-type: decimal;
  148. }
  149. .parse ol>weixin-parse-template,.parse ul>weixin-parse-template {
  150. display: list-item;
  151. align-items: baseline;
  152. text-align: match-parent;
  153. }
  154. .parse ol>li,.parse ul>li {
  155. display: list-item;
  156. align-items: baseline;
  157. text-align: match-parent;
  158. }
  159. .parse ul ul, .parse ol ul {
  160. list-style-type: circle;
  161. }
  162. .parse ol ol ul, .parse ol ul ul, .parse ul ol ul, .parse ul ul ul {
  163. list-style-type: square;
  164. }
  165. .parse u {
  166. text-decoration: underline;
  167. }
  168. .parse .hide {
  169. display: none;
  170. }
  171. .parse del {
  172. display: inline;
  173. }
  174. .parse figure {
  175. overflow: hidden;
  176. }
  177. .parse table {
  178. width: 100%;
  179. }
  180. .parse thead, .parse tfoot, .parse tr {
  181. display: flex;
  182. flex-direction: row;
  183. }
  184. .parse tr {
  185. width:100%;
  186. display: flex;
  187. border-right: 2upx solid #e0e0e0;
  188. border-bottom: 2upx solid #e0e0e0;
  189. }
  190. .parse th,
  191. .parse td {
  192. display: flex;
  193. width: 1276upx;
  194. overflow: auto;
  195. flex: 1;
  196. padding: 11upx;
  197. border-left: 2upx solid #e0e0e0;
  198. }
  199. .parse td:last {
  200. border-top: 2upx solid #e0e0e0;
  201. }
  202. .parse th {
  203. background: #f0f0f0;
  204. border-top: 2upx solid #e0e0e0;
  205. }
  206. .loading{
  207. width: 100%;
  208. height: 100%;
  209. position: relative;
  210. text-align: center;
  211. display: flex;
  212. justify-content: center;
  213. align-items: center;
  214. }
  215. .loading_wrap{
  216. display: flex;
  217. justify-content: center;
  218. align-content: center;
  219. flex-direction:column;
  220. }
  221. .loading_wrap .image{
  222. width: 100px;
  223. height: 100px;
  224. }
  225. .loading_wrap text{
  226. font-size: 16px;
  227. text-align: center;
  228. }