parse.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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. /**
  12. * 请在全局下引入该文件,@import '/static/wxParse.css';
  13. */
  14. .wxParse {
  15. user-select:none;
  16. width: 100%;
  17. font-family: Helvetica, "PingFangSC", 'Microsoft Yahei', '微软雅黑', Arial, sans-serif;
  18. color: #333;
  19. line-height: 1.5;
  20. font-size: 1em;
  21. text-align:justify;/* //左右两端对齐 */
  22. }
  23. .wxParse view ,.wxParse uni-view{
  24. word-break: break-word;
  25. }
  26. .wxParse .p {
  27. padding-bottom: 0.5em;
  28. clear: both;
  29. /* letter-spacing: 0;//字间距 */
  30. }
  31. .wxParse .inline {
  32. display: inline!important;
  33. white-space:inherit!important;
  34. margin: 0;
  35. padding: 0;
  36. }
  37. .wxParse .div {
  38. margin: 0;
  39. padding: 0;
  40. display: block;
  41. }
  42. .wxParse .h1{
  43. font-size: 2em;
  44. line-height: 1.2em;
  45. margin: 0.67em 0;
  46. }
  47. .wxParse .h2{
  48. font-size: 1.5em;
  49. margin: 0.83em 0;
  50. }
  51. .wxParse .h3{
  52. font-size: 1.17em;
  53. margin: 1em 0;
  54. }
  55. .wxParse .h4{
  56. margin: 1.33em 0;
  57. }
  58. .wxParse .h5{
  59. font-size: 0.83em;
  60. margin: 1.67em 0;
  61. }
  62. .wxParse .h6{
  63. font-size: 0.83em;
  64. margin: 1.67em 0;
  65. }
  66. .wxParse .h1,
  67. .wxParse .h2,
  68. .wxParse .h3,
  69. .wxParse .h4,
  70. .wxParse .h5,
  71. .wxParse .h6,
  72. .wxParse .b,
  73. .wxParse .strong{
  74. font-weight: bolder;
  75. }
  76. .wxParse .i,
  77. .wxParse .cite,
  78. .wxParse .em,
  79. .wxParse .var,
  80. .wxParse .address {
  81. font-style: italic;
  82. }
  83. .wxParse .spaceshow{
  84. white-space: pre;
  85. }
  86. .wxParse .pre,
  87. .wxParse .tt,
  88. .wxParse .code,
  89. .wxParse .kbd,
  90. .wxParse .samp {
  91. font-family: monospace;
  92. }
  93. .wxParse .pre {
  94. overflow: auto;
  95. background: #f5f5f5;
  96. padding: 16upx;
  97. white-space: pre;
  98. margin: 1em 0upx;
  99. font-size: 24upx;
  100. }
  101. .wxParse .code {
  102. overflow: auto;
  103. padding: 16upx;
  104. white-space: pre;
  105. margin: 1em 0upx;
  106. background: #f5f5f5;
  107. font-size: 24upx;
  108. }
  109. .wxParse .big {
  110. font-size: 1.17em;
  111. }
  112. .wxParse .small,
  113. .wxParse .sub,
  114. .wxParse .sup {
  115. font-size: 0.83em;
  116. }
  117. .wxParse .sub {
  118. vertical-align: sub;
  119. }
  120. .wxParse .sup {
  121. vertical-align: super;
  122. }
  123. .wxParse .s,
  124. .wxParse .strike,
  125. .wxParse .del {
  126. text-decoration: line-through;
  127. }
  128. .wxParse .strong,
  129. .wxParse .text,
  130. .wxParse .span,
  131. .wxParse .s {
  132. display: inline;
  133. }
  134. .wxParse .a {
  135. color: deepskyblue;
  136. }
  137. .wxParse .video {
  138. text-align: center;
  139. margin: 22upx 0;
  140. }
  141. .wxParse .video-video {
  142. width: 100%;
  143. }
  144. .wxParse .uni-image{
  145. max-width: 100%;
  146. }
  147. .wxParse .img {
  148. display: block;
  149. max-width: 100%;
  150. margin-bottom: 0em;/* //与p标签底部padding同时修改 */
  151. overflow: hidden;
  152. }
  153. .wxParse .blockquote {
  154. margin: 10upx 0;
  155. padding: 22upx 0 22upx 22upx;
  156. font-family: Courier, Calibri, "宋体";
  157. background: #f5f5f5;
  158. border-left: 6upx solid #dbdbdb;
  159. }
  160. .wxParse .blockquote .p {
  161. margin: 0;
  162. }
  163. .wxParse .ul, .wxParse .ol {
  164. display: block;
  165. margin: 1em 0;
  166. padding-left: 2em;
  167. }
  168. .wxParse .ol {
  169. list-style-type: disc;
  170. }
  171. .wxParse .ol {
  172. list-style-type: decimal;
  173. }
  174. .wxParse .ol>weixin-parse-template,.wxParse .ul>weixin-parse-template {
  175. display: list-item;
  176. align-items: baseline;
  177. text-align: match-parent;
  178. }
  179. .wxParse .ol>.li,.wxParse .ul>.li {
  180. display: list-item;
  181. align-items: baseline;
  182. text-align: match-parent;
  183. }
  184. .wxParse .ul .ul, .wxParse .ol .ul {
  185. list-style-type: circle;
  186. }
  187. .wxParse .ol .ol .ul, .wxParse .ol .ul .ul, .wxParse .ul .ol .ul, .wxParse .ul .ul .ul {
  188. list-style-type: square;
  189. }
  190. .wxParse .u {
  191. text-decoration: underline;
  192. }
  193. .wxParse .hide {
  194. display: none;
  195. }
  196. .wxParse .del {
  197. display: inline;
  198. }
  199. .wxParse .figure {
  200. overflow: hidden;
  201. }
  202. .wxParse .tablebox{
  203. overflow: auto;
  204. background-color: #f5f5f5;
  205. background: #f5f5f5;
  206. font-size: 13px;
  207. padding: 8px;
  208. }
  209. .wxParse .table .table,.wxParse .table{
  210. border-collapse:collapse;
  211. box-sizing: border-box;
  212. /* 内边框 */
  213. /* width: 100%; */
  214. overflow: auto;
  215. white-space: pre;
  216. }
  217. .wxParse .tbody{
  218. border-collapse:collapse;
  219. box-sizing: border-box;
  220. /* 内边框 */
  221. border: 1px solid #dadada;
  222. }
  223. .wxParse .table .thead, .wxParse .table .tfoot, .wxParse .table .th{
  224. border-collapse:collapse;
  225. box-sizing: border-box;
  226. background: #ececec;
  227. font-weight: 40;
  228. }
  229. .wxParse .table .tr {
  230. border-collapse:collapse;
  231. box-sizing: border-box;
  232. /* border: 2px solid #F0AD4E; */
  233. overflow:auto;
  234. }
  235. .wxParse .table .th,
  236. .wxParse .table .td{
  237. border-collapse:collapse;
  238. box-sizing: border-box;
  239. border: 2upx solid #dadada;
  240. overflow:auto;
  241. }
  242. .wxParse .audio, .wxParse .uni-audio-default{
  243. display: block;
  244. }