trees.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. /* 在这里引入自定义样式 */
  2. /* 链接和图片效果 */
  3. ._a {
  4. display: inline;
  5. padding: 1.5px 0 1.5px 0;
  6. color: #366092;
  7. word-break: break-all;
  8. }
  9. ._hover {
  10. text-decoration: underline;
  11. opacity: 0.7;
  12. }
  13. ._img {
  14. display: inline-block;
  15. max-width: 100%;
  16. overflow: hidden;
  17. }
  18. :host {
  19. display: inline;
  20. }
  21. .interlayer {
  22. display: inherit;
  23. flex-direction: inherit;
  24. flex-wrap: inherit;
  25. align-content: inherit;
  26. align-items: inherit;
  27. justify-content: inherit;
  28. width: 100%;
  29. white-space: inherit;
  30. }
  31. ._b,
  32. ._strong {
  33. font-weight: bold;
  34. }
  35. ._blockquote,
  36. ._div,
  37. ._p,
  38. ._ol,
  39. ._ul,
  40. ._li {
  41. display: block;
  42. }
  43. ._code {
  44. font-family: monospace;
  45. }
  46. ._del {
  47. text-decoration: line-through;
  48. }
  49. ._em,
  50. ._i {
  51. font-style: italic;
  52. }
  53. ._h1 {
  54. font-size: 2em;
  55. }
  56. ._h2 {
  57. font-size: 1.5em;
  58. }
  59. ._h3 {
  60. font-size: 1.17em;
  61. }
  62. ._h5 {
  63. font-size: 0.83em;
  64. }
  65. ._h6 {
  66. font-size: 0.67em;
  67. }
  68. ._h1,
  69. ._h2,
  70. ._h3,
  71. ._h4,
  72. ._h5,
  73. ._h6 {
  74. display: block;
  75. font-weight: bold;
  76. }
  77. ._image {
  78. display: block;
  79. width: 100%;
  80. height: 360px;
  81. margin-top: -360px;
  82. opacity: 0;
  83. }
  84. ._ins {
  85. text-decoration: underline;
  86. }
  87. ._li {
  88. flex: 1;
  89. width: 0;
  90. }
  91. ._ol-bef {
  92. width: 36px;
  93. margin-right: 5px;
  94. text-align: right;
  95. }
  96. ._ul-bef {
  97. display: block;
  98. margin: 0 12px 0 23px;
  99. line-height: normal;
  100. }
  101. ._ol-bef,
  102. ._ul-bef {
  103. flex: none;
  104. -webkit-user-select: none;
  105. user-select: none;
  106. }
  107. ._ul-p1 {
  108. display: inline-block;
  109. width: 0.3em;
  110. height: 0.3em;
  111. overflow: hidden;
  112. line-height: 0.3em;
  113. }
  114. ._ul-p2 {
  115. display: inline-block;
  116. width: 0.23em;
  117. height: 0.23em;
  118. border: 0.05em solid black;
  119. border-radius: 50%;
  120. }
  121. ._q::before {
  122. content: '"';
  123. }
  124. ._q::after {
  125. content: '"';
  126. }
  127. ._sub {
  128. font-size: smaller;
  129. vertical-align: sub;
  130. }
  131. ._sup {
  132. font-size: smaller;
  133. vertical-align: super;
  134. }
  135. .__bdo,
  136. .__bdi,
  137. .__ruby,
  138. .__rt {
  139. display: inline-block;
  140. }
  141. ._video {
  142. position: relative;
  143. display: inline-block;
  144. width: 300px;
  145. height: 225px;
  146. background-color: black;
  147. }
  148. ._video::after {
  149. position: absolute;
  150. top: 50%;
  151. left: 50%;
  152. margin: -15px 0 0 -15px;
  153. content: '';
  154. border-color: transparent transparent transparent white;
  155. border-style: solid;
  156. border-width: 15px 0 15px 30px;
  157. }