styles.css 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:896px;
  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. #u218523_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u218523 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u218523 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u218523_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u218524_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u218524 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u218524 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u218524_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u218525 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u218526_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u218526 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u218526 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u218526_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u218527 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u218528_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u218528 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u218528 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u218528_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u218529_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u218529 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u218529 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u218529_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u218530 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u218531_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u218531 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u218531 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u218531_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u218532_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u218532 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u218532 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u218532_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u218533_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u218533 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u218533 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u218533_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u218534_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u218534 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u218534 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u218534_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u218535_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u218535 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u218535 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u218535_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u218536_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u218536 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u218536 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u218536_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u218537 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u218538_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u218538 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u218538 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u218538_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u218539_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u218539 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u218539 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u218539_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u218540 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u218541_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u218541 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u218541 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u218541_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u218542_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u218542 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u218542 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u218542_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u218543_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u218543 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u218543 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u218543_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u218544 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u218545_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u218545 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u218545 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u218545_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u218546_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u218546 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u218546 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u218546_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u218547 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u218548_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u218548 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u218548 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u218548_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u218549_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u218549 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u218549 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u218549_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u218550_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:730px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u218550 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:730px;
  804. display:flex;
  805. }
  806. #u218550 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u218550_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u218551_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:12px;
  825. height:12px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. box-sizing:border-box;
  829. border-width:2px;
  830. border-style:solid;
  831. border-color:rgba(51, 51, 51, 1);
  832. border-right:0px;
  833. border-bottom:0px;
  834. border-radius:0px;
  835. border-top-right-radius:0px;
  836. border-bottom-left-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. }
  841. #u218551 {
  842. border-width:0px;
  843. position:absolute;
  844. left:39px;
  845. top:81px;
  846. width:12px;
  847. height:12px;
  848. display:flex;
  849. -webkit-transform:rotate(315deg);
  850. -moz-transform:rotate(315deg);
  851. -ms-transform:rotate(315deg);
  852. transform:rotate(315deg);
  853. }
  854. #u218551 .text {
  855. position:absolute;
  856. align-self:center;
  857. padding:2px 2px 2px 2px;
  858. box-sizing:border-box;
  859. width:100%;
  860. }
  861. #u218551_text {
  862. border-width:0px;
  863. word-wrap:break-word;
  864. text-transform:none;
  865. visibility:hidden;
  866. }
  867. #u218552_div {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:57px;
  873. height:30px;
  874. background:inherit;
  875. background-color:rgba(255, 255, 255, 0);
  876. border:none;
  877. border-left:0px;
  878. border-top:0px;
  879. border-right:0px;
  880. border-radius:0px;
  881. border-bottom-right-radius:0px;
  882. border-bottom-left-radius:0px;
  883. -moz-box-shadow:none;
  884. -webkit-box-shadow:none;
  885. box-shadow:none;
  886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  887. font-weight:400;
  888. font-style:normal;
  889. font-size:14px;
  890. line-height:30px;
  891. }
  892. #u218552 {
  893. border-width:0px;
  894. position:absolute;
  895. left:181px;
  896. top:72px;
  897. width:57px;
  898. height:30px;
  899. display:flex;
  900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  901. font-weight:400;
  902. font-style:normal;
  903. font-size:14px;
  904. line-height:30px;
  905. }
  906. #u218552 .text {
  907. position:absolute;
  908. align-self:center;
  909. padding:0px 0px 0px 0px;
  910. box-sizing:border-box;
  911. width:100%;
  912. }
  913. #u218552_text {
  914. border-width:0px;
  915. white-space:nowrap;
  916. text-transform:none;
  917. }
  918. #u218553 {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:0px;
  924. height:0px;
  925. }
  926. #u218554_div {
  927. border-width:0px;
  928. position:absolute;
  929. left:0px;
  930. top:0px;
  931. width:355px;
  932. height:100px;
  933. background:inherit;
  934. background-color:rgba(51, 51, 51, 1);
  935. border:none;
  936. border-radius:10px;
  937. -moz-box-shadow:none;
  938. -webkit-box-shadow:none;
  939. box-shadow:none;
  940. }
  941. #u218554 {
  942. border-width:0px;
  943. position:absolute;
  944. left:37px;
  945. top:117px;
  946. width:355px;
  947. height:100px;
  948. display:flex;
  949. }
  950. #u218554 .text {
  951. position:absolute;
  952. align-self:center;
  953. padding:2px 2px 2px 2px;
  954. box-sizing:border-box;
  955. width:100%;
  956. }
  957. #u218554_text {
  958. border-width:0px;
  959. word-wrap:break-word;
  960. text-transform:none;
  961. visibility:hidden;
  962. }
  963. #u218555_div {
  964. border-width:0px;
  965. position:absolute;
  966. left:0px;
  967. top:0px;
  968. width:183px;
  969. height:30px;
  970. background:inherit;
  971. background-color:rgba(255, 255, 255, 0);
  972. border:none;
  973. border-left:0px;
  974. border-top:0px;
  975. border-right:0px;
  976. border-radius:0px;
  977. border-bottom-right-radius:0px;
  978. border-bottom-left-radius:0px;
  979. -moz-box-shadow:none;
  980. -webkit-box-shadow:none;
  981. box-shadow:none;
  982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  983. font-weight:400;
  984. font-style:normal;
  985. font-size:14px;
  986. color:#1890FF;
  987. line-height:30px;
  988. }
  989. #u218555 {
  990. border-width:0px;
  991. position:absolute;
  992. left:57px;
  993. top:177px;
  994. width:183px;
  995. height:30px;
  996. display:flex;
  997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  998. font-weight:400;
  999. font-style:normal;
  1000. font-size:14px;
  1001. color:#1890FF;
  1002. line-height:30px;
  1003. }
  1004. #u218555 .text {
  1005. position:absolute;
  1006. align-self:flex-start;
  1007. padding:0px 0px 0px 0px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u218555_text {
  1012. border-width:0px;
  1013. white-space:nowrap;
  1014. text-transform:none;
  1015. }
  1016. #u218556_div {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:97px;
  1022. height:30px;
  1023. background:inherit;
  1024. background-color:rgba(255, 255, 255, 0);
  1025. border:none;
  1026. border-left:0px;
  1027. border-top:0px;
  1028. border-right:0px;
  1029. border-radius:0px;
  1030. border-bottom-right-radius:0px;
  1031. border-bottom-left-radius:0px;
  1032. -moz-box-shadow:none;
  1033. -webkit-box-shadow:none;
  1034. box-shadow:none;
  1035. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1036. font-weight:500;
  1037. font-style:normal;
  1038. color:#FFFFFF;
  1039. line-height:30px;
  1040. }
  1041. #u218556 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:57px;
  1045. top:137px;
  1046. width:97px;
  1047. height:30px;
  1048. display:flex;
  1049. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1050. font-weight:500;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. line-height:30px;
  1054. }
  1055. #u218556 .text {
  1056. position:absolute;
  1057. align-self:flex-start;
  1058. padding:0px 0px 0px 0px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u218556_text {
  1063. border-width:0px;
  1064. white-space:nowrap;
  1065. text-transform:none;
  1066. }
  1067. #u218557_div {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:0px;
  1071. top:0px;
  1072. width:56px;
  1073. height:30px;
  1074. background:inherit;
  1075. background-color:rgba(255, 255, 255, 0);
  1076. border:none;
  1077. border-left:0px;
  1078. border-top:0px;
  1079. border-right:0px;
  1080. border-radius:0px;
  1081. border-bottom-right-radius:0px;
  1082. border-bottom-left-radius:0px;
  1083. -moz-box-shadow:none;
  1084. -webkit-box-shadow:none;
  1085. box-shadow:none;
  1086. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1087. font-style:normal;
  1088. color:#FFFFFF;
  1089. text-align:right;
  1090. line-height:30px;
  1091. }
  1092. #u218557 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:313px;
  1096. top:142px;
  1097. width:56px;
  1098. height:30px;
  1099. display:flex;
  1100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1101. font-style:normal;
  1102. color:#FFFFFF;
  1103. text-align:right;
  1104. line-height:30px;
  1105. }
  1106. #u218557 .text {
  1107. position:absolute;
  1108. align-self:flex-start;
  1109. padding:0px 0px 0px 0px;
  1110. box-sizing:border-box;
  1111. width:100%;
  1112. }
  1113. #u218557_text {
  1114. border-width:0px;
  1115. white-space:nowrap;
  1116. text-transform:none;
  1117. }
  1118. #u218558_div {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:0px;
  1122. top:0px;
  1123. width:328px;
  1124. height:40px;
  1125. background:inherit;
  1126. background-color:rgba(0, 137, 254, 1);
  1127. border:none;
  1128. border-radius:63px;
  1129. -moz-box-shadow:none;
  1130. -webkit-box-shadow:none;
  1131. box-shadow:none;
  1132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:14px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u218558 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:53px;
  1142. top:786px;
  1143. width:328px;
  1144. height:40px;
  1145. display:flex;
  1146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1147. font-weight:400;
  1148. font-style:normal;
  1149. font-size:14px;
  1150. color:#FFFFFF;
  1151. }
  1152. #u218558 .text {
  1153. position:absolute;
  1154. align-self:center;
  1155. padding:2px 2px 2px 2px;
  1156. box-sizing:border-box;
  1157. width:100%;
  1158. }
  1159. #u218558_text {
  1160. border-width:0px;
  1161. word-wrap:break-word;
  1162. text-transform:none;
  1163. }
  1164. #u218559 {
  1165. border-width:0px;
  1166. position:absolute;
  1167. left:0px;
  1168. top:0px;
  1169. width:0px;
  1170. height:0px;
  1171. }
  1172. #u218560_img {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:0px;
  1176. top:0px;
  1177. width:375px;
  1178. height:50px;
  1179. }
  1180. #u218560 {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:29px;
  1184. top:227px;
  1185. width:375px;
  1186. height:50px;
  1187. display:flex;
  1188. }
  1189. #u218560 .text {
  1190. position:absolute;
  1191. align-self:center;
  1192. padding:2px 2px 2px 2px;
  1193. box-sizing:border-box;
  1194. width:100%;
  1195. }
  1196. #u218560_text {
  1197. border-width:0px;
  1198. word-wrap:break-word;
  1199. text-transform:none;
  1200. visibility:hidden;
  1201. }
  1202. #u218561_div {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:0px;
  1206. top:0px;
  1207. width:29px;
  1208. height:30px;
  1209. background:inherit;
  1210. background-color:rgba(255, 255, 255, 0);
  1211. border:none;
  1212. border-left:0px;
  1213. border-top:0px;
  1214. border-right:0px;
  1215. border-radius:0px;
  1216. border-bottom-right-radius:0px;
  1217. border-bottom-left-radius:0px;
  1218. -moz-box-shadow:none;
  1219. -webkit-box-shadow:none;
  1220. box-shadow:none;
  1221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1222. font-weight:400;
  1223. font-style:normal;
  1224. font-size:14px;
  1225. line-height:30px;
  1226. }
  1227. #u218561 {
  1228. border-width:0px;
  1229. position:absolute;
  1230. left:53px;
  1231. top:237px;
  1232. width:29px;
  1233. height:30px;
  1234. display:flex;
  1235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1236. font-weight:400;
  1237. font-style:normal;
  1238. font-size:14px;
  1239. line-height:30px;
  1240. }
  1241. #u218561 .text {
  1242. position:absolute;
  1243. align-self:flex-start;
  1244. padding:0px 0px 0px 0px;
  1245. box-sizing:border-box;
  1246. width:100%;
  1247. }
  1248. #u218561_text {
  1249. border-width:0px;
  1250. white-space:nowrap;
  1251. text-transform:none;
  1252. }
  1253. #u218562_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:72px;
  1259. height:30px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-left:0px;
  1264. border-top:0px;
  1265. border-right:0px;
  1266. border-radius:0px;
  1267. border-bottom-right-radius:0px;
  1268. border-bottom-left-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1273. font-weight:400;
  1274. font-style:normal;
  1275. font-size:14px;
  1276. line-height:30px;
  1277. }
  1278. #u218562 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:112px;
  1282. top:237px;
  1283. width:72px;
  1284. height:30px;
  1285. display:flex;
  1286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1287. font-weight:400;
  1288. font-style:normal;
  1289. font-size:14px;
  1290. line-height:30px;
  1291. }
  1292. #u218562 .text {
  1293. position:absolute;
  1294. align-self:flex-start;
  1295. padding:0px 0px 0px 0px;
  1296. box-sizing:border-box;
  1297. width:100%;
  1298. }
  1299. #u218562_text {
  1300. border-width:0px;
  1301. white-space:nowrap;
  1302. text-transform:none;
  1303. }
  1304. #u218563 {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:0px;
  1308. top:0px;
  1309. width:0px;
  1310. height:0px;
  1311. }
  1312. #u218564_img {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:375px;
  1318. height:50px;
  1319. }
  1320. #u218564 {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:29px;
  1324. top:277px;
  1325. width:375px;
  1326. height:50px;
  1327. display:flex;
  1328. }
  1329. #u218564 .text {
  1330. position:absolute;
  1331. align-self:center;
  1332. padding:2px 2px 2px 2px;
  1333. box-sizing:border-box;
  1334. width:100%;
  1335. }
  1336. #u218564_text {
  1337. border-width:0px;
  1338. word-wrap:break-word;
  1339. text-transform:none;
  1340. visibility:hidden;
  1341. }
  1342. #u218565_div {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:0px;
  1346. top:0px;
  1347. width:29px;
  1348. height:30px;
  1349. background:inherit;
  1350. background-color:rgba(255, 255, 255, 0);
  1351. border:none;
  1352. border-left:0px;
  1353. border-top:0px;
  1354. border-right:0px;
  1355. border-radius:0px;
  1356. border-bottom-right-radius:0px;
  1357. border-bottom-left-radius:0px;
  1358. -moz-box-shadow:none;
  1359. -webkit-box-shadow:none;
  1360. box-shadow:none;
  1361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1362. font-weight:400;
  1363. font-style:normal;
  1364. font-size:14px;
  1365. line-height:30px;
  1366. }
  1367. #u218565 {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:53px;
  1371. top:287px;
  1372. width:29px;
  1373. height:30px;
  1374. display:flex;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:14px;
  1379. line-height:30px;
  1380. }
  1381. #u218565 .text {
  1382. position:absolute;
  1383. align-self:flex-start;
  1384. padding:0px 0px 0px 0px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u218565_text {
  1389. border-width:0px;
  1390. white-space:nowrap;
  1391. text-transform:none;
  1392. }
  1393. #u218566_div {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:29px;
  1399. height:30px;
  1400. background:inherit;
  1401. background-color:rgba(255, 255, 255, 0);
  1402. border:none;
  1403. border-left:0px;
  1404. border-top:0px;
  1405. border-right:0px;
  1406. border-radius:0px;
  1407. border-bottom-right-radius:0px;
  1408. border-bottom-left-radius:0px;
  1409. -moz-box-shadow:none;
  1410. -webkit-box-shadow:none;
  1411. box-shadow:none;
  1412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1413. font-weight:400;
  1414. font-style:normal;
  1415. font-size:14px;
  1416. line-height:30px;
  1417. }
  1418. #u218566 {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:112px;
  1422. top:287px;
  1423. width:29px;
  1424. height:30px;
  1425. display:flex;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. font-size:14px;
  1430. line-height:30px;
  1431. }
  1432. #u218566 .text {
  1433. position:absolute;
  1434. align-self:flex-start;
  1435. padding:0px 0px 0px 0px;
  1436. box-sizing:border-box;
  1437. width:100%;
  1438. }
  1439. #u218566_text {
  1440. border-width:0px;
  1441. white-space:nowrap;
  1442. text-transform:none;
  1443. }
  1444. #u218567 {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:0px;
  1448. top:0px;
  1449. width:0px;
  1450. height:0px;
  1451. }
  1452. #u218568_img {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:375px;
  1458. height:50px;
  1459. }
  1460. #u218568 {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:29px;
  1464. top:377px;
  1465. width:375px;
  1466. height:50px;
  1467. display:flex;
  1468. }
  1469. #u218568 .text {
  1470. position:absolute;
  1471. align-self:center;
  1472. padding:2px 2px 2px 2px;
  1473. box-sizing:border-box;
  1474. width:100%;
  1475. }
  1476. #u218568_text {
  1477. border-width:0px;
  1478. word-wrap:break-word;
  1479. text-transform:none;
  1480. visibility:hidden;
  1481. }
  1482. #u218569_div {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:29px;
  1488. height:30px;
  1489. background:inherit;
  1490. background-color:rgba(255, 255, 255, 0);
  1491. border:none;
  1492. border-left:0px;
  1493. border-top:0px;
  1494. border-right:0px;
  1495. border-radius:0px;
  1496. border-bottom-right-radius:0px;
  1497. border-bottom-left-radius:0px;
  1498. -moz-box-shadow:none;
  1499. -webkit-box-shadow:none;
  1500. box-shadow:none;
  1501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1502. font-weight:400;
  1503. font-style:normal;
  1504. font-size:14px;
  1505. line-height:30px;
  1506. }
  1507. #u218569 {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:53px;
  1511. top:387px;
  1512. width:29px;
  1513. height:30px;
  1514. display:flex;
  1515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1516. font-weight:400;
  1517. font-style:normal;
  1518. font-size:14px;
  1519. line-height:30px;
  1520. }
  1521. #u218569 .text {
  1522. position:absolute;
  1523. align-self:flex-start;
  1524. padding:0px 0px 0px 0px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u218569_text {
  1529. border-width:0px;
  1530. white-space:nowrap;
  1531. text-transform:none;
  1532. }
  1533. #u218570_img {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:8px;
  1539. height:13px;
  1540. }
  1541. #u218570 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:380px;
  1545. top:396px;
  1546. width:8px;
  1547. height:13px;
  1548. display:flex;
  1549. -webkit-transform:rotate(180deg);
  1550. -moz-transform:rotate(180deg);
  1551. -ms-transform:rotate(180deg);
  1552. transform:rotate(180deg);
  1553. }
  1554. #u218570 .text {
  1555. position:absolute;
  1556. align-self:center;
  1557. padding:2px 2px 2px 2px;
  1558. box-sizing:border-box;
  1559. width:100%;
  1560. }
  1561. #u218570_text {
  1562. border-width:0px;
  1563. word-wrap:break-word;
  1564. text-transform:none;
  1565. visibility:hidden;
  1566. }
  1567. #u218571_div {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:82px;
  1573. height:30px;
  1574. background:inherit;
  1575. background-color:rgba(255, 255, 255, 0);
  1576. border:none;
  1577. border-left:0px;
  1578. border-top:0px;
  1579. border-right:0px;
  1580. border-radius:0px;
  1581. border-bottom-right-radius:0px;
  1582. border-bottom-left-radius:0px;
  1583. -moz-box-shadow:none;
  1584. -webkit-box-shadow:none;
  1585. box-shadow:none;
  1586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1587. font-weight:400;
  1588. font-style:normal;
  1589. font-size:14px;
  1590. color:#AAAAAA;
  1591. line-height:30px;
  1592. }
  1593. #u218571 {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:112px;
  1597. top:387px;
  1598. width:82px;
  1599. height:30px;
  1600. display:flex;
  1601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1602. font-weight:400;
  1603. font-style:normal;
  1604. font-size:14px;
  1605. color:#AAAAAA;
  1606. line-height:30px;
  1607. }
  1608. #u218571 .text {
  1609. position:absolute;
  1610. align-self:flex-start;
  1611. padding:0px 0px 0px 0px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u218571_text {
  1616. border-width:0px;
  1617. white-space:nowrap;
  1618. text-transform:none;
  1619. }
  1620. #u218572 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:0px;
  1626. height:0px;
  1627. }
  1628. #u218573_img {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:375px;
  1634. height:50px;
  1635. }
  1636. #u218573 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:29px;
  1640. top:327px;
  1641. width:375px;
  1642. height:50px;
  1643. display:flex;
  1644. }
  1645. #u218573 .text {
  1646. position:absolute;
  1647. align-self:center;
  1648. padding:2px 2px 2px 2px;
  1649. box-sizing:border-box;
  1650. width:100%;
  1651. }
  1652. #u218573_text {
  1653. border-width:0px;
  1654. word-wrap:break-word;
  1655. text-transform:none;
  1656. visibility:hidden;
  1657. }
  1658. #u218574_div {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:29px;
  1664. height:30px;
  1665. background:inherit;
  1666. background-color:rgba(255, 255, 255, 0);
  1667. border:none;
  1668. border-left:0px;
  1669. border-top:0px;
  1670. border-right:0px;
  1671. border-radius:0px;
  1672. border-bottom-right-radius:0px;
  1673. border-bottom-left-radius:0px;
  1674. -moz-box-shadow:none;
  1675. -webkit-box-shadow:none;
  1676. box-shadow:none;
  1677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1678. font-weight:400;
  1679. font-style:normal;
  1680. font-size:14px;
  1681. line-height:30px;
  1682. }
  1683. #u218574 {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:53px;
  1687. top:337px;
  1688. width:29px;
  1689. height:30px;
  1690. display:flex;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:14px;
  1695. line-height:30px;
  1696. }
  1697. #u218574 .text {
  1698. position:absolute;
  1699. align-self:flex-start;
  1700. padding:0px 0px 0px 0px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u218574_text {
  1705. border-width:0px;
  1706. white-space:nowrap;
  1707. text-transform:none;
  1708. }
  1709. #u218575_img {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:8px;
  1715. height:13px;
  1716. }
  1717. #u218575 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:380px;
  1721. top:346px;
  1722. width:8px;
  1723. height:13px;
  1724. display:flex;
  1725. -webkit-transform:rotate(180deg);
  1726. -moz-transform:rotate(180deg);
  1727. -ms-transform:rotate(180deg);
  1728. transform:rotate(180deg);
  1729. }
  1730. #u218575 .text {
  1731. position:absolute;
  1732. align-self:center;
  1733. padding:2px 2px 2px 2px;
  1734. box-sizing:border-box;
  1735. width:100%;
  1736. }
  1737. #u218575_text {
  1738. border-width:0px;
  1739. word-wrap:break-word;
  1740. text-transform:none;
  1741. visibility:hidden;
  1742. }
  1743. #u218576_div {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:9px;
  1749. height:30px;
  1750. background:inherit;
  1751. background-color:rgba(255, 255, 255, 0);
  1752. border:none;
  1753. border-left:0px;
  1754. border-top:0px;
  1755. border-right:0px;
  1756. border-radius:0px;
  1757. border-bottom-right-radius:0px;
  1758. border-bottom-left-radius:0px;
  1759. -moz-box-shadow:none;
  1760. -webkit-box-shadow:none;
  1761. box-shadow:none;
  1762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:14px;
  1766. color:#AAAAAA;
  1767. line-height:30px;
  1768. }
  1769. #u218576 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:112px;
  1773. top:337px;
  1774. width:9px;
  1775. height:30px;
  1776. display:flex;
  1777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:14px;
  1781. color:#AAAAAA;
  1782. line-height:30px;
  1783. }
  1784. #u218576 .text {
  1785. position:absolute;
  1786. align-self:flex-start;
  1787. padding:0px 0px 0px 0px;
  1788. box-sizing:border-box;
  1789. width:100%;
  1790. }
  1791. #u218576_text {
  1792. border-width:0px;
  1793. white-space:nowrap;
  1794. text-transform:none;
  1795. }
  1796. #u218577_div {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:330px;
  1802. height:60px;
  1803. background:inherit;
  1804. background-color:rgba(255, 255, 255, 0);
  1805. border:none;
  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. -moz-box-shadow:none;
  1813. -webkit-box-shadow:none;
  1814. box-shadow:none;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:14px;
  1819. color:#D9001B;
  1820. line-height:30px;
  1821. }
  1822. #u218577 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:46px;
  1826. top:440px;
  1827. width:330px;
  1828. height:60px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:14px;
  1834. color:#D9001B;
  1835. line-height:30px;
  1836. }
  1837. #u218577 .text {
  1838. position:absolute;
  1839. align-self:flex-start;
  1840. padding:0px 0px 0px 0px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u218577_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. }
  1849. #u218578 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:0px;
  1855. height:0px;
  1856. }
  1857. #u218580_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:433px;
  1863. height:865px;
  1864. }
  1865. #u218580 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:463px;
  1869. top:0px;
  1870. width:433px;
  1871. height:865px;
  1872. display:flex;
  1873. }
  1874. #u218580 .text {
  1875. position:absolute;
  1876. align-self:center;
  1877. padding:2px 2px 2px 2px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u218580_text {
  1882. border-width:0px;
  1883. word-wrap:break-word;
  1884. text-transform:none;
  1885. visibility:hidden;
  1886. }
  1887. #u218581_div {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:375px;
  1893. height:40px;
  1894. background:inherit;
  1895. background-color:rgba(255, 255, 255, 1);
  1896. box-sizing:border-box;
  1897. border-width:1px;
  1898. border-style:solid;
  1899. border-color:rgba(215, 215, 215, 1);
  1900. border-left:0px;
  1901. border-top:0px;
  1902. border-right:0px;
  1903. border-radius:0px;
  1904. border-bottom-right-radius:0px;
  1905. border-bottom-left-radius:0px;
  1906. -moz-box-shadow:none;
  1907. -webkit-box-shadow:none;
  1908. box-shadow:none;
  1909. }
  1910. #u218581 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:492px;
  1914. top:67px;
  1915. width:375px;
  1916. height:40px;
  1917. display:flex;
  1918. }
  1919. #u218581 .text {
  1920. position:absolute;
  1921. align-self:center;
  1922. padding:2px 2px 2px 2px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u218581_text {
  1927. border-width:0px;
  1928. word-wrap:break-word;
  1929. text-transform:none;
  1930. visibility:hidden;
  1931. }
  1932. #u218582 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:0px;
  1938. height:0px;
  1939. }
  1940. #u218583_div {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:88px;
  1946. height:32px;
  1947. background:inherit;
  1948. background-color:rgba(255, 255, 255, 1);
  1949. box-sizing:border-box;
  1950. border-width:1px;
  1951. border-style:solid;
  1952. border-color:rgba(242, 242, 242, 1);
  1953. border-radius:33px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. }
  1958. #u218583 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:772px;
  1962. top:71px;
  1963. width:88px;
  1964. height:32px;
  1965. display:flex;
  1966. }
  1967. #u218583 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 2px 2px 2px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u218583_text {
  1975. border-width:0px;
  1976. word-wrap:break-word;
  1977. text-transform:none;
  1978. visibility:hidden;
  1979. }
  1980. #u218584 {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:0px;
  1986. height:0px;
  1987. }
  1988. #u218585_img {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:18px;
  1994. height:18px;
  1995. }
  1996. #u218585 {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:835px;
  2000. top:78px;
  2001. width:18px;
  2002. height:18px;
  2003. display:flex;
  2004. }
  2005. #u218585 .text {
  2006. position:absolute;
  2007. align-self:center;
  2008. padding:2px 2px 2px 2px;
  2009. box-sizing:border-box;
  2010. width:100%;
  2011. }
  2012. #u218585_text {
  2013. border-width:0px;
  2014. word-wrap:break-word;
  2015. text-transform:none;
  2016. visibility:hidden;
  2017. }
  2018. #u218586_img {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:6px;
  2024. height:6px;
  2025. }
  2026. #u218586 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:841px;
  2030. top:84px;
  2031. width:6px;
  2032. height:6px;
  2033. display:flex;
  2034. }
  2035. #u218586 .text {
  2036. position:absolute;
  2037. align-self:center;
  2038. padding:2px 2px 2px 2px;
  2039. box-sizing:border-box;
  2040. width:100%;
  2041. }
  2042. #u218586_text {
  2043. border-width:0px;
  2044. word-wrap:break-word;
  2045. text-transform:none;
  2046. visibility:hidden;
  2047. }
  2048. #u218587 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:0px;
  2053. width:0px;
  2054. height:0px;
  2055. }
  2056. #u218588_img {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:5px;
  2062. height:5px;
  2063. }
  2064. #u218588 {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:786px;
  2068. top:85px;
  2069. width:5px;
  2070. height:5px;
  2071. display:flex;
  2072. }
  2073. #u218588 .text {
  2074. position:absolute;
  2075. align-self:center;
  2076. padding:2px 2px 2px 2px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u218588_text {
  2081. border-width:0px;
  2082. word-wrap:break-word;
  2083. text-transform:none;
  2084. visibility:hidden;
  2085. }
  2086. #u218589_img {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:5px;
  2092. height:5px;
  2093. }
  2094. #u218589 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:802px;
  2098. top:85px;
  2099. width:5px;
  2100. height:5px;
  2101. display:flex;
  2102. }
  2103. #u218589 .text {
  2104. position:absolute;
  2105. align-self:center;
  2106. padding:2px 2px 2px 2px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u218589_text {
  2111. border-width:0px;
  2112. word-wrap:break-word;
  2113. text-transform:none;
  2114. visibility:hidden;
  2115. }
  2116. #u218590_img {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:7px;
  2122. height:7px;
  2123. }
  2124. #u218590 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:793px;
  2128. top:84px;
  2129. width:7px;
  2130. height:7px;
  2131. display:flex;
  2132. }
  2133. #u218590 .text {
  2134. position:absolute;
  2135. align-self:center;
  2136. padding:2px 2px 2px 2px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u218590_text {
  2141. border-width:0px;
  2142. word-wrap:break-word;
  2143. text-transform:none;
  2144. visibility:hidden;
  2145. }
  2146. #u218591_img {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:19px;
  2152. height:2px;
  2153. }
  2154. #u218591 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:810px;
  2158. top:87px;
  2159. width:18px;
  2160. height:1px;
  2161. display:flex;
  2162. -webkit-transform:rotate(90deg);
  2163. -moz-transform:rotate(90deg);
  2164. -ms-transform:rotate(90deg);
  2165. transform:rotate(90deg);
  2166. }
  2167. #u218591 .text {
  2168. position:absolute;
  2169. align-self:center;
  2170. padding:2px 2px 2px 2px;
  2171. box-sizing:border-box;
  2172. width:100%;
  2173. }
  2174. #u218591_text {
  2175. border-width:0px;
  2176. word-wrap:break-word;
  2177. text-transform:none;
  2178. visibility:hidden;
  2179. }
  2180. #u218592_img {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:375px;
  2186. height:44px;
  2187. }
  2188. #u218592 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:492px;
  2192. top:24px;
  2193. width:375px;
  2194. height:44px;
  2195. display:flex;
  2196. }
  2197. #u218592 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:2px 2px 2px 2px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u218592_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. visibility:hidden;
  2209. }
  2210. #u218593_div {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:375px;
  2216. height:50px;
  2217. background:inherit;
  2218. background-color:rgba(255, 255, 255, 1);
  2219. box-sizing:border-box;
  2220. border-width:1px;
  2221. border-style:solid;
  2222. border-color:rgba(242, 242, 242, 1);
  2223. border-radius:26px;
  2224. border-top-left-radius:0px;
  2225. border-top-right-radius:0px;
  2226. -moz-box-shadow:none;
  2227. -webkit-box-shadow:none;
  2228. box-shadow:none;
  2229. }
  2230. #u218593 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:492px;
  2234. top:788px;
  2235. width:375px;
  2236. height:50px;
  2237. display:flex;
  2238. }
  2239. #u218593 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:2px 2px 2px 2px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u218593_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. visibility:hidden;
  2251. }
  2252. #u218594 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:0px;
  2256. top:0px;
  2257. width:0px;
  2258. height:0px;
  2259. }
  2260. #u218595_img {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:24px;
  2266. height:24px;
  2267. }
  2268. #u218595 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:532px;
  2272. top:792px;
  2273. width:24px;
  2274. height:24px;
  2275. display:flex;
  2276. font-size:8px;
  2277. }
  2278. #u218595 .text {
  2279. position:absolute;
  2280. align-self:center;
  2281. padding:2px 2px 2px 2px;
  2282. box-sizing:border-box;
  2283. width:100%;
  2284. }
  2285. #u218595_text {
  2286. border-width:0px;
  2287. word-wrap:break-word;
  2288. text-transform:none;
  2289. }
  2290. #u218596_div {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:25px;
  2296. height:17px;
  2297. background:inherit;
  2298. background-color:rgba(255, 255, 255, 0);
  2299. border:none;
  2300. border-radius:0px;
  2301. -moz-box-shadow:none;
  2302. -webkit-box-shadow:none;
  2303. box-shadow:none;
  2304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. font-size:12px;
  2308. }
  2309. #u218596 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:532px;
  2313. top:817px;
  2314. width:25px;
  2315. height:17px;
  2316. display:flex;
  2317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:12px;
  2321. }
  2322. #u218596 .text {
  2323. position:absolute;
  2324. align-self:flex-start;
  2325. padding:0px 0px 0px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u218596_text {
  2330. border-width:0px;
  2331. white-space:nowrap;
  2332. text-transform:none;
  2333. }
  2334. #u218597 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:0px;
  2340. height:0px;
  2341. }
  2342. #u218598_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:24px;
  2348. height:24px;
  2349. }
  2350. #u218598 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:802px;
  2354. top:794px;
  2355. width:24px;
  2356. height:24px;
  2357. display:flex;
  2358. font-size:8px;
  2359. }
  2360. #u218598 .text {
  2361. position:absolute;
  2362. align-self:center;
  2363. padding:2px 2px 2px 2px;
  2364. box-sizing:border-box;
  2365. width:100%;
  2366. }
  2367. #u218598_text {
  2368. border-width:0px;
  2369. word-wrap:break-word;
  2370. text-transform:none;
  2371. }
  2372. #u218599_div {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:25px;
  2378. height:17px;
  2379. background:inherit;
  2380. background-color:rgba(255, 255, 255, 0);
  2381. border:none;
  2382. border-radius:0px;
  2383. -moz-box-shadow:none;
  2384. -webkit-box-shadow:none;
  2385. box-shadow:none;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:12px;
  2390. }
  2391. #u218599 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:802px;
  2395. top:819px;
  2396. width:25px;
  2397. height:17px;
  2398. display:flex;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:12px;
  2403. }
  2404. #u218599 .text {
  2405. position:absolute;
  2406. align-self:flex-start;
  2407. padding:0px 0px 0px 0px;
  2408. box-sizing:border-box;
  2409. width:100%;
  2410. }
  2411. #u218599_text {
  2412. border-width:0px;
  2413. white-space:nowrap;
  2414. text-transform:none;
  2415. }
  2416. #u218600_div {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:375px;
  2422. height:681px;
  2423. background:inherit;
  2424. background-color:rgba(242, 242, 242, 0.462745098039216);
  2425. border:none;
  2426. border-radius:0px;
  2427. -moz-box-shadow:none;
  2428. -webkit-box-shadow:none;
  2429. box-shadow:none;
  2430. }
  2431. #u218600 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:492px;
  2435. top:107px;
  2436. width:375px;
  2437. height:681px;
  2438. display:flex;
  2439. }
  2440. #u218600 .text {
  2441. position:absolute;
  2442. align-self:center;
  2443. padding:2px 2px 2px 2px;
  2444. box-sizing:border-box;
  2445. width:100%;
  2446. }
  2447. #u218600_text {
  2448. border-width:0px;
  2449. word-wrap:break-word;
  2450. text-transform:none;
  2451. visibility:hidden;
  2452. }
  2453. #u218601 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:0px;
  2459. height:0px;
  2460. }
  2461. #u218602_img {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:24px;
  2467. height:24px;
  2468. }
  2469. #u218602 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:714px;
  2473. top:792px;
  2474. width:24px;
  2475. height:24px;
  2476. display:flex;
  2477. font-size:8px;
  2478. }
  2479. #u218602 .text {
  2480. position:absolute;
  2481. align-self:center;
  2482. padding:2px 2px 2px 2px;
  2483. box-sizing:border-box;
  2484. width:100%;
  2485. }
  2486. #u218602_text {
  2487. border-width:0px;
  2488. word-wrap:break-word;
  2489. text-transform:none;
  2490. }
  2491. #u218603_div {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:37px;
  2497. height:17px;
  2498. background:inherit;
  2499. background-color:rgba(255, 255, 255, 0);
  2500. border:none;
  2501. border-radius:0px;
  2502. -moz-box-shadow:none;
  2503. -webkit-box-shadow:none;
  2504. box-shadow:none;
  2505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2506. font-weight:400;
  2507. font-style:normal;
  2508. font-size:12px;
  2509. }
  2510. #u218603 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:708px;
  2514. top:817px;
  2515. width:37px;
  2516. height:17px;
  2517. display:flex;
  2518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:12px;
  2522. }
  2523. #u218603 .text {
  2524. position:absolute;
  2525. align-self:flex-start;
  2526. padding:0px 0px 0px 0px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u218603_text {
  2531. border-width:0px;
  2532. white-space:nowrap;
  2533. text-transform:none;
  2534. }
  2535. #u218604 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:0px;
  2541. height:0px;
  2542. }
  2543. #u218605_img {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:24px;
  2549. height:24px;
  2550. }
  2551. #u218605 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:620px;
  2555. top:792px;
  2556. width:24px;
  2557. height:24px;
  2558. display:flex;
  2559. font-size:8px;
  2560. }
  2561. #u218605 .text {
  2562. position:absolute;
  2563. align-self:center;
  2564. padding:2px 2px 2px 2px;
  2565. box-sizing:border-box;
  2566. width:100%;
  2567. }
  2568. #u218605_text {
  2569. border-width:0px;
  2570. word-wrap:break-word;
  2571. text-transform:none;
  2572. }
  2573. #u218606_div {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:37px;
  2579. height:17px;
  2580. background:inherit;
  2581. background-color:rgba(255, 255, 255, 0);
  2582. border:none;
  2583. border-radius:0px;
  2584. -moz-box-shadow:none;
  2585. -webkit-box-shadow:none;
  2586. box-shadow:none;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:12px;
  2591. }
  2592. #u218606 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:614px;
  2596. top:817px;
  2597. width:37px;
  2598. height:17px;
  2599. display:flex;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:12px;
  2604. }
  2605. #u218606 .text {
  2606. position:absolute;
  2607. align-self:flex-start;
  2608. padding:0px 0px 0px 0px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u218606_text {
  2613. border-width:0px;
  2614. white-space:nowrap;
  2615. text-transform:none;
  2616. }
  2617. #u218607_div {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:375px;
  2623. height:733px;
  2624. background:inherit;
  2625. background-color:rgba(242, 242, 242, 1);
  2626. border:none;
  2627. border-top:0px;
  2628. border-radius:28px;
  2629. border-top-left-radius:0px;
  2630. border-top-right-radius:0px;
  2631. -moz-box-shadow:none;
  2632. -webkit-box-shadow:none;
  2633. box-shadow:none;
  2634. }
  2635. #u218607 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:492px;
  2639. top:107px;
  2640. width:375px;
  2641. height:733px;
  2642. display:flex;
  2643. }
  2644. #u218607 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 2px 2px 2px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u218607_text {
  2652. border-width:0px;
  2653. word-wrap:break-word;
  2654. text-transform:none;
  2655. visibility:hidden;
  2656. }
  2657. #u218608_div {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:12px;
  2663. height:12px;
  2664. background:inherit;
  2665. background-color:rgba(255, 255, 255, 0);
  2666. box-sizing:border-box;
  2667. border-width:2px;
  2668. border-style:solid;
  2669. border-color:rgba(51, 51, 51, 1);
  2670. border-right:0px;
  2671. border-bottom:0px;
  2672. border-radius:0px;
  2673. border-top-right-radius:0px;
  2674. border-bottom-left-radius:0px;
  2675. -moz-box-shadow:none;
  2676. -webkit-box-shadow:none;
  2677. box-shadow:none;
  2678. }
  2679. #u218608 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:502px;
  2683. top:81px;
  2684. width:12px;
  2685. height:12px;
  2686. display:flex;
  2687. -webkit-transform:rotate(315deg);
  2688. -moz-transform:rotate(315deg);
  2689. -ms-transform:rotate(315deg);
  2690. transform:rotate(315deg);
  2691. }
  2692. #u218608 .text {
  2693. position:absolute;
  2694. align-self:center;
  2695. padding:2px 2px 2px 2px;
  2696. box-sizing:border-box;
  2697. width:100%;
  2698. }
  2699. #u218608_text {
  2700. border-width:0px;
  2701. word-wrap:break-word;
  2702. text-transform:none;
  2703. visibility:hidden;
  2704. }
  2705. #u218609_div {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:57px;
  2711. height:30px;
  2712. background:inherit;
  2713. background-color:rgba(255, 255, 255, 0);
  2714. border:none;
  2715. border-left:0px;
  2716. border-top:0px;
  2717. border-right:0px;
  2718. border-radius:0px;
  2719. border-bottom-right-radius:0px;
  2720. border-bottom-left-radius:0px;
  2721. -moz-box-shadow:none;
  2722. -webkit-box-shadow:none;
  2723. box-shadow:none;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:14px;
  2728. line-height:30px;
  2729. }
  2730. #u218609 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:647px;
  2734. top:72px;
  2735. width:57px;
  2736. height:30px;
  2737. display:flex;
  2738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2739. font-weight:400;
  2740. font-style:normal;
  2741. font-size:14px;
  2742. line-height:30px;
  2743. }
  2744. #u218609 .text {
  2745. position:absolute;
  2746. align-self:center;
  2747. padding:0px 0px 0px 0px;
  2748. box-sizing:border-box;
  2749. width:100%;
  2750. }
  2751. #u218609_text {
  2752. border-width:0px;
  2753. white-space:nowrap;
  2754. text-transform:none;
  2755. }
  2756. #u218610 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:0px;
  2762. height:0px;
  2763. }
  2764. #u218611_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:357px;
  2770. height:60px;
  2771. background:inherit;
  2772. background-color:rgba(255, 255, 255, 1);
  2773. border:none;
  2774. border-radius:3px;
  2775. -moz-box-shadow:none;
  2776. -webkit-box-shadow:none;
  2777. box-shadow:none;
  2778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. font-size:14px;
  2782. color:#FFFFFF;
  2783. }
  2784. #u218611 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:501px;
  2788. top:337px;
  2789. width:357px;
  2790. height:60px;
  2791. display:flex;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. font-size:14px;
  2796. color:#FFFFFF;
  2797. }
  2798. #u218611 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 2px 2px 2px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u218611_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. visibility:hidden;
  2810. }
  2811. #u218612_div {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:71px;
  2817. height:20px;
  2818. background:inherit;
  2819. background-color:rgba(255, 255, 255, 0);
  2820. border:none;
  2821. border-left:0px;
  2822. border-top:0px;
  2823. border-right:0px;
  2824. border-radius:0px;
  2825. border-bottom-right-radius:0px;
  2826. border-bottom-left-radius:0px;
  2827. -moz-box-shadow:none;
  2828. -webkit-box-shadow:none;
  2829. box-shadow:none;
  2830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2831. font-weight:400;
  2832. font-style:normal;
  2833. font-size:14px;
  2834. }
  2835. #u218612 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:521px;
  2839. top:357px;
  2840. width:71px;
  2841. height:20px;
  2842. display:flex;
  2843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:14px;
  2847. }
  2848. #u218612 .text {
  2849. position:absolute;
  2850. align-self:center;
  2851. padding:0px 0px 0px 0px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u218612_text {
  2856. border-width:0px;
  2857. white-space:nowrap;
  2858. text-transform:none;
  2859. }
  2860. #u218613 {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:0px;
  2866. height:0px;
  2867. }
  2868. #u218614_div {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:25px;
  2874. height:17px;
  2875. background:inherit;
  2876. background-color:rgba(255, 255, 255, 0);
  2877. border:none;
  2878. border-left:0px;
  2879. border-top:0px;
  2880. border-right:0px;
  2881. border-radius:0px;
  2882. border-bottom-right-radius:0px;
  2883. border-bottom-left-radius:0px;
  2884. -moz-box-shadow:none;
  2885. -webkit-box-shadow:none;
  2886. box-shadow:none;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:12px;
  2891. color:#1890FF;
  2892. text-align:right;
  2893. }
  2894. #u218614 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:819px;
  2898. top:359px;
  2899. width:25px;
  2900. height:17px;
  2901. display:flex;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:12px;
  2906. color:#1890FF;
  2907. text-align:right;
  2908. }
  2909. #u218614 .text {
  2910. position:absolute;
  2911. align-self:center;
  2912. padding:0px 0px 0px 0px;
  2913. box-sizing:border-box;
  2914. width:100%;
  2915. }
  2916. #u218614_text {
  2917. border-width:0px;
  2918. white-space:nowrap;
  2919. text-transform:none;
  2920. }
  2921. #u218615_div {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:13px;
  2927. height:17px;
  2928. background:inherit;
  2929. background-color:rgba(255, 255, 255, 0);
  2930. border:none;
  2931. border-left:0px;
  2932. border-top:0px;
  2933. border-right:0px;
  2934. border-radius:0px;
  2935. border-bottom-right-radius:0px;
  2936. border-bottom-left-radius:0px;
  2937. -moz-box-shadow:none;
  2938. -webkit-box-shadow:none;
  2939. box-shadow:none;
  2940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:12px;
  2944. color:#D7D7D7;
  2945. }
  2946. #u218615 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:802px;
  2950. top:359px;
  2951. width:13px;
  2952. height:17px;
  2953. display:flex;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:12px;
  2958. color:#D7D7D7;
  2959. }
  2960. #u218615 .text {
  2961. position:absolute;
  2962. align-self:center;
  2963. padding:0px 0px 0px 0px;
  2964. box-sizing:border-box;
  2965. width:100%;
  2966. }
  2967. #u218615_text {
  2968. border-width:0px;
  2969. white-space:nowrap;
  2970. text-transform:none;
  2971. }
  2972. #u218616_div {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:25px;
  2978. height:17px;
  2979. background:inherit;
  2980. background-color:rgba(255, 255, 255, 0);
  2981. border:none;
  2982. border-left:0px;
  2983. border-top:0px;
  2984. border-right:0px;
  2985. border-radius:0px;
  2986. border-bottom-right-radius:0px;
  2987. border-bottom-left-radius:0px;
  2988. -moz-box-shadow:none;
  2989. -webkit-box-shadow:none;
  2990. box-shadow:none;
  2991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2992. font-weight:400;
  2993. font-style:normal;
  2994. font-size:12px;
  2995. color:#1890FF;
  2996. }
  2997. #u218616 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:775px;
  3001. top:359px;
  3002. width:25px;
  3003. height:17px;
  3004. display:flex;
  3005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3006. font-weight:400;
  3007. font-style:normal;
  3008. font-size:12px;
  3009. color:#1890FF;
  3010. }
  3011. #u218616 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:0px 0px 0px 0px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u218616_text {
  3019. border-width:0px;
  3020. white-space:nowrap;
  3021. text-transform:none;
  3022. }
  3023. #u218617_div {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:357px;
  3029. height:60px;
  3030. background:inherit;
  3031. background-color:rgba(255, 255, 255, 1);
  3032. border:none;
  3033. border-radius:3px;
  3034. -moz-box-shadow:none;
  3035. -webkit-box-shadow:none;
  3036. box-shadow:none;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:14px;
  3041. color:#FFFFFF;
  3042. }
  3043. #u218617 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:501px;
  3047. top:398px;
  3048. width:357px;
  3049. height:60px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:14px;
  3055. color:#FFFFFF;
  3056. }
  3057. #u218617 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 2px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u218617_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u218618_div {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:148px;
  3076. height:33px;
  3077. background:inherit;
  3078. background-color:rgba(255, 255, 255, 0);
  3079. border:none;
  3080. border-left:0px;
  3081. border-top:0px;
  3082. border-right:0px;
  3083. border-radius:0px;
  3084. border-bottom-right-radius:0px;
  3085. border-bottom-left-radius:0px;
  3086. -moz-box-shadow:none;
  3087. -webkit-box-shadow:none;
  3088. box-shadow:none;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-style:normal;
  3091. }
  3092. #u218618 {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:699px;
  3096. top:411px;
  3097. width:148px;
  3098. height:33px;
  3099. display:flex;
  3100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3101. font-style:normal;
  3102. }
  3103. #u218618 .text {
  3104. position:absolute;
  3105. align-self:center;
  3106. padding:0px 0px 0px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u218618_text {
  3111. border-width:0px;
  3112. white-space:nowrap;
  3113. text-transform:none;
  3114. }
  3115. #u218619 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:0px;
  3121. height:0px;
  3122. }
  3123. #u218620_div {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:375px;
  3129. height:60px;
  3130. background:inherit;
  3131. background-color:rgba(255, 255, 255, 1);
  3132. border:none;
  3133. border-top:0px;
  3134. border-radius:28px;
  3135. border-top-left-radius:0px;
  3136. border-top-right-radius:0px;
  3137. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3138. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3139. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:14px;
  3144. color:#FFFFFF;
  3145. }
  3146. #u218620 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:492px;
  3150. top:780px;
  3151. width:375px;
  3152. height:60px;
  3153. display:flex;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:14px;
  3158. color:#FFFFFF;
  3159. }
  3160. #u218620 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 2px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u218620_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. visibility:hidden;
  3172. }
  3173. #u218621_div {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:106px;
  3179. height:40px;
  3180. background:inherit;
  3181. background-color:rgba(0, 137, 254, 1);
  3182. border:none;
  3183. border-radius:63px;
  3184. -moz-box-shadow:none;
  3185. -webkit-box-shadow:none;
  3186. box-shadow:none;
  3187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3188. font-weight:400;
  3189. font-style:normal;
  3190. font-size:14px;
  3191. color:#FFFFFF;
  3192. }
  3193. #u218621 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:738px;
  3197. top:789px;
  3198. width:106px;
  3199. height:40px;
  3200. display:flex;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:14px;
  3205. color:#FFFFFF;
  3206. }
  3207. #u218621 .text {
  3208. position:absolute;
  3209. align-self:center;
  3210. padding:2px 2px 2px 2px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u218621_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. }
  3219. #u218622_div {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:119px;
  3225. height:25px;
  3226. background:inherit;
  3227. background-color:rgba(255, 255, 255, 0);
  3228. border:none;
  3229. border-left:0px;
  3230. border-top:0px;
  3231. border-right:0px;
  3232. border-radius:0px;
  3233. border-bottom-right-radius:0px;
  3234. border-bottom-left-radius:0px;
  3235. -moz-box-shadow:none;
  3236. -webkit-box-shadow:none;
  3237. box-shadow:none;
  3238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3239. font-style:normal;
  3240. text-align:right;
  3241. }
  3242. #u218622 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:609px;
  3246. top:798px;
  3247. width:119px;
  3248. height:25px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-style:normal;
  3252. text-align:right;
  3253. }
  3254. #u218622 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:0px 0px 0px 0px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u218622_text {
  3262. border-width:0px;
  3263. white-space:nowrap;
  3264. text-transform:none;
  3265. }
  3266. #u218623_div {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:357px;
  3272. height:210px;
  3273. background:inherit;
  3274. background-color:rgba(255, 255, 255, 1);
  3275. border:none;
  3276. border-radius:3px;
  3277. -moz-box-shadow:none;
  3278. -webkit-box-shadow:none;
  3279. box-shadow:none;
  3280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3281. font-weight:400;
  3282. font-style:normal;
  3283. font-size:14px;
  3284. color:#FFFFFF;
  3285. }
  3286. #u218623 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:501px;
  3290. top:117px;
  3291. width:357px;
  3292. height:210px;
  3293. display:flex;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:14px;
  3298. color:#FFFFFF;
  3299. }
  3300. #u218623 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 2px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u218623_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. visibility:hidden;
  3312. }
  3313. #u218624_div {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:57px;
  3319. height:20px;
  3320. background:inherit;
  3321. background-color:rgba(255, 255, 255, 0);
  3322. border:none;
  3323. border-left:0px;
  3324. border-top:0px;
  3325. border-right:0px;
  3326. border-radius:0px;
  3327. border-bottom-right-radius:0px;
  3328. border-bottom-left-radius:0px;
  3329. -moz-box-shadow:none;
  3330. -webkit-box-shadow:none;
  3331. box-shadow:none;
  3332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3333. font-weight:400;
  3334. font-style:normal;
  3335. font-size:14px;
  3336. }
  3337. #u218624 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:521px;
  3341. top:133px;
  3342. width:57px;
  3343. height:20px;
  3344. display:flex;
  3345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. font-size:14px;
  3349. }
  3350. #u218624 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:0px 0px 0px 0px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u218624_text {
  3358. border-width:0px;
  3359. white-space:nowrap;
  3360. text-transform:none;
  3361. }
  3362. #u218625_div {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:37px;
  3368. height:150px;
  3369. background:inherit;
  3370. background-color:rgba(255, 255, 255, 0);
  3371. border:none;
  3372. border-left:0px;
  3373. border-top:0px;
  3374. border-right:0px;
  3375. border-radius:0px;
  3376. border-bottom-right-radius:0px;
  3377. border-bottom-left-radius:0px;
  3378. -moz-box-shadow:none;
  3379. -webkit-box-shadow:none;
  3380. box-shadow:none;
  3381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. font-size:12px;
  3385. line-height:30px;
  3386. }
  3387. #u218625 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:521px;
  3391. top:163px;
  3392. width:37px;
  3393. height:150px;
  3394. display:flex;
  3395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. font-size:12px;
  3399. line-height:30px;
  3400. }
  3401. #u218625 .text {
  3402. position:absolute;
  3403. align-self:flex-start;
  3404. padding:0px 0px 0px 0px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u218625_text {
  3409. border-width:0px;
  3410. white-space:nowrap;
  3411. text-transform:none;
  3412. }
  3413. #u218626_div {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:68px;
  3419. height:150px;
  3420. background:inherit;
  3421. background-color:rgba(255, 255, 255, 0);
  3422. border:none;
  3423. border-left:0px;
  3424. border-top:0px;
  3425. border-right:0px;
  3426. border-radius:0px;
  3427. border-bottom-right-radius:0px;
  3428. border-bottom-left-radius:0px;
  3429. -moz-box-shadow:none;
  3430. -webkit-box-shadow:none;
  3431. box-shadow:none;
  3432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3433. font-weight:400;
  3434. font-style:normal;
  3435. font-size:12px;
  3436. text-align:right;
  3437. line-height:30px;
  3438. }
  3439. #u218626 {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:776px;
  3443. top:163px;
  3444. width:68px;
  3445. height:150px;
  3446. display:flex;
  3447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:12px;
  3451. text-align:right;
  3452. line-height:30px;
  3453. }
  3454. #u218626 .text {
  3455. position:absolute;
  3456. align-self:flex-start;
  3457. padding:0px 0px 0px 0px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u218626_text {
  3462. border-width:0px;
  3463. white-space:nowrap;
  3464. text-transform:none;
  3465. }