styles.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:772px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u43653 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u43654 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u43654 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u43654_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u43654_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u43655_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u43655 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u43655 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u43655_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u43656 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u43657_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u43657 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u43657 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u43657_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u43658 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u43659 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u43659 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u43659_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u43659_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u43660 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u43660 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u43660_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u43660_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u43661 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u43662 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u43662 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u43662_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u43662_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u43663 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u43663 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u43663_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u43663_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u43664 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u43664 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u43664_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u43664_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u43665 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u43665 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u43665_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u43665_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u43666 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u43666 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u43666_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u43666_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u43667_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u43667 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u43667 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u43667_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u43668 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u43669 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u43669 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u43669_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u43669_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u43670_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u43670 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u43670 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u43670_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u43671 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u43672 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u43672 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u43672_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u43672_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u43673_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u43673 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u43673 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u43673_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u43674_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u43674 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u43674 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u43674_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u43675 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u43676 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u43676 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u43676_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u43676_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u43677_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u43677 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u43677 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u43677_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u43678 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u43679 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u43679 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u43679_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u43679_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u43680_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u43680 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u43680 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u43680_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u43681_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:735px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:35px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  818. font-weight:400;
  819. font-style:normal;
  820. }
  821. #u43681 {
  822. border-width:0px;
  823. position:absolute;
  824. left:29px;
  825. top:106px;
  826. width:375px;
  827. height:735px;
  828. display:flex;
  829. transition:none;
  830. transform-origin:50% 50%;
  831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  832. font-weight:400;
  833. font-style:normal;
  834. }
  835. #u43681 .text {
  836. position:absolute;
  837. align-self:center;
  838. padding:2px 2px 2px 2px;
  839. box-sizing:border-box;
  840. width:100%;
  841. }
  842. #u43681_text {
  843. border-width:0px;
  844. word-wrap:break-word;
  845. text-transform:none;
  846. visibility:hidden;
  847. }
  848. #u43682_div {
  849. border-width:0px;
  850. position:absolute;
  851. left:0px;
  852. top:0px;
  853. width:375px;
  854. height:40px;
  855. background:inherit;
  856. background-color:rgba(255, 255, 255, 1);
  857. box-sizing:border-box;
  858. border-width:1px;
  859. border-style:solid;
  860. border-color:rgba(215, 215, 215, 1);
  861. border-left:0px;
  862. border-top:0px;
  863. border-right:0px;
  864. border-radius:0px;
  865. border-bottom-right-radius:0px;
  866. border-bottom-left-radius:0px;
  867. filter:drop-shadow(none);
  868. transition:none;
  869. }
  870. #u43682 {
  871. border-width:0px;
  872. position:absolute;
  873. left:29px;
  874. top:67px;
  875. width:375px;
  876. height:40px;
  877. display:flex;
  878. transition:none;
  879. transform-origin:50% 50%;
  880. }
  881. #u43682 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u43682_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u43683 {
  895. border-width:0px;
  896. position:absolute;
  897. left:29px;
  898. top:24px;
  899. width:375px;
  900. height:44px;
  901. display:flex;
  902. transition:none;
  903. }
  904. #u43683 .text {
  905. position:absolute;
  906. align-self:center;
  907. padding:2px 2px 2px 2px;
  908. box-sizing:border-box;
  909. width:100%;
  910. }
  911. #u43683_img {
  912. border-width:0px;
  913. position:absolute;
  914. left:0px;
  915. top:0px;
  916. width:375px;
  917. height:44px;
  918. }
  919. #u43683_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u43684 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u43685_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:88px;
  939. height:32px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 1);
  942. box-sizing:border-box;
  943. border-width:1px;
  944. border-style:solid;
  945. border-color:rgba(242, 242, 242, 1);
  946. border-radius:33px;
  947. filter:drop-shadow(none);
  948. transition:none;
  949. }
  950. #u43685 {
  951. border-width:0px;
  952. position:absolute;
  953. left:309px;
  954. top:71px;
  955. width:88px;
  956. height:32px;
  957. display:flex;
  958. transition:none;
  959. transform-origin:50% 50%;
  960. }
  961. #u43685 .text {
  962. position:absolute;
  963. align-self:center;
  964. padding:2px 2px 2px 2px;
  965. box-sizing:border-box;
  966. width:100%;
  967. }
  968. #u43685_text {
  969. border-width:0px;
  970. word-wrap:break-word;
  971. text-transform:none;
  972. visibility:hidden;
  973. }
  974. #u43686 {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:0px;
  980. height:0px;
  981. }
  982. #u43687 {
  983. border-width:0px;
  984. position:absolute;
  985. left:372px;
  986. top:78px;
  987. width:18px;
  988. height:18px;
  989. display:flex;
  990. transition:none;
  991. }
  992. #u43687 .text {
  993. position:absolute;
  994. align-self:center;
  995. padding:2px 2px 2px 2px;
  996. box-sizing:border-box;
  997. width:100%;
  998. }
  999. #u43687_img {
  1000. border-width:0px;
  1001. position:absolute;
  1002. left:0px;
  1003. top:0px;
  1004. width:18px;
  1005. height:18px;
  1006. }
  1007. #u43687_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u43688 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:378px;
  1017. top:84px;
  1018. width:6px;
  1019. height:6px;
  1020. display:flex;
  1021. transition:none;
  1022. }
  1023. #u43688 .text {
  1024. position:absolute;
  1025. align-self:center;
  1026. padding:2px 2px 2px 2px;
  1027. box-sizing:border-box;
  1028. width:100%;
  1029. }
  1030. #u43688_img {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:0px;
  1034. top:0px;
  1035. width:6px;
  1036. height:6px;
  1037. }
  1038. #u43688_text {
  1039. border-width:0px;
  1040. word-wrap:break-word;
  1041. text-transform:none;
  1042. visibility:hidden;
  1043. }
  1044. #u43689 {
  1045. border-width:0px;
  1046. position:absolute;
  1047. left:0px;
  1048. top:0px;
  1049. width:0px;
  1050. height:0px;
  1051. }
  1052. #u43690 {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:323px;
  1056. top:85px;
  1057. width:5px;
  1058. height:5px;
  1059. display:flex;
  1060. transition:none;
  1061. }
  1062. #u43690 .text {
  1063. position:absolute;
  1064. align-self:center;
  1065. padding:2px 2px 2px 2px;
  1066. box-sizing:border-box;
  1067. width:100%;
  1068. }
  1069. #u43690_img {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:5px;
  1075. height:5px;
  1076. }
  1077. #u43690_text {
  1078. border-width:0px;
  1079. word-wrap:break-word;
  1080. text-transform:none;
  1081. visibility:hidden;
  1082. }
  1083. #u43691 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:339px;
  1087. top:85px;
  1088. width:5px;
  1089. height:5px;
  1090. display:flex;
  1091. transition:none;
  1092. }
  1093. #u43691 .text {
  1094. position:absolute;
  1095. align-self:center;
  1096. padding:2px 2px 2px 2px;
  1097. box-sizing:border-box;
  1098. width:100%;
  1099. }
  1100. #u43691_img {
  1101. border-width:0px;
  1102. position:absolute;
  1103. left:0px;
  1104. top:0px;
  1105. width:5px;
  1106. height:5px;
  1107. }
  1108. #u43691_text {
  1109. border-width:0px;
  1110. word-wrap:break-word;
  1111. text-transform:none;
  1112. visibility:hidden;
  1113. }
  1114. #u43692 {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:330px;
  1118. top:84px;
  1119. width:7px;
  1120. height:7px;
  1121. display:flex;
  1122. transition:none;
  1123. }
  1124. #u43692 .text {
  1125. position:absolute;
  1126. align-self:center;
  1127. padding:2px 2px 2px 2px;
  1128. box-sizing:border-box;
  1129. width:100%;
  1130. }
  1131. #u43692_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:7px;
  1137. height:7px;
  1138. }
  1139. #u43692_text {
  1140. border-width:0px;
  1141. word-wrap:break-word;
  1142. text-transform:none;
  1143. visibility:hidden;
  1144. }
  1145. #u43693 {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:347px;
  1149. top:87px;
  1150. width:18px;
  1151. height:1px;
  1152. display:flex;
  1153. -webkit-transform:rotate(90deg);
  1154. -moz-transform:rotate(90deg);
  1155. -ms-transform:rotate(90deg);
  1156. transform:rotate(90deg);
  1157. transition:none;
  1158. }
  1159. #u43693 .text {
  1160. position:absolute;
  1161. align-self:center;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u43693_img {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:19px;
  1172. height:2px;
  1173. }
  1174. #u43693_text {
  1175. border-width:0px;
  1176. word-wrap:break-word;
  1177. text-transform:none;
  1178. visibility:hidden;
  1179. }
  1180. #u43694_div {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:65px;
  1186. height:22px;
  1187. background:inherit;
  1188. background-color:rgba(255, 255, 255, 0);
  1189. border-radius:0px;
  1190. filter:drop-shadow(none);
  1191. transition:none;
  1192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:16px;
  1196. color:#000000;
  1197. }
  1198. #u43694 {
  1199. border-width:0px;
  1200. position:absolute;
  1201. left:174px;
  1202. top:78px;
  1203. width:65px;
  1204. height:22px;
  1205. display:flex;
  1206. transition:none;
  1207. transform-origin:50% 50%;
  1208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1209. font-weight:400;
  1210. font-style:normal;
  1211. font-size:16px;
  1212. color:#000000;
  1213. }
  1214. #u43694 .text {
  1215. position:absolute;
  1216. align-self:flex-start;
  1217. padding:0px 0px 0px 0px;
  1218. box-sizing:border-box;
  1219. width:100%;
  1220. }
  1221. #u43694_text {
  1222. border-width:0px;
  1223. white-space:nowrap;
  1224. text-transform:none;
  1225. }
  1226. #u43695_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:12px;
  1232. height:12px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. box-sizing:border-box;
  1236. border-width:2px;
  1237. border-style:solid;
  1238. border-color:rgba(51, 51, 51, 1);
  1239. border-right:0px;
  1240. border-bottom:0px;
  1241. border-radius:0px;
  1242. border-top-right-radius:0px;
  1243. border-bottom-left-radius:0px;
  1244. filter:drop-shadow(none);
  1245. transition:none;
  1246. }
  1247. #u43695 {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:46px;
  1251. top:81px;
  1252. width:12px;
  1253. height:12px;
  1254. display:flex;
  1255. -webkit-transform:rotate(315deg);
  1256. -moz-transform:rotate(315deg);
  1257. -ms-transform:rotate(315deg);
  1258. transform:rotate(315deg);
  1259. transition:none;
  1260. transform-origin:50% 50%;
  1261. }
  1262. #u43695 .text {
  1263. position:absolute;
  1264. align-self:center;
  1265. padding:2px 2px 2px 2px;
  1266. box-sizing:border-box;
  1267. width:100%;
  1268. }
  1269. #u43695_text {
  1270. border-width:0px;
  1271. word-wrap:break-word;
  1272. text-transform:none;
  1273. visibility:hidden;
  1274. }
  1275. #u43696 {
  1276. border-width:0px;
  1277. position:absolute;
  1278. left:73px;
  1279. top:76px;
  1280. width:23px;
  1281. height:23px;
  1282. display:flex;
  1283. transition:none;
  1284. }
  1285. #u43696 .text {
  1286. position:absolute;
  1287. align-self:center;
  1288. padding:2px 2px 2px 2px;
  1289. box-sizing:border-box;
  1290. width:100%;
  1291. }
  1292. #u43696_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:23px;
  1298. height:23px;
  1299. }
  1300. #u43696_text {
  1301. border-width:0px;
  1302. word-wrap:break-word;
  1303. text-transform:none;
  1304. visibility:hidden;
  1305. }
  1306. #u43697 {
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:0px;
  1310. top:0px;
  1311. width:0px;
  1312. height:0px;
  1313. }
  1314. #u43698_div {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:0px;
  1318. top:0px;
  1319. width:375px;
  1320. height:50px;
  1321. background:inherit;
  1322. background-color:rgba(255, 255, 255, 1);
  1323. border-radius:0px;
  1324. filter:drop-shadow(none);
  1325. transition:none;
  1326. }
  1327. #u43698 {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:30px;
  1331. top:106px;
  1332. width:375px;
  1333. height:50px;
  1334. display:flex;
  1335. transition:none;
  1336. transform-origin:50% 50%;
  1337. }
  1338. #u43698 .text {
  1339. position:absolute;
  1340. align-self:center;
  1341. padding:2px 2px 2px 2px;
  1342. box-sizing:border-box;
  1343. width:100%;
  1344. }
  1345. #u43698_text {
  1346. border-width:0px;
  1347. word-wrap:break-word;
  1348. text-transform:none;
  1349. visibility:hidden;
  1350. }
  1351. #u43699 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:0px;
  1355. top:0px;
  1356. width:0px;
  1357. height:0px;
  1358. }
  1359. #u43700 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:0px;
  1363. top:0px;
  1364. width:0px;
  1365. height:0px;
  1366. }
  1367. #u43701_div {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:0px;
  1371. top:0px;
  1372. width:347px;
  1373. height:30px;
  1374. background:inherit;
  1375. background-color:rgba(242, 242, 242, 1);
  1376. border-radius:20px;
  1377. filter:drop-shadow(none);
  1378. transition:none;
  1379. }
  1380. #u43701 {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:43px;
  1384. top:116px;
  1385. width:347px;
  1386. height:30px;
  1387. display:flex;
  1388. transition:none;
  1389. transform-origin:50% 50%;
  1390. }
  1391. #u43701 .text {
  1392. position:absolute;
  1393. align-self:center;
  1394. padding:2px 2px 2px 2px;
  1395. box-sizing:border-box;
  1396. width:100%;
  1397. }
  1398. #u43701_text {
  1399. border-width:0px;
  1400. word-wrap:break-word;
  1401. text-transform:none;
  1402. visibility:hidden;
  1403. }
  1404. #u43702_input {
  1405. position:absolute;
  1406. left:0px;
  1407. top:0px;
  1408. width:312px;
  1409. height:22px;
  1410. padding:2px 2px 2px 2px;
  1411. font-family:'ArialMT', 'Arial', sans-serif;
  1412. font-weight:400;
  1413. font-style:normal;
  1414. font-size:12px;
  1415. letter-spacing:normal;
  1416. color:#7F7F7F;
  1417. vertical-align:none;
  1418. text-align:left;
  1419. text-transform:none;
  1420. background-color:transparent;
  1421. border-color:transparent;
  1422. }
  1423. #u43702_input.disabled {
  1424. position:absolute;
  1425. left:0px;
  1426. top:0px;
  1427. width:312px;
  1428. height:22px;
  1429. padding:2px 2px 2px 2px;
  1430. font-family:'ArialMT', 'Arial', sans-serif;
  1431. font-weight:400;
  1432. font-style:normal;
  1433. font-size:12px;
  1434. letter-spacing:normal;
  1435. color:#7F7F7F;
  1436. vertical-align:none;
  1437. text-align:left;
  1438. text-transform:none;
  1439. background-color:transparent;
  1440. border-color:transparent;
  1441. }
  1442. #u43702_div {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:0px;
  1446. top:0px;
  1447. width:312px;
  1448. height:22px;
  1449. background:inherit;
  1450. background-color:rgba(255, 255, 255, 0);
  1451. border-radius:0px;
  1452. filter:drop-shadow(none);
  1453. transition:none;
  1454. font-size:12px;
  1455. color:#7F7F7F;
  1456. }
  1457. #u43702 {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:60px;
  1461. top:120px;
  1462. width:312px;
  1463. height:22px;
  1464. display:flex;
  1465. transition:none;
  1466. transform-origin:50% 50%;
  1467. font-size:12px;
  1468. color:#7F7F7F;
  1469. }
  1470. #u43702 .text {
  1471. position:absolute;
  1472. align-self:flex-start;
  1473. padding:2px 2px 2px 2px;
  1474. box-sizing:border-box;
  1475. width:100%;
  1476. }
  1477. #u43702_div.disabled {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:0px;
  1481. top:0px;
  1482. width:312px;
  1483. height:22px;
  1484. background:inherit;
  1485. background-color:rgba(240, 240, 240, 1);
  1486. border-radius:0px;
  1487. filter:drop-shadow(none);
  1488. transition:none;
  1489. font-size:12px;
  1490. color:#7F7F7F;
  1491. }
  1492. #u43702.disabled {
  1493. }
  1494. .u43702_input_option {
  1495. font-size:12px;
  1496. }
  1497. #u43703 {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:73px;
  1501. top:272px;
  1502. width:15px;
  1503. height:23px;
  1504. display:flex;
  1505. transition:none;
  1506. }
  1507. #u43703 .text {
  1508. position:absolute;
  1509. align-self:center;
  1510. padding:2px 2px 2px 2px;
  1511. box-sizing:border-box;
  1512. width:100%;
  1513. }
  1514. #u43703_img {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:0px;
  1518. top:0px;
  1519. width:15px;
  1520. height:23px;
  1521. }
  1522. #u43703_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u43704 {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:0px;
  1534. height:0px;
  1535. }
  1536. #u43705_div {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:0px;
  1540. top:0px;
  1541. width:132px;
  1542. height:30px;
  1543. background:inherit;
  1544. background-color:rgba(123, 77, 18, 1);
  1545. border-radius:4px;
  1546. filter:drop-shadow(none);
  1547. transition:none;
  1548. color:#7B4D12;
  1549. }
  1550. #u43705 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:85px;
  1554. top:242px;
  1555. width:132px;
  1556. height:30px;
  1557. display:flex;
  1558. transition:none;
  1559. transform-origin:50% 50%;
  1560. color:#7B4D12;
  1561. }
  1562. #u43705 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u43705_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u43706_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:71px;
  1581. height:20px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 0);
  1584. border-radius:0px;
  1585. filter:drop-shadow(none);
  1586. transition:none;
  1587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1588. font-weight:400;
  1589. font-style:normal;
  1590. color:#FFFFFF;
  1591. }
  1592. #u43706 {
  1593. border-width:0px;
  1594. position:absolute;
  1595. left:95px;
  1596. top:247px;
  1597. width:71px;
  1598. height:20px;
  1599. display:flex;
  1600. transition:none;
  1601. transform-origin:50% 50%;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. color:#FFFFFF;
  1606. }
  1607. #u43706 .text {
  1608. position:absolute;
  1609. align-self:flex-start;
  1610. padding:0px 0px 0px 0px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u43706_text {
  1615. border-width:0px;
  1616. white-space:nowrap;
  1617. text-transform:none;
  1618. }
  1619. #u43707 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:0px;
  1623. top:0px;
  1624. width:0px;
  1625. height:0px;
  1626. }
  1627. #u43708_div {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:310px;
  1633. height:384px;
  1634. background:inherit;
  1635. background-color:rgba(51, 51, 51, 0.9019607843137255);
  1636. border-radius:4px;
  1637. filter:drop-shadow(none);
  1638. transition:none;
  1639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1640. font-weight:400;
  1641. font-style:normal;
  1642. color:#FFFFFF;
  1643. text-align:right;
  1644. }
  1645. #u43708 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:462px;
  1649. top:187px;
  1650. width:310px;
  1651. height:384px;
  1652. display:flex;
  1653. transition:none;
  1654. transform-origin:50% 50%;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. color:#FFFFFF;
  1659. text-align:right;
  1660. }
  1661. #u43708 .text {
  1662. position:absolute;
  1663. align-self:center;
  1664. padding:0px 0px 0px 0px;
  1665. box-sizing:border-box;
  1666. width:100%;
  1667. }
  1668. #u43708_text {
  1669. border-width:0px;
  1670. word-wrap:break-word;
  1671. text-transform:none;
  1672. visibility:hidden;
  1673. }
  1674. #u43709_div {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:73px;
  1680. height:25px;
  1681. background:inherit;
  1682. background-color:rgba(255, 255, 255, 0);
  1683. border-radius:0px;
  1684. filter:drop-shadow(none);
  1685. transition:none;
  1686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1687. font-weight:400;
  1688. font-style:normal;
  1689. font-size:18px;
  1690. color:#FFFFFF;
  1691. }
  1692. #u43709 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:487px;
  1696. top:213px;
  1697. width:73px;
  1698. height:25px;
  1699. display:flex;
  1700. transition:none;
  1701. transform-origin:50% 50%;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. color:#FFFFFF;
  1707. }
  1708. #u43709 .text {
  1709. position:absolute;
  1710. align-self:flex-start;
  1711. padding:0px 0px 0px 0px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u43709_text {
  1716. border-width:0px;
  1717. white-space:nowrap;
  1718. text-transform:none;
  1719. }
  1720. #u43710 {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:603px;
  1724. top:583px;
  1725. width:39px;
  1726. height:39px;
  1727. display:flex;
  1728. transition:none;
  1729. }
  1730. #u43710 .text {
  1731. position:absolute;
  1732. align-self:center;
  1733. padding:2px 2px 2px 2px;
  1734. box-sizing:border-box;
  1735. width:100%;
  1736. }
  1737. #u43710_img {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:39px;
  1743. height:39px;
  1744. }
  1745. #u43710_text {
  1746. border-width:0px;
  1747. word-wrap:break-word;
  1748. text-transform:none;
  1749. visibility:hidden;
  1750. }
  1751. #u43711 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u43712_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:260px;
  1765. height:60px;
  1766. background:inherit;
  1767. background-color:rgba(255, 255, 255, 0.09803921568627451);
  1768. border-radius:0px;
  1769. filter:drop-shadow(none);
  1770. transition:none;
  1771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1772. font-weight:400;
  1773. font-style:normal;
  1774. font-size:12px;
  1775. color:rgba(255, 255, 255, 0.6980392156862745);
  1776. }
  1777. #u43712 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:487px;
  1781. top:260px;
  1782. width:260px;
  1783. height:60px;
  1784. display:flex;
  1785. transition:none;
  1786. transform-origin:50% 50%;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:12px;
  1791. color:rgba(255, 255, 255, 0.6980392156862745);
  1792. }
  1793. #u43712 .text {
  1794. position:absolute;
  1795. align-self:center;
  1796. padding:2px 2px 2px 2px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u43712_text {
  1801. border-width:0px;
  1802. word-wrap:break-word;
  1803. text-transform:none;
  1804. visibility:hidden;
  1805. }
  1806. #u43713_div {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:53px;
  1812. height:44px;
  1813. background:inherit;
  1814. background-color:rgba(245, 154, 35, 0);
  1815. border-left:0px;
  1816. border-top:0px;
  1817. border-right:0px;
  1818. border-radius:0px;
  1819. border-bottom-right-radius:0px;
  1820. border-bottom-left-radius:0px;
  1821. filter:drop-shadow(none);
  1822. transition:none;
  1823. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1824. font-style:normal;
  1825. color:#FFFFFF;
  1826. text-align:left;
  1827. }
  1828. #u43713 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:505px;
  1832. top:268px;
  1833. width:53px;
  1834. height:44px;
  1835. display:flex;
  1836. transition:none;
  1837. transform-origin:50% 50%;
  1838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1839. font-style:normal;
  1840. color:#FFFFFF;
  1841. text-align:left;
  1842. }
  1843. #u43713 .text {
  1844. position:absolute;
  1845. align-self:flex-start;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u43713_text {
  1851. border-width:0px;
  1852. white-space:nowrap;
  1853. text-transform:none;
  1854. }
  1855. #u43714 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:0px;
  1861. height:0px;
  1862. }
  1863. #u43715_div {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:260px;
  1869. height:60px;
  1870. background:inherit;
  1871. background-color:rgba(255, 255, 255, 0.09803921568627451);
  1872. border-radius:0px;
  1873. filter:drop-shadow(none);
  1874. transition:none;
  1875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1876. font-weight:400;
  1877. font-style:normal;
  1878. font-size:12px;
  1879. color:rgba(255, 255, 255, 0.6980392156862745);
  1880. }
  1881. #u43715 {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:487px;
  1885. top:395px;
  1886. width:260px;
  1887. height:60px;
  1888. display:flex;
  1889. transition:none;
  1890. transform-origin:50% 50%;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:12px;
  1895. color:rgba(255, 255, 255, 0.6980392156862745);
  1896. }
  1897. #u43715 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 2px 2px 2px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u43715_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. visibility:hidden;
  1909. }
  1910. #u43716_div {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:77px;
  1916. height:24px;
  1917. background:inherit;
  1918. background-color:rgba(245, 154, 35, 0);
  1919. border-left:0px;
  1920. border-top:0px;
  1921. border-right:0px;
  1922. border-radius:0px;
  1923. border-bottom-right-radius:0px;
  1924. border-bottom-left-radius:0px;
  1925. filter:drop-shadow(none);
  1926. transition:none;
  1927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1928. font-weight:400;
  1929. font-style:normal;
  1930. font-size:14px;
  1931. color:#FFFFFF;
  1932. text-align:left;
  1933. }
  1934. #u43716 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:505px;
  1938. top:413px;
  1939. width:77px;
  1940. height:24px;
  1941. display:flex;
  1942. transition:none;
  1943. transform-origin:50% 50%;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. font-size:14px;
  1948. color:#FFFFFF;
  1949. text-align:left;
  1950. }
  1951. #u43716 .text {
  1952. position:absolute;
  1953. align-self:flex-start;
  1954. padding:2px 2px 2px 2px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u43716_text {
  1959. border-width:0px;
  1960. white-space:nowrap;
  1961. text-transform:none;
  1962. }
  1963. #u43717 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:0px;
  1969. height:0px;
  1970. }
  1971. #u43718_div {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:260px;
  1977. height:60px;
  1978. background:inherit;
  1979. background-color:rgba(255, 255, 255, 0.09803921568627451);
  1980. border-radius:0px;
  1981. filter:drop-shadow(none);
  1982. transition:none;
  1983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1984. font-weight:400;
  1985. font-style:normal;
  1986. font-size:12px;
  1987. color:rgba(255, 255, 255, 0.6980392156862745);
  1988. }
  1989. #u43718 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:487px;
  1993. top:456px;
  1994. width:260px;
  1995. height:60px;
  1996. display:flex;
  1997. transition:none;
  1998. transform-origin:50% 50%;
  1999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2000. font-weight:400;
  2001. font-style:normal;
  2002. font-size:12px;
  2003. color:rgba(255, 255, 255, 0.6980392156862745);
  2004. }
  2005. #u43718 .text {
  2006. position:absolute;
  2007. align-self:center;
  2008. padding:2px 2px 2px 2px;
  2009. box-sizing:border-box;
  2010. width:100%;
  2011. }
  2012. #u43718_text {
  2013. border-width:0px;
  2014. word-wrap:break-word;
  2015. text-transform:none;
  2016. visibility:hidden;
  2017. }
  2018. #u43719_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:69px;
  2024. height:24px;
  2025. background:inherit;
  2026. background-color:rgba(245, 154, 35, 0);
  2027. border-left:0px;
  2028. border-top:0px;
  2029. border-right:0px;
  2030. border-radius:0px;
  2031. border-bottom-right-radius:0px;
  2032. border-bottom-left-radius:0px;
  2033. filter:drop-shadow(none);
  2034. transition:none;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:14px;
  2039. color:#FFFFFF;
  2040. text-align:left;
  2041. }
  2042. #u43719 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:505px;
  2046. top:474px;
  2047. width:69px;
  2048. height:24px;
  2049. display:flex;
  2050. transition:none;
  2051. transform-origin:50% 50%;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:14px;
  2056. color:#FFFFFF;
  2057. text-align:left;
  2058. }
  2059. #u43719 .text {
  2060. position:absolute;
  2061. align-self:flex-start;
  2062. padding:2px 2px 2px 2px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u43719_text {
  2067. border-width:0px;
  2068. white-space:nowrap;
  2069. text-transform:none;
  2070. }
  2071. #u43720 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:0px;
  2077. height:0px;
  2078. }
  2079. #u43721_div {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:260px;
  2085. height:60px;
  2086. background:inherit;
  2087. background-color:rgba(255, 255, 255, 0.09803921568627451);
  2088. border-radius:0px;
  2089. filter:drop-shadow(none);
  2090. transition:none;
  2091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2092. font-weight:400;
  2093. font-style:normal;
  2094. font-size:12px;
  2095. color:rgba(255, 255, 255, 0.6980392156862745);
  2096. }
  2097. #u43721 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:487px;
  2101. top:321px;
  2102. width:260px;
  2103. height:60px;
  2104. display:flex;
  2105. transition:none;
  2106. transform-origin:50% 50%;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:12px;
  2111. color:rgba(255, 255, 255, 0.6980392156862745);
  2112. }
  2113. #u43721 .text {
  2114. position:absolute;
  2115. align-self:center;
  2116. padding:2px 2px 2px 2px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u43721_text {
  2121. border-width:0px;
  2122. word-wrap:break-word;
  2123. text-transform:none;
  2124. visibility:hidden;
  2125. }
  2126. #u43722_div {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:235px;
  2132. height:24px;
  2133. background:inherit;
  2134. background-color:rgba(245, 154, 35, 0);
  2135. border-left:0px;
  2136. border-top:0px;
  2137. border-right:0px;
  2138. border-radius:0px;
  2139. border-bottom-right-radius:0px;
  2140. border-bottom-left-radius:0px;
  2141. filter:drop-shadow(none);
  2142. transition:none;
  2143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2144. font-weight:400;
  2145. font-style:normal;
  2146. color:#FFFFFF;
  2147. text-align:left;
  2148. }
  2149. #u43722 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:505px;
  2153. top:339px;
  2154. width:235px;
  2155. height:24px;
  2156. display:flex;
  2157. transition:none;
  2158. transform-origin:50% 50%;
  2159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. color:#FFFFFF;
  2163. text-align:left;
  2164. }
  2165. #u43722 .text {
  2166. position:absolute;
  2167. align-self:flex-start;
  2168. padding:2px 2px 2px 2px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u43722_text {
  2173. border-width:0px;
  2174. white-space:nowrap;
  2175. text-transform:none;
  2176. }
  2177. #u43723_div {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:217px;
  2183. height:20px;
  2184. background:inherit;
  2185. background-color:rgba(255, 255, 255, 0);
  2186. border-radius:0px;
  2187. filter:drop-shadow(none);
  2188. transition:none;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. color:#D9001B;
  2193. }
  2194. #u43723 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:462px;
  2198. top:153px;
  2199. width:217px;
  2200. height:20px;
  2201. display:flex;
  2202. transition:none;
  2203. transform-origin:50% 50%;
  2204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. color:#D9001B;
  2208. }
  2209. #u43723 .text {
  2210. position:absolute;
  2211. align-self:flex-start;
  2212. padding:0px 0px 0px 0px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u43723_text {
  2217. border-width:0px;
  2218. white-space:nowrap;
  2219. text-transform:none;
  2220. }