aParse.acss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. .aParse{
  2. margin: 0 5px;
  3. font-family: Helvetica,sans-serif;
  4. font-size: 28rpx;
  5. color: #666;
  6. line-height: 1.8;
  7. }
  8. view{
  9. word-break:break-all;
  10. }
  11. .aParse-inline{
  12. display: inline;
  13. margin: 0;
  14. padding: 0;
  15. }
  16. /*//标题 */
  17. .aParse-div{margin: 0;padding: 0;}
  18. .aParse-h1{ font-size:2em; margin: .67em 0 }
  19. .aParse-h2{ font-size:1.5em; margin: .75em 0 }
  20. .aParse-h3{ font-size:1.17em; margin: .83em 0 }
  21. .aParse-h4{ margin: 1.12em 0}
  22. .aParse-h5 { font-size:.83em; margin: 1.5em 0 }
  23. .aParse-h6{ font-size:.75em; margin: 1.67em 0 }
  24. .aParse-h1 {
  25. font-size: 18px;
  26. font-weight: 400;
  27. margin-bottom: .9em;
  28. }
  29. .aParse-h2 {
  30. font-size: 16px;
  31. font-weight: 400;
  32. margin-bottom: .34em;
  33. }
  34. .aParse-h3 {
  35. font-weight: 400;
  36. font-size: 15px;
  37. margin-bottom: .34em;
  38. }
  39. .aParse-h4 {
  40. font-weight: 400;
  41. font-size: 14px;
  42. margin-bottom: .24em;
  43. }
  44. .aParse-h5 {
  45. font-weight: 400;
  46. font-size: 13px;
  47. margin-bottom: .14em;
  48. }
  49. .aParse-h6 {
  50. font-weight: 400;
  51. font-size: 12px;
  52. margin-bottom: .04em;
  53. }
  54. .aParse-h1, .aParse-h2, .aParse-h3, .aParse-h4, .aParse-h5, .aParse-h6, .aParse-b, .aParse-strong { font-weight: bolder }
  55. .aParse-i,.aParse-cite,.aParse-em,.aParse-var,.aParse-address{font-style:italic}
  56. .aParse-pre,.aParse-tt,.aParse-code,.aParse-kbd,.aParse-samp{font-family:monospace}
  57. .aParse-pre{white-space:pre}
  58. .aParse-big{font-size:1.17em}
  59. .aParse-small,.aParse-sub,.aParse-sup{font-size:.83em}
  60. .aParse-sub{vertical-align:sub}
  61. .aParse-sup{vertical-align:super}
  62. .aParse-s,.aParse-strike,.aParse-del{text-decoration:line-through}
  63. /*aparse-自定义个性化的css样式*/
  64. /*增加video的css样式*/
  65. .aParse-strong,.aParse-s{display: inline}
  66. .aParse-a{
  67. color: deepskyblue;
  68. word-break:break-all;
  69. overflow:auto;
  70. }
  71. .aParse-video{
  72. text-align: center;
  73. margin: 10px 0;
  74. }
  75. .aParse-video-video{
  76. width:100%;
  77. }
  78. .aParse-img{
  79. /*background-color: #efefef;*/
  80. overflow: hidden;
  81. }
  82. .aParse-blockquote {
  83. margin: 0;
  84. padding:10px 0 10px 5px;
  85. font-family:Courier, Calibri,"宋体";
  86. background:#f5f5f5;
  87. border-left: 3px solid #dbdbdb;
  88. }
  89. .aParse-code,.aParse-axxcode-style{
  90. display: inline;
  91. background:#f5f5f5;
  92. }
  93. .aParse-ul{
  94. margin: 20rpx 10rpx;
  95. }
  96. .aParse-li{
  97. width: 100%
  98. }
  99. .aParse-li,.aParse-li-inner{
  100. display: flex;
  101. align-items: baseline;
  102. margin: 10rpx 0;
  103. width: 100%
  104. }
  105. .aParse-li-text{
  106. align-items: center;
  107. line-height: 20px;
  108. }
  109. .aParse-li-circle{
  110. display: inline-flex;
  111. width: 5px;
  112. height: 5px;
  113. background-color: #333;
  114. margin-right: 5px;
  115. }
  116. .aParse-li-square{
  117. display: inline-flex;
  118. width: 10rpx;
  119. height: 10rpx;
  120. background-color: #333;
  121. margin-right: 5px;
  122. }
  123. .aParse-li-ring{
  124. display: inline-flex;
  125. width: 10rpx;
  126. height: 10rpx;
  127. border: 2rpx solid #333;
  128. border-radius: 50%;
  129. background-color: #fff;
  130. margin-right: 5px;
  131. }
  132. /*.aParse-table{
  133. width: 100%;
  134. height: 400px;
  135. }
  136. .aParse-thead,.aParse-tfoot,.aParse-tr{
  137. display: flex;
  138. flex-direction: row;
  139. }
  140. .aParse-th,.aParse-td{
  141. display: flex;
  142. width: 580px;
  143. overflow: auto;
  144. }*/
  145. .aParse-u {
  146. text-decoration: underline;
  147. }
  148. .aParse-hide{
  149. display: none;
  150. }
  151. .AEmojiView{
  152. align-items: center;
  153. }
  154. .aEmoji{
  155. width: 16px;
  156. height:16px;
  157. }
  158. .aParse-tr{
  159. display: flex;
  160. border-right:1px solid #e0e0e0;
  161. border-bottom:1px solid #e0e0e0;
  162. border-top:1px solid #e0e0e0;
  163. }
  164. .aParse-th,
  165. .aParse-td{
  166. flex:1;
  167. padding:5px;
  168. font-size:28rpx;
  169. border-left:1px solid #e0e0e0;
  170. word-break: break-all;
  171. }
  172. .aParse-td:last{
  173. border-top:1px solid #e0e0e0;
  174. }
  175. .aParse-th{
  176. background:#f0f0f0;
  177. border-top:1px solid #e0e0e0;
  178. }
  179. .aParse-del{
  180. display: inline;
  181. }
  182. .aParse-figure {
  183. overflow: hidden;
  184. }
  185. .aParse-p{
  186. color: #666;
  187. font-size: 0.28rem
  188. }