main.css 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. /*-----------主体内容-----------*/
  2. .container {
  3. padding: 2em 1em 1.5em;
  4. }
  5. .Content h3 {
  6. font-size: 1.6rem;
  7. margin: 0 0 1em 0;
  8. padding-bottom: 0.3125rem;
  9. letter-spacing: 0.125rem;
  10. }
  11. .Content h4 {
  12. font-size: 1.5rem;
  13. margin: 0 0 1em 0;
  14. padding-bottom: 0.3125rem;
  15. letter-spacing: 0.125rem;
  16. }
  17. p {
  18. text-indent: 2em;
  19. font-size: 1.125rem;
  20. text-align: justify;
  21. line-height: 2.0625rem;
  22. padding-bottom: 0.3125rem;
  23. }
  24. .page_btn {
  25. width: 80%;
  26. margin: 0 auto;
  27. padding-top: 1em;
  28. padding-bottom: 3em;
  29. position: relative;
  30. z-index: 9999;
  31. }
  32. .btn-prev,
  33. .btn-next {
  34. width: 49%;
  35. text-align: center;
  36. height: 2.5rem;
  37. border-radius: 0.5rem;
  38. margin-bottom: 1.25rem;
  39. }
  40. /* 主体为表格的样式 */
  41. .table {
  42. /* background-color: transparent; */
  43. border: none;
  44. font-size: 0.75rem;
  45. }
  46. .caption {
  47. font-size: 1rem;
  48. border-bottom: 0.0625rem solid #444444;
  49. text-align: right;
  50. box-sizing: border-box;
  51. padding-bottom: 0.625rem;
  52. }
  53. .table,
  54. .td,
  55. .th {
  56. margin: 0;
  57. padding: 0;
  58. vertical-align: middle;
  59. text-align: center;
  60. }
  61. .tbody .td,
  62. .tbody .th {
  63. /* background-color: transparent; */
  64. border-bottom: 0.0625rem solid #444444;
  65. border-top: 0.0625rem solid #444444;
  66. padding: 0.5625rem;
  67. box-sizing: border-box;
  68. }
  69. .tbody .td:nth-of-type(2) {
  70. text-align: left;
  71. }
  72. .tfoot .td,
  73. .tfoot .th {
  74. font-weight: bold;
  75. padding: 0.25rem 0.5rem 0.375rem 0.5625rem;
  76. text-align: center;
  77. }
  78. .thead .th {
  79. font-size: 0.875rem;
  80. font-weight: bold;
  81. line-height: 1.1875rem;
  82. padding: 0 0.5rem 0.125rem;
  83. text-align: center;
  84. }
  85. .thead .th:nth-of-type(1) {
  86. max-width: 3.125rem;
  87. }
  88. .thead .th:nth-of-type(4) {
  89. max-width: 11.25rem;
  90. }
  91. /*-----------主体内容 end-----------*/
  92. /*-----------顶部nav-----------*/
  93. .nav-top {
  94. position: fixed;
  95. top: 0px;
  96. width: 100%;
  97. height: 2.8125rem;
  98. z-index: 100;
  99. }
  100. .nav_container {
  101. width: 9.375rem;
  102. margin-left: 0.5rem;
  103. height: 100%;
  104. display: flex;
  105. align-items: center;
  106. }
  107. .nav_return {
  108. width: 1.45rem;
  109. height: 1.45rem;
  110. margin-right: 0.375rem;
  111. }
  112. .dark-icon-navleft {
  113. background: url(../img/left_round.png);
  114. background-size: contain;
  115. }
  116. .light-icon-navleft {
  117. background: url(../img/left_round_n.png);
  118. background-size: contain;
  119. }
  120. /*-----------顶部nav end-----------*/
  121. /*-----------顶部--目录 start-----------*/
  122. .top_mulu_box {
  123. cursor: pointer;
  124. position: fixed;
  125. z-index: 10;
  126. right: 0;
  127. left: 0;
  128. width: 100%;
  129. height: 2em;
  130. padding: 0 0.625rem;
  131. border-bottom: 0;
  132. display: flex;
  133. align-items: center;
  134. justify-content: space-between;
  135. }
  136. .top_left,
  137. .top_right,
  138. .top_center {
  139. height: 100%;
  140. display: flex;
  141. align-items: center;
  142. }
  143. .top_left {
  144. justify-content: flex-start;
  145. width: 3.75rem;
  146. }
  147. .top_right {
  148. justify-content: flex-end;
  149. }
  150. .top_center {
  151. justify-content: center;
  152. width: calc(100% - 3.75rem);
  153. }
  154. .top_left_icon {
  155. line-height: 2em;
  156. margin-left: -0.5rem;
  157. font-size: 0.875rem;
  158. width: 1.25rem;
  159. height: 1.25rem;
  160. }
  161. .top_left_text {
  162. font-size: 1rem;
  163. }
  164. .top_center_text {
  165. font-size: 1rem;
  166. display: inline-block;
  167. white-space: nowrap;
  168. overflow: hidden;
  169. text-overflow: ellipsis;
  170. }
  171. /*-----------顶部--目录 end-----------*/
  172. /*-----------底部导航-----------*/
  173. .nav-bottom {
  174. position: fixed;
  175. bottom: 0;
  176. width: 100%;
  177. height: 4.375rem;
  178. text-align: center;
  179. margin: 0 auto;
  180. z-index: 9999;
  181. }
  182. .btn-mulu,
  183. .btn_Aa,
  184. .btn-extra {
  185. width: 32%;
  186. display: inline-block;
  187. }
  188. .mulu,
  189. .Aa,
  190. .extra {
  191. width: 2rem;
  192. margin: 0 auto;
  193. text-align: center;
  194. position: relative;
  195. }
  196. .bottom-icon {
  197. position: absolute;
  198. width: 1.25rem;
  199. height: 1.25rem;
  200. }
  201. .dark-icon-mulu {
  202. background: url(../img/mulu.png);
  203. background-size: contain;
  204. }
  205. .light-icon-mulu {
  206. background: url(../img/mulu_n.png);
  207. background-size: contain;
  208. }
  209. .dark-icon-Aa {
  210. background: url(../img/Aa.png);
  211. background-size: contain;
  212. }
  213. .light-icon-Aa {
  214. background: url(../img/Aa_n.png);
  215. background-size: contain;
  216. }
  217. .dark-icon-extra {
  218. background: url(../img/set.png);
  219. background-size: contain;
  220. }
  221. .dark-icon-extra.act {
  222. background: url(../img/set_n.png);
  223. background-size: contain;
  224. }
  225. .light-icon-extra {
  226. background: url(../img/set1.png);
  227. background-size: contain;
  228. }
  229. .light-icon-extra.act {
  230. background: url(../img/set1_n.png);
  231. background-size: contain;
  232. }
  233. .text_mulu,
  234. .text_Aa,
  235. .text_extra {
  236. position: absolute;
  237. top: 1.375rem;
  238. font-size: 0.75rem;
  239. }
  240. /*-----------底部导航 end-----------*/
  241. /*-----------其他功能栏-----------*/
  242. .extraPop {}
  243. /*-----------字体功能栏-----------*/
  244. .fontPop {}
  245. .fontPop,
  246. .extraPop {
  247. position: fixed;
  248. bottom: 4.375rem;
  249. width: 100%;
  250. height: 5.125rem;
  251. font-size: 0.9375rem;
  252. z-index: 10005;
  253. display: flex;
  254. flex-wrap: wrap;
  255. justify-content: center;
  256. align-items: center;
  257. }
  258. .fontItem {
  259. height: 3.125rem;
  260. width: 100%;
  261. display: flex;
  262. justify-content: space-between;
  263. align-items: center;
  264. }
  265. .fontItemTitle {
  266. width: 6.625rem;
  267. text-align: center;
  268. }
  269. .fontItemCons {
  270. width: calc(100% - 6.625rem);
  271. height: 100%;
  272. display: flex;
  273. justify-content: space-between;
  274. align-items: center;
  275. padding-right: 1.25rem;
  276. }
  277. .bk-item {
  278. width: 1.875rem;
  279. height: 100%;
  280. display: flex;
  281. flex-wrap: wrap;
  282. justify-content: center;
  283. align-items: center;
  284. font-size: 0.75rem;
  285. }
  286. .bk-container {
  287. background-size: contain;
  288. width: 1.5625rem;
  289. height: 1.5625rem;
  290. border: 0.0625rem #8C8C8C solid;
  291. border-radius: 0.9375rem;
  292. box-sizing: border-box;
  293. }
  294. .bk-container-current {
  295. border: 0.125rem #00A5F6 solid;
  296. }
  297. /*-----------字体功能栏 end-----------*/
  298. .index-img {
  299. width: 100%;
  300. height: 100%;
  301. }
  302. /*-----------图片样式 start----------*/
  303. .my-img {
  304. width: 100%;
  305. margin: 0 auto;
  306. display: block;
  307. }
  308. /*-----------图片样式 end----------*/
  309. /*-----------底部导航的目录栏 start-----------*/
  310. .muluBox {
  311. position: fixed;
  312. width: 100%;
  313. height: 100%;
  314. z-index: 99999;
  315. }
  316. .muluMask {
  317. width: 100%;
  318. background: #000;
  319. opacity: 0.4;
  320. position: absolute;
  321. top: 0;
  322. bottom: 0;
  323. }
  324. .muluCons {
  325. width: 100%;
  326. height: 80%;
  327. position: absolute;
  328. bottom: 0;
  329. overflow-y: auto;
  330. }
  331. .muluTitle {
  332. height: 1.875rem;
  333. display: flex;
  334. justify-content: space-between;
  335. align-items: center;
  336. padding: 0 0.9375rem;
  337. }
  338. .list-li-a {
  339. text-align: left;
  340. }
  341. /*-----------目录栏 end-----------*/
  342. .notScroll {
  343. overflow: hidden;
  344. }