qun.css 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556
  1. body {
  2. font-family: PingFang SC-Bold, PingFang SC;
  3. font-size: 28rpx;
  4. }
  5. /*基本样式*/
  6. /*上下顺序*/
  7. .fsxto {
  8. display: flex;
  9. flex-direction: column;
  10. }
  11. /*两侧*/
  12. .flztoa {
  13. display: flex;
  14. justify-content: space-between;
  15. align-items: center;
  16. }
  17. /*左侧*/
  18. .fzctob {
  19. display: flex;
  20. justify-content: flex-start;
  21. align-items: center;
  22. }
  23. /*右侧*/
  24. .fyctoc {
  25. display: flex;
  26. justify-content: flex-end;
  27. align-items: center;
  28. }
  29. /*中间*/
  30. .fzjtod {
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. }
  35. /*导航*/
  36. .fzddrew {
  37. display: flex;
  38. flex-direction: column;
  39. align-items: center;
  40. justify-content: center;
  41. }
  42. .tanckku .uni-data-checklist .checklist-group .checklist-box.is--tag{
  43. padding: 5px 38rpx !important;
  44. background: #F4F4F4 !important;
  45. border-radius: 18px 18px 18px 18px !important;
  46. }
  47. .ayuu .u-navbar-inner {
  48. box-shadow: 0rpx 0rpx 20rpx 2rpx rgb(0 0 0 / 10%);
  49. }
  50. .indihh {
  51. width: 25%;
  52. display: flex;
  53. flex-direction: column;
  54. align-items: center;
  55. justify-content: center;
  56. font-size: 32rpx;
  57. color: #666666;
  58. }
  59. .inbddwwer {
  60. display: flex;
  61. flex-direction: column;
  62. align-items: center;
  63. justify-content: center;
  64. background: #ffffff;
  65. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  66. height: 104rpx;
  67. padding: 0 24rpx;
  68. }
  69. .inbddwddre {
  70. width: 100%;
  71. background: #F4F4F4;
  72. border-radius: 40rpx 40rpx 40rpx 40rpx;
  73. height: 64rpx;
  74. padding: 0 24rpx;
  75. }
  76. .inceert {
  77. display: flex;
  78. justify-content: flex-start;
  79. overflow-x: auto;
  80. background: #FFFFFF;
  81. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  82. border-radius: 16rpx 16rpx 16rpx 16rpx;
  83. padding: 30rpx 24rpx;
  84. }
  85. .inckkeer {
  86. width: 200rpx;
  87. min-width: 200rpx;
  88. height: 250rpx;
  89. background: #88BBDA;
  90. border-radius: 16rpx 16rpx 16rpx 16rpx;
  91. margin-right: 20rpx;
  92. }
  93. .inckkeer1 {
  94. width: 200rpx;
  95. min-width: 280rpx;
  96. height: 185rpx;
  97. background: #88BBDA;
  98. border-radius: 16rpx 16rpx 16rpx 16rpx;
  99. margin-right: 20rpx;
  100. }
  101. .incfh {
  102. display: flex;
  103. flex-direction: column;
  104. align-items: center;
  105. justify-content: center;
  106. font-size: 24rpx;
  107. color: #333333;
  108. }
  109. .incfh text {
  110. margin-top: -36rpx;
  111. }
  112. .indjbrr {
  113. width: 4rpx;
  114. height: 32rpx;
  115. background: linear-gradient(90deg, #E6F3FF 0%, #B7D9EB 100%);
  116. border-radius: 20rpx 20rpx 20rpx 20rpx;
  117. margin-right: 10rpx;
  118. }
  119. .inyyeddf {
  120. background: #FFFFFF;
  121. box-shadow: 0rpx 0rpx 20rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  122. border-radius: 16rpx 16rpx 16rpx 16rpx;
  123. padding: 32rpx 24rpx;
  124. margin-top: 30rpx;
  125. }
  126. .indhuyr {
  127. display: flex;
  128. justify-content: flex-start;
  129. align-items: center;
  130. font-size: 32rpx;
  131. color: #333333;
  132. }
  133. .inyyelbks {
  134. display: flex;
  135. justify-content: flex-start;
  136. align-items: center;
  137. margin-top: 38rpx;
  138. }
  139. .indkkimg {
  140. width: 200rpx;
  141. min-width: 200rpx;
  142. height: 160rpx;
  143. border-radius: 16rpx 16rpx 16rpx 16rpx;
  144. background: #88BBDA;
  145. margin-right: 24rpx;
  146. }
  147. .indkktxta {
  148. height: 40rpx;
  149. line-height: 40rpx;
  150. font-size: 28rpx;
  151. font-weight: 500;
  152. color: #333333;
  153. overflow: hidden;
  154. text-overflow: ellipsis;
  155. white-space: nowrap;
  156. width: 450rpx;
  157. }
  158. .indkktxtb {
  159. font-size: 24rpx;
  160. font-weight: 500;
  161. color: #999999;
  162. width: 450rpx;
  163. line-height: 34rpx;
  164. height: 34rpx;
  165. font-size: 24rpx;
  166. font-weight: 500;
  167. color: #999999;
  168. margin-top: 10rpx;
  169. }
  170. .indkktxtc {
  171. margin-top: 20rpx;
  172. }
  173. .indkktxtc text {
  174. padding: 4rpx 8rpx;
  175. background: #88bbda40;
  176. border-radius: 8rpx 8rpx 8rpx 8rpx;
  177. text-align: center;
  178. font-size: 24rpx;
  179. font-weight: 500;
  180. color: #374B6E;
  181. height: 34rpx;
  182. line-height: 34rpx;
  183. }
  184. .inyyship {
  185. width: 218rpx;
  186. height: 180rpx;
  187. background: #88BBDA;
  188. border-radius: 16rpx 16rpx 16rpx 16rpx;
  189. }
  190. .inyyshiy {
  191. display: flex;
  192. justify-content: space-between;
  193. align-items: center;
  194. margin-top: 30rpx;
  195. }
  196. .dibuboot {
  197. display: flex;
  198. justify-content: space-between;
  199. position: fixed;
  200. bottom: 0;
  201. left: 0;
  202. width: 100%;
  203. z-index: 998;
  204. background: #FFFFFF;
  205. /* padding: 0rpx 70rpx; */
  206. height: 98rpx;
  207. /* padding-bottom: constant(safe-area-inset-bottom);
  208. padding-bottom: env(safe-area-inset-bottom); */
  209. box-sizing: border-box;
  210. padding-bottom: 15rpx;
  211. }
  212. .dibubootlb {
  213. flex: 1;
  214. display: flex;
  215. flex-direction: column;
  216. align-items: center;
  217. justify-content: center;
  218. }
  219. .dibubootlb text {
  220. font-size: 20rpx;
  221. font-weight: 400;
  222. color: #999999;
  223. line-height: 28rpx;
  224. margin-top: 6rpx;
  225. }
  226. .hyinnr {
  227. width: 100%;
  228. height: 350rpx;
  229. /* background: url(/static/my/my01.png) center center no-repeat; */
  230. background-size: 100%;
  231. display: flex;
  232. position: relative;
  233. margin-top: 30rpx;
  234. }
  235. .hyinnrks {
  236. padding: 0rpx 40rpx;
  237. width: 100%;
  238. }
  239. .hyintxt {
  240. padding-left: 40rpx;
  241. }
  242. .hyintxt text {
  243. background: url(/static/my/my03.png) center center no-repeat;
  244. background-size: 100%;
  245. line-height: 48rpx;
  246. font-size: 32rpx;
  247. font-weight: normal;
  248. color: #FDDB9C;
  249. padding: 2rpx 24rpx;
  250. }
  251. .hyinrq {
  252. display: flex;
  253. justify-content: flex-end;
  254. align-items: center;
  255. font-size: 24rpx;
  256. font-weight: 400;
  257. color: #666666;
  258. margin-top: 64rpx;
  259. margin-right: 24rpx;
  260. }
  261. .myxmkstt {
  262. background: #FFFFFF;
  263. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  264. border-radius: 16rpx 16rpx 16rpx 16rpx;
  265. margin: 0 34rpx;
  266. padding: 30rpx 24rpx;
  267. margin-top: 30rpx;
  268. }
  269. .myhbtui {
  270. display: flex;
  271. justify-content: flex-start;
  272. align-items: center;
  273. font-size: 36rpx;
  274. font-family: Alibaba PuHuiTi-Medium, Alibaba PuHuiTi;
  275. font-weight: 500;
  276. color: #373737;
  277. }
  278. .myshutt {
  279. width: 8rpx;
  280. height: 32rpx;
  281. background: linear-gradient(180deg, #FFE9D1 0%, #F0C99D 100%);
  282. border-radius: 4rpx 4rpx 4rpx 4rpx;
  283. margin-right: 16rpx;
  284. }
  285. .myiodde {
  286. display: flex;
  287. flex-direction: column;
  288. align-items: center;
  289. justify-content: center;
  290. font-size: 24rpx;
  291. font-weight: 400;
  292. color: #666666;
  293. line-height: 34rpx;
  294. }
  295. .mytxtjs {
  296. display: flex;
  297. flex-direction: column;
  298. font-size: 28rpx;
  299. font-weight: 400;
  300. color: #666666;
  301. line-height: 60rpx;
  302. margin-top: 30rpx;
  303. }
  304. .myhyojr {
  305. background: url(/static/my/myb05.png) center center no-repeat;
  306. background-size: 100%;
  307. width: 524rpx;
  308. height: 98rpx;
  309. }
  310. .myhyoode {
  311. display: flex;
  312. justify-content: center;
  313. align-items: center;
  314. margin-top: 30rpx;
  315. padding-bottom: 100rpx;
  316. }
  317. .zykkddr {
  318. height: 400rpx;
  319. position: relative;
  320. }
  321. .zykkddra {
  322. height: 160rpx;
  323. background: #486A92;
  324. border-radius: 0rpx 0rpx 24rpx 24rpx;
  325. }
  326. .zykkddrb {
  327. width: 100%;
  328. opacity: 1;
  329. display: inline-block;
  330. z-index: 2;
  331. position: absolute;
  332. bottom: 0;
  333. }
  334. .zynnuy {
  335. background: #FFFFFF;
  336. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  337. border-radius: 16rpx 16rpx 16rpx 16rpx;
  338. padding: 30rpx 24rpx;
  339. margin-top: 30rpx;
  340. padding-bottom: 200rpx;
  341. }
  342. .zyjjdew {
  343. width: 4rpx;
  344. height: 32rpx;
  345. background: linear-gradient(90deg, #E6F3FF 0%, #B7D9EB 100%);
  346. border-radius: 20rpx 20rpx 20rpx 20rpx;
  347. margin-right: 10rpx;
  348. }
  349. .zyhttry {
  350. display: flex;
  351. justify-content: flex-start;
  352. align-items: center;
  353. font-size: 32rpx;
  354. font-weight: 500;
  355. color: #333333;
  356. line-height: 44rpx;
  357. }
  358. .zytlidde {
  359. display: flex;
  360. justify-content: flex-start;
  361. align-items: center;
  362. margin: 30rpx 0;
  363. }
  364. .zytyyrimg {
  365. width: 136rpx;
  366. min-width: 136rpx;
  367. height: 136rpx;
  368. background: #374B6E;
  369. border-radius: 16rpx 16rpx 16rpx 16rpx;
  370. margin-right: 20rpx;
  371. }
  372. .zytyyopf {
  373. display: flex;
  374. flex-direction: column;
  375. width: 100%;
  376. }
  377. .zytyotxta {
  378. font-size: 28rpx;
  379. font-weight: 500;
  380. color: #333333;
  381. line-height: 40rpx;
  382. }
  383. .zytyotxtb {
  384. font-size: 28rpx;
  385. font-weight: 600;
  386. color: #333333;
  387. line-height: 40rpx;
  388. }
  389. .zytyotxtc {
  390. font-size: 24rpx;
  391. font-weight: 500;
  392. color: #999999;
  393. }
  394. .zytyotxtd {
  395. font-size: 24rpx;
  396. font-weight: 500;
  397. color: #999999;
  398. }
  399. .zyhxyyer {
  400. width: 120%;
  401. height: 2rpx;
  402. background: #F4F4F4;
  403. margin: 0 -58rpx;
  404. }
  405. .mywoddt {
  406. /* background: #374B6E; */
  407. background: #95bf7f;
  408. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  409. color: #FFFFFF;
  410. padding: 10rpx 24rpx;
  411. padding-bottom: 126rpx;
  412. }
  413. .letxtfy {
  414. font-size: 36rpx;
  415. font-weight: 400;
  416. color: #FAFAFA;
  417. line-height: 50rpx;
  418. }
  419. .letxtfya text {
  420. border-radius: 24rpx 24rpx 24rpx 24rpx;
  421. border: 2rpx solid #FFFFFF;
  422. font-size: 24rpx;
  423. font-weight: 400;
  424. color: #FFFFFF;
  425. line-height: 34rpx;
  426. padding: 2rpx 20rpx;
  427. margin-top: 18rpx;
  428. margin-right: 10rpx;
  429. filter: blur(undefinedpx);
  430. }
  431. .letxtfyb text {
  432. font-size: 24rpx;
  433. font-weight: 400;
  434. color: #FAFAFA;
  435. line-height: 34rpx;
  436. }
  437. .leshuxd {
  438. width: 2rpx;
  439. height: 68rpx;
  440. background: #E4E4E4;
  441. }
  442. .lebkty {
  443. background: #FFFFFF;
  444. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  445. border-radius: 16rpx 16rpx 16rpx 16rpx;
  446. font-size: 30rpx;
  447. font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  448. font-weight: bold;
  449. color: #222328;
  450. line-height: 30rpx;
  451. margin: 0 24rpx;
  452. padding: 30rpx 130rpx;
  453. margin-top: -94rpx;
  454. }
  455. .leshurt {
  456. font-size: 24rpx;
  457. font-weight: 400;
  458. color: #51575B;
  459. line-height: 34rpx;
  460. margin-top: 8rpx;
  461. }
  462. .leybbaw {
  463. background: #FFFFFF;
  464. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  465. border-radius: 16rpx 16rpx 16rpx 16rpx;
  466. padding: 4rpx 0;
  467. margin: 20rpx 24rpx;
  468. }
  469. .lelbyyr {
  470. font-size: 28rpx;
  471. font-family: PingFangSC-Regular-, PingFangSC-Regular;
  472. font-weight: normal;
  473. color: #333333;
  474. line-height: 40rpx;
  475. padding: 22rpx 24rpx;
  476. }
  477. .lehettnn {
  478. width: 702rpx;
  479. height: 2rpx;
  480. background: #F4F4F4;
  481. }
  482. .wdlbgt {
  483. background: #FFFFFF;
  484. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  485. border-radius: 16rpx 16rpx 16rpx 16rpx;
  486. padding: 30rpx 20rpx;
  487. margin: 0 24rpx;
  488. margin-bottom: 30rpx;
  489. }
  490. .wdkkjruy {
  491. width: 100%;
  492. margin-left: 20rpx;
  493. }
  494. .wdtxtut {
  495. font-size: 28rpx;
  496. font-weight: 500;
  497. color: #333333;
  498. line-height: 40rpx;
  499. }
  500. .wdtxtuta text {
  501. background: #E2EFF6;
  502. border-radius: 8rpx 8rpx 8rpx 8rpx;
  503. font-size: 24rpx;
  504. font-weight: 500;
  505. color: #374B6E;
  506. line-height: 34rpx;
  507. margin-right: 10rpx;
  508. padding: 4rpx 8rpx;
  509. margin-top: 8rpx;
  510. }
  511. .wdtxtutb text {
  512. font-size: 24rpx;
  513. font-family: Alibaba PuHuiTi-Regular, Alibaba PuHuiTi;
  514. font-weight: 400;
  515. color: #374B6E;
  516. line-height: 34rpx;
  517. margin-top: 8rpx;
  518. }
  519. .wdjga {
  520. font-size: 26rpx;
  521. font-family: Alibaba PuHuiTi-Regular, Alibaba PuHuiTi;
  522. font-weight: 400;
  523. color: #F33130;
  524. margin-top: 8rpx;
  525. }
  526. .wdjgb {
  527. font-size: 40rpx;
  528. font-family: Roboto-Regular, Roboto;
  529. font-weight: 400;
  530. color: #F33130;
  531. }
  532. .wdjgc {
  533. font-size: 28rpx;
  534. font-family: Roboto-Regular, Roboto;
  535. font-weight: 400;
  536. color: #F33130;
  537. margin-top: 8rpx;
  538. }
  539. .sclixmy {
  540. background: #FFFFFF;
  541. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  542. border-radius: 16rpx 16rpx 16rpx 16rpx;
  543. margin: 0 24rpx;
  544. padding: 30rpx 20rpx;
  545. margin-top: 30rpx;
  546. }
  547. .sckjert {
  548. width: 200rpx;
  549. min-width: 200rpx;
  550. height: 160rpx;
  551. border-radius: 16rpx 16rpx 16rpx 16rpx;
  552. background: #41628B;
  553. }
  554. .sctxtyuu {
  555. width: 400rpx;
  556. height: 40rpx;
  557. font-size: 28rpx;
  558. font-weight: 500;
  559. color: #333333;
  560. line-height: 40rpx;
  561. }
  562. .sctxtyuua {
  563. width: 400rpx;
  564. height: 40rpx;
  565. font-size: 24rpx;
  566. font-weight: 500;
  567. color: #999999;
  568. line-height: 40rpx;
  569. margin-bottom: 30rpx;
  570. }
  571. .scjga {
  572. font-size: 24rpx;
  573. font-weight: 400;
  574. color: #666666;
  575. text-decoration: line-through;
  576. margin-left: 4rpx;
  577. margin-top: 8rpx;
  578. }
  579. .cptxtyra {
  580. width: 420rpx;
  581. height: 34rpx;
  582. font-size: 24rpx;
  583. font-family: PingFangSC-Regular-, PingFangSC-Regular;
  584. font-weight: normal;
  585. color: #999999;
  586. line-height: 34rpx;
  587. margin-top: 4rpx;
  588. margin-bottom: 30rpx;
  589. }
  590. .cpkkry {
  591. font-size: 24rpx;
  592. font-family: PingFangSC-Regular-, PingFangSC-Regular;
  593. font-weight: normal;
  594. color: #999999;
  595. }
  596. .cpkkrya {
  597. font-size: 28rpx;
  598. font-family: Alibaba PuHuiTi-Regular, Alibaba PuHuiTi;
  599. font-weight: 400;
  600. color: #2C3E50;
  601. }
  602. .cphrry {
  603. width: 400rpx;
  604. height: 40rpx;
  605. font-size: 28rpx;
  606. font-family: PingFangSC-Medium-, PingFangSC-Medium;
  607. font-weight: normal;
  608. color: #2C3E50;
  609. line-height: 40rpx;
  610. }
  611. .cpfapryu {
  612. background: #FFFFFF;
  613. box-shadow: 0rpx 0rpx 20rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  614. border-radius: 16rpx 16rpx 16rpx 16rpx;
  615. padding: 40rpx 24rpx;
  616. margin: 30rpx 24rpx;
  617. }
  618. .cpfapryukan {
  619. padding: 10rpx;
  620. min-height: 862rpx;
  621. }
  622. .zxkjyr {
  623. display: flex;
  624. justify-content: space-between;
  625. align-items: center;
  626. background: #FFFFFF;
  627. box-shadow: 0rpx 0rpx 20rpx 2rpx rgba(0, 0, 0, 0.10196078431372549);
  628. padding: 0 160rpx;
  629. padding-top: 12rpx;
  630. }
  631. .zxkjyra {
  632. display: flex;
  633. flex-direction: column;
  634. align-items: center;
  635. justify-content: center;
  636. }
  637. .zxkjyra text {
  638. font-size: 32rpx;
  639. font-weight: 500;
  640. color: #666666;
  641. line-height: 44rpx;
  642. }
  643. .zxkjyrff text {
  644. font-size: 37rpx;
  645. font-weight: 500;
  646. color: #374B6E;
  647. line-height: 60rpx;
  648. }
  649. .zxkjxh {
  650. width: 26rpx;
  651. height: 4rpx;
  652. background: #ffffff;
  653. border-radius: 4rpx 4rpx 4rpx 4rpx;
  654. margin-top: 10rpx;
  655. }
  656. .zxkjyrff .zxkjxh {
  657. background: #374B6E;
  658. }
  659. .shiddwe {
  660. background: #374B6E;
  661. padding: 0 24rpx;
  662. color: #FFFFFF;
  663. padding-bottom: 50rpx;
  664. }
  665. .shiufh {
  666. width: 250rpx;
  667. padding: 0 30rpx;
  668. ;
  669. font-size: 30rpx;
  670. font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  671. font-weight: bold;
  672. color: #FFFFFF;
  673. line-height: 30rpx;
  674. }
  675. .shiufhtx {
  676. font-size: 24rpx;
  677. font-weight: 400;
  678. color: #FFFFFF;
  679. line-height: 34rpx;
  680. margin-top: 8rpx;
  681. }
  682. .shiwdmmt {
  683. background: #FAFAFA;
  684. border-radius: 16rpx 16rpx 16rpx 16rpx;
  685. padding: 30rpx 24rpx;
  686. margin-top: -20rpx;
  687. }
  688. .shibbert {
  689. background: #FFFFFF;
  690. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  691. border-radius: 16rpx 16rpx 16rpx 16rpx;
  692. padding: 30rpx;
  693. margin-top: 30rpx;
  694. }
  695. .shitxty {
  696. height: 28rpx;
  697. font-size: 28rpx;
  698. font-family: Roboto-Regular, Roboto;
  699. font-weight: 400;
  700. color: #374B6E;
  701. line-height: 28rpx;
  702. }
  703. .shitxtya {
  704. font-size: 24rpx;
  705. font-weight: 400;
  706. color: #333333;
  707. }
  708. .shikwer {
  709. width: 644rpx;
  710. height: 120rpx;
  711. font-size: 28rpx;
  712. font-weight: 400;
  713. color: #333333;
  714. }
  715. .shitoob {
  716. background: #FFFFFF;
  717. box-shadow: 0rpx 0rpx 0rpx 2rpx #E4E4E4;
  718. padding: 18rpx 0;
  719. bottom: 0;
  720. left: 0;
  721. width: 100%;
  722. z-index: 998;
  723. position: fixed;
  724. }
  725. /* #ifdef MP-WEIXIN */
  726. .shitoob {
  727. /* padding-bottom: constant(safe-area-inset-bottom);
  728. padding-bottom: env(safe-area-inset-bottom); */
  729. box-sizing: border-box;
  730. padding-bottom: 10rpx;
  731. }
  732. /* #endif */
  733. .shitoobtxt {
  734. width: 462rpx;
  735. height: 96rpx;
  736. background: #374B6E;
  737. border-radius: 120rpx 120rpx 120rpx 120rpx;
  738. font-size: 36rpx;
  739. font-family: Alibaba PuHuiTi-Bold, Alibaba PuHuiTi;
  740. font-weight: bold;
  741. color: #FFFFFF;
  742. line-height: 96rpx;
  743. text-align: center;
  744. }
  745. .jhkanuy {
  746. background: #FFFFFF;
  747. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  748. border-radius: 20rpx 20rpx 20rpx 20rpx;
  749. padding: 30rpx 24rpx;
  750. margin: 0 24rpx;
  751. margin-top: 30rpx;
  752. }
  753. .jhtxty {
  754. font-size: 32rpx;
  755. font-weight: 400;
  756. color: #1D212C;
  757. line-height: 44rpx;
  758. }
  759. .jhtxtya {
  760. font-size: 22rpx;
  761. font-weight: 400;
  762. color: #888F9F;
  763. }
  764. .jhtxtyb {
  765. font-size: 26rpx;
  766. font-weight: 400;
  767. color: #999999;
  768. line-height: 36rpx;
  769. margin-top: 6rpx;
  770. }
  771. .jhtxtyc {
  772. font-size: 24rpx;
  773. font-weight: 400;
  774. color: #1D212C;
  775. margin-top: 30rpx;
  776. }
  777. .hdtyyr {
  778. font-size: 24rpx;
  779. font-weight: normal;
  780. color: #999999;
  781. line-height: 34rpx;
  782. }
  783. .hdtyyra {
  784. border: 2rpx solid #999999;
  785. font-size: 24rpx;
  786. font-family: PingFangSC-Regular-, PingFangSC-Regular;
  787. font-weight: normal;
  788. color: #999999;
  789. border-radius: 32rpx;
  790. padding: 8rpx 32rpx;
  791. margin-left: 12rpx;
  792. }
  793. .kcwwerrt text {
  794. background: #F4F4F4;
  795. border-radius: 38rpx 38rpx 38rpx 38rpx;
  796. font-size: 20rpx;
  797. font-weight: 400;
  798. color: #999999;
  799. padding: 4rpx 20rpx;
  800. margin-right: 10rpx;
  801. }
  802. .jhwdmmt {
  803. margin: 0 24rpx;
  804. margin-top: 30rpx;
  805. }
  806. .hfikwer {
  807. font-size: 28rpx;
  808. font-weight: 400;
  809. color: #333333;
  810. }
  811. .hfuyerrt {
  812. font-size: 28rpx;
  813. font-weight: bold;
  814. color: #333333;
  815. line-height: 40rpx;
  816. margin-bottom: 10rpx;
  817. }
  818. .hfddwerr {
  819. width: 100%;
  820. background: #E8E8E8;
  821. font-size: 28rpx;
  822. font-weight: 400;
  823. color: #333333;
  824. line-height: 40rpx;
  825. padding: 14rpx 24rpx;
  826. margin-right: 20rpx;
  827. border-radius: 38rpx;
  828. }
  829. .hfddwett {
  830. background: #374B6E;
  831. color: #FFFFFF;
  832. padding: 14rpx 0rpx;
  833. border-radius: 12rpx;
  834. width: 110rpx;
  835. min-width: 110rpx;
  836. font-size: 28rpx;
  837. font-family: Alibaba PuHuiTi-Regular, Alibaba PuHuiTi;
  838. font-weight: 400;
  839. color: #FFFFFF;
  840. text-align: center;
  841. }
  842. .hfddwevde {
  843. position: fixed;
  844. bottom: 0;
  845. left: 0;
  846. padding: 16rpx 24rpx;
  847. background: #FFFFFF;
  848. box-shadow: 0rpx 0rpx 12rpx 2rpx rgba(0, 0, 0, 0.1607843137254902);
  849. width: 100%;
  850. }
  851. /* #ifdef MP-WEIXIN */
  852. .hfddwevde {
  853. padding-bottom: constant(safe-area-inset-bottom);
  854. padding-bottom: env(safe-area-inset-bottom);
  855. }
  856. /* #endif */
  857. .ddxqship {
  858. height: 404rpx;
  859. background: #476891;
  860. }
  861. .ddxqfayu {
  862. background: #FFFFFF;
  863. box-shadow: 0rpx 0rpx 20rpx 2rpx #0000000f;
  864. border-radius: 16rpx 16rpx 16rpx 16rpx;
  865. padding: 40rpx 24rpx;
  866. margin-top: 30rpx;
  867. }
  868. .kcxquyr {
  869. width: 200rpx;
  870. font-size: 28rpx;
  871. font-weight: 500;
  872. color: #333333;
  873. line-height: 40rpx;
  874. }
  875. .kcxquyra {
  876. font-size: 28rpx;
  877. font-weight: 400;
  878. color: #999999;
  879. line-height: 40rpx;
  880. }
  881. .yywegg .u-mode-center-box {
  882. background-color: #ffffff00 !important;
  883. }
  884. .wddimg {
  885. width: 200rpx;
  886. height: 200rpx;
  887. margin-right: 38rpx;
  888. border-radius: 190rpx;
  889. box-shadow: 0rpx 0rpx 20rpx 2rpx rgba(0, 0, 0, 0.1607843137254902);
  890. border: 4rpx solid #FFFFFF;
  891. }
  892. .wddvbhtxt {
  893. font-size: 50rpx;
  894. font-weight: normal;
  895. color: #333333;
  896. line-height: 72rpx;
  897. margin-top: 18rpx;
  898. }
  899. .wdcjeer {
  900. background: #FFFFFF;
  901. width: 700rpx;
  902. border-radius: 20rpx;
  903. position: relative;
  904. margin: 100rpx 0;
  905. margin-bottom: 160rpx;
  906. }
  907. .wddvbh {
  908. font-size: 58rpx;
  909. font-weight: normal;
  910. color: #333333;
  911. display: flex;
  912. flex-direction: column;
  913. align-items: center;
  914. justify-content: center;
  915. margin-top: 10rpx;
  916. z-index: 2;
  917. position: absolute;
  918. left: 0rpx;
  919. width: 100%;
  920. z-index: 998;
  921. top: -100rpx;
  922. padding: 2rpx;
  923. }
  924. .wddvbhyu {
  925. font-size: 58rpx;
  926. font-weight: normal;
  927. color: #333333;
  928. display: flex;
  929. justify-content: space-between;
  930. align-items: center;
  931. margin-top: 10rpx;
  932. z-index: 2;
  933. position: absolute;
  934. left: 0rpx;
  935. width: 100%;
  936. z-index: 998;
  937. bottom: -160rpx;
  938. padding: 0 56rpx;
  939. }
  940. .wdbhgt {
  941. overflow-x: hidden;
  942. background: url(/static/my/myr1.png) top center no-repeat;
  943. background-size: 100% auto;
  944. width: 366rpx;
  945. height: 366rpx;
  946. margin-top: 126rpx;
  947. display: flex;
  948. flex-direction: column;
  949. align-items: center;
  950. justify-content: center;
  951. }
  952. .wddbwwt {
  953. display: flex;
  954. flex-direction: column;
  955. align-items: center;
  956. justify-content: center;
  957. }
  958. .wdbhddn {
  959. font-size: 36rpx;
  960. font-weight: 500;
  961. color: #333333;
  962. margin-bottom: 40rpx;
  963. margin-top: 160rpx;
  964. }
  965. .jhuudd {
  966. font-size: 28rpx;
  967. font-weight: 500;
  968. color: #333333;
  969. }
  970. .jhdurr {
  971. display: flex;
  972. justify-content: flex-start;
  973. overflow-x: auto;
  974. background: #FFFFFF;
  975. padding: 24rpx;
  976. background: #FFFFFF;
  977. box-shadow: 0rpx 6rpx 20rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  978. }
  979. .jhdurryt {
  980. width: 100%;
  981. margin-right: 60rpx;
  982. white-space: nowrap;
  983. }
  984. .youjdje {
  985. position: fixed;
  986. bottom: 160rpx;
  987. right: 20rpx;
  988. }
  989. /* #ifdef MP-WEIXIN */
  990. .youjdje {
  991. padding-bottom: constant(safe-area-inset-bottom);
  992. padding-bottom: env(safe-area-inset-bottom);
  993. }
  994. /* #endif */
  995. .xuehhbfr {
  996. padding: 30rpx 24rpx;
  997. }
  998. .xiekkt {
  999. margin-top: 20rpx;
  1000. }
  1001. .fktxtr {
  1002. font-size: 32rpx;
  1003. font-weight: 400;
  1004. color: #999999;
  1005. }
  1006. .fknbee {
  1007. width: 100%;
  1008. position: fixed;
  1009. bottom: 0;
  1010. left: 0;
  1011. }
  1012. /* #ifdef MP-WEIXIN */
  1013. .fknbee {
  1014. padding-bottom: constant(safe-area-inset-bottom);
  1015. padding-bottom: env(safe-area-inset-bottom);
  1016. }
  1017. /* #endif */
  1018. .fkdibr {
  1019. width: 462rpx;
  1020. padding: 24rpx 0rpx;
  1021. background: #374B6E;
  1022. border-radius: 120rpx 120rpx 120rpx 120rpx;
  1023. font-size: 36rpx;
  1024. font-family: Alibaba PuHuiTi-Bold, Alibaba PuHuiTi;
  1025. font-weight: bold;
  1026. color: #FFFFFF;
  1027. margin-bottom: 16rpx;
  1028. }
  1029. .cpsahngc .u-list-item {
  1030. background: url(/static/user/usa1.png) top center no-repeat !important;
  1031. background-size: 100% auto !important;
  1032. }
  1033. .cpjgtxt {
  1034. padding: 10rpx;
  1035. font-size: 32rpx;
  1036. font-weight: 400;
  1037. color: #666666;
  1038. line-height: 44rpx;
  1039. }
  1040. .cpjgkan {
  1041. background: #374B6E;
  1042. border-radius: 16rpx 16rpx 16rpx 16rpx;
  1043. ;
  1044. font-size: 32rpx;
  1045. font-family: Alibaba PuHuiTi-Bold, Alibaba PuHuiTi;
  1046. font-weight: bold;
  1047. color: #FFFFFF;
  1048. text-align: center;
  1049. padding: 14rpx 0;
  1050. margin: 0 54rpx;
  1051. margin-top: 30rpx;
  1052. }
  1053. .cpjgkanb {
  1054. background: linear-gradient(180deg, #FFE9D1 0%, #F0C99D 100%);
  1055. border-radius: 16rpx 16rpx 16rpx 16rpx;
  1056. font-size: 32rpx;
  1057. font-family: Alibaba PuHuiTi-Bold, Alibaba PuHuiTi;
  1058. font-weight: bold;
  1059. color: #FFFFFF;
  1060. text-align: center;
  1061. padding: 14rpx 0;
  1062. margin: 0 54rpx;
  1063. margin-top: 20rpx;
  1064. color: #34353C;
  1065. }
  1066. .cpsahnty {
  1067. background: #FFFFFF;
  1068. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  1069. border-radius: 32rpx 32rpx 32rpx 32rpx;
  1070. margin: 0 24rpx;
  1071. margin-top: 40rpx;
  1072. padding-bottom: 40rpx;
  1073. }
  1074. .cpsahtxt {
  1075. font-size: 28rpx;
  1076. font-weight: bold;
  1077. color: #333333;
  1078. line-height: 40rpx;
  1079. padding: 30rpx;
  1080. }
  1081. .cpsahngc {}
  1082. .hduuyr {
  1083. height: 404rpx;
  1084. background: #4B6C96;
  1085. }
  1086. .hdxiahuax {
  1087. background: #F4F4F4;
  1088. width: 100%;
  1089. height: 2rpx;
  1090. }
  1091. .hdlixmr {
  1092. padding: 20rpx 36rpx;
  1093. font-size: 32rpx;
  1094. font-family: Alibaba PuHuiTi-Regular, Alibaba PuHuiTi;
  1095. font-weight: 400;
  1096. color: #333333;
  1097. line-height: 44rpx;
  1098. }
  1099. .hdxqmmfr {
  1100. background: #FFFFFF;
  1101. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  1102. border-radius: 16rpx 16rpx 16rpx 16rpx;
  1103. margin-top: -20rpx;
  1104. }
  1105. .hdxqtxtye {
  1106. font-size: 32rpx;
  1107. font-family: Alibaba PuHuiTi-Regular, Alibaba PuHuiTi;
  1108. font-weight: 400;
  1109. color: #333333;
  1110. margin-left: 15rpx;
  1111. margin-top: 20rpx;
  1112. min-height: 392rpx;
  1113. }
  1114. .hdtcwenh uni-textarea {
  1115. width: 100%;
  1116. height: 300rpx;
  1117. }
  1118. .hdtgyyqb {
  1119. background: #FFFFFF;
  1120. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  1121. border-radius: 16rpx 16rpx 16rpx 16rpx;
  1122. padding: 22rpx 20rpx;
  1123. margin: 0 24rpx;
  1124. margin-top: 30rpx;
  1125. }
  1126. .hdtcuur {
  1127. font-size: 28rpx;
  1128. font-weight: 600;
  1129. color: #333333;
  1130. line-height: 40rpx;
  1131. margin: 8rpx 0;
  1132. }
  1133. .hdtcuutxta {
  1134. font-size: 28rpx;
  1135. font-weight: 400;
  1136. color: #999999;
  1137. line-height: 40rpx;
  1138. }
  1139. .hdtcuutxt {
  1140. width: 160rpx;
  1141. }
  1142. .hdtcjr {
  1143. background: #FFFFFF;
  1144. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  1145. border-radius: 16rpx 16rpx 16rpx 16rpx;
  1146. padding: 30rpx 20rpx;
  1147. margin: 0 24rpx;
  1148. margin-top: 30rpx;
  1149. }
  1150. .hdtcjra {
  1151. font-size: 28rpx;
  1152. font-weight: 600;
  1153. color: #333333;
  1154. line-height: 40rpx;
  1155. margin-bottom: 2rpx;
  1156. }
  1157. .hdtcjrb {
  1158. font-size: 48rpx;
  1159. font-family: Alibaba PuHuiTi-Bold, Alibaba PuHuiTi;
  1160. font-weight: bold;
  1161. color: #333333;
  1162. line-height: 66rpx;
  1163. }
  1164. .hdtcjrc {
  1165. font-size: 28rpx;
  1166. font-weight: 400;
  1167. color: #999999;
  1168. line-height: 40rpx;
  1169. margin-top: 60rpx;
  1170. }
  1171. .hdtcwenh {
  1172. margin-top: 12rpx;
  1173. font-size: 28rpx;
  1174. font-weight: 400;
  1175. color: #999999;
  1176. line-height: 40rpx;
  1177. }
  1178. .scjhrw {
  1179. width: 100%;
  1180. height: 2rpx;
  1181. background: #F4F4F4;
  1182. margin: 14rpx 0;
  1183. }
  1184. .scmbberr {
  1185. height: 2rpx;
  1186. opacity: 0.2;
  1187. background: #000000;
  1188. margin: 0 11rpx;
  1189. margin-top: -2rpx;
  1190. margin-bottom: 70rpx;
  1191. }
  1192. .scuuerm {
  1193. padding: 0 11rpx;
  1194. }
  1195. .sczhbry {
  1196. display: flex;
  1197. flex-direction: column;
  1198. align-items: center;
  1199. justify-content: center;
  1200. font-size: 32rpx;
  1201. width: 50%;
  1202. color: #666666;
  1203. line-height: 60rpx;
  1204. }
  1205. .sczhbry text {
  1206. margin-bottom: 12rpx;
  1207. }
  1208. .sctyxer {
  1209. font-size: 44rpx;
  1210. font-weight: 500;
  1211. color: #374B6E;
  1212. }
  1213. .sctyxer .scmmtui {
  1214. background: #374B6E;
  1215. }
  1216. .scmmtui {
  1217. height: 4rpx;
  1218. width: 100%;
  1219. opacity: 1;
  1220. }
  1221. .sczbfmty {
  1222. font-size: 28rpx;
  1223. font-weight: 600;
  1224. color: #333333;
  1225. line-height: 40rpx;
  1226. margin-bottom: 10rpx;
  1227. }
  1228. .scjjhrt {
  1229. width: 100%;
  1230. margin-top: 220rpx;
  1231. padding-bottom: 80rpx;
  1232. }
  1233. .wdkcxjr {
  1234. width: 462rpx;
  1235. padding: 24rpx 0rpx;
  1236. border-radius: 120rpx 120rpx 120rpx 120rpx;
  1237. font-size: 36rpx;
  1238. font-family: Alibaba PuHuiTi-Bold, Alibaba PuHuiTi;
  1239. font-weight: bold;
  1240. color: #374B6E;
  1241. margin-bottom: 16rpx;
  1242. border: 2rpx solid #374B6E;
  1243. }
  1244. .rmkdwwer {
  1245. display: flex;
  1246. flex-direction: column;
  1247. align-items: center;
  1248. justify-content: center;
  1249. width: 100%;
  1250. height: 104rpx;
  1251. padding: 0 24rpx;
  1252. }
  1253. .rmkhdurr {
  1254. display: flex;
  1255. justify-content: flex-start;
  1256. overflow-x: auto;
  1257. background: #FFFFFF;
  1258. padding: 0 30rpx;
  1259. }
  1260. .rmknuy {
  1261. background: #FFFFFF;
  1262. border-radius: 16rpx 16rpx 16rpx 16rpx;
  1263. margin-top: 10rpx;
  1264. padding: 10rpx 0;
  1265. padding-bottom: 200rpx;
  1266. box-shadow: 0rpx 0rpx 16rpx 2rpx rgba(0, 0, 0, 0.058823529411764705);
  1267. }
  1268. .kcquuer{
  1269. background: #FFFFFF;
  1270. box-shadow: 0rpx 0rpx 0rpx 2rpx #E4E4E4;
  1271. padding: 10rpx 30rpx;
  1272. position: fixed;
  1273. bottom: 0;
  1274. left: 0;
  1275. width: 100%;
  1276. z-index: 998;
  1277. background: #FFFFFF;
  1278. }
  1279. /* #ifdef MP-WEIXIN */
  1280. .kcquuer {
  1281. box-sizing: border-box;
  1282. padding-bottom: 10rpx;
  1283. }
  1284. /* #endif */
  1285. .kqyyefh{
  1286. background: #95bf7f;
  1287. border-radius: 120rpx 120rpx 120rpx 120rpx;
  1288. font-size: 30rpx;
  1289. font-family: Alibaba PuHuiTi-Bold, Alibaba PuHuiTi;
  1290. font-weight: bold;
  1291. color: #FFFFFF;
  1292. padding: 22rpx 0;
  1293. width: 47%;
  1294. text-align: center;
  1295. }
  1296. .kqyyefha{
  1297. background: linear-gradient(180deg, #FFE9D1 0%, #F0C99D 100%);
  1298. border-radius: 120rpx 120rpx 120rpx 120rpx;
  1299. font-size: 30rpx;
  1300. font-family: Alibaba PuHuiTi-Bold, Alibaba PuHuiTi;
  1301. font-weight: bold;
  1302. color: #34353C;
  1303. padding: 22rpx 0;
  1304. width: 47%;
  1305. text-align: center;
  1306. }
  1307. .dltoor{
  1308. position: fixed;
  1309. bottom: 170rpx;
  1310. left: 0;
  1311. width: 100%;
  1312. }
  1313. /* #ifdef MP-WEIXIN */
  1314. .dltoor {
  1315. padding-bottom: constant(safe-area-inset-bottom);
  1316. padding-bottom: env(safe-area-inset-bottom);
  1317. }
  1318. /* #endif */
  1319. .dlyhr{
  1320. width: 476rpx;
  1321. background: #AFB6C5;
  1322. border-radius: 80rpx 80rpx 80rpx 80rpx;
  1323. font-size: 32rpx;
  1324. font-weight: normal;
  1325. color: #FFFFFF;
  1326. line-height:44rpx;
  1327. padding: 20rpx 0;
  1328. text-align: center;
  1329. }
  1330. .dlyzxs{
  1331. width: 476rpx;
  1332. background: #88BBDA;
  1333. border-radius: 80rpx 80rpx 80rpx 80rpx;
  1334. font-size: 32rpx;
  1335. font-weight: normal;
  1336. color: #FFFFFF;
  1337. line-height: 44rpx;
  1338. padding: 20rpx 0;
  1339. text-align: center;
  1340. margin-top: 40rpx;
  1341. }