u-parse.css 3.6 KB

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