article.wxss 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. .DarkColor{
  2. background-color: #004433;
  3. color:#C1E1C1;
  4. }
  5. .LightColor{
  6. background-color: #D0ECD3;
  7. color:#151815;
  8. }
  9. /* 导航栏吸顶样式 */
  10. .fixed-nav {
  11. position: fixed !important;
  12. top: 0;
  13. left: 0;
  14. right: 0;
  15. z-index: 1000;
  16. /* box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1); 添加阴影效果 */
  17. }
  18. /* 设置不同主题下的返回箭头颜色 */
  19. .DarkColor.fixed-nav .weui-navigation-bar__btn_goback {
  20. background-color: #C1E1C1 !important; /* 使用与DarkColor主题文字相同的颜色 */
  21. }
  22. .LightColor.fixed-nav .weui-navigation-bar__btn_goback {
  23. background-color: #151815 !important; /* 使用与LightColor主题文字相同的颜色 */
  24. }
  25. .panel1{
  26. width:670rpx;
  27. margin: 180rpx 0 250rpx 0; /* 增加上边距,确保内容不会被导航栏遮挡 */
  28. justify-content: flex-start;
  29. align-items: flex-start;
  30. }
  31. .textArticle{
  32. width:670rpx;
  33. font-size: 48rpx;
  34. line-height: 90rpx;
  35. font-weight: 400;
  36. }
  37. .textArticleTranslate{
  38. font-weight: 400;
  39. font-size: 28rpx;
  40. width:100%;
  41. margin: 30rpx 0 40rpx 0;
  42. line-height:40rpx;
  43. }
  44. .DarkColor .textArticleTranslate{
  45. color: #A6FCA6;
  46. }
  47. .LightColor .textArticleTranslate{
  48. color: #5A7D5A;
  49. }
  50. .panelLine{
  51. width:100%;
  52. height:8rpx;
  53. margin: 20rpx 0;
  54. }
  55. .DarkColor .panelLine{
  56. background: rgba(0,0,0,0.20);
  57. }
  58. .LightColor .panelLine{
  59. background: rgba(255,255,255,0.60);
  60. }
  61. .DarkColor .highlight{
  62. color: #FFDD88;
  63. font-weight: bold;
  64. }
  65. .LightColor .highlight{
  66. color:#009933;
  67. font-weight: bold;
  68. }
  69. .DarkColor .panelFooter{
  70. width: 100%;
  71. height:180rpx;
  72. background-image: linear-gradient(180deg, #004433 0%, #002C21 100%);
  73. position: fixed;
  74. bottom: 0rpx;
  75. align-items: flex-start;
  76. z-index: 10;
  77. }
  78. .LightColor .panelFooter{
  79. width: 100%;
  80. height:180rpx;
  81. background-color: #D0ECD3;
  82. position: fixed;
  83. bottom: 0rpx;
  84. align-items: flex-start;
  85. z-index: 10;
  86. }
  87. .panelFooter1{
  88. width:730rpx;
  89. height:140rpx;
  90. color:#F2F2F2;
  91. background: #1E1E1E;
  92. box-shadow: 0 30rpx 0 0 #0C0C0C;
  93. border-radius: 10rpx 10rpx 60rpx 60rpx;
  94. }
  95. .panelFooter10{
  96. background-color: #303030;
  97. font-size:24rpx;
  98. }
  99. .panelFooter11{
  100. width:160rpx;
  101. height:120rpx;
  102. border-radius: 5rpx 10rpx 10rpx 50rpx;
  103. }
  104. .panelFooter12{
  105. width:370rpx;
  106. height:120rpx;
  107. border-radius: 10rpx 10rpx 10rpx 10rpx;
  108. margin: 0 10rpx;
  109. font-size:36rpx;
  110. }
  111. .panelFooter13{
  112. width:160rpx;
  113. height:120rpx;
  114. border-radius: 10rpx 5rpx 50rpx 10rpx;
  115. }
  116. .text02{
  117. font-size:24rpx;
  118. margin-top: 17rpx;
  119. }
  120. .sysIcon_a03{
  121. width:20rpx;
  122. height:20rpx;
  123. }
  124. .sysIcon_a15{
  125. width:28rpx;
  126. height:20rpx;
  127. }
  128. .panelHelp{
  129. background-color: rgba(0,0,0,0.00);
  130. z-index: 20;
  131. position: fixed;
  132. top:0;
  133. }
  134. .panelHelp1{
  135. width: 100%;
  136. position: fixed;
  137. bottom:942rpx;
  138. }
  139. .sysIcon_b07{
  140. width:100%;
  141. height: 697rpx;
  142. position: absolute;
  143. }
  144. .panelHelp2{
  145. position: absolute;
  146. left:0;
  147. right:0;
  148. top:180rpx;
  149. }
  150. .text07{
  151. font-size: 36rpx;
  152. color: #2E2E2E;
  153. text-align: center;
  154. width:550rpx;
  155. }
  156. .btn3{
  157. width:310rpx;
  158. height:90rpx;
  159. background: #303030;
  160. border-radius: 20rpx;
  161. color:#F2F2F2;
  162. margin-top: 50rpx;
  163. }
  164. .panelError{
  165. margin-top: 560rpx;
  166. font-size: 28rpx;
  167. }
  168. .DarkColor .panelError{
  169. color: #C1E1C1;
  170. }
  171. .LightColor .panelError{
  172. color: #5A7D5A;
  173. }
  174. .sysIcon_b14{
  175. width:102rpx;
  176. height:52rpx;
  177. margin-bottom: 50rpx;
  178. }
  179. .textError2{
  180. font-weight: 400;
  181. font-size: 24rpx;
  182. margin-top: 10rpx;
  183. }
  184. .panelBuildindParent{
  185. z-index: 50;
  186. }
  187. .pic_08{
  188. width: 100%;
  189. position: fixed;
  190. top:200rpx;
  191. z-index: 50;
  192. }
  193. .panelBuilding{
  194. z-index: 20;
  195. position: fixed;
  196. top:0;
  197. width:100%;
  198. justify-content: flex-start;
  199. font-weight: 700;
  200. z-index: 50;
  201. }
  202. .DarkColor .panelBuilding{
  203. background-image: linear-gradient(180deg, rgba(0,68,51,0.70) 0%, rgba(0,20,15,0.60) 100%);
  204. }
  205. .LightColor .panelBuilding{
  206. background-image: linear-gradient(180deg, rgba(208,236,211,0.50) 0%, rgba(159,180,161,0.70) 100%);
  207. }
  208. .panelBuilding1{
  209. width: 100%;
  210. position: fixed;
  211. top:345rpx;
  212. }
  213. .pic_03{
  214. width:100%;
  215. height:880rpx;
  216. position: absolute;
  217. top:0;
  218. }
  219. .sysIcon_b08{
  220. width:220rpx;
  221. height:220rpx;
  222. position: absolute;
  223. top:337rpx;
  224. z-index: 25;
  225. }
  226. .panelBuilding11{
  227. position: absolute;
  228. top: 190rpx;
  229. color: #2E2E2E;
  230. }
  231. .text08{
  232. font-size: 48rpx;
  233. }
  234. .text09{
  235. font-size: 28rpx;
  236. text-align: center;
  237. margin-top: 20rpx;
  238. font-weight: 400;
  239. }
  240. .panelBuilding12{
  241. position: absolute;
  242. top: 610rpx;
  243. color: #FDAD94;
  244. }
  245. .text10{
  246. font-size: 24rpx;
  247. text-align: center;
  248. }
  249. .text11{
  250. font-size: 28rpx;
  251. text-align: center;
  252. margin-top: 10rpx;
  253. font-weight: 400;
  254. width: 640rpx;
  255. }
  256. .panelAnswer{
  257. width:100%;
  258. position: fixed;
  259. bottom:0;
  260. z-index: 10;
  261. border-radius: 60rpx 60rpx 0 0;
  262. justify-content: flex-start;
  263. }
  264. .DarkColor .panelAnswer{
  265. background: #1E1E1E;
  266. color: #C1E1C1;
  267. }
  268. .LightColor .panelAnswer{
  269. background: #FFFFFF;
  270. color: #2E2E2E;
  271. }
  272. .text03{
  273. font-size: 28rpx;
  274. align-self: start;
  275. margin: 50rpx 0 0 40rpx;
  276. }
  277. .DarkColor .text03{
  278. background: #1E1E1E;
  279. color: #f2f2f2;
  280. }
  281. .LightColor .text03{
  282. background: #FFFFFF;
  283. color: #2E2E2E;
  284. }
  285. .btnClose{
  286. width: 88rpx;
  287. line-height:60rpx;
  288. border-radius: 20rpx;
  289. font-size:24rpx;
  290. text-align: center;
  291. position: absolute;
  292. top:40rpx;
  293. right:40rpx;
  294. }
  295. .DarkColor .btnClose{
  296. background: #303030;
  297. color:#F2F2F2;
  298. }
  299. .LightColor .btnClose{
  300. background: #F0F0F0;
  301. color:#2E2E2E;
  302. }
  303. .btnClose2{
  304. width: 60rpx;
  305. height:60rpx;
  306. border-radius: 50%;
  307. top:40rpx;
  308. right:40rpx;
  309. }
  310. .panelAnswer1{
  311. width: 100%;
  312. height:630rpx;
  313. }
  314. .DarkColor .panelAnswer1{
  315. background-color: #1e1e1e;
  316. }
  317. .LightColor .panelAnswer1{
  318. background-color: #FFFFFF;
  319. }
  320. .panelAnswer1Item{
  321. margin-top: 20rpx;
  322. width: 750rpx;
  323. }
  324. .panelAnswer1Item1{
  325. width: 750rpx;
  326. height:580rpx;
  327. }
  328. .DarkColor .panelAnswer1Item1{
  329. background-color: #1e1e1e;
  330. }
  331. .LightColor .panelAnswer1Item1{
  332. background-color: #fff;
  333. }
  334. .panelAnswer2{
  335. width:100%;
  336. margin: 30rpx 0 0 0;
  337. align-items: flex-start;
  338. }
  339. .sysIcon_c01{
  340. width: 40rpx;
  341. height:40rpx;
  342. margin: 10rpx 30rpx 0 0;
  343. }
  344. .text04{
  345. width: 600rpx;
  346. word-wrap: break-word;
  347. white-space: normal;
  348. }
  349. .text041{
  350. width:100%;
  351. font-size: 48rpx;
  352. word-wrap: break-word;
  353. white-space: normal;
  354. }
  355. .text042{
  356. width:100%;
  357. font-weight: 400;
  358. font-size: 28rpx;
  359. margin:10rpx 0 0 0;
  360. }
  361. .panelAnswer3{
  362. width:100%;
  363. margin-top: 40rpx;
  364. margin-bottom: 60rpx;
  365. }
  366. .panelAnswer31{
  367. width:100%;
  368. justify-content: flex-start;
  369. }
  370. .DarkColor .panelAnswer31{
  371. background: #1e1e1e;
  372. }
  373. .LightColor .panelAnswer31{
  374. background: #fff;
  375. color: #2E2E2E;
  376. }
  377. .DarkColor .panelAnswer310{
  378. background: #C1E1C1;
  379. color: #004433;
  380. }
  381. .LightColor .panelAnswer310{
  382. background: #009933;
  383. color: #FFFFFF;
  384. }
  385. .panelAnswer311{
  386. border-radius: 50%;
  387. width:40rpx;
  388. height:40rpx;
  389. margin: 0 30rpx 0 40rpx;
  390. }
  391. .DarkColor .panelAnswer311{
  392. background: #303030;
  393. border: 3rpx solid #4D4D4D;
  394. }
  395. .LightColor .panelAnswer311{
  396. background: #F8F8F8;
  397. border: 3rpx solid #D2D2D2;
  398. }
  399. .DarkColor .panelAnswer3110{
  400. background: #C1E1C1;
  401. border: 3rpx solid #C1E1C1;
  402. }
  403. .LightColor .panelAnswer3110{
  404. background: #009933;
  405. border: 3rpx solid #009933;
  406. }
  407. .sysIcon_a10{
  408. width:20rpx;
  409. height:16rpx;
  410. }
  411. .text05{
  412. width: 600rpx;
  413. margin: 20rpx 0;
  414. }
  415. .text051{
  416. width:100%;
  417. font-weight: 400;
  418. font-size: 36rpx;
  419. }
  420. .text052{
  421. width:100%;
  422. font-weight: 400;
  423. font-size: 28rpx;
  424. margin:10rpx 0 0 0;
  425. }
  426. .DarkColor .panelLine2{
  427. width:100%;
  428. height:10rpx;
  429. background-image: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.30) 100%);
  430. }
  431. .LightColor .panelLine2{
  432. width:100%;
  433. height:10rpx;
  434. background-image: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.10) 100%);
  435. }
  436. .panelAnswer4{
  437. width:100%;
  438. }
  439. .btn1{
  440. border-radius: 20rpx;
  441. width:310rpx;
  442. height:90rpx;
  443. margin:60rpx 15rpx;
  444. font-size: 36rpx;
  445. }
  446. .DarkColor .btn1{
  447. background: #303030;
  448. }
  449. .LightColor .btn1{
  450. background: #F0F0F0;
  451. }
  452. .btn10{
  453. color: #1E1E1E;
  454. }
  455. .text06{
  456. font-size: 28rpx;
  457. color: #F2F2F2;
  458. }
  459. .btn2{
  460. width:670rpx;
  461. height:90rpx;
  462. border-radius: 20rpx;
  463. margin: 70rpx 0 40rpx 0;
  464. }
  465. .DarkColor .btn2{
  466. background: #303030;
  467. color:#F2F2F2;
  468. }
  469. .LightColor .btn2{
  470. background: #F0F0F0;
  471. color:#2E2E2E;
  472. }
  473. .panelAnswer5{
  474. width:100%;
  475. }
  476. .panelAnswer51{
  477. width:100%;
  478. justify-content: space-between;
  479. margin: 40rpx 0;
  480. }
  481. .text12{
  482. margin-left: 40rpx;
  483. font-size: 28rpx;
  484. }
  485. .DarkColor .text12{
  486. color:#F2F2F2;
  487. }
  488. .LightColor .text12{
  489. color:#2E2E2E;
  490. }
  491. .text13{
  492. width: 670rpx;
  493. font-size: 24rpx;
  494. font-weight: 400;
  495. margin-bottom: 30rpx;
  496. }
  497. .DarkColor .text13{
  498. color: #E3E3E3;
  499. }
  500. .LightColor .text13{
  501. color:#787878;
  502. }
  503. .panelLine3{
  504. width:670rpx;
  505. height:1rpx;
  506. background-color: #131313;
  507. }
  508. .panelAnswer510{
  509. margin-bottom: 100rpx;
  510. }
  511. .switchClass{
  512. margin-right: 40rpx;
  513. }
  514. /* 自定义switch样式 */
  515. /* 修改switch关闭时的背景颜色 */
  516. .DarkColor .wx-switch-input {
  517. background-color: #D2D2D2 !important; /* 深色主题下关闭时的颜色 */
  518. }
  519. .LightColor .wx-switch-input {
  520. background-color: #D2D2D2 !important; /* 浅色主题下关闭时的颜色 */
  521. }
  522. /* 修改switch选中时的颜色 */
  523. .wx-switch-input.wx-switch-input-checked {
  524. border-color: #4aa010 !important;
  525. background-color: #4aa010 !important;
  526. }
  527. .wx-swiper-dot {
  528. width: 14rpx !important;
  529. height: 14rpx !important;
  530. margin-left: 5rpx !important;
  531. margin-right: 5rpx !important;
  532. }
  533. .DarkColor .wx-swiper-dot {
  534. background-color: #4d4d4d !important;
  535. }
  536. .LightColor .wx-swiper-dot {
  537. background-color: #D2D2D2 !important;
  538. }
  539. .DarkColor .wx-swiper-dot-active {
  540. background-color: #C1E1C1 !important;
  541. }
  542. .LightColor .wx-swiper-dot-active {
  543. background-color: #787878 !important;
  544. }
  545. /* 自定义swiper指示点位置 */
  546. .wx-swiper-dots {
  547. position: absolute;
  548. right: -20rpx !important;
  549. left: unset !important;
  550. }