styles.css 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1339px;
  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. #u212135_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u212135 {
  28. border-width:0px;
  29. position:absolute;
  30. left:906px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u212135 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u212135_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u212136_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. #u212136 {
  73. border-width:0px;
  74. position:absolute;
  75. left:935px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u212136 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u212136_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u212137 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u212138_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. #u212138 {
  121. border-width:0px;
  122. position:absolute;
  123. left:1215px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u212138 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u212138_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u212139 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u212140_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u212140 {
  159. border-width:0px;
  160. position:absolute;
  161. left:1278px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u212140 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u212140_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u212141_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u212141 {
  189. border-width:0px;
  190. position:absolute;
  191. left:1284px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u212141 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u212141_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u212142 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u212143_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u212143 {
  227. border-width:0px;
  228. position:absolute;
  229. left:1229px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u212143 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u212143_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u212144_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u212144 {
  257. border-width:0px;
  258. position:absolute;
  259. left:1245px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u212144 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u212144_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u212145_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u212145 {
  287. border-width:0px;
  288. position:absolute;
  289. left:1236px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u212145 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u212145_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u212146_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u212146 {
  317. border-width:0px;
  318. position:absolute;
  319. left:1253px;
  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. #u212146 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u212146_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u212147_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u212147 {
  351. border-width:0px;
  352. position:absolute;
  353. left:935px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u212147 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u212147_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u212148_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. #u212148 {
  393. border-width:0px;
  394. position:absolute;
  395. left:935px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u212148 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u212148_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u212149 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u212150_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u212150 {
  431. border-width:0px;
  432. position:absolute;
  433. left:975px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u212150 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u212150_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u212151_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. #u212151 {
  472. border-width:0px;
  473. position:absolute;
  474. left:975px;
  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. #u212151 .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. #u212151_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u212152 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u212153_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u212153 {
  513. border-width:0px;
  514. position:absolute;
  515. left:1245px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u212153 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u212153_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u212154_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. #u212154 {
  554. border-width:0px;
  555. position:absolute;
  556. left:1245px;
  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. #u212154 .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. #u212154_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u212155_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. #u212155 {
  594. border-width:0px;
  595. position:absolute;
  596. left:935px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u212155 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u212155_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u212156 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u212157_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u212157 {
  632. border-width:0px;
  633. position:absolute;
  634. left:1157px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u212157 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u212157_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u212158_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. #u212158 {
  673. border-width:0px;
  674. position:absolute;
  675. left:1151px;
  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. #u212158 .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. #u212158_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u212159 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u212160_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u212160 {
  714. border-width:0px;
  715. position:absolute;
  716. left:1063px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u212160 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u212160_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u212161_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. #u212161 {
  755. border-width:0px;
  756. position:absolute;
  757. left:1057px;
  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. #u212161 .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. #u212161_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u212162_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  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. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. }
  800. #u212162 {
  801. border-width:0px;
  802. position:absolute;
  803. left:935px;
  804. top:106px;
  805. width:375px;
  806. height:735px;
  807. display:flex;
  808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  809. font-weight:400;
  810. font-style:normal;
  811. }
  812. #u212162 .text {
  813. position:absolute;
  814. align-self:center;
  815. padding:2px 2px 2px 2px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u212162_text {
  820. border-width:0px;
  821. word-wrap:break-word;
  822. text-transform:none;
  823. visibility:hidden;
  824. }
  825. #u212163 {
  826. border-width:0px;
  827. position:absolute;
  828. left:0px;
  829. top:0px;
  830. width:0px;
  831. height:0px;
  832. }
  833. #u212164_img {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:11px;
  839. height:18px;
  840. }
  841. #u212164 {
  842. border-width:0px;
  843. position:absolute;
  844. left:952px;
  845. top:80px;
  846. width:11px;
  847. height:18px;
  848. display:flex;
  849. }
  850. #u212164 .text {
  851. position:absolute;
  852. align-self:center;
  853. padding:2px 2px 2px 2px;
  854. box-sizing:border-box;
  855. width:100%;
  856. }
  857. #u212164_text {
  858. border-width:0px;
  859. word-wrap:break-word;
  860. text-transform:none;
  861. visibility:hidden;
  862. }
  863. #u212165_div {
  864. border-width:0px;
  865. position:absolute;
  866. left:0px;
  867. top:0px;
  868. width:73px;
  869. height:40px;
  870. background:inherit;
  871. background-color:rgba(255, 255, 255, 0);
  872. border:none;
  873. border-left:0px;
  874. border-top:0px;
  875. border-right:0px;
  876. border-radius:0px;
  877. border-bottom-right-radius:0px;
  878. border-bottom-left-radius:0px;
  879. -moz-box-shadow:none;
  880. -webkit-box-shadow:none;
  881. box-shadow:none;
  882. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  883. font-weight:500;
  884. font-style:normal;
  885. font-size:18px;
  886. line-height:30px;
  887. }
  888. #u212165 {
  889. border-width:0px;
  890. position:absolute;
  891. left:1086px;
  892. top:66px;
  893. width:73px;
  894. height:40px;
  895. display:flex;
  896. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  897. font-weight:500;
  898. font-style:normal;
  899. font-size:18px;
  900. line-height:30px;
  901. }
  902. #u212165 .text {
  903. position:absolute;
  904. align-self:center;
  905. padding:0px 0px 0px 0px;
  906. box-sizing:border-box;
  907. width:100%;
  908. }
  909. #u212165_text {
  910. border-width:0px;
  911. white-space:nowrap;
  912. text-transform:none;
  913. }
  914. #u212166_div {
  915. border-width:0px;
  916. position:absolute;
  917. left:0px;
  918. top:0px;
  919. width:328px;
  920. height:40px;
  921. background:inherit;
  922. background-color:rgba(24, 144, 255, 1);
  923. border:none;
  924. border-radius:34px;
  925. -moz-box-shadow:none;
  926. -webkit-box-shadow:none;
  927. box-shadow:none;
  928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  929. font-weight:400;
  930. font-style:normal;
  931. font-size:14px;
  932. color:#FFFFFF;
  933. }
  934. #u212166 {
  935. border-width:0px;
  936. position:absolute;
  937. left:959px;
  938. top:781px;
  939. width:328px;
  940. height:40px;
  941. display:flex;
  942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  943. font-weight:400;
  944. font-style:normal;
  945. font-size:14px;
  946. color:#FFFFFF;
  947. }
  948. #u212166 .text {
  949. position:absolute;
  950. align-self:center;
  951. padding:2px 2px 2px 2px;
  952. box-sizing:border-box;
  953. width:100%;
  954. }
  955. #u212166_text {
  956. border-width:0px;
  957. word-wrap:break-word;
  958. text-transform:none;
  959. }
  960. #u212167_img {
  961. border-width:0px;
  962. position:absolute;
  963. left:0px;
  964. top:0px;
  965. width:83px;
  966. height:83px;
  967. }
  968. #u212167 {
  969. border-width:0px;
  970. position:absolute;
  971. left:1081px;
  972. top:155px;
  973. width:83px;
  974. height:83px;
  975. display:flex;
  976. }
  977. #u212167 .text {
  978. position:absolute;
  979. align-self:center;
  980. padding:2px 2px 2px 2px;
  981. box-sizing:border-box;
  982. width:100%;
  983. }
  984. #u212167_text {
  985. border-width:0px;
  986. word-wrap:break-word;
  987. text-transform:none;
  988. visibility:hidden;
  989. }
  990. #u212168_div {
  991. border-width:0px;
  992. position:absolute;
  993. left:0px;
  994. top:0px;
  995. width:73px;
  996. height:40px;
  997. background:inherit;
  998. background-color:rgba(255, 255, 255, 0);
  999. border:none;
  1000. border-top:0px;
  1001. border-right:0px;
  1002. border-bottom:0px;
  1003. border-radius:0px;
  1004. border-top-left-radius:0px;
  1005. border-bottom-left-radius:0px;
  1006. -moz-box-shadow:none;
  1007. -webkit-box-shadow:none;
  1008. box-shadow:none;
  1009. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1010. font-weight:500;
  1011. font-style:normal;
  1012. font-size:18px;
  1013. text-align:center;
  1014. line-height:30px;
  1015. }
  1016. #u212168 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:1086px;
  1020. top:258px;
  1021. width:73px;
  1022. height:40px;
  1023. display:flex;
  1024. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1025. font-weight:500;
  1026. font-style:normal;
  1027. font-size:18px;
  1028. text-align:center;
  1029. line-height:30px;
  1030. }
  1031. #u212168 .text {
  1032. position:absolute;
  1033. align-self:center;
  1034. padding:5px 0px 5px 0px;
  1035. box-sizing:border-box;
  1036. width:100%;
  1037. }
  1038. #u212168_text {
  1039. border-width:0px;
  1040. white-space:nowrap;
  1041. text-transform:none;
  1042. }
  1043. #u212169_div {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:325px;
  1049. height:75px;
  1050. background:inherit;
  1051. background-color:rgba(255, 255, 255, 0);
  1052. border:none;
  1053. border-radius:0px;
  1054. -moz-box-shadow:none;
  1055. -webkit-box-shadow:none;
  1056. box-shadow:none;
  1057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1058. font-weight:400;
  1059. font-style:normal;
  1060. color:#7F7F7F;
  1061. text-align:center;
  1062. line-height:25px;
  1063. }
  1064. #u212169 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:960px;
  1068. top:318px;
  1069. width:325px;
  1070. height:75px;
  1071. display:flex;
  1072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1073. font-weight:400;
  1074. font-style:normal;
  1075. color:#7F7F7F;
  1076. text-align:center;
  1077. line-height:25px;
  1078. }
  1079. #u212169 .text {
  1080. position:absolute;
  1081. align-self:flex-start;
  1082. padding:0px 0px 0px 0px;
  1083. box-sizing:border-box;
  1084. width:100%;
  1085. }
  1086. #u212169_text {
  1087. border-width:0px;
  1088. word-wrap:break-word;
  1089. text-transform:none;
  1090. }
  1091. #u212170 {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:0px;
  1095. top:0px;
  1096. width:0px;
  1097. height:0px;
  1098. }
  1099. #u212171_div {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:0px;
  1103. top:0px;
  1104. width:85px;
  1105. height:25px;
  1106. background:inherit;
  1107. background-color:rgba(255, 255, 255, 0);
  1108. border:none;
  1109. border-radius:0px;
  1110. -moz-box-shadow:none;
  1111. -webkit-box-shadow:none;
  1112. box-shadow:none;
  1113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1114. font-weight:400;
  1115. font-style:normal;
  1116. color:#1890FF;
  1117. text-align:center;
  1118. line-height:25px;
  1119. }
  1120. #u212171 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:1080px;
  1124. top:402px;
  1125. width:85px;
  1126. height:25px;
  1127. display:flex;
  1128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1129. font-weight:400;
  1130. font-style:normal;
  1131. color:#1890FF;
  1132. text-align:center;
  1133. line-height:25px;
  1134. }
  1135. #u212171 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u212171_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u212172_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:12px;
  1153. height:12px;
  1154. }
  1155. #u212172 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:1062px;
  1159. top:409px;
  1160. width:12px;
  1161. height:12px;
  1162. display:flex;
  1163. }
  1164. #u212172 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u212172_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u212173 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u212174_div {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:342px;
  1191. height:180px;
  1192. background:inherit;
  1193. background-color:rgba(255, 255, 255, 1);
  1194. border:none;
  1195. border-radius:10px;
  1196. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1197. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1198. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1199. }
  1200. #u212174 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:952px;
  1204. top:474px;
  1205. width:342px;
  1206. height:180px;
  1207. display:flex;
  1208. }
  1209. #u212174 .text {
  1210. position:absolute;
  1211. align-self:center;
  1212. padding:2px 2px 2px 2px;
  1213. box-sizing:border-box;
  1214. width:100%;
  1215. }
  1216. #u212174_text {
  1217. border-width:0px;
  1218. word-wrap:break-word;
  1219. text-transform:none;
  1220. visibility:hidden;
  1221. }
  1222. #u212175_div {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:0px;
  1226. top:0px;
  1227. width:308px;
  1228. height:67px;
  1229. background:inherit;
  1230. background-color:rgba(255, 255, 255, 0);
  1231. border:none;
  1232. border-left:0px;
  1233. border-top:0px;
  1234. border-right:0px;
  1235. border-radius:0px;
  1236. border-bottom-right-radius:0px;
  1237. border-bottom-left-radius:0px;
  1238. -moz-box-shadow:none;
  1239. -webkit-box-shadow:none;
  1240. box-shadow:none;
  1241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1242. font-weight:400;
  1243. font-style:normal;
  1244. text-align:center;
  1245. line-height:30px;
  1246. }
  1247. #u212175 {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:970px;
  1251. top:499px;
  1252. width:308px;
  1253. height:67px;
  1254. display:flex;
  1255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1256. font-weight:400;
  1257. font-style:normal;
  1258. text-align:center;
  1259. line-height:30px;
  1260. }
  1261. #u212175 .text {
  1262. position:absolute;
  1263. align-self:flex-start;
  1264. padding:0px 0px 0px 0px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u212175_text {
  1269. border-width:0px;
  1270. word-wrap:break-word;
  1271. text-transform:none;
  1272. }
  1273. #u212176_img {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:343px;
  1279. height:2px;
  1280. }
  1281. #u212176 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:952px;
  1285. top:587px;
  1286. width:342px;
  1287. height:1px;
  1288. display:flex;
  1289. }
  1290. #u212176 .text {
  1291. position:absolute;
  1292. align-self:center;
  1293. padding:2px 2px 2px 2px;
  1294. box-sizing:border-box;
  1295. width:100%;
  1296. }
  1297. #u212176_text {
  1298. border-width:0px;
  1299. word-wrap:break-word;
  1300. text-transform:none;
  1301. visibility:hidden;
  1302. }
  1303. #u212177_div {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:0px;
  1307. top:0px;
  1308. width:37px;
  1309. height:30px;
  1310. background:inherit;
  1311. background-color:rgba(255, 255, 255, 0);
  1312. border:none;
  1313. border-left:0px;
  1314. border-top:0px;
  1315. border-right:0px;
  1316. border-radius:0px;
  1317. border-bottom-right-radius:0px;
  1318. border-bottom-left-radius:0px;
  1319. -moz-box-shadow:none;
  1320. -webkit-box-shadow:none;
  1321. box-shadow:none;
  1322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1323. font-weight:400;
  1324. font-style:normal;
  1325. font-size:18px;
  1326. color:#0089FE;
  1327. text-align:right;
  1328. line-height:30px;
  1329. }
  1330. #u212177 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1199px;
  1334. top:606px;
  1335. width:37px;
  1336. height:30px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:18px;
  1342. color:#0089FE;
  1343. text-align:right;
  1344. line-height:30px;
  1345. }
  1346. #u212177 .text {
  1347. position:absolute;
  1348. align-self:flex-start;
  1349. padding:0px 0px 0px 0px;
  1350. box-sizing:border-box;
  1351. width:100%;
  1352. }
  1353. #u212177_text {
  1354. border-width:0px;
  1355. white-space:nowrap;
  1356. text-transform:none;
  1357. }
  1358. #u212178_div {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:0px;
  1362. top:0px;
  1363. width:37px;
  1364. height:30px;
  1365. background:inherit;
  1366. background-color:rgba(255, 255, 255, 0);
  1367. border:none;
  1368. border-left:0px;
  1369. border-top:0px;
  1370. border-right:0px;
  1371. border-radius:0px;
  1372. border-bottom-right-radius:0px;
  1373. border-bottom-left-radius:0px;
  1374. -moz-box-shadow:none;
  1375. -webkit-box-shadow:none;
  1376. box-shadow:none;
  1377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1378. font-weight:400;
  1379. font-style:normal;
  1380. font-size:18px;
  1381. text-align:right;
  1382. line-height:30px;
  1383. }
  1384. #u212178 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:1018px;
  1388. top:606px;
  1389. width:37px;
  1390. height:30px;
  1391. display:flex;
  1392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1393. font-weight:400;
  1394. font-style:normal;
  1395. font-size:18px;
  1396. text-align:right;
  1397. line-height:30px;
  1398. }
  1399. #u212178 .text {
  1400. position:absolute;
  1401. align-self:flex-start;
  1402. padding:0px 0px 0px 0px;
  1403. box-sizing:border-box;
  1404. width:100%;
  1405. }
  1406. #u212178_text {
  1407. border-width:0px;
  1408. white-space:nowrap;
  1409. text-transform:none;
  1410. }
  1411. #u212179_img {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:0px;
  1415. top:0px;
  1416. width:2px;
  1417. height:67px;
  1418. }
  1419. #u212179 {
  1420. border-width:0px;
  1421. position:absolute;
  1422. left:1122px;
  1423. top:588px;
  1424. width:1px;
  1425. height:66px;
  1426. display:flex;
  1427. }
  1428. #u212179 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:2px 2px 2px 2px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u212179_text {
  1436. border-width:0px;
  1437. word-wrap:break-word;
  1438. text-transform:none;
  1439. visibility:hidden;
  1440. }
  1441. #u212181_img {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:0px;
  1445. top:0px;
  1446. width:433px;
  1447. height:865px;
  1448. }
  1449. #u212181 {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:453px;
  1453. top:0px;
  1454. width:433px;
  1455. height:865px;
  1456. display:flex;
  1457. }
  1458. #u212181 .text {
  1459. position:absolute;
  1460. align-self:center;
  1461. padding:2px 2px 2px 2px;
  1462. box-sizing:border-box;
  1463. width:100%;
  1464. }
  1465. #u212181_text {
  1466. border-width:0px;
  1467. word-wrap:break-word;
  1468. text-transform:none;
  1469. visibility:hidden;
  1470. }
  1471. #u212182_div {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:0px;
  1475. top:0px;
  1476. width:375px;
  1477. height:40px;
  1478. background:inherit;
  1479. background-color:rgba(255, 255, 255, 1);
  1480. box-sizing:border-box;
  1481. border-width:1px;
  1482. border-style:solid;
  1483. border-color:rgba(215, 215, 215, 1);
  1484. border-left:0px;
  1485. border-top:0px;
  1486. border-right:0px;
  1487. border-radius:0px;
  1488. border-bottom-right-radius:0px;
  1489. border-bottom-left-radius:0px;
  1490. -moz-box-shadow:none;
  1491. -webkit-box-shadow:none;
  1492. box-shadow:none;
  1493. }
  1494. #u212182 {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:482px;
  1498. top:67px;
  1499. width:375px;
  1500. height:40px;
  1501. display:flex;
  1502. }
  1503. #u212182 .text {
  1504. position:absolute;
  1505. align-self:center;
  1506. padding:2px 2px 2px 2px;
  1507. box-sizing:border-box;
  1508. width:100%;
  1509. }
  1510. #u212182_text {
  1511. border-width:0px;
  1512. word-wrap:break-word;
  1513. text-transform:none;
  1514. visibility:hidden;
  1515. }
  1516. #u212183 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:0px;
  1522. height:0px;
  1523. }
  1524. #u212184_div {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:88px;
  1530. height:32px;
  1531. background:inherit;
  1532. background-color:rgba(255, 255, 255, 1);
  1533. box-sizing:border-box;
  1534. border-width:1px;
  1535. border-style:solid;
  1536. border-color:rgba(242, 242, 242, 1);
  1537. border-radius:33px;
  1538. -moz-box-shadow:none;
  1539. -webkit-box-shadow:none;
  1540. box-shadow:none;
  1541. }
  1542. #u212184 {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:762px;
  1546. top:71px;
  1547. width:88px;
  1548. height:32px;
  1549. display:flex;
  1550. }
  1551. #u212184 .text {
  1552. position:absolute;
  1553. align-self:center;
  1554. padding:2px 2px 2px 2px;
  1555. box-sizing:border-box;
  1556. width:100%;
  1557. }
  1558. #u212184_text {
  1559. border-width:0px;
  1560. word-wrap:break-word;
  1561. text-transform:none;
  1562. visibility:hidden;
  1563. }
  1564. #u212185 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:0px;
  1568. top:0px;
  1569. width:0px;
  1570. height:0px;
  1571. }
  1572. #u212186_img {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:18px;
  1578. height:18px;
  1579. }
  1580. #u212186 {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:825px;
  1584. top:78px;
  1585. width:18px;
  1586. height:18px;
  1587. display:flex;
  1588. }
  1589. #u212186 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:2px 2px 2px 2px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u212186_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. visibility:hidden;
  1601. }
  1602. #u212187_img {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:0px;
  1606. top:0px;
  1607. width:6px;
  1608. height:6px;
  1609. }
  1610. #u212187 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:831px;
  1614. top:84px;
  1615. width:6px;
  1616. height:6px;
  1617. display:flex;
  1618. }
  1619. #u212187 .text {
  1620. position:absolute;
  1621. align-self:center;
  1622. padding:2px 2px 2px 2px;
  1623. box-sizing:border-box;
  1624. width:100%;
  1625. }
  1626. #u212187_text {
  1627. border-width:0px;
  1628. word-wrap:break-word;
  1629. text-transform:none;
  1630. visibility:hidden;
  1631. }
  1632. #u212188 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:0px;
  1636. top:0px;
  1637. width:0px;
  1638. height:0px;
  1639. }
  1640. #u212189_img {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:5px;
  1646. height:5px;
  1647. }
  1648. #u212189 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:776px;
  1652. top:85px;
  1653. width:5px;
  1654. height:5px;
  1655. display:flex;
  1656. }
  1657. #u212189 .text {
  1658. position:absolute;
  1659. align-self:center;
  1660. padding:2px 2px 2px 2px;
  1661. box-sizing:border-box;
  1662. width:100%;
  1663. }
  1664. #u212189_text {
  1665. border-width:0px;
  1666. word-wrap:break-word;
  1667. text-transform:none;
  1668. visibility:hidden;
  1669. }
  1670. #u212190_img {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:0px;
  1674. top:0px;
  1675. width:5px;
  1676. height:5px;
  1677. }
  1678. #u212190 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:792px;
  1682. top:85px;
  1683. width:5px;
  1684. height:5px;
  1685. display:flex;
  1686. }
  1687. #u212190 .text {
  1688. position:absolute;
  1689. align-self:center;
  1690. padding:2px 2px 2px 2px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u212190_text {
  1695. border-width:0px;
  1696. word-wrap:break-word;
  1697. text-transform:none;
  1698. visibility:hidden;
  1699. }
  1700. #u212191_img {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:0px;
  1704. top:0px;
  1705. width:7px;
  1706. height:7px;
  1707. }
  1708. #u212191 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:783px;
  1712. top:84px;
  1713. width:7px;
  1714. height:7px;
  1715. display:flex;
  1716. }
  1717. #u212191 .text {
  1718. position:absolute;
  1719. align-self:center;
  1720. padding:2px 2px 2px 2px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u212191_text {
  1725. border-width:0px;
  1726. word-wrap:break-word;
  1727. text-transform:none;
  1728. visibility:hidden;
  1729. }
  1730. #u212192_img {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:19px;
  1736. height:2px;
  1737. }
  1738. #u212192 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:800px;
  1742. top:87px;
  1743. width:18px;
  1744. height:1px;
  1745. display:flex;
  1746. -webkit-transform:rotate(90deg);
  1747. -moz-transform:rotate(90deg);
  1748. -ms-transform:rotate(90deg);
  1749. transform:rotate(90deg);
  1750. }
  1751. #u212192 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 2px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u212192_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. visibility:hidden;
  1763. }
  1764. #u212193_img {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:375px;
  1770. height:44px;
  1771. }
  1772. #u212193 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:482px;
  1776. top:24px;
  1777. width:375px;
  1778. height:44px;
  1779. display:flex;
  1780. }
  1781. #u212193 .text {
  1782. position:absolute;
  1783. align-self:center;
  1784. padding:2px 2px 2px 2px;
  1785. box-sizing:border-box;
  1786. width:100%;
  1787. }
  1788. #u212193_text {
  1789. border-width:0px;
  1790. word-wrap:break-word;
  1791. text-transform:none;
  1792. visibility:hidden;
  1793. }
  1794. #u212194_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:375px;
  1800. height:50px;
  1801. background:inherit;
  1802. background-color:rgba(255, 255, 255, 1);
  1803. box-sizing:border-box;
  1804. border-width:1px;
  1805. border-style:solid;
  1806. border-color:rgba(242, 242, 242, 1);
  1807. border-radius:26px;
  1808. border-top-left-radius:0px;
  1809. border-top-right-radius:0px;
  1810. -moz-box-shadow:none;
  1811. -webkit-box-shadow:none;
  1812. box-shadow:none;
  1813. }
  1814. #u212194 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:482px;
  1818. top:788px;
  1819. width:375px;
  1820. height:50px;
  1821. display:flex;
  1822. }
  1823. #u212194 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:2px 2px 2px 2px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u212194_text {
  1831. border-width:0px;
  1832. word-wrap:break-word;
  1833. text-transform:none;
  1834. visibility:hidden;
  1835. }
  1836. #u212195 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:0px;
  1842. height:0px;
  1843. }
  1844. #u212196_img {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:24px;
  1850. height:24px;
  1851. }
  1852. #u212196 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:522px;
  1856. top:792px;
  1857. width:24px;
  1858. height:24px;
  1859. display:flex;
  1860. font-size:8px;
  1861. }
  1862. #u212196 .text {
  1863. position:absolute;
  1864. align-self:center;
  1865. padding:2px 2px 2px 2px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u212196_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. }
  1874. #u212197_div {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:25px;
  1880. height:17px;
  1881. background:inherit;
  1882. background-color:rgba(255, 255, 255, 0);
  1883. border:none;
  1884. border-radius:0px;
  1885. -moz-box-shadow:none;
  1886. -webkit-box-shadow:none;
  1887. box-shadow:none;
  1888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1889. font-weight:400;
  1890. font-style:normal;
  1891. font-size:12px;
  1892. }
  1893. #u212197 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:522px;
  1897. top:817px;
  1898. width:25px;
  1899. height:17px;
  1900. display:flex;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:12px;
  1905. }
  1906. #u212197 .text {
  1907. position:absolute;
  1908. align-self:flex-start;
  1909. padding:0px 0px 0px 0px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u212197_text {
  1914. border-width:0px;
  1915. white-space:nowrap;
  1916. text-transform:none;
  1917. }
  1918. #u212198 {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:0px;
  1924. height:0px;
  1925. }
  1926. #u212199_img {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:24px;
  1932. height:24px;
  1933. }
  1934. #u212199 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:792px;
  1938. top:794px;
  1939. width:24px;
  1940. height:24px;
  1941. display:flex;
  1942. font-size:8px;
  1943. }
  1944. #u212199 .text {
  1945. position:absolute;
  1946. align-self:center;
  1947. padding:2px 2px 2px 2px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u212199_text {
  1952. border-width:0px;
  1953. word-wrap:break-word;
  1954. text-transform:none;
  1955. }
  1956. #u212200_div {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:0px;
  1960. top:0px;
  1961. width:25px;
  1962. height:17px;
  1963. background:inherit;
  1964. background-color:rgba(255, 255, 255, 0);
  1965. border:none;
  1966. border-radius:0px;
  1967. -moz-box-shadow:none;
  1968. -webkit-box-shadow:none;
  1969. box-shadow:none;
  1970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1971. font-weight:400;
  1972. font-style:normal;
  1973. font-size:12px;
  1974. }
  1975. #u212200 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:792px;
  1979. top:819px;
  1980. width:25px;
  1981. height:17px;
  1982. display:flex;
  1983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1984. font-weight:400;
  1985. font-style:normal;
  1986. font-size:12px;
  1987. }
  1988. #u212200 .text {
  1989. position:absolute;
  1990. align-self:flex-start;
  1991. padding:0px 0px 0px 0px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u212200_text {
  1996. border-width:0px;
  1997. white-space:nowrap;
  1998. text-transform:none;
  1999. }
  2000. #u212201_div {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:0px;
  2004. top:0px;
  2005. width:375px;
  2006. height:681px;
  2007. background:inherit;
  2008. background-color:rgba(242, 242, 242, 0.462745098039216);
  2009. border:none;
  2010. border-radius:0px;
  2011. -moz-box-shadow:none;
  2012. -webkit-box-shadow:none;
  2013. box-shadow:none;
  2014. }
  2015. #u212201 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:482px;
  2019. top:107px;
  2020. width:375px;
  2021. height:681px;
  2022. display:flex;
  2023. }
  2024. #u212201 .text {
  2025. position:absolute;
  2026. align-self:center;
  2027. padding:2px 2px 2px 2px;
  2028. box-sizing:border-box;
  2029. width:100%;
  2030. }
  2031. #u212201_text {
  2032. border-width:0px;
  2033. word-wrap:break-word;
  2034. text-transform:none;
  2035. visibility:hidden;
  2036. }
  2037. #u212202 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:0px;
  2043. height:0px;
  2044. }
  2045. #u212203_img {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:24px;
  2051. height:24px;
  2052. }
  2053. #u212203 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:704px;
  2057. top:792px;
  2058. width:24px;
  2059. height:24px;
  2060. display:flex;
  2061. font-size:8px;
  2062. }
  2063. #u212203 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 2px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u212203_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. }
  2075. #u212204_div {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:37px;
  2081. height:17px;
  2082. background:inherit;
  2083. background-color:rgba(255, 255, 255, 0);
  2084. border:none;
  2085. border-radius:0px;
  2086. -moz-box-shadow:none;
  2087. -webkit-box-shadow:none;
  2088. box-shadow:none;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:12px;
  2093. }
  2094. #u212204 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:698px;
  2098. top:817px;
  2099. width:37px;
  2100. height:17px;
  2101. display:flex;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:12px;
  2106. }
  2107. #u212204 .text {
  2108. position:absolute;
  2109. align-self:flex-start;
  2110. padding:0px 0px 0px 0px;
  2111. box-sizing:border-box;
  2112. width:100%;
  2113. }
  2114. #u212204_text {
  2115. border-width:0px;
  2116. white-space:nowrap;
  2117. text-transform:none;
  2118. }
  2119. #u212205 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:0px;
  2125. height:0px;
  2126. }
  2127. #u212206_img {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:24px;
  2133. height:24px;
  2134. }
  2135. #u212206 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:610px;
  2139. top:792px;
  2140. width:24px;
  2141. height:24px;
  2142. display:flex;
  2143. font-size:8px;
  2144. }
  2145. #u212206 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:2px 2px 2px 2px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u212206_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. }
  2157. #u212207_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:37px;
  2163. height:17px;
  2164. background:inherit;
  2165. background-color:rgba(255, 255, 255, 0);
  2166. border:none;
  2167. border-radius:0px;
  2168. -moz-box-shadow:none;
  2169. -webkit-box-shadow:none;
  2170. box-shadow:none;
  2171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2172. font-weight:400;
  2173. font-style:normal;
  2174. font-size:12px;
  2175. }
  2176. #u212207 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:604px;
  2180. top:817px;
  2181. width:37px;
  2182. height:17px;
  2183. display:flex;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:12px;
  2188. }
  2189. #u212207 .text {
  2190. position:absolute;
  2191. align-self:flex-start;
  2192. padding:0px 0px 0px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u212207_text {
  2197. border-width:0px;
  2198. white-space:nowrap;
  2199. text-transform:none;
  2200. }
  2201. #u212208_div {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:375px;
  2207. height:730px;
  2208. background:inherit;
  2209. background-color:rgba(242, 242, 242, 1);
  2210. border:none;
  2211. border-top:0px;
  2212. border-radius:28px;
  2213. border-top-left-radius:0px;
  2214. border-top-right-radius:0px;
  2215. -moz-box-shadow:none;
  2216. -webkit-box-shadow:none;
  2217. box-shadow:none;
  2218. }
  2219. #u212208 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:482px;
  2223. top:107px;
  2224. width:375px;
  2225. height:730px;
  2226. display:flex;
  2227. }
  2228. #u212208 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:2px 2px 2px 2px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u212208_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. visibility:hidden;
  2240. }
  2241. #u212209_div {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:12px;
  2247. height:12px;
  2248. background:inherit;
  2249. background-color:rgba(255, 255, 255, 0);
  2250. box-sizing:border-box;
  2251. border-width:2px;
  2252. border-style:solid;
  2253. border-color:rgba(51, 51, 51, 1);
  2254. border-right:0px;
  2255. border-bottom:0px;
  2256. border-radius:0px;
  2257. border-top-right-radius:0px;
  2258. border-bottom-left-radius:0px;
  2259. -moz-box-shadow:none;
  2260. -webkit-box-shadow:none;
  2261. box-shadow:none;
  2262. }
  2263. #u212209 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:492px;
  2267. top:81px;
  2268. width:12px;
  2269. height:12px;
  2270. display:flex;
  2271. -webkit-transform:rotate(315deg);
  2272. -moz-transform:rotate(315deg);
  2273. -ms-transform:rotate(315deg);
  2274. transform:rotate(315deg);
  2275. }
  2276. #u212209 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:2px 2px 2px 2px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u212209_text {
  2284. border-width:0px;
  2285. word-wrap:break-word;
  2286. text-transform:none;
  2287. visibility:hidden;
  2288. }
  2289. #u212210 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:0px;
  2295. height:0px;
  2296. }
  2297. #u212211_div {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:375px;
  2303. height:265px;
  2304. background:inherit;
  2305. background-color:rgba(255, 255, 255, 1);
  2306. border:none;
  2307. border-left:0px;
  2308. border-top:0px;
  2309. border-right:0px;
  2310. border-radius:0px;
  2311. border-bottom-right-radius:0px;
  2312. border-bottom-left-radius:0px;
  2313. -moz-box-shadow:none;
  2314. -webkit-box-shadow:none;
  2315. box-shadow:none;
  2316. }
  2317. #u212211 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:482px;
  2321. top:279px;
  2322. width:375px;
  2323. height:265px;
  2324. display:flex;
  2325. }
  2326. #u212211 .text {
  2327. position:absolute;
  2328. align-self:center;
  2329. padding:2px 2px 2px 2px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u212211_text {
  2334. border-width:0px;
  2335. word-wrap:break-word;
  2336. text-transform:none;
  2337. visibility:hidden;
  2338. }
  2339. #u212212_div {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:64px;
  2345. height:30px;
  2346. background:inherit;
  2347. background-color:rgba(255, 255, 255, 0);
  2348. border:none;
  2349. border-left:0px;
  2350. border-top:0px;
  2351. border-right:0px;
  2352. border-radius:0px;
  2353. border-bottom-right-radius:0px;
  2354. border-bottom-left-radius:0px;
  2355. -moz-box-shadow:none;
  2356. -webkit-box-shadow:none;
  2357. box-shadow:none;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:14px;
  2362. line-height:30px;
  2363. }
  2364. #u212212 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:502px;
  2368. top:289px;
  2369. width:64px;
  2370. height:30px;
  2371. display:flex;
  2372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2373. font-weight:400;
  2374. font-style:normal;
  2375. font-size:14px;
  2376. line-height:30px;
  2377. }
  2378. #u212212 .text {
  2379. position:absolute;
  2380. align-self:center;
  2381. padding:0px 0px 0px 0px;
  2382. box-sizing:border-box;
  2383. width:100%;
  2384. }
  2385. #u212212_text {
  2386. border-width:0px;
  2387. white-space:nowrap;
  2388. text-transform:none;
  2389. }
  2390. #u212213_div {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:0px;
  2395. width:345px;
  2396. height:30px;
  2397. background:inherit;
  2398. background-color:rgba(255, 255, 255, 0);
  2399. border:none;
  2400. border-left:0px;
  2401. border-top:0px;
  2402. border-right:0px;
  2403. border-radius:0px;
  2404. border-bottom-right-radius:0px;
  2405. border-bottom-left-radius:0px;
  2406. -moz-box-shadow:none;
  2407. -webkit-box-shadow:none;
  2408. box-shadow:none;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:14px;
  2413. color:#AAAAAA;
  2414. line-height:30px;
  2415. }
  2416. #u212213 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:507px;
  2420. top:324px;
  2421. width:345px;
  2422. height:30px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:14px;
  2428. color:#AAAAAA;
  2429. line-height:30px;
  2430. }
  2431. #u212213 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:0px 0px 0px 0px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u212213_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. }
  2443. #u212214 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:0px;
  2449. height:0px;
  2450. }
  2451. #u212215_div {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:68px;
  2457. height:66px;
  2458. background:inherit;
  2459. background-color:rgba(255, 255, 255, 1);
  2460. box-sizing:border-box;
  2461. border-width:1px;
  2462. border-style:solid;
  2463. border-color:rgba(215, 215, 215, 1);
  2464. border-radius:4px;
  2465. -moz-box-shadow:none;
  2466. -webkit-box-shadow:none;
  2467. box-shadow:none;
  2468. font-size:28px;
  2469. color:#D7D7D7;
  2470. }
  2471. #u212215 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:507px;
  2475. top:384px;
  2476. width:68px;
  2477. height:66px;
  2478. display:flex;
  2479. font-size:28px;
  2480. color:#D7D7D7;
  2481. }
  2482. #u212215 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:2px 2px 2px 2px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u212215_text {
  2490. border-width:0px;
  2491. word-wrap:break-word;
  2492. text-transform:none;
  2493. visibility:hidden;
  2494. }
  2495. #u212216_div {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:18px;
  2501. height:30px;
  2502. background:inherit;
  2503. background-color:rgba(255, 255, 255, 0);
  2504. border:none;
  2505. border-left:0px;
  2506. border-top:0px;
  2507. border-right:0px;
  2508. border-radius:0px;
  2509. border-bottom-right-radius:0px;
  2510. border-bottom-left-radius:0px;
  2511. -moz-box-shadow:none;
  2512. -webkit-box-shadow:none;
  2513. box-shadow:none;
  2514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:28px;
  2518. color:#D7D7D7;
  2519. line-height:30px;
  2520. }
  2521. #u212216 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:532px;
  2525. top:402px;
  2526. width:18px;
  2527. height:30px;
  2528. display:flex;
  2529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. font-size:28px;
  2533. color:#D7D7D7;
  2534. line-height:30px;
  2535. }
  2536. #u212216 .text {
  2537. position:absolute;
  2538. align-self:flex-start;
  2539. padding:0px 0px 0px 0px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u212216_text {
  2544. border-width:0px;
  2545. white-space:nowrap;
  2546. text-transform:none;
  2547. }
  2548. #u212217_div {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:344px;
  2554. height:40px;
  2555. background:inherit;
  2556. background-color:rgba(24, 144, 255, 1);
  2557. border:none;
  2558. border-radius:81px;
  2559. -moz-box-shadow:none;
  2560. -webkit-box-shadow:none;
  2561. box-shadow:none;
  2562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:14px;
  2566. color:#FFFFFF;
  2567. }
  2568. #u212217 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:500px;
  2572. top:787px;
  2573. width:344px;
  2574. height:40px;
  2575. display:flex;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:14px;
  2580. color:#FFFFFF;
  2581. }
  2582. #u212217 .text {
  2583. position:absolute;
  2584. align-self:center;
  2585. padding:2px 2px 2px 2px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u212217_text {
  2590. border-width:0px;
  2591. word-wrap:break-word;
  2592. text-transform:none;
  2593. }
  2594. #u212218_div {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:73px;
  2600. height:40px;
  2601. background:inherit;
  2602. background-color:rgba(255, 255, 255, 0);
  2603. border:none;
  2604. border-left:0px;
  2605. border-top:0px;
  2606. border-right:0px;
  2607. border-radius:0px;
  2608. border-bottom-right-radius:0px;
  2609. border-bottom-left-radius:0px;
  2610. -moz-box-shadow:none;
  2611. -webkit-box-shadow:none;
  2612. box-shadow:none;
  2613. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2614. font-weight:500;
  2615. font-style:normal;
  2616. font-size:18px;
  2617. line-height:30px;
  2618. }
  2619. #u212218 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:631px;
  2623. top:69px;
  2624. width:73px;
  2625. height:40px;
  2626. display:flex;
  2627. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2628. font-weight:500;
  2629. font-style:normal;
  2630. font-size:18px;
  2631. line-height:30px;
  2632. }
  2633. #u212218 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:0px 0px 0px 0px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u212218_text {
  2641. border-width:0px;
  2642. white-space:nowrap;
  2643. text-transform:none;
  2644. }
  2645. #u212220_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:433px;
  2651. height:865px;
  2652. }
  2653. #u212220 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:433px;
  2659. height:865px;
  2660. display:flex;
  2661. }
  2662. #u212220 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 2px 2px 2px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u212220_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. visibility:hidden;
  2674. }
  2675. #u212221_div {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:375px;
  2681. height:40px;
  2682. background:inherit;
  2683. background-color:rgba(255, 255, 255, 1);
  2684. box-sizing:border-box;
  2685. border-width:1px;
  2686. border-style:solid;
  2687. border-color:rgba(215, 215, 215, 1);
  2688. border-left:0px;
  2689. border-top:0px;
  2690. border-right:0px;
  2691. border-radius:0px;
  2692. border-bottom-right-radius:0px;
  2693. border-bottom-left-radius:0px;
  2694. -moz-box-shadow:none;
  2695. -webkit-box-shadow:none;
  2696. box-shadow:none;
  2697. }
  2698. #u212221 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:29px;
  2702. top:67px;
  2703. width:375px;
  2704. height:40px;
  2705. display:flex;
  2706. }
  2707. #u212221 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 2px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u212221_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u212222 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:0px;
  2726. height:0px;
  2727. }
  2728. #u212223_div {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:88px;
  2734. height:32px;
  2735. background:inherit;
  2736. background-color:rgba(255, 255, 255, 1);
  2737. box-sizing:border-box;
  2738. border-width:1px;
  2739. border-style:solid;
  2740. border-color:rgba(242, 242, 242, 1);
  2741. border-radius:33px;
  2742. -moz-box-shadow:none;
  2743. -webkit-box-shadow:none;
  2744. box-shadow:none;
  2745. }
  2746. #u212223 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:309px;
  2750. top:71px;
  2751. width:88px;
  2752. height:32px;
  2753. display:flex;
  2754. }
  2755. #u212223 .text {
  2756. position:absolute;
  2757. align-self:center;
  2758. padding:2px 2px 2px 2px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u212223_text {
  2763. border-width:0px;
  2764. word-wrap:break-word;
  2765. text-transform:none;
  2766. visibility:hidden;
  2767. }
  2768. #u212224 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:0px;
  2772. top:0px;
  2773. width:0px;
  2774. height:0px;
  2775. }
  2776. #u212225_img {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:18px;
  2782. height:18px;
  2783. }
  2784. #u212225 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:372px;
  2788. top:78px;
  2789. width:18px;
  2790. height:18px;
  2791. display:flex;
  2792. }
  2793. #u212225 .text {
  2794. position:absolute;
  2795. align-self:center;
  2796. padding:2px 2px 2px 2px;
  2797. box-sizing:border-box;
  2798. width:100%;
  2799. }
  2800. #u212225_text {
  2801. border-width:0px;
  2802. word-wrap:break-word;
  2803. text-transform:none;
  2804. visibility:hidden;
  2805. }
  2806. #u212226_img {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:6px;
  2812. height:6px;
  2813. }
  2814. #u212226 {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:378px;
  2818. top:84px;
  2819. width:6px;
  2820. height:6px;
  2821. display:flex;
  2822. }
  2823. #u212226 .text {
  2824. position:absolute;
  2825. align-self:center;
  2826. padding:2px 2px 2px 2px;
  2827. box-sizing:border-box;
  2828. width:100%;
  2829. }
  2830. #u212226_text {
  2831. border-width:0px;
  2832. word-wrap:break-word;
  2833. text-transform:none;
  2834. visibility:hidden;
  2835. }
  2836. #u212227 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:0px;
  2840. top:0px;
  2841. width:0px;
  2842. height:0px;
  2843. }
  2844. #u212228_img {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:0px;
  2848. top:0px;
  2849. width:5px;
  2850. height:5px;
  2851. }
  2852. #u212228 {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:323px;
  2856. top:85px;
  2857. width:5px;
  2858. height:5px;
  2859. display:flex;
  2860. }
  2861. #u212228 .text {
  2862. position:absolute;
  2863. align-self:center;
  2864. padding:2px 2px 2px 2px;
  2865. box-sizing:border-box;
  2866. width:100%;
  2867. }
  2868. #u212228_text {
  2869. border-width:0px;
  2870. word-wrap:break-word;
  2871. text-transform:none;
  2872. visibility:hidden;
  2873. }
  2874. #u212229_img {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:0px;
  2878. top:0px;
  2879. width:5px;
  2880. height:5px;
  2881. }
  2882. #u212229 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:339px;
  2886. top:85px;
  2887. width:5px;
  2888. height:5px;
  2889. display:flex;
  2890. }
  2891. #u212229 .text {
  2892. position:absolute;
  2893. align-self:center;
  2894. padding:2px 2px 2px 2px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u212229_text {
  2899. border-width:0px;
  2900. word-wrap:break-word;
  2901. text-transform:none;
  2902. visibility:hidden;
  2903. }
  2904. #u212230_img {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:7px;
  2910. height:7px;
  2911. }
  2912. #u212230 {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:330px;
  2916. top:84px;
  2917. width:7px;
  2918. height:7px;
  2919. display:flex;
  2920. }
  2921. #u212230 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 2px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u212230_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. visibility:hidden;
  2933. }
  2934. #u212231_img {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:19px;
  2940. height:2px;
  2941. }
  2942. #u212231 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:347px;
  2946. top:87px;
  2947. width:18px;
  2948. height:1px;
  2949. display:flex;
  2950. -webkit-transform:rotate(90deg);
  2951. -moz-transform:rotate(90deg);
  2952. -ms-transform:rotate(90deg);
  2953. transform:rotate(90deg);
  2954. }
  2955. #u212231 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 2px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u212231_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u212232_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:375px;
  2974. height:44px;
  2975. }
  2976. #u212232 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:29px;
  2980. top:24px;
  2981. width:375px;
  2982. height:44px;
  2983. display:flex;
  2984. }
  2985. #u212232 .text {
  2986. position:absolute;
  2987. align-self:center;
  2988. padding:2px 2px 2px 2px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u212232_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. visibility:hidden;
  2997. }
  2998. #u212233_div {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:375px;
  3004. height:50px;
  3005. background:inherit;
  3006. background-color:rgba(255, 255, 255, 1);
  3007. box-sizing:border-box;
  3008. border-width:1px;
  3009. border-style:solid;
  3010. border-color:rgba(242, 242, 242, 1);
  3011. border-radius:26px;
  3012. border-top-left-radius:0px;
  3013. border-top-right-radius:0px;
  3014. -moz-box-shadow:none;
  3015. -webkit-box-shadow:none;
  3016. box-shadow:none;
  3017. }
  3018. #u212233 {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:29px;
  3022. top:788px;
  3023. width:375px;
  3024. height:50px;
  3025. display:flex;
  3026. }
  3027. #u212233 .text {
  3028. position:absolute;
  3029. align-self:center;
  3030. padding:2px 2px 2px 2px;
  3031. box-sizing:border-box;
  3032. width:100%;
  3033. }
  3034. #u212233_text {
  3035. border-width:0px;
  3036. word-wrap:break-word;
  3037. text-transform:none;
  3038. visibility:hidden;
  3039. }
  3040. #u212234 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:0px;
  3046. height:0px;
  3047. }
  3048. #u212235_img {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:24px;
  3054. height:24px;
  3055. }
  3056. #u212235 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:69px;
  3060. top:792px;
  3061. width:24px;
  3062. height:24px;
  3063. display:flex;
  3064. font-size:8px;
  3065. }
  3066. #u212235 .text {
  3067. position:absolute;
  3068. align-self:center;
  3069. padding:2px 2px 2px 2px;
  3070. box-sizing:border-box;
  3071. width:100%;
  3072. }
  3073. #u212235_text {
  3074. border-width:0px;
  3075. word-wrap:break-word;
  3076. text-transform:none;
  3077. }
  3078. #u212236_div {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:0px;
  3082. top:0px;
  3083. width:25px;
  3084. height:17px;
  3085. background:inherit;
  3086. background-color:rgba(255, 255, 255, 0);
  3087. border:none;
  3088. border-radius:0px;
  3089. -moz-box-shadow:none;
  3090. -webkit-box-shadow:none;
  3091. box-shadow:none;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. }
  3097. #u212236 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:69px;
  3101. top:817px;
  3102. width:25px;
  3103. height:17px;
  3104. display:flex;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:12px;
  3109. }
  3110. #u212236 .text {
  3111. position:absolute;
  3112. align-self:flex-start;
  3113. padding:0px 0px 0px 0px;
  3114. box-sizing:border-box;
  3115. width:100%;
  3116. }
  3117. #u212236_text {
  3118. border-width:0px;
  3119. white-space:nowrap;
  3120. text-transform:none;
  3121. }
  3122. #u212237 {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:0px;
  3128. height:0px;
  3129. }
  3130. #u212238_img {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:24px;
  3136. height:24px;
  3137. }
  3138. #u212238 {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:339px;
  3142. top:794px;
  3143. width:24px;
  3144. height:24px;
  3145. display:flex;
  3146. font-size:8px;
  3147. }
  3148. #u212238 .text {
  3149. position:absolute;
  3150. align-self:center;
  3151. padding:2px 2px 2px 2px;
  3152. box-sizing:border-box;
  3153. width:100%;
  3154. }
  3155. #u212238_text {
  3156. border-width:0px;
  3157. word-wrap:break-word;
  3158. text-transform:none;
  3159. }
  3160. #u212239_div {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:25px;
  3166. height:17px;
  3167. background:inherit;
  3168. background-color:rgba(255, 255, 255, 0);
  3169. border:none;
  3170. border-radius:0px;
  3171. -moz-box-shadow:none;
  3172. -webkit-box-shadow:none;
  3173. box-shadow:none;
  3174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:12px;
  3178. }
  3179. #u212239 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:339px;
  3183. top:819px;
  3184. width:25px;
  3185. height:17px;
  3186. display:flex;
  3187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3188. font-weight:400;
  3189. font-style:normal;
  3190. font-size:12px;
  3191. }
  3192. #u212239 .text {
  3193. position:absolute;
  3194. align-self:flex-start;
  3195. padding:0px 0px 0px 0px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u212239_text {
  3200. border-width:0px;
  3201. white-space:nowrap;
  3202. text-transform:none;
  3203. }
  3204. #u212240_div {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:0px;
  3208. top:0px;
  3209. width:375px;
  3210. height:681px;
  3211. background:inherit;
  3212. background-color:rgba(242, 242, 242, 0.462745098039216);
  3213. border:none;
  3214. border-radius:0px;
  3215. -moz-box-shadow:none;
  3216. -webkit-box-shadow:none;
  3217. box-shadow:none;
  3218. }
  3219. #u212240 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:29px;
  3223. top:107px;
  3224. width:375px;
  3225. height:681px;
  3226. display:flex;
  3227. }
  3228. #u212240 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 2px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u212240_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u212241 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:0px;
  3247. height:0px;
  3248. }
  3249. #u212242_img {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:24px;
  3255. height:24px;
  3256. }
  3257. #u212242 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:251px;
  3261. top:792px;
  3262. width:24px;
  3263. height:24px;
  3264. display:flex;
  3265. font-size:8px;
  3266. }
  3267. #u212242 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 2px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u212242_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. }
  3279. #u212243_div {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:37px;
  3285. height:17px;
  3286. background:inherit;
  3287. background-color:rgba(255, 255, 255, 0);
  3288. border:none;
  3289. border-radius:0px;
  3290. -moz-box-shadow:none;
  3291. -webkit-box-shadow:none;
  3292. box-shadow:none;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:12px;
  3297. }
  3298. #u212243 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:245px;
  3302. top:817px;
  3303. width:37px;
  3304. height:17px;
  3305. display:flex;
  3306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:12px;
  3310. }
  3311. #u212243 .text {
  3312. position:absolute;
  3313. align-self:flex-start;
  3314. padding:0px 0px 0px 0px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u212243_text {
  3319. border-width:0px;
  3320. white-space:nowrap;
  3321. text-transform:none;
  3322. }
  3323. #u212244 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:0px;
  3329. height:0px;
  3330. }
  3331. #u212245_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:24px;
  3337. height:24px;
  3338. }
  3339. #u212245 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:157px;
  3343. top:792px;
  3344. width:24px;
  3345. height:24px;
  3346. display:flex;
  3347. font-size:8px;
  3348. }
  3349. #u212245 .text {
  3350. position:absolute;
  3351. align-self:center;
  3352. padding:2px 2px 2px 2px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u212245_text {
  3357. border-width:0px;
  3358. word-wrap:break-word;
  3359. text-transform:none;
  3360. }
  3361. #u212246_div {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:37px;
  3367. height:17px;
  3368. background:inherit;
  3369. background-color:rgba(255, 255, 255, 0);
  3370. border:none;
  3371. border-radius:0px;
  3372. -moz-box-shadow:none;
  3373. -webkit-box-shadow:none;
  3374. box-shadow:none;
  3375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3376. font-weight:400;
  3377. font-style:normal;
  3378. font-size:12px;
  3379. }
  3380. #u212246 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:151px;
  3384. top:817px;
  3385. width:37px;
  3386. height:17px;
  3387. display:flex;
  3388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. font-size:12px;
  3392. }
  3393. #u212246 .text {
  3394. position:absolute;
  3395. align-self:flex-start;
  3396. padding:0px 0px 0px 0px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u212246_text {
  3401. border-width:0px;
  3402. white-space:nowrap;
  3403. text-transform:none;
  3404. }
  3405. #u212247_div {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:375px;
  3411. height:732px;
  3412. background:inherit;
  3413. background-color:rgba(242, 242, 242, 1);
  3414. border:none;
  3415. border-top:0px;
  3416. border-radius:25px;
  3417. border-top-left-radius:0px;
  3418. border-top-right-radius:0px;
  3419. -moz-box-shadow:none;
  3420. -webkit-box-shadow:none;
  3421. box-shadow:none;
  3422. }
  3423. #u212247 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:29px;
  3427. top:106px;
  3428. width:375px;
  3429. height:732px;
  3430. display:flex;
  3431. }
  3432. #u212247 .text {
  3433. position:absolute;
  3434. align-self:center;
  3435. padding:2px 2px 2px 2px;
  3436. box-sizing:border-box;
  3437. width:100%;
  3438. }
  3439. #u212247_text {
  3440. border-width:0px;
  3441. word-wrap:break-word;
  3442. text-transform:none;
  3443. visibility:hidden;
  3444. }
  3445. #u212248 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:0px;
  3451. height:0px;
  3452. }
  3453. #u212249_img {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:11px;
  3459. height:18px;
  3460. }
  3461. #u212249 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:40px;
  3465. top:80px;
  3466. width:11px;
  3467. height:18px;
  3468. display:flex;
  3469. }
  3470. #u212249 .text {
  3471. position:absolute;
  3472. align-self:center;
  3473. padding:2px 2px 2px 2px;
  3474. box-sizing:border-box;
  3475. width:100%;
  3476. }
  3477. #u212249_text {
  3478. border-width:0px;
  3479. word-wrap:break-word;
  3480. text-transform:none;
  3481. visibility:hidden;
  3482. }
  3483. #u212250_div {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:85px;
  3489. height:30px;
  3490. background:inherit;
  3491. background-color:rgba(255, 255, 255, 0);
  3492. border:none;
  3493. border-left:0px;
  3494. border-top:0px;
  3495. border-right:0px;
  3496. border-radius:0px;
  3497. border-bottom-right-radius:0px;
  3498. border-bottom-left-radius:0px;
  3499. -moz-box-shadow:none;
  3500. -webkit-box-shadow:none;
  3501. box-shadow:none;
  3502. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3503. font-weight:500;
  3504. font-style:normal;
  3505. font-size:14px;
  3506. line-height:30px;
  3507. }
  3508. #u212250 {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:60px;
  3512. top:72px;
  3513. width:85px;
  3514. height:30px;
  3515. display:flex;
  3516. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3517. font-weight:500;
  3518. font-style:normal;
  3519. font-size:14px;
  3520. line-height:30px;
  3521. }
  3522. #u212250 .text {
  3523. position:absolute;
  3524. align-self:flex-start;
  3525. padding:0px 0px 0px 0px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u212250_text {
  3530. border-width:0px;
  3531. white-space:nowrap;
  3532. text-transform:none;
  3533. }
  3534. #u212251 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:0px;
  3540. height:0px;
  3541. }
  3542. #u212252_div {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:375px;
  3548. height:40px;
  3549. background:inherit;
  3550. background-color:rgba(255, 255, 255, 1);
  3551. border:none;
  3552. border-left:0px;
  3553. border-top:0px;
  3554. border-right:0px;
  3555. border-radius:0px;
  3556. border-bottom-right-radius:0px;
  3557. border-bottom-left-radius:0px;
  3558. -moz-box-shadow:none;
  3559. -webkit-box-shadow:none;
  3560. box-shadow:none;
  3561. }
  3562. #u212252 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:29px;
  3566. top:106px;
  3567. width:375px;
  3568. height:40px;
  3569. display:flex;
  3570. }
  3571. #u212252 .text {
  3572. position:absolute;
  3573. align-self:center;
  3574. padding:2px 2px 2px 2px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u212252_text {
  3579. border-width:0px;
  3580. word-wrap:break-word;
  3581. text-transform:none;
  3582. visibility:hidden;
  3583. }
  3584. #u212253_input {
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:136px;
  3589. height:22px;
  3590. padding:2px 2px 2px 2px;
  3591. font-family:'ArialMT', 'Arial', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:12px;
  3595. letter-spacing:normal;
  3596. color:#AAAAAA;
  3597. vertical-align:none;
  3598. text-align:left;
  3599. text-transform:none;
  3600. background-color:transparent;
  3601. border-color:transparent;
  3602. }
  3603. #u212253_input.disabled {
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:136px;
  3608. height:22px;
  3609. padding:2px 2px 2px 2px;
  3610. font-family:'ArialMT', 'Arial', sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:12px;
  3614. letter-spacing:normal;
  3615. color:#AAAAAA;
  3616. vertical-align:none;
  3617. text-align:left;
  3618. text-transform:none;
  3619. background-color:transparent;
  3620. border-color:transparent;
  3621. }
  3622. #u212253_div {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:136px;
  3628. height:22px;
  3629. background:inherit;
  3630. background-color:rgba(255, 255, 255, 1);
  3631. border:none;
  3632. border-radius:0px;
  3633. -moz-box-shadow:none;
  3634. -webkit-box-shadow:none;
  3635. box-shadow:none;
  3636. font-size:12px;
  3637. color:#AAAAAA;
  3638. }
  3639. #u212253 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:55px;
  3643. top:114px;
  3644. width:136px;
  3645. height:22px;
  3646. display:flex;
  3647. font-size:12px;
  3648. color:#AAAAAA;
  3649. }
  3650. #u212253 .text {
  3651. position:absolute;
  3652. align-self:flex-start;
  3653. padding:2px 2px 2px 2px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u212253_div.disabled {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:136px;
  3663. height:22px;
  3664. background:inherit;
  3665. background-color:rgba(240, 240, 240, 1);
  3666. border:none;
  3667. border-radius:0px;
  3668. -moz-box-shadow:none;
  3669. -webkit-box-shadow:none;
  3670. box-shadow:none;
  3671. font-size:12px;
  3672. color:#AAAAAA;
  3673. }
  3674. #u212253.disabled {
  3675. }
  3676. .u212253_input_option {
  3677. font-size:12px;
  3678. }
  3679. #u212254_input {
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:140px;
  3684. height:22px;
  3685. padding:2px 2px 2px 2px;
  3686. font-family:'ArialMT', 'Arial', sans-serif;
  3687. font-weight:400;
  3688. font-style:normal;
  3689. font-size:12px;
  3690. letter-spacing:normal;
  3691. color:#AAAAAA;
  3692. vertical-align:none;
  3693. text-align:left;
  3694. text-transform:none;
  3695. background-color:transparent;
  3696. border-color:transparent;
  3697. }
  3698. #u212254_input.disabled {
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:140px;
  3703. height:22px;
  3704. padding:2px 2px 2px 2px;
  3705. font-family:'ArialMT', 'Arial', sans-serif;
  3706. font-weight:400;
  3707. font-style:normal;
  3708. font-size:12px;
  3709. letter-spacing:normal;
  3710. color:#AAAAAA;
  3711. vertical-align:none;
  3712. text-align:left;
  3713. text-transform:none;
  3714. background-color:transparent;
  3715. border-color:transparent;
  3716. }
  3717. #u212254_div {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:140px;
  3723. height:22px;
  3724. background:inherit;
  3725. background-color:rgba(255, 255, 255, 1);
  3726. border:none;
  3727. border-radius:0px;
  3728. -moz-box-shadow:none;
  3729. -webkit-box-shadow:none;
  3730. box-shadow:none;
  3731. font-size:12px;
  3732. color:#AAAAAA;
  3733. }
  3734. #u212254 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:229px;
  3738. top:114px;
  3739. width:140px;
  3740. height:22px;
  3741. display:flex;
  3742. font-size:12px;
  3743. color:#AAAAAA;
  3744. }
  3745. #u212254 .text {
  3746. position:absolute;
  3747. align-self:flex-start;
  3748. padding:2px 2px 2px 2px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u212254_div.disabled {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:0px;
  3756. top:0px;
  3757. width:140px;
  3758. height:22px;
  3759. background:inherit;
  3760. background-color:rgba(240, 240, 240, 1);
  3761. border:none;
  3762. border-radius:0px;
  3763. -moz-box-shadow:none;
  3764. -webkit-box-shadow:none;
  3765. box-shadow:none;
  3766. font-size:12px;
  3767. color:#AAAAAA;
  3768. }
  3769. #u212254.disabled {
  3770. }
  3771. .u212254_input_option {
  3772. font-size:12px;
  3773. }
  3774. #u212255_div {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:375px;
  3780. height:30px;
  3781. background:inherit;
  3782. background-color:rgba(255, 255, 0, 0);
  3783. border:none;
  3784. border-left:0px;
  3785. border-top:0px;
  3786. border-right:0px;
  3787. border-radius:0px;
  3788. border-bottom-right-radius:0px;
  3789. border-bottom-left-radius:0px;
  3790. -moz-box-shadow:none;
  3791. -webkit-box-shadow:none;
  3792. box-shadow:none;
  3793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:10px;
  3797. color:#F59A23;
  3798. }
  3799. #u212255 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:29px;
  3803. top:146px;
  3804. width:375px;
  3805. height:30px;
  3806. display:flex;
  3807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:10px;
  3811. color:#F59A23;
  3812. }
  3813. #u212255 .text {
  3814. position:absolute;
  3815. align-self:center;
  3816. padding:0px 0px 0px 10px;
  3817. box-sizing:border-box;
  3818. width:100%;
  3819. }
  3820. #u212255_text {
  3821. border-width:0px;
  3822. word-wrap:break-word;
  3823. text-transform:none;
  3824. }
  3825. #u212256 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:0px;
  3831. height:0px;
  3832. }
  3833. #u212257_img {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:355px;
  3839. height:150px;
  3840. }
  3841. #u212257 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:39px;
  3845. top:176px;
  3846. width:355px;
  3847. height:150px;
  3848. display:flex;
  3849. }
  3850. #u212257 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 2px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u212257_text {
  3858. border-width:0px;
  3859. word-wrap:break-word;
  3860. text-transform:none;
  3861. visibility:hidden;
  3862. }
  3863. #u212258_div {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:0px;
  3867. top:0px;
  3868. width:107px;
  3869. height:30px;
  3870. background:inherit;
  3871. background-color:rgba(255, 255, 255, 0);
  3872. border:none;
  3873. border-left:0px;
  3874. border-top:0px;
  3875. border-right:0px;
  3876. border-radius:0px;
  3877. border-bottom-right-radius:0px;
  3878. border-bottom-left-radius:0px;
  3879. -moz-box-shadow:none;
  3880. -webkit-box-shadow:none;
  3881. box-shadow:none;
  3882. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3883. font-weight:500;
  3884. font-style:normal;
  3885. font-size:14px;
  3886. line-height:30px;
  3887. }
  3888. #u212258 {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:55px;
  3892. top:211px;
  3893. width:107px;
  3894. height:30px;
  3895. display:flex;
  3896. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3897. font-weight:500;
  3898. font-style:normal;
  3899. font-size:14px;
  3900. line-height:30px;
  3901. }
  3902. #u212258 .text {
  3903. position:absolute;
  3904. align-self:flex-start;
  3905. padding:0px 0px 0px 0px;
  3906. box-sizing:border-box;
  3907. width:100%;
  3908. }
  3909. #u212258_text {
  3910. border-width:0px;
  3911. white-space:nowrap;
  3912. text-transform:none;
  3913. }
  3914. #u212259_div {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:0px;
  3918. top:0px;
  3919. width:177px;
  3920. height:75px;
  3921. background:inherit;
  3922. background-color:rgba(255, 255, 255, 0);
  3923. border:none;
  3924. border-left:0px;
  3925. border-top:0px;
  3926. border-right:0px;
  3927. border-radius:0px;
  3928. border-bottom-right-radius:0px;
  3929. border-bottom-left-radius:0px;
  3930. -moz-box-shadow:none;
  3931. -webkit-box-shadow:none;
  3932. box-shadow:none;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:12px;
  3937. color:#7F7F7F;
  3938. line-height:25px;
  3939. }
  3940. #u212259 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:55px;
  3944. top:241px;
  3945. width:177px;
  3946. height:75px;
  3947. display:flex;
  3948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3949. font-weight:400;
  3950. font-style:normal;
  3951. font-size:12px;
  3952. color:#7F7F7F;
  3953. line-height:25px;
  3954. }
  3955. #u212259 .text {
  3956. position:absolute;
  3957. align-self:flex-start;
  3958. padding:0px 0px 0px 0px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u212259_text {
  3963. border-width:0px;
  3964. white-space:nowrap;
  3965. text-transform:none;
  3966. }
  3967. #u212260_div {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:61px;
  3973. height:25px;
  3974. background:inherit;
  3975. background-color:rgba(255, 255, 255, 0);
  3976. border:none;
  3977. border-left:0px;
  3978. border-top:0px;
  3979. border-right:0px;
  3980. border-radius:0px;
  3981. border-bottom-right-radius:0px;
  3982. border-bottom-left-radius:0px;
  3983. -moz-box-shadow:none;
  3984. -webkit-box-shadow:none;
  3985. box-shadow:none;
  3986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3987. font-weight:400;
  3988. font-style:normal;
  3989. text-align:right;
  3990. }
  3991. #u212260 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:313px;
  3995. top:234px;
  3996. width:61px;
  3997. height:25px;
  3998. display:flex;
  3999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. text-align:right;
  4003. }
  4004. #u212260 .text {
  4005. position:absolute;
  4006. align-self:flex-start;
  4007. padding:0px 0px 0px 0px;
  4008. box-sizing:border-box;
  4009. width:100%;
  4010. }
  4011. #u212260_text {
  4012. border-width:0px;
  4013. white-space:nowrap;
  4014. text-transform:none;
  4015. }
  4016. #u212261 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:0px;
  4022. height:0px;
  4023. }
  4024. #u212262_div {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:355px;
  4030. height:30px;
  4031. background:inherit;
  4032. background-color:rgba(255, 255, 255, 0);
  4033. box-sizing:border-box;
  4034. border-width:1px;
  4035. border-style:solid;
  4036. border-color:rgba(242, 242, 242, 1);
  4037. border-left:0px;
  4038. border-top:0px;
  4039. border-right:0px;
  4040. border-radius:0px;
  4041. border-bottom-right-radius:0px;
  4042. border-bottom-left-radius:0px;
  4043. -moz-box-shadow:none;
  4044. -webkit-box-shadow:none;
  4045. box-shadow:none;
  4046. }
  4047. #u212262 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:39px;
  4051. top:176px;
  4052. width:355px;
  4053. height:30px;
  4054. display:flex;
  4055. }
  4056. #u212262 .text {
  4057. position:absolute;
  4058. align-self:center;
  4059. padding:2px 2px 2px 2px;
  4060. box-sizing:border-box;
  4061. width:100%;
  4062. }
  4063. #u212262_text {
  4064. border-width:0px;
  4065. word-wrap:break-word;
  4066. text-transform:none;
  4067. visibility:hidden;
  4068. }
  4069. #u212263_div {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:0px;
  4073. top:0px;
  4074. width:106px;
  4075. height:11px;
  4076. background:inherit;
  4077. background-color:rgba(255, 255, 255, 0);
  4078. border:none;
  4079. border-left:0px;
  4080. border-top:0px;
  4081. border-right:0px;
  4082. border-radius:0px;
  4083. border-bottom-right-radius:0px;
  4084. border-bottom-left-radius:0px;
  4085. -moz-box-shadow:none;
  4086. -webkit-box-shadow:none;
  4087. box-shadow:none;
  4088. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4089. font-weight:400;
  4090. font-style:normal;
  4091. font-size:10px;
  4092. color:#000000;
  4093. text-align:center;
  4094. }
  4095. #u212263 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:48px;
  4099. top:184px;
  4100. width:106px;
  4101. height:11px;
  4102. display:flex;
  4103. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:10px;
  4107. color:#000000;
  4108. text-align:center;
  4109. }
  4110. #u212263 .text {
  4111. position:absolute;
  4112. align-self:flex-start;
  4113. padding:0px 0px 0px 0px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u212263_text {
  4118. border-width:0px;
  4119. white-space:nowrap;
  4120. text-transform:none;
  4121. }
  4122. #u212264_div {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:31px;
  4128. height:24px;
  4129. background:inherit;
  4130. background-color:rgba(255, 255, 255, 0);
  4131. border:none;
  4132. border-left:0px;
  4133. border-top:0px;
  4134. border-right:0px;
  4135. border-radius:0px;
  4136. border-bottom-right-radius:0px;
  4137. border-bottom-left-radius:0px;
  4138. -moz-box-shadow:none;
  4139. -webkit-box-shadow:none;
  4140. box-shadow:none;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:10px;
  4145. color:#555555;
  4146. text-align:right;
  4147. line-height:24px;
  4148. }
  4149. #u212264 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:353px;
  4153. top:179px;
  4154. width:31px;
  4155. height:24px;
  4156. display:flex;
  4157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4158. font-weight:400;
  4159. font-style:normal;
  4160. font-size:10px;
  4161. color:#555555;
  4162. text-align:right;
  4163. line-height:24px;
  4164. }
  4165. #u212264 .text {
  4166. position:absolute;
  4167. align-self:flex-start;
  4168. padding:0px 0px 0px 0px;
  4169. box-sizing:border-box;
  4170. width:100%;
  4171. }
  4172. #u212264_text {
  4173. border-width:0px;
  4174. white-space:nowrap;
  4175. text-transform:none;
  4176. }
  4177. #u212265 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:0px;
  4183. height:0px;
  4184. }
  4185. #u212266_img {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:355px;
  4191. height:150px;
  4192. }
  4193. #u212266 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:39px;
  4197. top:332px;
  4198. width:355px;
  4199. height:150px;
  4200. display:flex;
  4201. }
  4202. #u212266 .text {
  4203. position:absolute;
  4204. align-self:center;
  4205. padding:2px 2px 2px 2px;
  4206. box-sizing:border-box;
  4207. width:100%;
  4208. }
  4209. #u212266_text {
  4210. border-width:0px;
  4211. word-wrap:break-word;
  4212. text-transform:none;
  4213. visibility:hidden;
  4214. }
  4215. #u212267_div {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:93px;
  4221. height:30px;
  4222. background:inherit;
  4223. background-color:rgba(255, 255, 255, 0);
  4224. border:none;
  4225. border-left:0px;
  4226. border-top:0px;
  4227. border-right:0px;
  4228. border-radius:0px;
  4229. border-bottom-right-radius:0px;
  4230. border-bottom-left-radius:0px;
  4231. -moz-box-shadow:none;
  4232. -webkit-box-shadow:none;
  4233. box-shadow:none;
  4234. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4235. font-weight:500;
  4236. font-style:normal;
  4237. font-size:14px;
  4238. line-height:30px;
  4239. }
  4240. #u212267 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:55px;
  4244. top:367px;
  4245. width:93px;
  4246. height:30px;
  4247. display:flex;
  4248. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4249. font-weight:500;
  4250. font-style:normal;
  4251. font-size:14px;
  4252. line-height:30px;
  4253. }
  4254. #u212267 .text {
  4255. position:absolute;
  4256. align-self:flex-start;
  4257. padding:0px 0px 0px 0px;
  4258. box-sizing:border-box;
  4259. width:100%;
  4260. }
  4261. #u212267_text {
  4262. border-width:0px;
  4263. white-space:nowrap;
  4264. text-transform:none;
  4265. }
  4266. #u212268_div {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:177px;
  4272. height:75px;
  4273. background:inherit;
  4274. background-color:rgba(255, 255, 255, 0);
  4275. border:none;
  4276. border-left:0px;
  4277. border-top:0px;
  4278. border-right:0px;
  4279. border-radius:0px;
  4280. border-bottom-right-radius:0px;
  4281. border-bottom-left-radius:0px;
  4282. -moz-box-shadow:none;
  4283. -webkit-box-shadow:none;
  4284. box-shadow:none;
  4285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:12px;
  4289. color:#7F7F7F;
  4290. line-height:25px;
  4291. }
  4292. #u212268 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:55px;
  4296. top:397px;
  4297. width:177px;
  4298. height:75px;
  4299. display:flex;
  4300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4301. font-weight:400;
  4302. font-style:normal;
  4303. font-size:12px;
  4304. color:#7F7F7F;
  4305. line-height:25px;
  4306. }
  4307. #u212268 .text {
  4308. position:absolute;
  4309. align-self:flex-start;
  4310. padding:0px 0px 0px 0px;
  4311. box-sizing:border-box;
  4312. width:100%;
  4313. }
  4314. #u212268_text {
  4315. border-width:0px;
  4316. white-space:nowrap;
  4317. text-transform:none;
  4318. }
  4319. #u212269_div {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:71px;
  4325. height:25px;
  4326. background:inherit;
  4327. background-color:rgba(255, 255, 255, 0);
  4328. border:none;
  4329. border-left:0px;
  4330. border-top:0px;
  4331. border-right:0px;
  4332. border-radius:0px;
  4333. border-bottom-right-radius:0px;
  4334. border-bottom-left-radius:0px;
  4335. -moz-box-shadow:none;
  4336. -webkit-box-shadow:none;
  4337. box-shadow:none;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. text-align:right;
  4342. }
  4343. #u212269 {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:303px;
  4347. top:390px;
  4348. width:71px;
  4349. height:25px;
  4350. display:flex;
  4351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4352. font-weight:400;
  4353. font-style:normal;
  4354. text-align:right;
  4355. }
  4356. #u212269 .text {
  4357. position:absolute;
  4358. align-self:flex-start;
  4359. padding:0px 0px 0px 0px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u212269_text {
  4364. border-width:0px;
  4365. white-space:nowrap;
  4366. text-transform:none;
  4367. }
  4368. #u212270 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:0px;
  4374. height:0px;
  4375. }
  4376. #u212271_div {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:355px;
  4382. height:30px;
  4383. background:inherit;
  4384. background-color:rgba(255, 255, 255, 0);
  4385. box-sizing:border-box;
  4386. border-width:1px;
  4387. border-style:solid;
  4388. border-color:rgba(242, 242, 242, 1);
  4389. border-left:0px;
  4390. border-top:0px;
  4391. border-right:0px;
  4392. border-radius:0px;
  4393. border-bottom-right-radius:0px;
  4394. border-bottom-left-radius:0px;
  4395. -moz-box-shadow:none;
  4396. -webkit-box-shadow:none;
  4397. box-shadow:none;
  4398. }
  4399. #u212271 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:39px;
  4403. top:332px;
  4404. width:355px;
  4405. height:30px;
  4406. display:flex;
  4407. }
  4408. #u212271 .text {
  4409. position:absolute;
  4410. align-self:center;
  4411. padding:2px 2px 2px 2px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u212271_text {
  4416. border-width:0px;
  4417. word-wrap:break-word;
  4418. text-transform:none;
  4419. visibility:hidden;
  4420. }
  4421. #u212272_div {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:106px;
  4427. height:11px;
  4428. background:inherit;
  4429. background-color:rgba(255, 255, 255, 0);
  4430. border:none;
  4431. border-left:0px;
  4432. border-top:0px;
  4433. border-right:0px;
  4434. border-radius:0px;
  4435. border-bottom-right-radius:0px;
  4436. border-bottom-left-radius:0px;
  4437. -moz-box-shadow:none;
  4438. -webkit-box-shadow:none;
  4439. box-shadow:none;
  4440. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:10px;
  4444. color:#000000;
  4445. text-align:center;
  4446. }
  4447. #u212272 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:48px;
  4451. top:340px;
  4452. width:106px;
  4453. height:11px;
  4454. display:flex;
  4455. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:10px;
  4459. color:#000000;
  4460. text-align:center;
  4461. }
  4462. #u212272 .text {
  4463. position:absolute;
  4464. align-self:flex-start;
  4465. padding:0px 0px 0px 0px;
  4466. box-sizing:border-box;
  4467. width:100%;
  4468. }
  4469. #u212272_text {
  4470. border-width:0px;
  4471. white-space:nowrap;
  4472. text-transform:none;
  4473. }
  4474. #u212273_div {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:31px;
  4480. height:24px;
  4481. background:inherit;
  4482. background-color:rgba(255, 255, 255, 0);
  4483. border:none;
  4484. border-left:0px;
  4485. border-top:0px;
  4486. border-right:0px;
  4487. border-radius:0px;
  4488. border-bottom-right-radius:0px;
  4489. border-bottom-left-radius:0px;
  4490. -moz-box-shadow:none;
  4491. -webkit-box-shadow:none;
  4492. box-shadow:none;
  4493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4494. font-weight:400;
  4495. font-style:normal;
  4496. font-size:10px;
  4497. color:#555555;
  4498. text-align:right;
  4499. line-height:24px;
  4500. }
  4501. #u212273 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:353px;
  4505. top:335px;
  4506. width:31px;
  4507. height:24px;
  4508. display:flex;
  4509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:10px;
  4513. color:#555555;
  4514. text-align:right;
  4515. line-height:24px;
  4516. }
  4517. #u212273 .text {
  4518. position:absolute;
  4519. align-self:flex-start;
  4520. padding:0px 0px 0px 0px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u212273_text {
  4525. border-width:0px;
  4526. white-space:nowrap;
  4527. text-transform:none;
  4528. }
  4529. #u212274_div {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:81px;
  4535. height:24px;
  4536. background:inherit;
  4537. background-color:rgba(255, 255, 255, 0);
  4538. border:none;
  4539. border-left:0px;
  4540. border-top:0px;
  4541. border-right:0px;
  4542. border-radius:0px;
  4543. border-bottom-right-radius:0px;
  4544. border-bottom-left-radius:0px;
  4545. -moz-box-shadow:none;
  4546. -webkit-box-shadow:none;
  4547. box-shadow:none;
  4548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:10px;
  4552. color:#0089FE;
  4553. text-align:right;
  4554. line-height:24px;
  4555. }
  4556. #u212274 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:293px;
  4560. top:415px;
  4561. width:81px;
  4562. height:24px;
  4563. display:flex;
  4564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4565. font-weight:400;
  4566. font-style:normal;
  4567. font-size:10px;
  4568. color:#0089FE;
  4569. text-align:right;
  4570. line-height:24px;
  4571. }
  4572. #u212274 .text {
  4573. position:absolute;
  4574. align-self:flex-start;
  4575. padding:0px 0px 0px 0px;
  4576. box-sizing:border-box;
  4577. width:100%;
  4578. }
  4579. #u212274_text {
  4580. border-width:0px;
  4581. white-space:nowrap;
  4582. text-transform:none;
  4583. }
  4584. #u212275 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:0px;
  4590. height:0px;
  4591. }
  4592. #u212276_img {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:0px;
  4596. top:0px;
  4597. width:355px;
  4598. height:150px;
  4599. }
  4600. #u212276 {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:490px;
  4604. top:119px;
  4605. width:355px;
  4606. height:150px;
  4607. display:flex;
  4608. }
  4609. #u212276 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 2px 2px 2px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u212276_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u212277_div {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:93px;
  4628. height:30px;
  4629. background:inherit;
  4630. background-color:rgba(255, 255, 255, 0);
  4631. border:none;
  4632. border-left:0px;
  4633. border-top:0px;
  4634. border-right:0px;
  4635. border-radius:0px;
  4636. border-bottom-right-radius:0px;
  4637. border-bottom-left-radius:0px;
  4638. -moz-box-shadow:none;
  4639. -webkit-box-shadow:none;
  4640. box-shadow:none;
  4641. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4642. font-weight:500;
  4643. font-style:normal;
  4644. font-size:14px;
  4645. line-height:30px;
  4646. }
  4647. #u212277 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:506px;
  4651. top:154px;
  4652. width:93px;
  4653. height:30px;
  4654. display:flex;
  4655. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4656. font-weight:500;
  4657. font-style:normal;
  4658. font-size:14px;
  4659. line-height:30px;
  4660. }
  4661. #u212277 .text {
  4662. position:absolute;
  4663. align-self:flex-start;
  4664. padding:0px 0px 0px 0px;
  4665. box-sizing:border-box;
  4666. width:100%;
  4667. }
  4668. #u212277_text {
  4669. border-width:0px;
  4670. white-space:nowrap;
  4671. text-transform:none;
  4672. }
  4673. #u212278_div {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:177px;
  4679. height:75px;
  4680. background:inherit;
  4681. background-color:rgba(255, 255, 255, 0);
  4682. border:none;
  4683. border-left:0px;
  4684. border-top:0px;
  4685. border-right:0px;
  4686. border-radius:0px;
  4687. border-bottom-right-radius:0px;
  4688. border-bottom-left-radius:0px;
  4689. -moz-box-shadow:none;
  4690. -webkit-box-shadow:none;
  4691. box-shadow:none;
  4692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4693. font-weight:400;
  4694. font-style:normal;
  4695. font-size:12px;
  4696. color:#7F7F7F;
  4697. line-height:25px;
  4698. }
  4699. #u212278 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:506px;
  4703. top:184px;
  4704. width:177px;
  4705. height:75px;
  4706. display:flex;
  4707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:12px;
  4711. color:#7F7F7F;
  4712. line-height:25px;
  4713. }
  4714. #u212278 .text {
  4715. position:absolute;
  4716. align-self:flex-start;
  4717. padding:0px 0px 0px 0px;
  4718. box-sizing:border-box;
  4719. width:100%;
  4720. }
  4721. #u212278_text {
  4722. border-width:0px;
  4723. white-space:nowrap;
  4724. text-transform:none;
  4725. }
  4726. #u212279_div {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:61px;
  4732. height:25px;
  4733. background:inherit;
  4734. background-color:rgba(255, 255, 255, 0);
  4735. border:none;
  4736. border-left:0px;
  4737. border-top:0px;
  4738. border-right:0px;
  4739. border-radius:0px;
  4740. border-bottom-right-radius:0px;
  4741. border-bottom-left-radius:0px;
  4742. -moz-box-shadow:none;
  4743. -webkit-box-shadow:none;
  4744. box-shadow:none;
  4745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4746. font-weight:400;
  4747. font-style:normal;
  4748. text-align:right;
  4749. }
  4750. #u212279 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:764px;
  4754. top:187px;
  4755. width:61px;
  4756. height:25px;
  4757. display:flex;
  4758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. text-align:right;
  4762. }
  4763. #u212279 .text {
  4764. position:absolute;
  4765. align-self:flex-start;
  4766. padding:0px 0px 0px 0px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u212279_text {
  4771. border-width:0px;
  4772. white-space:nowrap;
  4773. text-transform:none;
  4774. }
  4775. #u212280 {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:0px;
  4779. top:0px;
  4780. width:0px;
  4781. height:0px;
  4782. }
  4783. #u212281_div {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:0px;
  4787. top:0px;
  4788. width:355px;
  4789. height:30px;
  4790. background:inherit;
  4791. background-color:rgba(255, 255, 255, 0);
  4792. box-sizing:border-box;
  4793. border-width:1px;
  4794. border-style:solid;
  4795. border-color:rgba(242, 242, 242, 1);
  4796. border-left:0px;
  4797. border-top:0px;
  4798. border-right:0px;
  4799. border-radius:0px;
  4800. border-bottom-right-radius:0px;
  4801. border-bottom-left-radius:0px;
  4802. -moz-box-shadow:none;
  4803. -webkit-box-shadow:none;
  4804. box-shadow:none;
  4805. }
  4806. #u212281 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:490px;
  4810. top:119px;
  4811. width:355px;
  4812. height:30px;
  4813. display:flex;
  4814. }
  4815. #u212281 .text {
  4816. position:absolute;
  4817. align-self:center;
  4818. padding:2px 2px 2px 2px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u212281_text {
  4823. border-width:0px;
  4824. word-wrap:break-word;
  4825. text-transform:none;
  4826. visibility:hidden;
  4827. }
  4828. #u212282_div {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:0px;
  4832. top:0px;
  4833. width:106px;
  4834. height:11px;
  4835. background:inherit;
  4836. background-color:rgba(255, 255, 255, 0);
  4837. border:none;
  4838. border-left:0px;
  4839. border-top:0px;
  4840. border-right:0px;
  4841. border-radius:0px;
  4842. border-bottom-right-radius:0px;
  4843. border-bottom-left-radius:0px;
  4844. -moz-box-shadow:none;
  4845. -webkit-box-shadow:none;
  4846. box-shadow:none;
  4847. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:10px;
  4851. color:#000000;
  4852. text-align:center;
  4853. }
  4854. #u212282 {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:499px;
  4858. top:127px;
  4859. width:106px;
  4860. height:11px;
  4861. display:flex;
  4862. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4863. font-weight:400;
  4864. font-style:normal;
  4865. font-size:10px;
  4866. color:#000000;
  4867. text-align:center;
  4868. }
  4869. #u212282 .text {
  4870. position:absolute;
  4871. align-self:flex-start;
  4872. padding:0px 0px 0px 0px;
  4873. box-sizing:border-box;
  4874. width:100%;
  4875. }
  4876. #u212282_text {
  4877. border-width:0px;
  4878. white-space:nowrap;
  4879. text-transform:none;
  4880. }
  4881. #u212283_div {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:0px;
  4885. top:0px;
  4886. width:31px;
  4887. height:24px;
  4888. background:inherit;
  4889. background-color:rgba(255, 255, 255, 0);
  4890. border:none;
  4891. border-left:0px;
  4892. border-top:0px;
  4893. border-right:0px;
  4894. border-radius:0px;
  4895. border-bottom-right-radius:0px;
  4896. border-bottom-left-radius:0px;
  4897. -moz-box-shadow:none;
  4898. -webkit-box-shadow:none;
  4899. box-shadow:none;
  4900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:10px;
  4904. color:#555555;
  4905. text-align:right;
  4906. line-height:24px;
  4907. }
  4908. #u212283 {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:804px;
  4912. top:122px;
  4913. width:31px;
  4914. height:24px;
  4915. display:flex;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:10px;
  4920. color:#555555;
  4921. text-align:right;
  4922. line-height:24px;
  4923. }
  4924. #u212283 .text {
  4925. position:absolute;
  4926. align-self:flex-start;
  4927. padding:0px 0px 0px 0px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u212283_text {
  4932. border-width:0px;
  4933. white-space:nowrap;
  4934. text-transform:none;
  4935. }