styles.css 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:433px;
  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. #u54320 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u54321 {
  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. #u54321 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u54321_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u54321_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u54322_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. #u54322 {
  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. #u54322 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u54322_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u54323 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u54324_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. #u54324 {
  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. #u54324 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u54324_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u54325 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u54326 {
  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. #u54326 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u54326_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u54326_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u54327 {
  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. #u54327 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u54327_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u54327_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u54328 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u54329 {
  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. #u54329 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u54329_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u54329_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u54330 {
  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. #u54330 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u54330_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u54330_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u54331 {
  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. #u54331 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u54331_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u54331_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u54332 {
  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. #u54332 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u54332_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u54332_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u54333 {
  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. #u54333 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u54333_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u54333_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u54334_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. #u54334 {
  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. #u54334 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u54334_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u54335 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u54336 {
  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. #u54336 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u54336_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u54336_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u54337_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. #u54337 {
  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. #u54337 .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. #u54337_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u54338 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u54339 {
  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. #u54339 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u54339_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u54339_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u54340_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. #u54340 {
  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. #u54340 .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. #u54340_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u54341_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. #u54341 {
  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. #u54341 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u54341_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u54342 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u54343 {
  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. #u54343 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u54343_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u54343_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u54344_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. #u54344 {
  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. #u54344 .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. #u54344_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u54345 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u54346 {
  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. #u54346 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u54346_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u54346_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u54347_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. #u54347 {
  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. #u54347 .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. #u54347_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u54348_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:732px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:28px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u54348 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:107px;
  823. width:375px;
  824. height:732px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u54348 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u54348_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u54349_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:375px;
  848. height:41px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 1);
  851. box-sizing:border-box;
  852. border-width:1px;
  853. border-style:solid;
  854. border-color:rgba(215, 215, 215, 1);
  855. border-left:0px;
  856. border-top:0px;
  857. border-right:0px;
  858. border-radius:0px;
  859. border-bottom-right-radius:0px;
  860. border-bottom-left-radius:0px;
  861. filter:drop-shadow(none);
  862. transition:none;
  863. }
  864. #u54349 {
  865. border-width:0px;
  866. position:absolute;
  867. left:29px;
  868. top:67px;
  869. width:375px;
  870. height:41px;
  871. display:flex;
  872. transition:none;
  873. transform-origin:50% 50%;
  874. }
  875. #u54349 .text {
  876. position:absolute;
  877. align-self:center;
  878. padding:2px 2px 2px 2px;
  879. box-sizing:border-box;
  880. width:100%;
  881. }
  882. #u54349_text {
  883. border-width:0px;
  884. word-wrap:break-word;
  885. text-transform:none;
  886. visibility:hidden;
  887. }
  888. #u54350 {
  889. border-width:0px;
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:0px;
  894. height:0px;
  895. }
  896. #u54351_div {
  897. border-width:0px;
  898. position:absolute;
  899. left:0px;
  900. top:0px;
  901. width:88px;
  902. height:32px;
  903. background:inherit;
  904. background-color:rgba(255, 255, 255, 1);
  905. box-sizing:border-box;
  906. border-width:1px;
  907. border-style:solid;
  908. border-color:rgba(242, 242, 242, 1);
  909. border-radius:33px;
  910. filter:drop-shadow(none);
  911. transition:none;
  912. }
  913. #u54351 {
  914. border-width:0px;
  915. position:absolute;
  916. left:309px;
  917. top:71px;
  918. width:88px;
  919. height:32px;
  920. display:flex;
  921. transition:none;
  922. transform-origin:50% 50%;
  923. }
  924. #u54351 .text {
  925. position:absolute;
  926. align-self:center;
  927. padding:2px 2px 2px 2px;
  928. box-sizing:border-box;
  929. width:100%;
  930. }
  931. #u54351_text {
  932. border-width:0px;
  933. word-wrap:break-word;
  934. text-transform:none;
  935. visibility:hidden;
  936. }
  937. #u54352 {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:0px;
  943. height:0px;
  944. }
  945. #u54353 {
  946. border-width:0px;
  947. position:absolute;
  948. left:372px;
  949. top:78px;
  950. width:18px;
  951. height:18px;
  952. display:flex;
  953. transition:none;
  954. }
  955. #u54353 .text {
  956. position:absolute;
  957. align-self:center;
  958. padding:2px 2px 2px 2px;
  959. box-sizing:border-box;
  960. width:100%;
  961. }
  962. #u54353_img {
  963. border-width:0px;
  964. position:absolute;
  965. left:0px;
  966. top:0px;
  967. width:18px;
  968. height:18px;
  969. }
  970. #u54353_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. visibility:hidden;
  975. }
  976. #u54354 {
  977. border-width:0px;
  978. position:absolute;
  979. left:378px;
  980. top:84px;
  981. width:6px;
  982. height:6px;
  983. display:flex;
  984. transition:none;
  985. }
  986. #u54354 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:2px 2px 2px 2px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u54354_img {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:6px;
  999. height:6px;
  1000. }
  1001. #u54354_text {
  1002. border-width:0px;
  1003. word-wrap:break-word;
  1004. text-transform:none;
  1005. visibility:hidden;
  1006. }
  1007. #u54355 {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:0px;
  1011. top:0px;
  1012. width:0px;
  1013. height:0px;
  1014. }
  1015. #u54356 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:323px;
  1019. top:85px;
  1020. width:5px;
  1021. height:5px;
  1022. display:flex;
  1023. transition:none;
  1024. }
  1025. #u54356 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u54356_img {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:5px;
  1038. height:5px;
  1039. }
  1040. #u54356_text {
  1041. border-width:0px;
  1042. word-wrap:break-word;
  1043. text-transform:none;
  1044. visibility:hidden;
  1045. }
  1046. #u54357 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:339px;
  1050. top:85px;
  1051. width:5px;
  1052. height:5px;
  1053. display:flex;
  1054. transition:none;
  1055. }
  1056. #u54357 .text {
  1057. position:absolute;
  1058. align-self:center;
  1059. padding:2px 2px 2px 2px;
  1060. box-sizing:border-box;
  1061. width:100%;
  1062. }
  1063. #u54357_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:5px;
  1069. height:5px;
  1070. }
  1071. #u54357_text {
  1072. border-width:0px;
  1073. word-wrap:break-word;
  1074. text-transform:none;
  1075. visibility:hidden;
  1076. }
  1077. #u54358 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:330px;
  1081. top:84px;
  1082. width:7px;
  1083. height:7px;
  1084. display:flex;
  1085. transition:none;
  1086. }
  1087. #u54358 .text {
  1088. position:absolute;
  1089. align-self:center;
  1090. padding:2px 2px 2px 2px;
  1091. box-sizing:border-box;
  1092. width:100%;
  1093. }
  1094. #u54358_img {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:7px;
  1100. height:7px;
  1101. }
  1102. #u54358_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u54359 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:347px;
  1112. top:87px;
  1113. width:18px;
  1114. height:1px;
  1115. display:flex;
  1116. -webkit-transform:rotate(90deg);
  1117. -moz-transform:rotate(90deg);
  1118. -ms-transform:rotate(90deg);
  1119. transform:rotate(90deg);
  1120. transition:none;
  1121. }
  1122. #u54359 .text {
  1123. position:absolute;
  1124. align-self:center;
  1125. padding:2px 2px 2px 2px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u54359_img {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:0px;
  1133. top:0px;
  1134. width:19px;
  1135. height:2px;
  1136. }
  1137. #u54359_text {
  1138. border-width:0px;
  1139. word-wrap:break-word;
  1140. text-transform:none;
  1141. visibility:hidden;
  1142. }
  1143. #u54360_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:12px;
  1149. height:12px;
  1150. background:inherit;
  1151. background-color:rgba(255, 255, 255, 0);
  1152. box-sizing:border-box;
  1153. border-width:2px;
  1154. border-style:solid;
  1155. border-color:rgba(51, 51, 51, 1);
  1156. border-right:0px;
  1157. border-bottom:0px;
  1158. border-radius:0px;
  1159. border-top-right-radius:0px;
  1160. border-bottom-left-radius:0px;
  1161. filter:drop-shadow(none);
  1162. transition:none;
  1163. }
  1164. #u54360 {
  1165. border-width:0px;
  1166. position:absolute;
  1167. left:44px;
  1168. top:81px;
  1169. width:12px;
  1170. height:12px;
  1171. display:flex;
  1172. -webkit-transform:rotate(315deg);
  1173. -moz-transform:rotate(315deg);
  1174. -ms-transform:rotate(315deg);
  1175. transform:rotate(315deg);
  1176. transition:none;
  1177. transform-origin:50% 50%;
  1178. }
  1179. #u54360 .text {
  1180. position:absolute;
  1181. align-self:center;
  1182. padding:2px 2px 2px 2px;
  1183. box-sizing:border-box;
  1184. width:100%;
  1185. }
  1186. #u54360_text {
  1187. border-width:0px;
  1188. word-wrap:break-word;
  1189. text-transform:none;
  1190. visibility:hidden;
  1191. }
  1192. #u54361 {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:0px;
  1196. top:0px;
  1197. width:0px;
  1198. height:0px;
  1199. }
  1200. #u54362_div {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:375px;
  1206. height:60px;
  1207. background:inherit;
  1208. background-color:rgba(255, 255, 255, 1);
  1209. box-sizing:border-box;
  1210. border-width:1px;
  1211. border-style:solid;
  1212. border-color:rgba(242, 242, 242, 1);
  1213. border-radius:20px;
  1214. border-top-left-radius:0px;
  1215. border-top-right-radius:0px;
  1216. filter:drop-shadow(none);
  1217. transition:none;
  1218. }
  1219. #u54362 {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:29px;
  1223. top:779px;
  1224. width:375px;
  1225. height:60px;
  1226. display:flex;
  1227. transition:none;
  1228. transform-origin:50% 50%;
  1229. }
  1230. #u54362 .text {
  1231. position:absolute;
  1232. align-self:center;
  1233. padding:2px 2px 2px 2px;
  1234. box-sizing:border-box;
  1235. width:100%;
  1236. }
  1237. #u54362_text {
  1238. border-width:0px;
  1239. word-wrap:break-word;
  1240. text-transform:none;
  1241. visibility:hidden;
  1242. }
  1243. #u54363_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:97px;
  1249. height:40px;
  1250. background:inherit;
  1251. background-color:rgba(24, 144, 255, 1);
  1252. border-radius:63px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1256. font-weight:400;
  1257. font-style:normal;
  1258. font-size:14px;
  1259. color:#FFFFFF;
  1260. }
  1261. #u54363 {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:293px;
  1265. top:789px;
  1266. width:97px;
  1267. height:40px;
  1268. display:flex;
  1269. transition:none;
  1270. transform-origin:50% 50%;
  1271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1272. font-weight:400;
  1273. font-style:normal;
  1274. font-size:14px;
  1275. color:#FFFFFF;
  1276. }
  1277. #u54363 .text {
  1278. position:absolute;
  1279. align-self:center;
  1280. padding:2px 2px 2px 2px;
  1281. box-sizing:border-box;
  1282. width:100%;
  1283. }
  1284. #u54363_text {
  1285. border-width:0px;
  1286. word-wrap:break-word;
  1287. text-transform:none;
  1288. }
  1289. #u54364_div {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:73px;
  1295. height:25px;
  1296. background:inherit;
  1297. background-color:rgba(255, 255, 255, 0);
  1298. border-radius:0px;
  1299. filter:drop-shadow(none);
  1300. transition:none;
  1301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1302. font-weight:400;
  1303. font-style:normal;
  1304. font-size:18px;
  1305. }
  1306. #u54364 {
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:64px;
  1310. top:75px;
  1311. width:73px;
  1312. height:25px;
  1313. display:flex;
  1314. transition:none;
  1315. transform-origin:50% 50%;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:18px;
  1320. }
  1321. #u54364 .text {
  1322. position:absolute;
  1323. align-self:flex-start;
  1324. padding:0px 0px 0px 0px;
  1325. box-sizing:border-box;
  1326. width:100%;
  1327. }
  1328. #u54364_text {
  1329. border-width:0px;
  1330. white-space:nowrap;
  1331. text-transform:none;
  1332. }
  1333. #u54365 {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:0px;
  1339. height:0px;
  1340. }
  1341. #u54366_div {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:375px;
  1347. height:50px;
  1348. background:inherit;
  1349. background-color:rgba(255, 255, 255, 1);
  1350. border-left:0px;
  1351. border-top:0px;
  1352. border-right:0px;
  1353. border-radius:0px;
  1354. border-bottom-right-radius:0px;
  1355. border-bottom-left-radius:0px;
  1356. filter:drop-shadow(none);
  1357. transition:none;
  1358. }
  1359. #u54366 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:29px;
  1363. top:233px;
  1364. width:375px;
  1365. height:50px;
  1366. display:flex;
  1367. transition:none;
  1368. transform-origin:50% 50%;
  1369. }
  1370. #u54366 .text {
  1371. position:absolute;
  1372. align-self:center;
  1373. padding:2px 2px 2px 2px;
  1374. box-sizing:border-box;
  1375. width:100%;
  1376. }
  1377. #u54366_text {
  1378. border-width:0px;
  1379. word-wrap:break-word;
  1380. text-transform:none;
  1381. visibility:hidden;
  1382. }
  1383. #u54367_div {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:57px;
  1389. height:30px;
  1390. background:inherit;
  1391. background-color:rgba(255, 255, 255, 0);
  1392. border-left:0px;
  1393. border-top:0px;
  1394. border-right:0px;
  1395. border-radius:0px;
  1396. border-bottom-right-radius:0px;
  1397. border-bottom-left-radius:0px;
  1398. filter:drop-shadow(none);
  1399. transition:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:14px;
  1404. line-height:30px;
  1405. }
  1406. #u54367 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:49px;
  1410. top:243px;
  1411. width:57px;
  1412. height:30px;
  1413. display:flex;
  1414. transition:none;
  1415. transform-origin:50% 50%;
  1416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1417. font-weight:400;
  1418. font-style:normal;
  1419. font-size:14px;
  1420. line-height:30px;
  1421. }
  1422. #u54367 .text {
  1423. position:absolute;
  1424. align-self:center;
  1425. padding:0px 0px 0px 0px;
  1426. box-sizing:border-box;
  1427. width:100%;
  1428. }
  1429. #u54367_text {
  1430. border-width:0px;
  1431. white-space:nowrap;
  1432. text-transform:none;
  1433. }
  1434. #u54368_div {
  1435. border-width:0px;
  1436. position:absolute;
  1437. left:0px;
  1438. top:0px;
  1439. width:60px;
  1440. height:30px;
  1441. background:inherit;
  1442. background-color:rgba(215, 215, 215, 1);
  1443. box-sizing:border-box;
  1444. border-width:1px;
  1445. border-style:solid;
  1446. border-color:rgba(170, 170, 170, 1);
  1447. border-radius:4px;
  1448. filter:drop-shadow(none);
  1449. transition:none;
  1450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1451. font-weight:400;
  1452. font-style:normal;
  1453. font-size:12px;
  1454. }
  1455. #u54368 {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:329px;
  1459. top:243px;
  1460. width:60px;
  1461. height:30px;
  1462. display:flex;
  1463. transition:none;
  1464. transform-origin:50% 50%;
  1465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1466. font-weight:400;
  1467. font-style:normal;
  1468. font-size:12px;
  1469. }
  1470. #u54368 .text {
  1471. position:absolute;
  1472. align-self:center;
  1473. padding:2px 2px 2px 2px;
  1474. box-sizing:border-box;
  1475. width:100%;
  1476. }
  1477. #u54368_text {
  1478. border-width:0px;
  1479. word-wrap:break-word;
  1480. text-transform:none;
  1481. }
  1482. #u54369_div {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:60px;
  1488. height:30px;
  1489. background:inherit;
  1490. background-color:rgba(24, 144, 255, 1);
  1491. box-sizing:border-box;
  1492. border-width:1px;
  1493. border-style:solid;
  1494. border-color:rgba(170, 170, 170, 1);
  1495. border-radius:4px;
  1496. filter:drop-shadow(none);
  1497. transition:none;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:12px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u54369 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:259px;
  1508. top:243px;
  1509. width:60px;
  1510. height:30px;
  1511. display:flex;
  1512. transition:none;
  1513. transform-origin:50% 50%;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:12px;
  1518. color:#FFFFFF;
  1519. }
  1520. #u54369 .text {
  1521. position:absolute;
  1522. align-self:center;
  1523. padding:2px 2px 2px 2px;
  1524. box-sizing:border-box;
  1525. width:100%;
  1526. }
  1527. #u54369_text {
  1528. border-width:0px;
  1529. word-wrap:break-word;
  1530. text-transform:none;
  1531. }
  1532. #u54370 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:0px;
  1538. height:0px;
  1539. }
  1540. #u54371_div {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:0px;
  1544. top:0px;
  1545. width:375px;
  1546. height:50px;
  1547. background:inherit;
  1548. background-color:rgba(255, 255, 255, 1);
  1549. border-left:0px;
  1550. border-top:0px;
  1551. border-right:0px;
  1552. border-radius:0px;
  1553. border-bottom-right-radius:0px;
  1554. border-bottom-left-radius:0px;
  1555. filter:drop-shadow(none);
  1556. transition:none;
  1557. }
  1558. #u54371 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:29px;
  1562. top:344px;
  1563. width:375px;
  1564. height:50px;
  1565. display:flex;
  1566. transition:none;
  1567. transform-origin:50% 50%;
  1568. }
  1569. #u54371 .text {
  1570. position:absolute;
  1571. align-self:center;
  1572. padding:2px 2px 2px 2px;
  1573. box-sizing:border-box;
  1574. width:100%;
  1575. }
  1576. #u54371_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u54372_div {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:43px;
  1588. height:30px;
  1589. background:inherit;
  1590. background-color:rgba(255, 255, 255, 0);
  1591. border-left:0px;
  1592. border-top:0px;
  1593. border-right:0px;
  1594. border-radius:0px;
  1595. border-bottom-right-radius:0px;
  1596. border-bottom-left-radius:0px;
  1597. filter:drop-shadow(none);
  1598. transition:none;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:14px;
  1603. line-height:30px;
  1604. }
  1605. #u54372 {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:49px;
  1609. top:354px;
  1610. width:43px;
  1611. height:30px;
  1612. display:flex;
  1613. transition:none;
  1614. transform-origin:50% 50%;
  1615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1616. font-weight:400;
  1617. font-style:normal;
  1618. font-size:14px;
  1619. line-height:30px;
  1620. }
  1621. #u54372 .text {
  1622. position:absolute;
  1623. align-self:center;
  1624. padding:0px 0px 0px 0px;
  1625. box-sizing:border-box;
  1626. width:100%;
  1627. }
  1628. #u54372_text {
  1629. border-width:0px;
  1630. white-space:nowrap;
  1631. text-transform:none;
  1632. }
  1633. #u54373 {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:0px;
  1639. height:0px;
  1640. }
  1641. #u54374_div {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:43px;
  1647. height:30px;
  1648. background:inherit;
  1649. background-color:rgba(255, 255, 255, 0);
  1650. border-left:0px;
  1651. border-top:0px;
  1652. border-right:0px;
  1653. border-radius:0px;
  1654. border-bottom-right-radius:0px;
  1655. border-bottom-left-radius:0px;
  1656. filter:drop-shadow(none);
  1657. transition:none;
  1658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1659. font-weight:400;
  1660. font-style:normal;
  1661. font-size:14px;
  1662. color:#AAAAAA;
  1663. text-align:right;
  1664. line-height:30px;
  1665. }
  1666. #u54374 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:329px;
  1670. top:354px;
  1671. width:43px;
  1672. height:30px;
  1673. display:flex;
  1674. transition:none;
  1675. transform-origin:50% 50%;
  1676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1677. font-weight:400;
  1678. font-style:normal;
  1679. font-size:14px;
  1680. color:#AAAAAA;
  1681. text-align:right;
  1682. line-height:30px;
  1683. }
  1684. #u54374 .text {
  1685. position:absolute;
  1686. align-self:center;
  1687. padding:0px 0px 0px 0px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u54374_text {
  1692. border-width:0px;
  1693. white-space:nowrap;
  1694. text-transform:none;
  1695. }
  1696. #u54375 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:0px;
  1702. height:0px;
  1703. }
  1704. #u54376_div {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:375px;
  1710. height:140px;
  1711. background:inherit;
  1712. background-color:rgba(255, 255, 255, 1);
  1713. border-left:0px;
  1714. border-top:0px;
  1715. border-right:0px;
  1716. border-radius:0px;
  1717. border-bottom-right-radius:0px;
  1718. border-bottom-left-radius:0px;
  1719. filter:drop-shadow(none);
  1720. transition:none;
  1721. }
  1722. #u54376 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:29px;
  1726. top:404px;
  1727. width:375px;
  1728. height:140px;
  1729. display:flex;
  1730. transition:none;
  1731. transform-origin:50% 50%;
  1732. }
  1733. #u54376 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u54376_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u54377_div {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:57px;
  1752. height:30px;
  1753. background:inherit;
  1754. background-color:rgba(255, 255, 255, 0);
  1755. border-left:0px;
  1756. border-top:0px;
  1757. border-right:0px;
  1758. border-radius:0px;
  1759. border-bottom-right-radius:0px;
  1760. border-bottom-left-radius:0px;
  1761. filter:drop-shadow(none);
  1762. transition:none;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:14px;
  1767. line-height:30px;
  1768. }
  1769. #u54377 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:49px;
  1773. top:414px;
  1774. width:57px;
  1775. height:30px;
  1776. display:flex;
  1777. transition:none;
  1778. transform-origin:50% 50%;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:14px;
  1783. line-height:30px;
  1784. }
  1785. #u54377 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:0px 0px 0px 0px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u54377_text {
  1793. border-width:0px;
  1794. white-space:nowrap;
  1795. text-transform:none;
  1796. }
  1797. #u54378_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:99px;
  1803. height:30px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border-left:0px;
  1807. border-top:0px;
  1808. border-right:0px;
  1809. border-radius:0px;
  1810. border-bottom-right-radius:0px;
  1811. border-bottom-left-radius:0px;
  1812. filter:drop-shadow(none);
  1813. transition:none;
  1814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1815. font-weight:400;
  1816. font-style:normal;
  1817. font-size:14px;
  1818. color:#AAAAAA;
  1819. line-height:30px;
  1820. }
  1821. #u54378 {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:49px;
  1825. top:444px;
  1826. width:99px;
  1827. height:30px;
  1828. display:flex;
  1829. transition:none;
  1830. transform-origin:50% 50%;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:14px;
  1835. color:#AAAAAA;
  1836. line-height:30px;
  1837. }
  1838. #u54378 .text {
  1839. position:absolute;
  1840. align-self:center;
  1841. padding:0px 0px 0px 0px;
  1842. box-sizing:border-box;
  1843. width:100%;
  1844. }
  1845. #u54378_text {
  1846. border-width:0px;
  1847. white-space:nowrap;
  1848. text-transform:none;
  1849. }
  1850. #u54379_div {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:40px;
  1856. height:40px;
  1857. background:inherit;
  1858. background-color:rgba(255, 255, 255, 1);
  1859. box-sizing:border-box;
  1860. border-width:1px;
  1861. border-style:solid;
  1862. border-color:rgba(170, 170, 170, 1);
  1863. border-radius:4px;
  1864. filter:drop-shadow(none);
  1865. transition:none;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:18px;
  1870. }
  1871. #u54379 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:49px;
  1875. top:494px;
  1876. width:40px;
  1877. height:40px;
  1878. display:flex;
  1879. transition:none;
  1880. transform-origin:50% 50%;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:18px;
  1885. }
  1886. #u54379 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:2px 2px 2px 2px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u54379_text {
  1894. border-width:0px;
  1895. word-wrap:break-word;
  1896. text-transform:none;
  1897. }
  1898. #u54380 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:0px;
  1904. height:0px;
  1905. }
  1906. #u54381_div {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:375px;
  1912. height:50px;
  1913. background:inherit;
  1914. background-color:rgba(255, 255, 255, 1);
  1915. border-left:0px;
  1916. border-top:0px;
  1917. border-right:0px;
  1918. border-radius:0px;
  1919. border-bottom-right-radius:0px;
  1920. border-bottom-left-radius:0px;
  1921. filter:drop-shadow(none);
  1922. transition:none;
  1923. }
  1924. #u54381 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:29px;
  1928. top:293px;
  1929. width:375px;
  1930. height:50px;
  1931. display:flex;
  1932. transition:none;
  1933. transform-origin:50% 50%;
  1934. }
  1935. #u54381 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 2px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u54381_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. visibility:hidden;
  1947. }
  1948. #u54382_div {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:57px;
  1954. height:30px;
  1955. background:inherit;
  1956. background-color:rgba(255, 255, 255, 0);
  1957. border-left:0px;
  1958. border-top:0px;
  1959. border-right:0px;
  1960. border-radius:0px;
  1961. border-bottom-right-radius:0px;
  1962. border-bottom-left-radius:0px;
  1963. filter:drop-shadow(none);
  1964. transition:none;
  1965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:14px;
  1969. line-height:30px;
  1970. }
  1971. #u54382 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:49px;
  1975. top:303px;
  1976. width:57px;
  1977. height:30px;
  1978. display:flex;
  1979. transition:none;
  1980. transform-origin:50% 50%;
  1981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1982. font-weight:400;
  1983. font-style:normal;
  1984. font-size:14px;
  1985. line-height:30px;
  1986. }
  1987. #u54382 .text {
  1988. position:absolute;
  1989. align-self:center;
  1990. padding:0px 0px 0px 0px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u54382_text {
  1995. border-width:0px;
  1996. white-space:nowrap;
  1997. text-transform:none;
  1998. }
  1999. #u54383 {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:0px;
  2005. height:0px;
  2006. }
  2007. #u54384_div {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:43px;
  2013. height:30px;
  2014. background:inherit;
  2015. background-color:rgba(255, 255, 255, 0);
  2016. border-left:0px;
  2017. border-top:0px;
  2018. border-right:0px;
  2019. border-radius:0px;
  2020. border-bottom-right-radius:0px;
  2021. border-bottom-left-radius:0px;
  2022. filter:drop-shadow(none);
  2023. transition:none;
  2024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. font-size:14px;
  2028. color:#AAAAAA;
  2029. text-align:right;
  2030. line-height:30px;
  2031. }
  2032. #u54384 {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:329px;
  2036. top:303px;
  2037. width:43px;
  2038. height:30px;
  2039. display:flex;
  2040. transition:none;
  2041. transform-origin:50% 50%;
  2042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:14px;
  2046. color:#AAAAAA;
  2047. text-align:right;
  2048. line-height:30px;
  2049. }
  2050. #u54384 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:0px 0px 0px 0px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u54384_text {
  2058. border-width:0px;
  2059. white-space:nowrap;
  2060. text-transform:none;
  2061. }
  2062. #u54385 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:0px;
  2068. height:0px;
  2069. }
  2070. #u54386_div {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:375px;
  2076. height:100px;
  2077. background:inherit;
  2078. background-color:rgba(255, 255, 255, 1);
  2079. border-left:0px;
  2080. border-top:0px;
  2081. border-right:0px;
  2082. border-radius:0px;
  2083. border-bottom-right-radius:0px;
  2084. border-bottom-left-radius:0px;
  2085. filter:drop-shadow(none);
  2086. transition:none;
  2087. }
  2088. #u54386 {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:29px;
  2092. top:545px;
  2093. width:375px;
  2094. height:100px;
  2095. display:flex;
  2096. transition:none;
  2097. transform-origin:50% 50%;
  2098. }
  2099. #u54386 .text {
  2100. position:absolute;
  2101. align-self:center;
  2102. padding:2px 2px 2px 2px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u54386_text {
  2107. border-width:0px;
  2108. word-wrap:break-word;
  2109. text-transform:none;
  2110. visibility:hidden;
  2111. }
  2112. #u54387_div {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:57px;
  2118. height:30px;
  2119. background:inherit;
  2120. background-color:rgba(255, 255, 255, 0);
  2121. border-left:0px;
  2122. border-top:0px;
  2123. border-right:0px;
  2124. border-radius:0px;
  2125. border-bottom-right-radius:0px;
  2126. border-bottom-left-radius:0px;
  2127. filter:drop-shadow(none);
  2128. transition:none;
  2129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2130. font-weight:400;
  2131. font-style:normal;
  2132. font-size:14px;
  2133. line-height:30px;
  2134. }
  2135. #u54387 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:49px;
  2139. top:555px;
  2140. width:57px;
  2141. height:30px;
  2142. display:flex;
  2143. transition:none;
  2144. transform-origin:50% 50%;
  2145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:14px;
  2149. line-height:30px;
  2150. }
  2151. #u54387 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:0px 0px 0px 0px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u54387_text {
  2159. border-width:0px;
  2160. white-space:nowrap;
  2161. text-transform:none;
  2162. }
  2163. #u54388_div {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:60px;
  2169. height:30px;
  2170. background:inherit;
  2171. background-color:rgba(24, 144, 255, 1);
  2172. border-radius:4px;
  2173. filter:drop-shadow(none);
  2174. transition:none;
  2175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2176. font-weight:400;
  2177. font-style:normal;
  2178. font-size:12px;
  2179. color:#FFFFFF;
  2180. }
  2181. #u54388 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:129px;
  2185. top:595px;
  2186. width:60px;
  2187. height:30px;
  2188. display:flex;
  2189. transition:none;
  2190. transform-origin:50% 50%;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:12px;
  2195. color:#FFFFFF;
  2196. }
  2197. #u54388 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:2px 2px 2px 2px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u54388_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. }
  2209. #u54389_div {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:60px;
  2215. height:30px;
  2216. background:inherit;
  2217. background-color:rgba(255, 255, 255, 1);
  2218. box-sizing:border-box;
  2219. border-width:1px;
  2220. border-style:solid;
  2221. border-color:rgba(170, 170, 170, 1);
  2222. border-radius:4px;
  2223. filter:drop-shadow(none);
  2224. transition:none;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:12px;
  2229. }
  2230. #u54389 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:199px;
  2234. top:595px;
  2235. width:60px;
  2236. height:30px;
  2237. display:flex;
  2238. transition:none;
  2239. transform-origin:50% 50%;
  2240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2241. font-weight:400;
  2242. font-style:normal;
  2243. font-size:12px;
  2244. }
  2245. #u54389 .text {
  2246. position:absolute;
  2247. align-self:center;
  2248. padding:2px 2px 2px 2px;
  2249. box-sizing:border-box;
  2250. width:100%;
  2251. }
  2252. #u54389_text {
  2253. border-width:0px;
  2254. word-wrap:break-word;
  2255. text-transform:none;
  2256. }
  2257. #u54390_div {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:60px;
  2263. height:30px;
  2264. background:inherit;
  2265. background-color:rgba(255, 255, 255, 1);
  2266. box-sizing:border-box;
  2267. border-width:1px;
  2268. border-style:solid;
  2269. border-color:rgba(170, 170, 170, 1);
  2270. border-radius:4px;
  2271. filter:drop-shadow(none);
  2272. transition:none;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:12px;
  2277. }
  2278. #u54390 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:59px;
  2282. top:595px;
  2283. width:60px;
  2284. height:30px;
  2285. display:flex;
  2286. transition:none;
  2287. transform-origin:50% 50%;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:12px;
  2292. }
  2293. #u54390 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 2px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u54390_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. }
  2305. #u54391 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:0px;
  2311. height:0px;
  2312. }
  2313. #u54392_div {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:375px;
  2319. height:115px;
  2320. background:inherit;
  2321. background-color:rgba(255, 255, 255, 1);
  2322. box-sizing:border-box;
  2323. border-width:1px;
  2324. border-style:solid;
  2325. border-color:rgba(215, 215, 215, 1);
  2326. border-left:0px;
  2327. border-top:0px;
  2328. border-right:0px;
  2329. border-radius:0px;
  2330. border-bottom-right-radius:0px;
  2331. border-bottom-left-radius:0px;
  2332. filter:drop-shadow(none);
  2333. transition:none;
  2334. }
  2335. #u54392 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:29px;
  2339. top:108px;
  2340. width:375px;
  2341. height:115px;
  2342. display:flex;
  2343. transition:none;
  2344. transform-origin:50% 50%;
  2345. }
  2346. #u54392 .text {
  2347. position:absolute;
  2348. align-self:center;
  2349. padding:2px 2px 2px 2px;
  2350. box-sizing:border-box;
  2351. width:100%;
  2352. }
  2353. #u54392_text {
  2354. border-width:0px;
  2355. word-wrap:break-word;
  2356. text-transform:none;
  2357. visibility:hidden;
  2358. }
  2359. #u54393_div {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:353px;
  2365. height:40px;
  2366. background:inherit;
  2367. background-color:rgba(255, 255, 255, 0);
  2368. border-top:0px;
  2369. border-right:0px;
  2370. border-bottom:0px;
  2371. border-radius:0px;
  2372. border-top-left-radius:0px;
  2373. border-bottom-left-radius:0px;
  2374. filter:drop-shadow(none);
  2375. transition:none;
  2376. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2377. font-weight:500;
  2378. font-style:normal;
  2379. font-size:14px;
  2380. line-height:30px;
  2381. }
  2382. #u54393 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:42px;
  2386. top:116px;
  2387. width:353px;
  2388. height:40px;
  2389. display:flex;
  2390. transition:none;
  2391. transform-origin:50% 50%;
  2392. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2393. font-weight:500;
  2394. font-style:normal;
  2395. font-size:14px;
  2396. line-height:30px;
  2397. }
  2398. #u54393 .text {
  2399. position:absolute;
  2400. align-self:flex-start;
  2401. padding:5px 10px 5px 0px;
  2402. box-sizing:border-box;
  2403. width:100%;
  2404. }
  2405. #u54393_text {
  2406. border-width:0px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. }
  2410. #u54394_div {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:11px;
  2416. height:11px;
  2417. background:inherit;
  2418. background-color:rgba(255, 255, 255, 0);
  2419. box-sizing:border-box;
  2420. border-width:2px;
  2421. border-style:solid;
  2422. border-color:rgba(51, 51, 51, 1);
  2423. border-right:0px;
  2424. border-bottom:0px;
  2425. border-radius:0px;
  2426. border-top-right-radius:0px;
  2427. border-bottom-left-radius:0px;
  2428. filter:drop-shadow(none);
  2429. transition:none;
  2430. }
  2431. #u54394 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:374px;
  2435. top:130px;
  2436. width:11px;
  2437. height:11px;
  2438. display:flex;
  2439. -webkit-transform:rotate(225deg);
  2440. -moz-transform:rotate(225deg);
  2441. -ms-transform:rotate(225deg);
  2442. transform:rotate(225deg);
  2443. transition:none;
  2444. transform-origin:50% 50%;
  2445. }
  2446. #u54394 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 2px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u54394_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u54395_div {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:353px;
  2465. height:65px;
  2466. background:inherit;
  2467. background-color:rgba(255, 255, 255, 0);
  2468. border-top:0px;
  2469. border-right:0px;
  2470. border-bottom:0px;
  2471. border-radius:0px;
  2472. border-top-left-radius:0px;
  2473. border-bottom-left-radius:0px;
  2474. filter:drop-shadow(none);
  2475. transition:none;
  2476. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2477. font-style:normal;
  2478. }
  2479. #u54395 {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:44px;
  2483. top:156px;
  2484. width:353px;
  2485. height:65px;
  2486. display:flex;
  2487. transition:none;
  2488. transform-origin:50% 50%;
  2489. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2490. font-style:normal;
  2491. }
  2492. #u54395 .text {
  2493. position:absolute;
  2494. align-self:flex-start;
  2495. padding:5px 10px 5px 0px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u54395_text {
  2500. border-width:0px;
  2501. word-wrap:break-word;
  2502. text-transform:none;
  2503. }
  2504. #u54396_div {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:50px;
  2510. height:14px;
  2511. background:inherit;
  2512. background-color:rgba(242, 242, 242, 1);
  2513. border-radius:9px;
  2514. filter:drop-shadow(none);
  2515. transition:none;
  2516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2517. font-weight:400;
  2518. font-style:normal;
  2519. font-size:10px;
  2520. color:#D9001B;
  2521. text-align:center;
  2522. }
  2523. #u54396 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:44px;
  2527. top:194px;
  2528. width:50px;
  2529. height:14px;
  2530. display:flex;
  2531. transition:none;
  2532. transform-origin:50% 50%;
  2533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:10px;
  2537. color:#D9001B;
  2538. text-align:center;
  2539. }
  2540. #u54396 .text {
  2541. position:absolute;
  2542. align-self:flex-start;
  2543. padding:0px 0px 0px 0px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u54396_text {
  2548. border-width:0px;
  2549. word-wrap:break-word;
  2550. text-transform:none;
  2551. }
  2552. #u54397_div {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:43px;
  2558. height:20px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 0);
  2561. border-radius:0px;
  2562. filter:drop-shadow(none);
  2563. transition:none;
  2564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2565. font-weight:400;
  2566. font-style:normal;
  2567. color:#F59A23;
  2568. }
  2569. #u54397 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:320px;
  2573. top:128px;
  2574. width:43px;
  2575. height:20px;
  2576. display:flex;
  2577. transition:none;
  2578. transform-origin:50% 50%;
  2579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2580. font-weight:400;
  2581. font-style:normal;
  2582. color:#F59A23;
  2583. }
  2584. #u54397 .text {
  2585. position:absolute;
  2586. align-self:flex-start;
  2587. padding:0px 0px 0px 0px;
  2588. box-sizing:border-box;
  2589. width:100%;
  2590. }
  2591. #u54397_text {
  2592. border-width:0px;
  2593. white-space:nowrap;
  2594. text-transform:none;
  2595. }