node.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  1. /* a 标签默认效果 */
  2. ._a {
  3. padding: 1.5px 0 1.5px 0;
  4. color: #366092;
  5. word-break: break-all;
  6. }
  7. /* a 标签点击态效果 */
  8. ._hover {
  9. text-decoration: underline;
  10. opacity: 0.7;
  11. }
  12. /* 图片默认效果 */
  13. ._img {
  14. max-width: 100%;
  15. -webkit-touch-callout: none;
  16. }
  17. /* 内部样式 */
  18. ._block {
  19. display: block;
  20. }
  21. ._b,
  22. ._strong {
  23. font-weight: bold;
  24. }
  25. ._code {
  26. font-family: monospace;
  27. }
  28. ._del {
  29. text-decoration: line-through;
  30. }
  31. ._em,
  32. ._i {
  33. font-style: italic;
  34. }
  35. ._h1 {
  36. font-size: 2em;
  37. }
  38. ._h2 {
  39. font-size: 1.5em;
  40. }
  41. ._h3 {
  42. font-size: 1.17em;
  43. }
  44. ._h5 {
  45. font-size: 0.83em;
  46. }
  47. ._h6 {
  48. font-size: 0.67em;
  49. }
  50. ._h1,
  51. ._h2,
  52. ._h3,
  53. ._h4,
  54. ._h5,
  55. ._h6 {
  56. display: block;
  57. font-weight: bold;
  58. }
  59. ._image {
  60. height: 1px;
  61. }
  62. ._ins {
  63. text-decoration: underline;
  64. }
  65. ._li {
  66. display: list-item;
  67. }
  68. ._ol {
  69. list-style-type: decimal;
  70. }
  71. ._ol,
  72. ._ul {
  73. display: block;
  74. padding-left: 40px;
  75. margin: 1em 0;
  76. }
  77. ._q::before {
  78. content: '"';
  79. }
  80. ._q::after {
  81. content: '"';
  82. }
  83. ._sub {
  84. font-size: smaller;
  85. vertical-align: sub;
  86. }
  87. ._sup {
  88. font-size: smaller;
  89. vertical-align: super;
  90. }
  91. ._thead,
  92. ._tbody,
  93. ._tfoot {
  94. display: table-row-group;
  95. }
  96. ._tr {
  97. display: table-row;
  98. }
  99. ._td,
  100. ._th {
  101. display: table-cell;
  102. vertical-align: middle;
  103. }
  104. ._th {
  105. font-weight: bold;
  106. text-align: center;
  107. }
  108. ._ul {
  109. list-style-type: disc;
  110. }
  111. ._ul ._ul {
  112. margin: 0;
  113. list-style-type: circle;
  114. }
  115. ._ul ._ul ._ul {
  116. list-style-type: square;
  117. }
  118. ._abbr,
  119. ._b,
  120. ._code,
  121. ._del,
  122. ._em,
  123. ._i,
  124. ._ins,
  125. ._label,
  126. ._q,
  127. ._span,
  128. ._strong,
  129. ._sub,
  130. ._sup {
  131. display: inline;
  132. }