main.css 6.6 KB

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