styles.css 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1348px;
  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. #u42116 {
  20. border-width:0px;
  21. position:absolute;
  22. left:453px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. display:flex;
  27. transition:none;
  28. }
  29. #u42116 .text {
  30. position:absolute;
  31. align-self:center;
  32. padding:2px 2px 2px 2px;
  33. box-sizing:border-box;
  34. width:100%;
  35. }
  36. #u42116_img {
  37. border-width:0px;
  38. position:absolute;
  39. left:0px;
  40. top:0px;
  41. width:433px;
  42. height:865px;
  43. }
  44. #u42116_text {
  45. border-width:0px;
  46. word-wrap:break-word;
  47. text-transform:none;
  48. visibility:hidden;
  49. }
  50. #u42117_div {
  51. border-width:0px;
  52. position:absolute;
  53. left:0px;
  54. top:0px;
  55. width:375px;
  56. height:40px;
  57. background:inherit;
  58. background-color:rgba(255, 255, 255, 1);
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. filter:drop-shadow(none);
  66. transition:none;
  67. }
  68. #u42117 {
  69. border-width:0px;
  70. position:absolute;
  71. left:482px;
  72. top:67px;
  73. width:375px;
  74. height:40px;
  75. display:flex;
  76. transition:none;
  77. transform-origin:50% 50%;
  78. }
  79. #u42117 .text {
  80. position:absolute;
  81. align-self:center;
  82. padding:2px 2px 2px 2px;
  83. box-sizing:border-box;
  84. width:100%;
  85. }
  86. #u42117_text {
  87. border-width:0px;
  88. word-wrap:break-word;
  89. text-transform:none;
  90. visibility:hidden;
  91. }
  92. #u42118 {
  93. border-width:0px;
  94. position:absolute;
  95. left:0px;
  96. top:0px;
  97. width:0px;
  98. height:0px;
  99. }
  100. #u42119_div {
  101. border-width:0px;
  102. position:absolute;
  103. left:0px;
  104. top:0px;
  105. width:88px;
  106. height:32px;
  107. background:inherit;
  108. background-color:rgba(255, 255, 255, 1);
  109. box-sizing:border-box;
  110. border-width:1px;
  111. border-style:solid;
  112. border-color:rgba(242, 242, 242, 1);
  113. border-radius:33px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. }
  117. #u42119 {
  118. border-width:0px;
  119. position:absolute;
  120. left:762px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. transition:none;
  126. transform-origin:50% 50%;
  127. }
  128. #u42119 .text {
  129. position:absolute;
  130. align-self:center;
  131. padding:2px 2px 2px 2px;
  132. box-sizing:border-box;
  133. width:100%;
  134. }
  135. #u42119_text {
  136. border-width:0px;
  137. word-wrap:break-word;
  138. text-transform:none;
  139. visibility:hidden;
  140. }
  141. #u42120 {
  142. border-width:0px;
  143. position:absolute;
  144. left:0px;
  145. top:0px;
  146. width:0px;
  147. height:0px;
  148. }
  149. #u42121 {
  150. border-width:0px;
  151. position:absolute;
  152. left:825px;
  153. top:78px;
  154. width:18px;
  155. height:18px;
  156. display:flex;
  157. transition:none;
  158. }
  159. #u42121 .text {
  160. position:absolute;
  161. align-self:center;
  162. padding:2px 2px 2px 2px;
  163. box-sizing:border-box;
  164. width:100%;
  165. }
  166. #u42121_img {
  167. border-width:0px;
  168. position:absolute;
  169. left:0px;
  170. top:0px;
  171. width:18px;
  172. height:18px;
  173. }
  174. #u42121_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u42122 {
  181. border-width:0px;
  182. position:absolute;
  183. left:831px;
  184. top:84px;
  185. width:6px;
  186. height:6px;
  187. display:flex;
  188. transition:none;
  189. }
  190. #u42122 .text {
  191. position:absolute;
  192. align-self:center;
  193. padding:2px 2px 2px 2px;
  194. box-sizing:border-box;
  195. width:100%;
  196. }
  197. #u42122_img {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:6px;
  203. height:6px;
  204. }
  205. #u42122_text {
  206. border-width:0px;
  207. word-wrap:break-word;
  208. text-transform:none;
  209. visibility:hidden;
  210. }
  211. #u42123 {
  212. border-width:0px;
  213. position:absolute;
  214. left:0px;
  215. top:0px;
  216. width:0px;
  217. height:0px;
  218. }
  219. #u42124 {
  220. border-width:0px;
  221. position:absolute;
  222. left:776px;
  223. top:85px;
  224. width:5px;
  225. height:5px;
  226. display:flex;
  227. transition:none;
  228. }
  229. #u42124 .text {
  230. position:absolute;
  231. align-self:center;
  232. padding:2px 2px 2px 2px;
  233. box-sizing:border-box;
  234. width:100%;
  235. }
  236. #u42124_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:5px;
  242. height:5px;
  243. }
  244. #u42124_text {
  245. border-width:0px;
  246. word-wrap:break-word;
  247. text-transform:none;
  248. visibility:hidden;
  249. }
  250. #u42125 {
  251. border-width:0px;
  252. position:absolute;
  253. left:792px;
  254. top:85px;
  255. width:5px;
  256. height:5px;
  257. display:flex;
  258. transition:none;
  259. }
  260. #u42125 .text {
  261. position:absolute;
  262. align-self:center;
  263. padding:2px 2px 2px 2px;
  264. box-sizing:border-box;
  265. width:100%;
  266. }
  267. #u42125_img {
  268. border-width:0px;
  269. position:absolute;
  270. left:0px;
  271. top:0px;
  272. width:5px;
  273. height:5px;
  274. }
  275. #u42125_text {
  276. border-width:0px;
  277. word-wrap:break-word;
  278. text-transform:none;
  279. visibility:hidden;
  280. }
  281. #u42126 {
  282. border-width:0px;
  283. position:absolute;
  284. left:783px;
  285. top:84px;
  286. width:7px;
  287. height:7px;
  288. display:flex;
  289. transition:none;
  290. }
  291. #u42126 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:2px 2px 2px 2px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u42126_img {
  299. border-width:0px;
  300. position:absolute;
  301. left:0px;
  302. top:0px;
  303. width:7px;
  304. height:7px;
  305. }
  306. #u42126_text {
  307. border-width:0px;
  308. word-wrap:break-word;
  309. text-transform:none;
  310. visibility:hidden;
  311. }
  312. #u42127 {
  313. border-width:0px;
  314. position:absolute;
  315. left:800px;
  316. top:87px;
  317. width:18px;
  318. height:1px;
  319. display:flex;
  320. -webkit-transform:rotate(90deg);
  321. -moz-transform:rotate(90deg);
  322. -ms-transform:rotate(90deg);
  323. transform:rotate(90deg);
  324. transition:none;
  325. }
  326. #u42127 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u42127_img {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:19px;
  339. height:2px;
  340. }
  341. #u42127_text {
  342. border-width:0px;
  343. word-wrap:break-word;
  344. text-transform:none;
  345. visibility:hidden;
  346. }
  347. #u42128_div {
  348. border-width:0px;
  349. position:absolute;
  350. left:0px;
  351. top:0px;
  352. width:375px;
  353. height:50px;
  354. background:inherit;
  355. background-color:rgba(255, 255, 255, 1);
  356. box-sizing:border-box;
  357. border-width:1px;
  358. border-style:solid;
  359. border-color:rgba(242, 242, 242, 1);
  360. border-radius:26px;
  361. border-top-left-radius:0px;
  362. border-top-right-radius:0px;
  363. filter:drop-shadow(none);
  364. transition:none;
  365. }
  366. #u42128 {
  367. border-width:0px;
  368. position:absolute;
  369. left:482px;
  370. top:788px;
  371. width:375px;
  372. height:50px;
  373. display:flex;
  374. transition:none;
  375. transform-origin:50% 50%;
  376. }
  377. #u42128 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u42128_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u42129 {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:0px;
  396. height:0px;
  397. }
  398. #u42130 {
  399. border-width:0px;
  400. position:absolute;
  401. left:522px;
  402. top:792px;
  403. width:24px;
  404. height:24px;
  405. display:flex;
  406. transition:none;
  407. font-size:8px;
  408. }
  409. #u42130 .text {
  410. position:absolute;
  411. align-self:center;
  412. padding:2px 2px 2px 2px;
  413. box-sizing:border-box;
  414. width:100%;
  415. }
  416. #u42130_img {
  417. border-width:0px;
  418. position:absolute;
  419. left:0px;
  420. top:0px;
  421. width:24px;
  422. height:24px;
  423. }
  424. #u42130_text {
  425. border-width:0px;
  426. word-wrap:break-word;
  427. text-transform:none;
  428. }
  429. #u42131_div {
  430. border-width:0px;
  431. position:absolute;
  432. left:0px;
  433. top:0px;
  434. width:25px;
  435. height:17px;
  436. background:inherit;
  437. background-color:rgba(255, 255, 255, 0);
  438. border-radius:0px;
  439. filter:drop-shadow(none);
  440. transition:none;
  441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  442. font-weight:400;
  443. font-style:normal;
  444. font-size:12px;
  445. }
  446. #u42131 {
  447. border-width:0px;
  448. position:absolute;
  449. left:522px;
  450. top:817px;
  451. width:25px;
  452. height:17px;
  453. display:flex;
  454. transition:none;
  455. transform-origin:50% 50%;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:12px;
  460. }
  461. #u42131 .text {
  462. position:absolute;
  463. align-self:flex-start;
  464. padding:0px 0px 0px 0px;
  465. box-sizing:border-box;
  466. width:100%;
  467. }
  468. #u42131_text {
  469. border-width:0px;
  470. white-space:nowrap;
  471. text-transform:none;
  472. }
  473. #u42132 {
  474. border-width:0px;
  475. position:absolute;
  476. left:0px;
  477. top:0px;
  478. width:0px;
  479. height:0px;
  480. }
  481. #u42133 {
  482. border-width:0px;
  483. position:absolute;
  484. left:792px;
  485. top:794px;
  486. width:24px;
  487. height:24px;
  488. display:flex;
  489. transition:none;
  490. font-size:8px;
  491. }
  492. #u42133 .text {
  493. position:absolute;
  494. align-self:center;
  495. padding:2px 2px 2px 2px;
  496. box-sizing:border-box;
  497. width:100%;
  498. }
  499. #u42133_img {
  500. border-width:0px;
  501. position:absolute;
  502. left:0px;
  503. top:0px;
  504. width:24px;
  505. height:24px;
  506. }
  507. #u42133_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. }
  512. #u42134_div {
  513. border-width:0px;
  514. position:absolute;
  515. left:0px;
  516. top:0px;
  517. width:25px;
  518. height:17px;
  519. background:inherit;
  520. background-color:rgba(255, 255, 255, 0);
  521. border-radius:0px;
  522. filter:drop-shadow(none);
  523. transition:none;
  524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  525. font-weight:400;
  526. font-style:normal;
  527. font-size:12px;
  528. }
  529. #u42134 {
  530. border-width:0px;
  531. position:absolute;
  532. left:792px;
  533. top:819px;
  534. width:25px;
  535. height:17px;
  536. display:flex;
  537. transition:none;
  538. transform-origin:50% 50%;
  539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  540. font-weight:400;
  541. font-style:normal;
  542. font-size:12px;
  543. }
  544. #u42134 .text {
  545. position:absolute;
  546. align-self:flex-start;
  547. padding:0px 0px 0px 0px;
  548. box-sizing:border-box;
  549. width:100%;
  550. }
  551. #u42134_text {
  552. border-width:0px;
  553. white-space:nowrap;
  554. text-transform:none;
  555. }
  556. #u42135_div {
  557. border-width:0px;
  558. position:absolute;
  559. left:0px;
  560. top:0px;
  561. width:375px;
  562. height:681px;
  563. background:inherit;
  564. background-color:rgba(242, 242, 242, 0.4627450980392157);
  565. border-radius:0px;
  566. filter:drop-shadow(none);
  567. transition:none;
  568. }
  569. #u42135 {
  570. border-width:0px;
  571. position:absolute;
  572. left:482px;
  573. top:107px;
  574. width:375px;
  575. height:681px;
  576. display:flex;
  577. transition:none;
  578. transform-origin:50% 50%;
  579. }
  580. #u42135 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u42135_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u42136 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u42137 {
  602. border-width:0px;
  603. position:absolute;
  604. left:704px;
  605. top:792px;
  606. width:24px;
  607. height:24px;
  608. display:flex;
  609. transition:none;
  610. font-size:8px;
  611. }
  612. #u42137 .text {
  613. position:absolute;
  614. align-self:center;
  615. padding:2px 2px 2px 2px;
  616. box-sizing:border-box;
  617. width:100%;
  618. }
  619. #u42137_img {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:24px;
  625. height:24px;
  626. }
  627. #u42137_text {
  628. border-width:0px;
  629. word-wrap:break-word;
  630. text-transform:none;
  631. }
  632. #u42138_div {
  633. border-width:0px;
  634. position:absolute;
  635. left:0px;
  636. top:0px;
  637. width:37px;
  638. height:17px;
  639. background:inherit;
  640. background-color:rgba(255, 255, 255, 0);
  641. border-radius:0px;
  642. filter:drop-shadow(none);
  643. transition:none;
  644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  645. font-weight:400;
  646. font-style:normal;
  647. font-size:12px;
  648. }
  649. #u42138 {
  650. border-width:0px;
  651. position:absolute;
  652. left:698px;
  653. top:817px;
  654. width:37px;
  655. height:17px;
  656. display:flex;
  657. transition:none;
  658. transform-origin:50% 50%;
  659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  660. font-weight:400;
  661. font-style:normal;
  662. font-size:12px;
  663. }
  664. #u42138 .text {
  665. position:absolute;
  666. align-self:flex-start;
  667. padding:0px 0px 0px 0px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u42138_text {
  672. border-width:0px;
  673. white-space:nowrap;
  674. text-transform:none;
  675. }
  676. #u42139 {
  677. border-width:0px;
  678. position:absolute;
  679. left:0px;
  680. top:0px;
  681. width:0px;
  682. height:0px;
  683. }
  684. #u42140 {
  685. border-width:0px;
  686. position:absolute;
  687. left:610px;
  688. top:792px;
  689. width:24px;
  690. height:24px;
  691. display:flex;
  692. transition:none;
  693. font-size:8px;
  694. }
  695. #u42140 .text {
  696. position:absolute;
  697. align-self:center;
  698. padding:2px 2px 2px 2px;
  699. box-sizing:border-box;
  700. width:100%;
  701. }
  702. #u42140_img {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:24px;
  708. height:24px;
  709. }
  710. #u42140_text {
  711. border-width:0px;
  712. word-wrap:break-word;
  713. text-transform:none;
  714. }
  715. #u42141_div {
  716. border-width:0px;
  717. position:absolute;
  718. left:0px;
  719. top:0px;
  720. width:37px;
  721. height:17px;
  722. background:inherit;
  723. background-color:rgba(255, 255, 255, 0);
  724. border-radius:0px;
  725. filter:drop-shadow(none);
  726. transition:none;
  727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:12px;
  731. }
  732. #u42141 {
  733. border-width:0px;
  734. position:absolute;
  735. left:604px;
  736. top:817px;
  737. width:37px;
  738. height:17px;
  739. display:flex;
  740. transition:none;
  741. transform-origin:50% 50%;
  742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  743. font-weight:400;
  744. font-style:normal;
  745. font-size:12px;
  746. }
  747. #u42141 .text {
  748. position:absolute;
  749. align-self:flex-start;
  750. padding:0px 0px 0px 0px;
  751. box-sizing:border-box;
  752. width:100%;
  753. }
  754. #u42141_text {
  755. border-width:0px;
  756. white-space:nowrap;
  757. text-transform:none;
  758. }
  759. #u42142_div {
  760. border-width:0px;
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:375px;
  765. height:732px;
  766. background:inherit;
  767. background-color:rgba(244, 244, 244, 1);
  768. box-sizing:border-box;
  769. border-width:1px;
  770. border-style:solid;
  771. border-color:rgba(242, 242, 242, 1);
  772. border-radius:26px;
  773. border-top-left-radius:0px;
  774. border-top-right-radius:0px;
  775. filter:drop-shadow(none);
  776. transition:none;
  777. }
  778. #u42142 {
  779. border-width:0px;
  780. position:absolute;
  781. left:482px;
  782. top:107px;
  783. width:375px;
  784. height:732px;
  785. display:flex;
  786. transition:none;
  787. transform-origin:50% 50%;
  788. }
  789. #u42142 .text {
  790. position:absolute;
  791. align-self:center;
  792. padding:2px 2px 2px 2px;
  793. box-sizing:border-box;
  794. width:100%;
  795. }
  796. #u42142_text {
  797. border-width:0px;
  798. word-wrap:break-word;
  799. text-transform:none;
  800. visibility:hidden;
  801. }
  802. #u42143 {
  803. border-width:0px;
  804. position:absolute;
  805. left:481px;
  806. top:24px;
  807. width:376px;
  808. height:818px;
  809. display:flex;
  810. transition:none;
  811. }
  812. #u42143 .text {
  813. position:absolute;
  814. align-self:center;
  815. padding:2px 2px 2px 2px;
  816. box-sizing:border-box;
  817. width:100%;
  818. }
  819. #u42143_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:376px;
  825. height:818px;
  826. }
  827. #u42143_text {
  828. border-width:0px;
  829. word-wrap:break-word;
  830. text-transform:none;
  831. visibility:hidden;
  832. }
  833. #u42144 {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:0px;
  839. height:0px;
  840. }
  841. #u42145_div {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:375px;
  847. height:40px;
  848. background:inherit;
  849. background-color:rgba(255, 255, 255, 1);
  850. border-left:0px;
  851. border-top:0px;
  852. border-right:0px;
  853. border-radius:0px;
  854. border-bottom-right-radius:0px;
  855. border-bottom-left-radius:0px;
  856. filter:drop-shadow(none);
  857. transition:none;
  858. }
  859. #u42145 {
  860. border-width:0px;
  861. position:absolute;
  862. left:482px;
  863. top:67px;
  864. width:375px;
  865. height:40px;
  866. display:flex;
  867. transition:none;
  868. transform-origin:50% 50%;
  869. }
  870. #u42145 .text {
  871. position:absolute;
  872. align-self:center;
  873. padding:2px 2px 2px 2px;
  874. box-sizing:border-box;
  875. width:100%;
  876. }
  877. #u42145_text {
  878. border-width:0px;
  879. word-wrap:break-word;
  880. text-transform:none;
  881. visibility:hidden;
  882. }
  883. #u42146 {
  884. border-width:0px;
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:0px;
  889. height:0px;
  890. }
  891. #u42147_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:88px;
  897. height:32px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 1);
  900. box-sizing:border-box;
  901. border-width:1px;
  902. border-style:solid;
  903. border-color:rgba(242, 242, 242, 1);
  904. border-radius:33px;
  905. filter:drop-shadow(none);
  906. transition:none;
  907. }
  908. #u42147 {
  909. border-width:0px;
  910. position:absolute;
  911. left:759px;
  912. top:69px;
  913. width:88px;
  914. height:32px;
  915. display:flex;
  916. transition:none;
  917. transform-origin:50% 50%;
  918. }
  919. #u42147 .text {
  920. position:absolute;
  921. align-self:center;
  922. padding:2px 2px 2px 2px;
  923. box-sizing:border-box;
  924. width:100%;
  925. }
  926. #u42147_text {
  927. border-width:0px;
  928. word-wrap:break-word;
  929. text-transform:none;
  930. visibility:hidden;
  931. }
  932. #u42148 {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:0px;
  938. height:0px;
  939. }
  940. #u42149 {
  941. border-width:0px;
  942. position:absolute;
  943. left:822px;
  944. top:76px;
  945. width:18px;
  946. height:18px;
  947. display:flex;
  948. transition:none;
  949. }
  950. #u42149 .text {
  951. position:absolute;
  952. align-self:center;
  953. padding:2px 2px 2px 2px;
  954. box-sizing:border-box;
  955. width:100%;
  956. }
  957. #u42149_img {
  958. border-width:0px;
  959. position:absolute;
  960. left:0px;
  961. top:0px;
  962. width:18px;
  963. height:18px;
  964. }
  965. #u42149_text {
  966. border-width:0px;
  967. word-wrap:break-word;
  968. text-transform:none;
  969. visibility:hidden;
  970. }
  971. #u42150 {
  972. border-width:0px;
  973. position:absolute;
  974. left:828px;
  975. top:82px;
  976. width:6px;
  977. height:6px;
  978. display:flex;
  979. transition:none;
  980. }
  981. #u42150 .text {
  982. position:absolute;
  983. align-self:center;
  984. padding:2px 2px 2px 2px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u42150_img {
  989. border-width:0px;
  990. position:absolute;
  991. left:0px;
  992. top:0px;
  993. width:6px;
  994. height:6px;
  995. }
  996. #u42150_text {
  997. border-width:0px;
  998. word-wrap:break-word;
  999. text-transform:none;
  1000. visibility:hidden;
  1001. }
  1002. #u42151 {
  1003. border-width:0px;
  1004. position:absolute;
  1005. left:0px;
  1006. top:0px;
  1007. width:0px;
  1008. height:0px;
  1009. }
  1010. #u42152 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:773px;
  1014. top:83px;
  1015. width:5px;
  1016. height:5px;
  1017. display:flex;
  1018. transition:none;
  1019. }
  1020. #u42152 .text {
  1021. position:absolute;
  1022. align-self:center;
  1023. padding:2px 2px 2px 2px;
  1024. box-sizing:border-box;
  1025. width:100%;
  1026. }
  1027. #u42152_img {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:5px;
  1033. height:5px;
  1034. }
  1035. #u42152_text {
  1036. border-width:0px;
  1037. word-wrap:break-word;
  1038. text-transform:none;
  1039. visibility:hidden;
  1040. }
  1041. #u42153 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:789px;
  1045. top:83px;
  1046. width:5px;
  1047. height:5px;
  1048. display:flex;
  1049. transition:none;
  1050. }
  1051. #u42153 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:2px 2px 2px 2px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u42153_img {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:0px;
  1062. top:0px;
  1063. width:5px;
  1064. height:5px;
  1065. }
  1066. #u42153_text {
  1067. border-width:0px;
  1068. word-wrap:break-word;
  1069. text-transform:none;
  1070. visibility:hidden;
  1071. }
  1072. #u42154 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:780px;
  1076. top:82px;
  1077. width:7px;
  1078. height:7px;
  1079. display:flex;
  1080. transition:none;
  1081. }
  1082. #u42154 .text {
  1083. position:absolute;
  1084. align-self:center;
  1085. padding:2px 2px 2px 2px;
  1086. box-sizing:border-box;
  1087. width:100%;
  1088. }
  1089. #u42154_img {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:0px;
  1093. top:0px;
  1094. width:7px;
  1095. height:7px;
  1096. }
  1097. #u42154_text {
  1098. border-width:0px;
  1099. word-wrap:break-word;
  1100. text-transform:none;
  1101. visibility:hidden;
  1102. }
  1103. #u42155 {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:797px;
  1107. top:85px;
  1108. width:18px;
  1109. height:1px;
  1110. display:flex;
  1111. -webkit-transform:rotate(90deg);
  1112. -moz-transform:rotate(90deg);
  1113. -ms-transform:rotate(90deg);
  1114. transform:rotate(90deg);
  1115. transition:none;
  1116. }
  1117. #u42155 .text {
  1118. position:absolute;
  1119. align-self:center;
  1120. padding:2px 2px 2px 2px;
  1121. box-sizing:border-box;
  1122. width:100%;
  1123. }
  1124. #u42155_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:19px;
  1130. height:2px;
  1131. }
  1132. #u42155_text {
  1133. border-width:0px;
  1134. word-wrap:break-word;
  1135. text-transform:none;
  1136. visibility:hidden;
  1137. }
  1138. #u42156_div {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:0px;
  1142. top:0px;
  1143. width:12px;
  1144. height:12px;
  1145. background:inherit;
  1146. background-color:rgba(255, 255, 255, 0);
  1147. box-sizing:border-box;
  1148. border-width:2px;
  1149. border-style:solid;
  1150. border-color:rgba(51, 51, 51, 1);
  1151. border-right:0px;
  1152. border-bottom:0px;
  1153. border-radius:0px;
  1154. border-top-right-radius:0px;
  1155. border-bottom-left-radius:0px;
  1156. filter:drop-shadow(none);
  1157. transition:none;
  1158. }
  1159. #u42156 {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:498px;
  1163. top:79px;
  1164. width:12px;
  1165. height:12px;
  1166. display:flex;
  1167. -webkit-transform:rotate(315deg);
  1168. -moz-transform:rotate(315deg);
  1169. -ms-transform:rotate(315deg);
  1170. transform:rotate(315deg);
  1171. transition:none;
  1172. transform-origin:50% 50%;
  1173. }
  1174. #u42156 .text {
  1175. position:absolute;
  1176. align-self:center;
  1177. padding:2px 2px 2px 2px;
  1178. box-sizing:border-box;
  1179. width:100%;
  1180. }
  1181. #u42156_text {
  1182. border-width:0px;
  1183. word-wrap:break-word;
  1184. text-transform:none;
  1185. visibility:hidden;
  1186. }
  1187. #u42157_div {
  1188. border-width:0px;
  1189. position:absolute;
  1190. left:0px;
  1191. top:0px;
  1192. width:73px;
  1193. height:25px;
  1194. background:inherit;
  1195. background-color:rgba(255, 255, 255, 0);
  1196. border-radius:0px;
  1197. filter:drop-shadow(none);
  1198. transition:none;
  1199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1200. font-weight:400;
  1201. font-style:normal;
  1202. font-size:18px;
  1203. }
  1204. #u42157 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:512px;
  1208. top:72px;
  1209. width:73px;
  1210. height:25px;
  1211. display:flex;
  1212. transition:none;
  1213. transform-origin:50% 50%;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. font-size:18px;
  1218. }
  1219. #u42157 .text {
  1220. position:absolute;
  1221. align-self:flex-start;
  1222. padding:0px 0px 0px 0px;
  1223. box-sizing:border-box;
  1224. width:100%;
  1225. }
  1226. #u42157_text {
  1227. border-width:0px;
  1228. white-space:nowrap;
  1229. text-transform:none;
  1230. }
  1231. #u42158 {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:482px;
  1235. top:24px;
  1236. width:375px;
  1237. height:44px;
  1238. display:flex;
  1239. transition:none;
  1240. }
  1241. #u42158 .text {
  1242. position:absolute;
  1243. align-self:center;
  1244. padding:2px 2px 2px 2px;
  1245. box-sizing:border-box;
  1246. width:100%;
  1247. }
  1248. #u42158_img {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:0px;
  1252. top:0px;
  1253. width:375px;
  1254. height:44px;
  1255. }
  1256. #u42158_text {
  1257. border-width:0px;
  1258. word-wrap:break-word;
  1259. text-transform:none;
  1260. visibility:hidden;
  1261. }
  1262. #u42159 {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:0px;
  1266. top:0px;
  1267. width:0px;
  1268. height:0px;
  1269. }
  1270. #u42160 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:915px;
  1274. top:0px;
  1275. width:433px;
  1276. height:865px;
  1277. }
  1278. #u42161 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:433px;
  1284. height:865px;
  1285. display:flex;
  1286. transition:none;
  1287. }
  1288. #u42161 .text {
  1289. position:absolute;
  1290. align-self:center;
  1291. padding:2px 2px 2px 2px;
  1292. box-sizing:border-box;
  1293. width:100%;
  1294. }
  1295. #u42161_img {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:0px;
  1299. top:0px;
  1300. width:433px;
  1301. height:865px;
  1302. }
  1303. #u42161_text {
  1304. border-width:0px;
  1305. word-wrap:break-word;
  1306. text-transform:none;
  1307. visibility:hidden;
  1308. }
  1309. #u42162_div {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:0px;
  1313. top:0px;
  1314. width:375px;
  1315. height:40px;
  1316. background:inherit;
  1317. background-color:rgba(255, 255, 255, 1);
  1318. box-sizing:border-box;
  1319. border-width:1px;
  1320. border-style:solid;
  1321. border-color:rgba(215, 215, 215, 1);
  1322. border-left:0px;
  1323. border-top:0px;
  1324. border-right:0px;
  1325. border-radius:0px;
  1326. border-bottom-right-radius:0px;
  1327. border-bottom-left-radius:0px;
  1328. filter:drop-shadow(none);
  1329. transition:none;
  1330. }
  1331. #u42162 {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:29px;
  1335. top:67px;
  1336. width:375px;
  1337. height:40px;
  1338. display:flex;
  1339. transition:none;
  1340. transform-origin:50% 50%;
  1341. }
  1342. #u42162 .text {
  1343. position:absolute;
  1344. align-self:center;
  1345. padding:2px 2px 2px 2px;
  1346. box-sizing:border-box;
  1347. width:100%;
  1348. }
  1349. #u42162_text {
  1350. border-width:0px;
  1351. word-wrap:break-word;
  1352. text-transform:none;
  1353. visibility:hidden;
  1354. }
  1355. #u42163 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:0px;
  1361. height:0px;
  1362. }
  1363. #u42164_div {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:88px;
  1369. height:32px;
  1370. background:inherit;
  1371. background-color:rgba(255, 255, 255, 1);
  1372. box-sizing:border-box;
  1373. border-width:1px;
  1374. border-style:solid;
  1375. border-color:rgba(242, 242, 242, 1);
  1376. border-radius:33px;
  1377. filter:drop-shadow(none);
  1378. transition:none;
  1379. }
  1380. #u42164 {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:309px;
  1384. top:71px;
  1385. width:88px;
  1386. height:32px;
  1387. display:flex;
  1388. transition:none;
  1389. transform-origin:50% 50%;
  1390. }
  1391. #u42164 .text {
  1392. position:absolute;
  1393. align-self:center;
  1394. padding:2px 2px 2px 2px;
  1395. box-sizing:border-box;
  1396. width:100%;
  1397. }
  1398. #u42164_text {
  1399. border-width:0px;
  1400. word-wrap:break-word;
  1401. text-transform:none;
  1402. visibility:hidden;
  1403. }
  1404. #u42165 {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:0px;
  1408. top:0px;
  1409. width:0px;
  1410. height:0px;
  1411. }
  1412. #u42166 {
  1413. border-width:0px;
  1414. position:absolute;
  1415. left:372px;
  1416. top:78px;
  1417. width:18px;
  1418. height:18px;
  1419. display:flex;
  1420. transition:none;
  1421. }
  1422. #u42166 .text {
  1423. position:absolute;
  1424. align-self:center;
  1425. padding:2px 2px 2px 2px;
  1426. box-sizing:border-box;
  1427. width:100%;
  1428. }
  1429. #u42166_img {
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:0px;
  1433. top:0px;
  1434. width:18px;
  1435. height:18px;
  1436. }
  1437. #u42166_text {
  1438. border-width:0px;
  1439. word-wrap:break-word;
  1440. text-transform:none;
  1441. visibility:hidden;
  1442. }
  1443. #u42167 {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:378px;
  1447. top:84px;
  1448. width:6px;
  1449. height:6px;
  1450. display:flex;
  1451. transition:none;
  1452. }
  1453. #u42167 .text {
  1454. position:absolute;
  1455. align-self:center;
  1456. padding:2px 2px 2px 2px;
  1457. box-sizing:border-box;
  1458. width:100%;
  1459. }
  1460. #u42167_img {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:6px;
  1466. height:6px;
  1467. }
  1468. #u42167_text {
  1469. border-width:0px;
  1470. word-wrap:break-word;
  1471. text-transform:none;
  1472. visibility:hidden;
  1473. }
  1474. #u42168 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:0px;
  1480. height:0px;
  1481. }
  1482. #u42169 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:323px;
  1486. top:85px;
  1487. width:5px;
  1488. height:5px;
  1489. display:flex;
  1490. transition:none;
  1491. }
  1492. #u42169 .text {
  1493. position:absolute;
  1494. align-self:center;
  1495. padding:2px 2px 2px 2px;
  1496. box-sizing:border-box;
  1497. width:100%;
  1498. }
  1499. #u42169_img {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:0px;
  1503. top:0px;
  1504. width:5px;
  1505. height:5px;
  1506. }
  1507. #u42169_text {
  1508. border-width:0px;
  1509. word-wrap:break-word;
  1510. text-transform:none;
  1511. visibility:hidden;
  1512. }
  1513. #u42170 {
  1514. border-width:0px;
  1515. position:absolute;
  1516. left:339px;
  1517. top:85px;
  1518. width:5px;
  1519. height:5px;
  1520. display:flex;
  1521. transition:none;
  1522. }
  1523. #u42170 .text {
  1524. position:absolute;
  1525. align-self:center;
  1526. padding:2px 2px 2px 2px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u42170_img {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:0px;
  1534. top:0px;
  1535. width:5px;
  1536. height:5px;
  1537. }
  1538. #u42170_text {
  1539. border-width:0px;
  1540. word-wrap:break-word;
  1541. text-transform:none;
  1542. visibility:hidden;
  1543. }
  1544. #u42171 {
  1545. border-width:0px;
  1546. position:absolute;
  1547. left:330px;
  1548. top:84px;
  1549. width:7px;
  1550. height:7px;
  1551. display:flex;
  1552. transition:none;
  1553. }
  1554. #u42171 .text {
  1555. position:absolute;
  1556. align-self:center;
  1557. padding:2px 2px 2px 2px;
  1558. box-sizing:border-box;
  1559. width:100%;
  1560. }
  1561. #u42171_img {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:0px;
  1565. top:0px;
  1566. width:7px;
  1567. height:7px;
  1568. }
  1569. #u42171_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u42172 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:347px;
  1579. top:87px;
  1580. width:18px;
  1581. height:1px;
  1582. display:flex;
  1583. -webkit-transform:rotate(90deg);
  1584. -moz-transform:rotate(90deg);
  1585. -ms-transform:rotate(90deg);
  1586. transform:rotate(90deg);
  1587. transition:none;
  1588. }
  1589. #u42172 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:2px 2px 2px 2px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u42172_img {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:0px;
  1600. top:0px;
  1601. width:19px;
  1602. height:2px;
  1603. }
  1604. #u42172_text {
  1605. border-width:0px;
  1606. word-wrap:break-word;
  1607. text-transform:none;
  1608. visibility:hidden;
  1609. }
  1610. #u42173 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:29px;
  1614. top:24px;
  1615. width:375px;
  1616. height:44px;
  1617. display:flex;
  1618. transition:none;
  1619. }
  1620. #u42173 .text {
  1621. position:absolute;
  1622. align-self:center;
  1623. padding:2px 2px 2px 2px;
  1624. box-sizing:border-box;
  1625. width:100%;
  1626. }
  1627. #u42173_img {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:375px;
  1633. height:44px;
  1634. }
  1635. #u42173_text {
  1636. border-width:0px;
  1637. word-wrap:break-word;
  1638. text-transform:none;
  1639. visibility:hidden;
  1640. }
  1641. #u42174_div {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:375px;
  1647. height:50px;
  1648. background:inherit;
  1649. background-color:rgba(255, 255, 255, 1);
  1650. box-sizing:border-box;
  1651. border-width:1px;
  1652. border-style:solid;
  1653. border-color:rgba(242, 242, 242, 1);
  1654. border-radius:26px;
  1655. border-top-left-radius:0px;
  1656. border-top-right-radius:0px;
  1657. filter:drop-shadow(none);
  1658. transition:none;
  1659. }
  1660. #u42174 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:29px;
  1664. top:788px;
  1665. width:375px;
  1666. height:50px;
  1667. display:flex;
  1668. transition:none;
  1669. transform-origin:50% 50%;
  1670. }
  1671. #u42174 .text {
  1672. position:absolute;
  1673. align-self:center;
  1674. padding:2px 2px 2px 2px;
  1675. box-sizing:border-box;
  1676. width:100%;
  1677. }
  1678. #u42174_text {
  1679. border-width:0px;
  1680. word-wrap:break-word;
  1681. text-transform:none;
  1682. visibility:hidden;
  1683. }
  1684. #u42175 {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:0px;
  1690. height:0px;
  1691. }
  1692. #u42176 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:69px;
  1696. top:792px;
  1697. width:24px;
  1698. height:24px;
  1699. display:flex;
  1700. transition:none;
  1701. font-size:8px;
  1702. }
  1703. #u42176 .text {
  1704. position:absolute;
  1705. align-self:center;
  1706. padding:2px 2px 2px 2px;
  1707. box-sizing:border-box;
  1708. width:100%;
  1709. }
  1710. #u42176_img {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:0px;
  1714. top:0px;
  1715. width:24px;
  1716. height:24px;
  1717. }
  1718. #u42176_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. }
  1723. #u42177_div {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:25px;
  1729. height:17px;
  1730. background:inherit;
  1731. background-color:rgba(255, 255, 255, 0);
  1732. border-radius:0px;
  1733. filter:drop-shadow(none);
  1734. transition:none;
  1735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:12px;
  1739. }
  1740. #u42177 {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:69px;
  1744. top:817px;
  1745. width:25px;
  1746. height:17px;
  1747. display:flex;
  1748. transition:none;
  1749. transform-origin:50% 50%;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:12px;
  1754. }
  1755. #u42177 .text {
  1756. position:absolute;
  1757. align-self:flex-start;
  1758. padding:0px 0px 0px 0px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u42177_text {
  1763. border-width:0px;
  1764. white-space:nowrap;
  1765. text-transform:none;
  1766. }
  1767. #u42178 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:0px;
  1773. height:0px;
  1774. }
  1775. #u42179 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:339px;
  1779. top:794px;
  1780. width:24px;
  1781. height:24px;
  1782. display:flex;
  1783. transition:none;
  1784. font-size:8px;
  1785. }
  1786. #u42179 .text {
  1787. position:absolute;
  1788. align-self:center;
  1789. padding:2px 2px 2px 2px;
  1790. box-sizing:border-box;
  1791. width:100%;
  1792. }
  1793. #u42179_img {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:24px;
  1799. height:24px;
  1800. }
  1801. #u42179_text {
  1802. border-width:0px;
  1803. word-wrap:break-word;
  1804. text-transform:none;
  1805. }
  1806. #u42180_div {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:25px;
  1812. height:17px;
  1813. background:inherit;
  1814. background-color:rgba(255, 255, 255, 0);
  1815. border-radius:0px;
  1816. filter:drop-shadow(none);
  1817. transition:none;
  1818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1819. font-weight:400;
  1820. font-style:normal;
  1821. font-size:12px;
  1822. }
  1823. #u42180 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:339px;
  1827. top:819px;
  1828. width:25px;
  1829. height:17px;
  1830. display:flex;
  1831. transition:none;
  1832. transform-origin:50% 50%;
  1833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1834. font-weight:400;
  1835. font-style:normal;
  1836. font-size:12px;
  1837. }
  1838. #u42180 .text {
  1839. position:absolute;
  1840. align-self:flex-start;
  1841. padding:0px 0px 0px 0px;
  1842. box-sizing:border-box;
  1843. width:100%;
  1844. }
  1845. #u42180_text {
  1846. border-width:0px;
  1847. white-space:nowrap;
  1848. text-transform:none;
  1849. }
  1850. #u42181_div {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:375px;
  1856. height:681px;
  1857. background:inherit;
  1858. background-color:rgba(242, 242, 242, 0.4627450980392157);
  1859. border-radius:0px;
  1860. filter:drop-shadow(none);
  1861. transition:none;
  1862. }
  1863. #u42181 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:29px;
  1867. top:107px;
  1868. width:375px;
  1869. height:681px;
  1870. display:flex;
  1871. transition:none;
  1872. transform-origin:50% 50%;
  1873. }
  1874. #u42181 .text {
  1875. position:absolute;
  1876. align-self:center;
  1877. padding:2px 2px 2px 2px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u42181_text {
  1882. border-width:0px;
  1883. word-wrap:break-word;
  1884. text-transform:none;
  1885. visibility:hidden;
  1886. }
  1887. #u42182 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:0px;
  1893. height:0px;
  1894. }
  1895. #u42183 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:251px;
  1899. top:792px;
  1900. width:24px;
  1901. height:24px;
  1902. display:flex;
  1903. transition:none;
  1904. font-size:8px;
  1905. }
  1906. #u42183 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:2px 2px 2px 2px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u42183_img {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:0px;
  1917. top:0px;
  1918. width:24px;
  1919. height:24px;
  1920. }
  1921. #u42183_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. }
  1926. #u42184_div {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:37px;
  1932. height:17px;
  1933. background:inherit;
  1934. background-color:rgba(255, 255, 255, 0);
  1935. border-radius:0px;
  1936. filter:drop-shadow(none);
  1937. transition:none;
  1938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1939. font-weight:400;
  1940. font-style:normal;
  1941. font-size:12px;
  1942. }
  1943. #u42184 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:245px;
  1947. top:817px;
  1948. width:37px;
  1949. height:17px;
  1950. display:flex;
  1951. transition:none;
  1952. transform-origin:50% 50%;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:12px;
  1957. }
  1958. #u42184 .text {
  1959. position:absolute;
  1960. align-self:flex-start;
  1961. padding:0px 0px 0px 0px;
  1962. box-sizing:border-box;
  1963. width:100%;
  1964. }
  1965. #u42184_text {
  1966. border-width:0px;
  1967. white-space:nowrap;
  1968. text-transform:none;
  1969. }
  1970. #u42185 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:0px;
  1976. height:0px;
  1977. }
  1978. #u42186 {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:157px;
  1982. top:792px;
  1983. width:24px;
  1984. height:24px;
  1985. display:flex;
  1986. transition:none;
  1987. font-size:8px;
  1988. }
  1989. #u42186 .text {
  1990. position:absolute;
  1991. align-self:center;
  1992. padding:2px 2px 2px 2px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u42186_img {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:24px;
  2002. height:24px;
  2003. }
  2004. #u42186_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. }
  2009. #u42187_div {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:37px;
  2015. height:17px;
  2016. background:inherit;
  2017. background-color:rgba(255, 255, 255, 0);
  2018. border-radius:0px;
  2019. filter:drop-shadow(none);
  2020. transition:none;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:12px;
  2025. }
  2026. #u42187 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:151px;
  2030. top:817px;
  2031. width:37px;
  2032. height:17px;
  2033. display:flex;
  2034. transition:none;
  2035. transform-origin:50% 50%;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. }
  2041. #u42187 .text {
  2042. position:absolute;
  2043. align-self:flex-start;
  2044. padding:0px 0px 0px 0px;
  2045. box-sizing:border-box;
  2046. width:100%;
  2047. }
  2048. #u42187_text {
  2049. border-width:0px;
  2050. white-space:nowrap;
  2051. text-transform:none;
  2052. }
  2053. #u42188_div {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:375px;
  2059. height:775px;
  2060. background:inherit;
  2061. background-color:rgba(255, 255, 255, 1);
  2062. border-top:0px;
  2063. border-radius:28px;
  2064. border-top-left-radius:0px;
  2065. border-top-right-radius:0px;
  2066. filter:drop-shadow(none);
  2067. transition:none;
  2068. }
  2069. #u42188 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:944px;
  2073. top:65px;
  2074. width:375px;
  2075. height:775px;
  2076. display:flex;
  2077. transition:none;
  2078. transform-origin:50% 50%;
  2079. }
  2080. #u42188 .text {
  2081. position:absolute;
  2082. align-self:center;
  2083. padding:2px 2px 2px 2px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u42188_text {
  2088. border-width:0px;
  2089. word-wrap:break-word;
  2090. text-transform:none;
  2091. visibility:hidden;
  2092. }
  2093. #u42189_div {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:97px;
  2099. height:30px;
  2100. background:inherit;
  2101. background-color:rgba(255, 255, 255, 0);
  2102. border-left:0px;
  2103. border-top:0px;
  2104. border-right:0px;
  2105. border-radius:0px;
  2106. border-bottom-right-radius:0px;
  2107. border-bottom-left-radius:0px;
  2108. filter:drop-shadow(none);
  2109. transition:none;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. line-height:30px;
  2114. }
  2115. #u42189 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:1083px;
  2119. top:226px;
  2120. width:97px;
  2121. height:30px;
  2122. display:flex;
  2123. transition:none;
  2124. transform-origin:50% 50%;
  2125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2126. font-weight:400;
  2127. font-style:normal;
  2128. line-height:30px;
  2129. }
  2130. #u42189 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:0px 0px 0px 0px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u42189_text {
  2138. border-width:0px;
  2139. white-space:nowrap;
  2140. text-transform:none;
  2141. }
  2142. #u42190_div {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:126px;
  2148. height:40px;
  2149. background:inherit;
  2150. background-color:rgba(255, 255, 255, 1);
  2151. box-sizing:border-box;
  2152. border-width:1px;
  2153. border-style:solid;
  2154. border-color:rgba(121, 121, 121, 1);
  2155. border-radius:63px;
  2156. filter:drop-shadow(none);
  2157. transition:none;
  2158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2159. font-weight:400;
  2160. font-style:normal;
  2161. font-size:14px;
  2162. }
  2163. #u42190 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:1142px;
  2167. top:354px;
  2168. width:126px;
  2169. height:40px;
  2170. display:flex;
  2171. transition:none;
  2172. transform-origin:50% 50%;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:14px;
  2177. }
  2178. #u42190 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:2px 2px 2px 2px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u42190_text {
  2186. border-width:0px;
  2187. word-wrap:break-word;
  2188. text-transform:none;
  2189. }
  2190. #u42191 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:1090px;
  2194. top:127px;
  2195. width:83px;
  2196. height:83px;
  2197. display:flex;
  2198. transition:none;
  2199. }
  2200. #u42191 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:2px 2px 2px 2px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u42191_img {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:83px;
  2213. height:83px;
  2214. }
  2215. #u42191_text {
  2216. border-width:0px;
  2217. word-wrap:break-word;
  2218. text-transform:none;
  2219. visibility:hidden;
  2220. }
  2221. #u42192_div {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:126px;
  2227. height:40px;
  2228. background:inherit;
  2229. background-color:rgba(255, 255, 255, 1);
  2230. box-sizing:border-box;
  2231. border-width:1px;
  2232. border-style:solid;
  2233. border-color:rgba(121, 121, 121, 1);
  2234. border-radius:63px;
  2235. filter:drop-shadow(none);
  2236. transition:none;
  2237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2238. font-weight:400;
  2239. font-style:normal;
  2240. font-size:14px;
  2241. }
  2242. #u42192 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:996px;
  2246. top:354px;
  2247. width:126px;
  2248. height:40px;
  2249. display:flex;
  2250. transition:none;
  2251. transform-origin:50% 50%;
  2252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2253. font-weight:400;
  2254. font-style:normal;
  2255. font-size:14px;
  2256. }
  2257. #u42192 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 2px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u42192_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. }
  2269. #u42193_div {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:30px;
  2275. height:30px;
  2276. background:inherit;
  2277. background-color:rgba(255, 255, 255, 0);
  2278. border-left:0px;
  2279. border-top:0px;
  2280. border-right:0px;
  2281. border-radius:0px;
  2282. border-bottom-right-radius:0px;
  2283. border-bottom-left-radius:0px;
  2284. filter:drop-shadow(none);
  2285. transition:none;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:18px;
  2290. text-align:center;
  2291. line-height:30px;
  2292. }
  2293. #u42193 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:954px;
  2297. top:75px;
  2298. width:30px;
  2299. height:30px;
  2300. display:flex;
  2301. transition:none;
  2302. transform-origin:50% 50%;
  2303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2304. font-weight:400;
  2305. font-style:normal;
  2306. font-size:18px;
  2307. text-align:center;
  2308. line-height:30px;
  2309. }
  2310. #u42193 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:0px 0px 0px 0px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u42193_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. }
  2322. #u42194 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:0px;
  2328. height:0px;
  2329. }
  2330. #u42195 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:956px;
  2334. top:402px;
  2335. width:350px;
  2336. height:40px;
  2337. display:flex;
  2338. transition:none;
  2339. }
  2340. #u42195 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 2px 2px 2px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u42195_img {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:350px;
  2353. height:40px;
  2354. }
  2355. #u42195_text {
  2356. border-width:0px;
  2357. word-wrap:break-word;
  2358. text-transform:none;
  2359. visibility:hidden;
  2360. }
  2361. #u42196 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:0px;
  2367. height:0px;
  2368. }
  2369. #u42197_div {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:0px;
  2373. top:0px;
  2374. width:221px;
  2375. height:30px;
  2376. background:inherit;
  2377. background-color:rgba(255, 255, 255, 0);
  2378. border-left:0px;
  2379. border-top:0px;
  2380. border-right:0px;
  2381. border-radius:0px;
  2382. border-bottom-right-radius:0px;
  2383. border-bottom-left-radius:0px;
  2384. filter:drop-shadow(none);
  2385. transition:none;
  2386. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2387. font-style:normal;
  2388. color:#FFFFFF;
  2389. text-align:center;
  2390. line-height:30px;
  2391. }
  2392. #u42197 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:1036px;
  2396. top:407px;
  2397. width:221px;
  2398. height:30px;
  2399. display:flex;
  2400. transition:none;
  2401. transform-origin:50% 50%;
  2402. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2403. font-style:normal;
  2404. color:#FFFFFF;
  2405. text-align:center;
  2406. line-height:30px;
  2407. }
  2408. #u42197 .text {
  2409. position:absolute;
  2410. align-self:center;
  2411. padding:0px 0px 0px 0px;
  2412. box-sizing:border-box;
  2413. width:100%;
  2414. }
  2415. #u42197_text {
  2416. border-width:0px;
  2417. white-space:nowrap;
  2418. text-transform:none;
  2419. }
  2420. #u42198 {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:1006px;
  2424. top:409px;
  2425. width:26px;
  2426. height:26px;
  2427. display:flex;
  2428. transition:none;
  2429. }
  2430. #u42198 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 2px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u42198_img {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:26px;
  2443. height:26px;
  2444. }
  2445. #u42198_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. }
  2450. #u42199_div {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:183px;
  2456. height:30px;
  2457. background:inherit;
  2458. background-color:rgba(255, 255, 255, 0);
  2459. border-left:0px;
  2460. border-top:0px;
  2461. border-right:0px;
  2462. border-radius:0px;
  2463. border-bottom-right-radius:0px;
  2464. border-bottom-left-radius:0px;
  2465. filter:drop-shadow(none);
  2466. transition:none;
  2467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2468. font-weight:400;
  2469. font-style:normal;
  2470. font-size:14px;
  2471. line-height:30px;
  2472. }
  2473. #u42199 {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:1039px;
  2477. top:284px;
  2478. width:183px;
  2479. height:30px;
  2480. display:flex;
  2481. transition:none;
  2482. transform-origin:50% 50%;
  2483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. font-size:14px;
  2487. line-height:30px;
  2488. }
  2489. #u42199 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:0px 0px 0px 0px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u42199_text {
  2497. border-width:0px;
  2498. white-space:nowrap;
  2499. text-transform:none;
  2500. }
  2501. #u42200_div {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:363px;
  2507. height:180px;
  2508. background:inherit;
  2509. background-color:rgba(255, 255, 255, 0);
  2510. border-left:0px;
  2511. border-top:0px;
  2512. border-right:0px;
  2513. border-radius:0px;
  2514. border-bottom-right-radius:0px;
  2515. border-bottom-left-radius:0px;
  2516. filter:drop-shadow(none);
  2517. transition:none;
  2518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:14px;
  2522. color:#D9001B;
  2523. line-height:30px;
  2524. }
  2525. #u42200 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:956px;
  2529. top:471px;
  2530. width:363px;
  2531. height:180px;
  2532. display:flex;
  2533. transition:none;
  2534. transform-origin:50% 50%;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:14px;
  2539. color:#D9001B;
  2540. line-height:30px;
  2541. }
  2542. #u42200 .text {
  2543. position:absolute;
  2544. align-self:flex-start;
  2545. padding:0px 0px 0px 0px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u42200_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. }
  2554. #u42201_div {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:415px;
  2560. height:25px;
  2561. background:inherit;
  2562. background-color:rgba(255, 255, 255, 0);
  2563. border-left:0px;
  2564. border-top:0px;
  2565. border-right:0px;
  2566. border-radius:0px;
  2567. border-bottom-right-radius:0px;
  2568. border-bottom-left-radius:0px;
  2569. filter:drop-shadow(none);
  2570. transition:none;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:12px;
  2575. color:#D9001B;
  2576. line-height:25px;
  2577. }
  2578. #u42201 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:29px;
  2582. top:1014px;
  2583. width:415px;
  2584. height:25px;
  2585. display:flex;
  2586. transition:none;
  2587. transform-origin:50% 50%;
  2588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:12px;
  2592. color:#D9001B;
  2593. line-height:25px;
  2594. }
  2595. #u42201 .text {
  2596. position:absolute;
  2597. align-self:flex-start;
  2598. padding:0px 0px 0px 0px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u42201_text {
  2603. border-width:0px;
  2604. white-space:nowrap;
  2605. text-transform:none;
  2606. }
  2607. #u42202_div {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:369px;
  2613. height:50px;
  2614. background:inherit;
  2615. background-color:rgba(255, 255, 255, 0);
  2616. border-left:0px;
  2617. border-top:0px;
  2618. border-right:0px;
  2619. border-radius:0px;
  2620. border-bottom-right-radius:0px;
  2621. border-bottom-left-radius:0px;
  2622. filter:drop-shadow(none);
  2623. transition:none;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:12px;
  2628. color:#D9001B;
  2629. line-height:25px;
  2630. }
  2631. #u42202 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:29px;
  2635. top:1281px;
  2636. width:369px;
  2637. height:50px;
  2638. display:flex;
  2639. transition:none;
  2640. transform-origin:50% 50%;
  2641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2642. font-weight:400;
  2643. font-style:normal;
  2644. font-size:12px;
  2645. color:#D9001B;
  2646. line-height:25px;
  2647. }
  2648. #u42202 .text {
  2649. position:absolute;
  2650. align-self:flex-start;
  2651. padding:0px 0px 0px 0px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u42202_text {
  2656. border-width:0px;
  2657. word-wrap:break-word;
  2658. text-transform:none;
  2659. }
  2660. #u42203 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:0px;
  2664. top:0px;
  2665. width:0px;
  2666. height:0px;
  2667. }
  2668. #u42204_div {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:0px;
  2672. top:0px;
  2673. width:346px;
  2674. height:219px;
  2675. background:inherit;
  2676. background-color:rgba(255, 255, 255, 1);
  2677. border-radius:9px;
  2678. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  2679. transition:none;
  2680. }
  2681. #u42204 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:459px;
  2685. top:1014px;
  2686. width:346px;
  2687. height:219px;
  2688. display:flex;
  2689. transition:none;
  2690. transform-origin:50% 50%;
  2691. }
  2692. #u42204 .text {
  2693. position:absolute;
  2694. align-self:center;
  2695. padding:2px 2px 2px 2px;
  2696. box-sizing:border-box;
  2697. width:100%;
  2698. }
  2699. #u42204_text {
  2700. border-width:0px;
  2701. word-wrap:break-word;
  2702. text-transform:none;
  2703. visibility:hidden;
  2704. }
  2705. #u42205_div {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:49px;
  2711. height:33px;
  2712. background:inherit;
  2713. background-color:rgba(255, 255, 255, 0);
  2714. border-radius:0px;
  2715. filter:drop-shadow(none);
  2716. transition:none;
  2717. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2718. font-weight:650;
  2719. font-style:normal;
  2720. font-size:24px;
  2721. text-align:center;
  2722. }
  2723. #u42205 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:608px;
  2727. top:1042px;
  2728. width:49px;
  2729. height:33px;
  2730. display:flex;
  2731. transition:none;
  2732. transform-origin:50% 50%;
  2733. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2734. font-weight:650;
  2735. font-style:normal;
  2736. font-size:24px;
  2737. text-align:center;
  2738. }
  2739. #u42205 .text {
  2740. position:absolute;
  2741. align-self:center;
  2742. padding:0px 0px 0px 0px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u42205_text {
  2747. border-width:0px;
  2748. white-space:nowrap;
  2749. text-transform:none;
  2750. }
  2751. #u42206_div {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:173px;
  2757. height:60px;
  2758. background:inherit;
  2759. background-color:rgba(255, 255, 255, 0);
  2760. box-sizing:border-box;
  2761. border-width:1px;
  2762. border-style:solid;
  2763. border-color:rgba(215, 215, 215, 1);
  2764. border-left:0px;
  2765. border-bottom:0px;
  2766. border-radius:0px;
  2767. border-top-left-radius:0px;
  2768. border-bottom-right-radius:0px;
  2769. filter:drop-shadow(none);
  2770. transition:none;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:22px;
  2775. color:#0099FF;
  2776. text-align:center;
  2777. }
  2778. #u42206 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:458px;
  2782. top:1173px;
  2783. width:173px;
  2784. height:60px;
  2785. display:flex;
  2786. transition:none;
  2787. transform-origin:50% 50%;
  2788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2789. font-weight:400;
  2790. font-style:normal;
  2791. font-size:22px;
  2792. color:#0099FF;
  2793. text-align:center;
  2794. }
  2795. #u42206 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:0px 0px 0px 0px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u42206_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. }
  2807. #u42207_div {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:0px;
  2811. top:0px;
  2812. width:173px;
  2813. height:60px;
  2814. background:inherit;
  2815. background-color:rgba(255, 255, 255, 0);
  2816. box-sizing:border-box;
  2817. border-width:1px;
  2818. border-style:solid;
  2819. border-color:rgba(215, 215, 215, 1);
  2820. border-left:0px;
  2821. border-right:0px;
  2822. border-bottom:0px;
  2823. border-radius:0px;
  2824. border-top-left-radius:0px;
  2825. border-top-right-radius:0px;
  2826. filter:drop-shadow(none);
  2827. transition:none;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:22px;
  2832. color:#0099FF;
  2833. text-align:center;
  2834. }
  2835. #u42207 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:631px;
  2839. top:1173px;
  2840. width:173px;
  2841. height:60px;
  2842. display:flex;
  2843. transition:none;
  2844. transform-origin:50% 50%;
  2845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2846. font-weight:400;
  2847. font-style:normal;
  2848. font-size:22px;
  2849. color:#0099FF;
  2850. text-align:center;
  2851. }
  2852. #u42207 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:0px 0px 0px 0px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u42207_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. }
  2864. #u42208_div {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:287px;
  2870. height:60px;
  2871. background:inherit;
  2872. background-color:rgba(255, 255, 255, 0);
  2873. border-radius:0px;
  2874. filter:drop-shadow(none);
  2875. transition:none;
  2876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:14px;
  2880. text-align:center;
  2881. }
  2882. #u42208 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:491px;
  2886. top:1087px;
  2887. width:287px;
  2888. height:60px;
  2889. display:flex;
  2890. transition:none;
  2891. transform-origin:50% 50%;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:14px;
  2896. text-align:center;
  2897. }
  2898. #u42208 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:0px 0px 0px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u42208_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. }
  2910. #u42209 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:0px;
  2916. height:0px;
  2917. }
  2918. #u42210_div {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:346px;
  2924. height:219px;
  2925. background:inherit;
  2926. background-color:rgba(255, 255, 255, 1);
  2927. border-radius:9px;
  2928. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  2929. transition:none;
  2930. }
  2931. #u42210 {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:30px;
  2935. top:1047px;
  2936. width:346px;
  2937. height:219px;
  2938. display:flex;
  2939. transition:none;
  2940. transform-origin:50% 50%;
  2941. }
  2942. #u42210 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 2px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u42210_text {
  2950. border-width:0px;
  2951. word-wrap:break-word;
  2952. text-transform:none;
  2953. visibility:hidden;
  2954. }
  2955. #u42211_div {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:49px;
  2961. height:33px;
  2962. background:inherit;
  2963. background-color:rgba(255, 255, 255, 0);
  2964. border-radius:0px;
  2965. filter:drop-shadow(none);
  2966. transition:none;
  2967. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2968. font-weight:650;
  2969. font-style:normal;
  2970. font-size:24px;
  2971. text-align:center;
  2972. }
  2973. #u42211 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:179px;
  2977. top:1085px;
  2978. width:49px;
  2979. height:33px;
  2980. display:flex;
  2981. transition:none;
  2982. transform-origin:50% 50%;
  2983. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2984. font-weight:650;
  2985. font-style:normal;
  2986. font-size:24px;
  2987. text-align:center;
  2988. }
  2989. #u42211 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:0px 0px 0px 0px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u42211_text {
  2997. border-width:0px;
  2998. white-space:nowrap;
  2999. text-transform:none;
  3000. }
  3001. #u42212_div {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:173px;
  3007. height:60px;
  3008. background:inherit;
  3009. background-color:rgba(255, 255, 255, 0);
  3010. box-sizing:border-box;
  3011. border-width:1px;
  3012. border-style:solid;
  3013. border-color:rgba(215, 215, 215, 1);
  3014. border-left:0px;
  3015. border-bottom:0px;
  3016. border-radius:0px;
  3017. border-top-left-radius:0px;
  3018. border-bottom-right-radius:0px;
  3019. filter:drop-shadow(none);
  3020. transition:none;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:22px;
  3025. color:#0099FF;
  3026. text-align:center;
  3027. }
  3028. #u42212 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:29px;
  3032. top:1206px;
  3033. width:173px;
  3034. height:60px;
  3035. display:flex;
  3036. transition:none;
  3037. transform-origin:50% 50%;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:22px;
  3042. color:#0099FF;
  3043. text-align:center;
  3044. }
  3045. #u42212 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:0px 0px 0px 0px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u42212_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. }
  3057. #u42213_div {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:173px;
  3063. height:60px;
  3064. background:inherit;
  3065. background-color:rgba(255, 255, 255, 0);
  3066. box-sizing:border-box;
  3067. border-width:1px;
  3068. border-style:solid;
  3069. border-color:rgba(215, 215, 215, 1);
  3070. border-left:0px;
  3071. border-right:0px;
  3072. border-bottom:0px;
  3073. border-radius:0px;
  3074. border-top-left-radius:0px;
  3075. border-top-right-radius:0px;
  3076. filter:drop-shadow(none);
  3077. transition:none;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:22px;
  3082. color:#0099FF;
  3083. text-align:center;
  3084. }
  3085. #u42213 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:202px;
  3089. top:1206px;
  3090. width:173px;
  3091. height:60px;
  3092. display:flex;
  3093. transition:none;
  3094. transform-origin:50% 50%;
  3095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3096. font-weight:400;
  3097. font-style:normal;
  3098. font-size:22px;
  3099. color:#0099FF;
  3100. text-align:center;
  3101. }
  3102. #u42213 .text {
  3103. position:absolute;
  3104. align-self:center;
  3105. padding:0px 0px 0px 0px;
  3106. box-sizing:border-box;
  3107. width:100%;
  3108. }
  3109. #u42213_text {
  3110. border-width:0px;
  3111. word-wrap:break-word;
  3112. text-transform:none;
  3113. }
  3114. #u42214_div {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:287px;
  3120. height:40px;
  3121. background:inherit;
  3122. background-color:rgba(255, 255, 255, 0);
  3123. border-radius:0px;
  3124. filter:drop-shadow(none);
  3125. transition:none;
  3126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3127. font-weight:400;
  3128. font-style:normal;
  3129. font-size:14px;
  3130. text-align:center;
  3131. }
  3132. #u42214 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:62px;
  3136. top:1140px;
  3137. width:287px;
  3138. height:40px;
  3139. display:flex;
  3140. transition:none;
  3141. transform-origin:50% 50%;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:14px;
  3146. text-align:center;
  3147. }
  3148. #u42214 .text {
  3149. position:absolute;
  3150. align-self:center;
  3151. padding:0px 0px 0px 0px;
  3152. box-sizing:border-box;
  3153. width:100%;
  3154. }
  3155. #u42214_text {
  3156. border-width:0px;
  3157. word-wrap:break-word;
  3158. text-transform:none;
  3159. }
  3160. #u42215_div {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:329px;
  3166. height:25px;
  3167. background:inherit;
  3168. background-color:rgba(255, 255, 255, 0);
  3169. border-left:0px;
  3170. border-top:0px;
  3171. border-right:0px;
  3172. border-radius:0px;
  3173. border-bottom-right-radius:0px;
  3174. border-bottom-left-radius:0px;
  3175. filter:drop-shadow(none);
  3176. transition:none;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:12px;
  3181. color:#D9001B;
  3182. line-height:25px;
  3183. }
  3184. #u42215 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:426px;
  3188. top:1287px;
  3189. width:329px;
  3190. height:25px;
  3191. display:flex;
  3192. transition:none;
  3193. transform-origin:50% 50%;
  3194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. color:#D9001B;
  3199. line-height:25px;
  3200. }
  3201. #u42215 .text {
  3202. position:absolute;
  3203. align-self:flex-start;
  3204. padding:0px 0px 0px 0px;
  3205. box-sizing:border-box;
  3206. width:100%;
  3207. }
  3208. #u42215_text {
  3209. border-width:0px;
  3210. word-wrap:break-word;
  3211. text-transform:none;
  3212. }
  3213. #u42216 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:433px;
  3219. height:865px;
  3220. }
  3221. #u42217 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:433px;
  3227. height:865px;
  3228. display:flex;
  3229. transition:none;
  3230. }
  3231. #u42217 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 2px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u42217_img {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:433px;
  3244. height:865px;
  3245. }
  3246. #u42217_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. visibility:hidden;
  3251. }
  3252. #u42218_div {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:375px;
  3258. height:40px;
  3259. background:inherit;
  3260. background-color:rgba(255, 255, 255, 1);
  3261. box-sizing:border-box;
  3262. border-width:1px;
  3263. border-style:solid;
  3264. border-color:rgba(215, 215, 215, 1);
  3265. border-left:0px;
  3266. border-top:0px;
  3267. border-right:0px;
  3268. border-radius:0px;
  3269. border-bottom-right-radius:0px;
  3270. border-bottom-left-radius:0px;
  3271. filter:drop-shadow(none);
  3272. transition:none;
  3273. }
  3274. #u42218 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:29px;
  3278. top:67px;
  3279. width:375px;
  3280. height:40px;
  3281. display:flex;
  3282. transition:none;
  3283. transform-origin:50% 50%;
  3284. }
  3285. #u42218 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 2px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u42218_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. visibility:hidden;
  3297. }
  3298. #u42219 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:0px;
  3304. height:0px;
  3305. }
  3306. #u42220_div {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:88px;
  3312. height:32px;
  3313. background:inherit;
  3314. background-color:rgba(255, 255, 255, 1);
  3315. box-sizing:border-box;
  3316. border-width:1px;
  3317. border-style:solid;
  3318. border-color:rgba(242, 242, 242, 1);
  3319. border-radius:33px;
  3320. filter:drop-shadow(none);
  3321. transition:none;
  3322. }
  3323. #u42220 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:309px;
  3327. top:71px;
  3328. width:88px;
  3329. height:32px;
  3330. display:flex;
  3331. transition:none;
  3332. transform-origin:50% 50%;
  3333. }
  3334. #u42220 .text {
  3335. position:absolute;
  3336. align-self:center;
  3337. padding:2px 2px 2px 2px;
  3338. box-sizing:border-box;
  3339. width:100%;
  3340. }
  3341. #u42220_text {
  3342. border-width:0px;
  3343. word-wrap:break-word;
  3344. text-transform:none;
  3345. visibility:hidden;
  3346. }
  3347. #u42221 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:0px;
  3353. height:0px;
  3354. }
  3355. #u42222 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:372px;
  3359. top:78px;
  3360. width:18px;
  3361. height:18px;
  3362. display:flex;
  3363. transition:none;
  3364. }
  3365. #u42222 .text {
  3366. position:absolute;
  3367. align-self:center;
  3368. padding:2px 2px 2px 2px;
  3369. box-sizing:border-box;
  3370. width:100%;
  3371. }
  3372. #u42222_img {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:18px;
  3378. height:18px;
  3379. }
  3380. #u42222_text {
  3381. border-width:0px;
  3382. word-wrap:break-word;
  3383. text-transform:none;
  3384. visibility:hidden;
  3385. }
  3386. #u42223 {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:378px;
  3390. top:84px;
  3391. width:6px;
  3392. height:6px;
  3393. display:flex;
  3394. transition:none;
  3395. }
  3396. #u42223 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 2px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u42223_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:6px;
  3409. height:6px;
  3410. }
  3411. #u42223_text {
  3412. border-width:0px;
  3413. word-wrap:break-word;
  3414. text-transform:none;
  3415. visibility:hidden;
  3416. }
  3417. #u42224 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:0px;
  3422. width:0px;
  3423. height:0px;
  3424. }
  3425. #u42225 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:323px;
  3429. top:85px;
  3430. width:5px;
  3431. height:5px;
  3432. display:flex;
  3433. transition:none;
  3434. }
  3435. #u42225 .text {
  3436. position:absolute;
  3437. align-self:center;
  3438. padding:2px 2px 2px 2px;
  3439. box-sizing:border-box;
  3440. width:100%;
  3441. }
  3442. #u42225_img {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:0px;
  3447. width:5px;
  3448. height:5px;
  3449. }
  3450. #u42225_text {
  3451. border-width:0px;
  3452. word-wrap:break-word;
  3453. text-transform:none;
  3454. visibility:hidden;
  3455. }
  3456. #u42226 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:339px;
  3460. top:85px;
  3461. width:5px;
  3462. height:5px;
  3463. display:flex;
  3464. transition:none;
  3465. }
  3466. #u42226 .text {
  3467. position:absolute;
  3468. align-self:center;
  3469. padding:2px 2px 2px 2px;
  3470. box-sizing:border-box;
  3471. width:100%;
  3472. }
  3473. #u42226_img {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:5px;
  3479. height:5px;
  3480. }
  3481. #u42226_text {
  3482. border-width:0px;
  3483. word-wrap:break-word;
  3484. text-transform:none;
  3485. visibility:hidden;
  3486. }
  3487. #u42227 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:330px;
  3491. top:84px;
  3492. width:7px;
  3493. height:7px;
  3494. display:flex;
  3495. transition:none;
  3496. }
  3497. #u42227 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 2px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u42227_img {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:7px;
  3510. height:7px;
  3511. }
  3512. #u42227_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u42228 {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:347px;
  3522. top:87px;
  3523. width:18px;
  3524. height:1px;
  3525. display:flex;
  3526. -webkit-transform:rotate(90deg);
  3527. -moz-transform:rotate(90deg);
  3528. -ms-transform:rotate(90deg);
  3529. transform:rotate(90deg);
  3530. transition:none;
  3531. }
  3532. #u42228 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 2px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u42228_img {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:19px;
  3545. height:2px;
  3546. }
  3547. #u42228_text {
  3548. border-width:0px;
  3549. word-wrap:break-word;
  3550. text-transform:none;
  3551. visibility:hidden;
  3552. }
  3553. #u42229 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:29px;
  3557. top:24px;
  3558. width:375px;
  3559. height:44px;
  3560. display:flex;
  3561. transition:none;
  3562. }
  3563. #u42229 .text {
  3564. position:absolute;
  3565. align-self:center;
  3566. padding:2px 2px 2px 2px;
  3567. box-sizing:border-box;
  3568. width:100%;
  3569. }
  3570. #u42229_img {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:375px;
  3576. height:44px;
  3577. }
  3578. #u42229_text {
  3579. border-width:0px;
  3580. word-wrap:break-word;
  3581. text-transform:none;
  3582. visibility:hidden;
  3583. }
  3584. #u42230_div {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:375px;
  3590. height:50px;
  3591. background:inherit;
  3592. background-color:rgba(255, 255, 255, 1);
  3593. box-sizing:border-box;
  3594. border-width:1px;
  3595. border-style:solid;
  3596. border-color:rgba(242, 242, 242, 1);
  3597. border-radius:26px;
  3598. border-top-left-radius:0px;
  3599. border-top-right-radius:0px;
  3600. filter:drop-shadow(none);
  3601. transition:none;
  3602. }
  3603. #u42230 {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:29px;
  3607. top:788px;
  3608. width:375px;
  3609. height:50px;
  3610. display:flex;
  3611. transition:none;
  3612. transform-origin:50% 50%;
  3613. }
  3614. #u42230 .text {
  3615. position:absolute;
  3616. align-self:center;
  3617. padding:2px 2px 2px 2px;
  3618. box-sizing:border-box;
  3619. width:100%;
  3620. }
  3621. #u42230_text {
  3622. border-width:0px;
  3623. word-wrap:break-word;
  3624. text-transform:none;
  3625. visibility:hidden;
  3626. }
  3627. #u42231 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:0px;
  3633. height:0px;
  3634. }
  3635. #u42232 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:69px;
  3639. top:792px;
  3640. width:24px;
  3641. height:24px;
  3642. display:flex;
  3643. transition:none;
  3644. font-size:8px;
  3645. }
  3646. #u42232 .text {
  3647. position:absolute;
  3648. align-self:center;
  3649. padding:2px 2px 2px 2px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u42232_img {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:24px;
  3659. height:24px;
  3660. }
  3661. #u42232_text {
  3662. border-width:0px;
  3663. word-wrap:break-word;
  3664. text-transform:none;
  3665. }
  3666. #u42233_div {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:25px;
  3672. height:17px;
  3673. background:inherit;
  3674. background-color:rgba(255, 255, 255, 0);
  3675. border-radius:0px;
  3676. filter:drop-shadow(none);
  3677. transition:none;
  3678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:12px;
  3682. }
  3683. #u42233 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:69px;
  3687. top:817px;
  3688. width:25px;
  3689. height:17px;
  3690. display:flex;
  3691. transition:none;
  3692. transform-origin:50% 50%;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. }
  3698. #u42233 .text {
  3699. position:absolute;
  3700. align-self:flex-start;
  3701. padding:0px 0px 0px 0px;
  3702. box-sizing:border-box;
  3703. width:100%;
  3704. }
  3705. #u42233_text {
  3706. border-width:0px;
  3707. white-space:nowrap;
  3708. text-transform:none;
  3709. }
  3710. #u42234 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:0px;
  3714. top:0px;
  3715. width:0px;
  3716. height:0px;
  3717. }
  3718. #u42235 {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:339px;
  3722. top:794px;
  3723. width:24px;
  3724. height:24px;
  3725. display:flex;
  3726. transition:none;
  3727. font-size:8px;
  3728. }
  3729. #u42235 .text {
  3730. position:absolute;
  3731. align-self:center;
  3732. padding:2px 2px 2px 2px;
  3733. box-sizing:border-box;
  3734. width:100%;
  3735. }
  3736. #u42235_img {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:24px;
  3742. height:24px;
  3743. }
  3744. #u42235_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. }
  3749. #u42236_div {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:25px;
  3755. height:17px;
  3756. background:inherit;
  3757. background-color:rgba(255, 255, 255, 0);
  3758. border-radius:0px;
  3759. filter:drop-shadow(none);
  3760. transition:none;
  3761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3762. font-weight:400;
  3763. font-style:normal;
  3764. font-size:12px;
  3765. }
  3766. #u42236 {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:339px;
  3770. top:819px;
  3771. width:25px;
  3772. height:17px;
  3773. display:flex;
  3774. transition:none;
  3775. transform-origin:50% 50%;
  3776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3777. font-weight:400;
  3778. font-style:normal;
  3779. font-size:12px;
  3780. }
  3781. #u42236 .text {
  3782. position:absolute;
  3783. align-self:flex-start;
  3784. padding:0px 0px 0px 0px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u42236_text {
  3789. border-width:0px;
  3790. white-space:nowrap;
  3791. text-transform:none;
  3792. }
  3793. #u42237_div {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:375px;
  3799. height:681px;
  3800. background:inherit;
  3801. background-color:rgba(242, 242, 242, 0.4627450980392157);
  3802. border-radius:0px;
  3803. filter:drop-shadow(none);
  3804. transition:none;
  3805. }
  3806. #u42237 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:29px;
  3810. top:107px;
  3811. width:375px;
  3812. height:681px;
  3813. display:flex;
  3814. transition:none;
  3815. transform-origin:50% 50%;
  3816. }
  3817. #u42237 .text {
  3818. position:absolute;
  3819. align-self:center;
  3820. padding:2px 2px 2px 2px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u42237_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. visibility:hidden;
  3829. }
  3830. #u42238 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:0px;
  3836. height:0px;
  3837. }
  3838. #u42239 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:251px;
  3842. top:792px;
  3843. width:24px;
  3844. height:24px;
  3845. display:flex;
  3846. transition:none;
  3847. font-size:8px;
  3848. }
  3849. #u42239 .text {
  3850. position:absolute;
  3851. align-self:center;
  3852. padding:2px 2px 2px 2px;
  3853. box-sizing:border-box;
  3854. width:100%;
  3855. }
  3856. #u42239_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:24px;
  3862. height:24px;
  3863. }
  3864. #u42239_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. }
  3869. #u42240_div {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:37px;
  3875. height:17px;
  3876. background:inherit;
  3877. background-color:rgba(255, 255, 255, 0);
  3878. border-radius:0px;
  3879. filter:drop-shadow(none);
  3880. transition:none;
  3881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:12px;
  3885. }
  3886. #u42240 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:245px;
  3890. top:817px;
  3891. width:37px;
  3892. height:17px;
  3893. display:flex;
  3894. transition:none;
  3895. transform-origin:50% 50%;
  3896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3897. font-weight:400;
  3898. font-style:normal;
  3899. font-size:12px;
  3900. }
  3901. #u42240 .text {
  3902. position:absolute;
  3903. align-self:flex-start;
  3904. padding:0px 0px 0px 0px;
  3905. box-sizing:border-box;
  3906. width:100%;
  3907. }
  3908. #u42240_text {
  3909. border-width:0px;
  3910. white-space:nowrap;
  3911. text-transform:none;
  3912. }
  3913. #u42241 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:0px;
  3919. height:0px;
  3920. }
  3921. #u42242 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:157px;
  3925. top:792px;
  3926. width:24px;
  3927. height:24px;
  3928. display:flex;
  3929. transition:none;
  3930. font-size:8px;
  3931. }
  3932. #u42242 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:2px 2px 2px 2px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u42242_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:24px;
  3945. height:24px;
  3946. }
  3947. #u42242_text {
  3948. border-width:0px;
  3949. word-wrap:break-word;
  3950. text-transform:none;
  3951. }
  3952. #u42243_div {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:37px;
  3958. height:17px;
  3959. background:inherit;
  3960. background-color:rgba(255, 255, 255, 0);
  3961. border-radius:0px;
  3962. filter:drop-shadow(none);
  3963. transition:none;
  3964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:12px;
  3968. }
  3969. #u42243 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:151px;
  3973. top:817px;
  3974. width:37px;
  3975. height:17px;
  3976. display:flex;
  3977. transition:none;
  3978. transform-origin:50% 50%;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:12px;
  3983. }
  3984. #u42243 .text {
  3985. position:absolute;
  3986. align-self:flex-start;
  3987. padding:0px 0px 0px 0px;
  3988. box-sizing:border-box;
  3989. width:100%;
  3990. }
  3991. #u42243_text {
  3992. border-width:0px;
  3993. white-space:nowrap;
  3994. text-transform:none;
  3995. }
  3996. #u42244_div {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:375px;
  4002. height:794px;
  4003. background:inherit;
  4004. background-color:rgba(242, 242, 242, 1);
  4005. box-sizing:border-box;
  4006. border-width:1px;
  4007. border-style:solid;
  4008. border-color:rgba(215, 215, 215, 1);
  4009. border-radius:21px;
  4010. border-top-left-radius:0px;
  4011. border-top-right-radius:0px;
  4012. filter:drop-shadow(none);
  4013. transition:none;
  4014. }
  4015. #u42244 {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:29px;
  4019. top:107px;
  4020. width:375px;
  4021. height:794px;
  4022. display:flex;
  4023. transition:none;
  4024. transform-origin:50% 50%;
  4025. }
  4026. #u42244 .text {
  4027. position:absolute;
  4028. align-self:center;
  4029. padding:2px 2px 2px 2px;
  4030. box-sizing:border-box;
  4031. width:100%;
  4032. }
  4033. #u42244_text {
  4034. border-width:0px;
  4035. word-wrap:break-word;
  4036. text-transform:none;
  4037. visibility:hidden;
  4038. }
  4039. #u42245 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:39px;
  4043. top:79px;
  4044. width:11px;
  4045. height:18px;
  4046. display:flex;
  4047. transition:none;
  4048. }
  4049. #u42245 .text {
  4050. position:absolute;
  4051. align-self:center;
  4052. padding:2px 2px 2px 2px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u42245_img {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:11px;
  4062. height:18px;
  4063. }
  4064. #u42245_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. visibility:hidden;
  4069. }
  4070. #u42246_div {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:57px;
  4076. height:30px;
  4077. background:inherit;
  4078. background-color:rgba(255, 255, 255, 0);
  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. filter:drop-shadow(none);
  4086. transition:none;
  4087. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4088. font-weight:500;
  4089. font-style:normal;
  4090. font-size:14px;
  4091. line-height:30px;
  4092. }
  4093. #u42246 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:59px;
  4097. top:73px;
  4098. width:57px;
  4099. height:30px;
  4100. display:flex;
  4101. transition:none;
  4102. transform-origin:50% 50%;
  4103. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4104. font-weight:500;
  4105. font-style:normal;
  4106. font-size:14px;
  4107. line-height:30px;
  4108. }
  4109. #u42246 .text {
  4110. position:absolute;
  4111. align-self:flex-start;
  4112. padding:0px 0px 0px 0px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u42246_text {
  4117. border-width:0px;
  4118. white-space:nowrap;
  4119. text-transform:none;
  4120. }
  4121. #u42247_div {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:375px;
  4127. height:727px;
  4128. background:inherit;
  4129. background-color:rgba(255, 255, 255, 1);
  4130. border-radius:4px;
  4131. filter:drop-shadow(none);
  4132. transition:none;
  4133. }
  4134. #u42247 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:29px;
  4138. top:197px;
  4139. width:375px;
  4140. height:727px;
  4141. display:flex;
  4142. transition:none;
  4143. transform-origin:50% 50%;
  4144. }
  4145. #u42247 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:2px 2px 2px 2px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u42247_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. visibility:hidden;
  4157. }
  4158. #u42248 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:0px;
  4164. height:0px;
  4165. }
  4166. #u42249 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:0px;
  4172. height:0px;
  4173. }
  4174. #u42250 {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:383px;
  4178. top:270px;
  4179. width:7px;
  4180. height:12px;
  4181. display:flex;
  4182. -webkit-transform:rotate(180deg);
  4183. -moz-transform:rotate(180deg);
  4184. -ms-transform:rotate(180deg);
  4185. transform:rotate(180deg);
  4186. transition:none;
  4187. }
  4188. #u42250 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 2px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u42250_img {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:7px;
  4201. height:12px;
  4202. }
  4203. #u42250_text {
  4204. border-width:0px;
  4205. word-wrap:break-word;
  4206. text-transform:none;
  4207. visibility:hidden;
  4208. }
  4209. #u42251_div {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:235px;
  4215. height:40px;
  4216. background:inherit;
  4217. background-color:rgba(255, 255, 255, 0);
  4218. border-left:0px;
  4219. border-top:0px;
  4220. border-right:0px;
  4221. border-radius:0px;
  4222. border-bottom-right-radius:0px;
  4223. border-bottom-left-radius:0px;
  4224. filter:drop-shadow(none);
  4225. transition:none;
  4226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:14px;
  4230. color:#AAAAAA;
  4231. line-height:40px;
  4232. }
  4233. #u42251 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:48px;
  4237. top:256px;
  4238. width:235px;
  4239. height:40px;
  4240. display:flex;
  4241. transition:none;
  4242. transform-origin:50% 50%;
  4243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4244. font-weight:400;
  4245. font-style:normal;
  4246. font-size:14px;
  4247. color:#AAAAAA;
  4248. line-height:40px;
  4249. }
  4250. #u42251 .text {
  4251. position:absolute;
  4252. align-self:flex-start;
  4253. padding:0px 0px 0px 0px;
  4254. box-sizing:border-box;
  4255. width:100%;
  4256. }
  4257. #u42251_text {
  4258. border-width:0px;
  4259. word-wrap:break-word;
  4260. text-transform:none;
  4261. }
  4262. #u42252_div {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:64px;
  4268. height:40px;
  4269. background:inherit;
  4270. background-color:rgba(255, 255, 255, 0);
  4271. border-left:0px;
  4272. border-top:0px;
  4273. border-right:0px;
  4274. border-radius:0px;
  4275. border-bottom-right-radius:0px;
  4276. border-bottom-left-radius:0px;
  4277. filter:drop-shadow(none);
  4278. transition:none;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:14px;
  4283. line-height:40px;
  4284. }
  4285. #u42252 {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:48px;
  4289. top:216px;
  4290. width:64px;
  4291. height:40px;
  4292. display:flex;
  4293. transition:none;
  4294. transform-origin:50% 50%;
  4295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:14px;
  4299. line-height:40px;
  4300. }
  4301. #u42252 .text {
  4302. position:absolute;
  4303. align-self:flex-start;
  4304. padding:0px 0px 0px 0px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u42252_text {
  4309. border-width:0px;
  4310. white-space:nowrap;
  4311. text-transform:none;
  4312. }
  4313. #u42253 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:0px;
  4319. height:0px;
  4320. }
  4321. #u42254 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:0px;
  4327. height:0px;
  4328. }
  4329. #u42255_div {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:235px;
  4335. height:40px;
  4336. background:inherit;
  4337. background-color:rgba(255, 255, 255, 0);
  4338. border-left:0px;
  4339. border-top:0px;
  4340. border-right:0px;
  4341. border-radius:0px;
  4342. border-bottom-right-radius:0px;
  4343. border-bottom-left-radius:0px;
  4344. filter:drop-shadow(none);
  4345. transition:none;
  4346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4347. font-weight:400;
  4348. font-style:normal;
  4349. font-size:14px;
  4350. color:#AAAAAA;
  4351. line-height:40px;
  4352. }
  4353. #u42255 {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:48px;
  4357. top:336px;
  4358. width:235px;
  4359. height:40px;
  4360. display:flex;
  4361. transition:none;
  4362. transform-origin:50% 50%;
  4363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4364. font-weight:400;
  4365. font-style:normal;
  4366. font-size:14px;
  4367. color:#AAAAAA;
  4368. line-height:40px;
  4369. }
  4370. #u42255 .text {
  4371. position:absolute;
  4372. align-self:flex-start;
  4373. padding:0px 0px 0px 0px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u42255_text {
  4378. border-width:0px;
  4379. word-wrap:break-word;
  4380. text-transform:none;
  4381. }
  4382. #u42256_div {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:36px;
  4388. height:40px;
  4389. background:inherit;
  4390. background-color:rgba(255, 255, 255, 0);
  4391. border-left:0px;
  4392. border-top:0px;
  4393. border-right:0px;
  4394. border-radius:0px;
  4395. border-bottom-right-radius:0px;
  4396. border-bottom-left-radius:0px;
  4397. filter:drop-shadow(none);
  4398. transition:none;
  4399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4400. font-weight:400;
  4401. font-style:normal;
  4402. font-size:14px;
  4403. line-height:40px;
  4404. }
  4405. #u42256 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:48px;
  4409. top:296px;
  4410. width:36px;
  4411. height:40px;
  4412. display:flex;
  4413. transition:none;
  4414. transform-origin:50% 50%;
  4415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:14px;
  4419. line-height:40px;
  4420. }
  4421. #u42256 .text {
  4422. position:absolute;
  4423. align-self:flex-start;
  4424. padding:0px 0px 0px 0px;
  4425. box-sizing:border-box;
  4426. width:100%;
  4427. }
  4428. #u42256_text {
  4429. border-width:0px;
  4430. white-space:nowrap;
  4431. text-transform:none;
  4432. }
  4433. #u42257 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:0px;
  4439. height:0px;
  4440. }
  4441. #u42258 {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:0px;
  4447. height:0px;
  4448. }
  4449. #u42259 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:383px;
  4453. top:511px;
  4454. width:7px;
  4455. height:12px;
  4456. display:flex;
  4457. -webkit-transform:rotate(180deg);
  4458. -moz-transform:rotate(180deg);
  4459. -ms-transform:rotate(180deg);
  4460. transform:rotate(180deg);
  4461. transition:none;
  4462. }
  4463. #u42259 .text {
  4464. position:absolute;
  4465. align-self:center;
  4466. padding:2px 2px 2px 2px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u42259_img {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:7px;
  4476. height:12px;
  4477. }
  4478. #u42259_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u42260_div {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:235px;
  4490. height:40px;
  4491. background:inherit;
  4492. background-color:rgba(255, 255, 255, 0);
  4493. border-left:0px;
  4494. border-top:0px;
  4495. border-right:0px;
  4496. border-radius:0px;
  4497. border-bottom-right-radius:0px;
  4498. border-bottom-left-radius:0px;
  4499. filter:drop-shadow(none);
  4500. transition:none;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:14px;
  4505. color:#AAAAAA;
  4506. line-height:40px;
  4507. }
  4508. #u42260 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:48px;
  4512. top:497px;
  4513. width:235px;
  4514. height:40px;
  4515. display:flex;
  4516. transition:none;
  4517. transform-origin:50% 50%;
  4518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4519. font-weight:400;
  4520. font-style:normal;
  4521. font-size:14px;
  4522. color:#AAAAAA;
  4523. line-height:40px;
  4524. }
  4525. #u42260 .text {
  4526. position:absolute;
  4527. align-self:flex-start;
  4528. padding:0px 0px 0px 0px;
  4529. box-sizing:border-box;
  4530. width:100%;
  4531. }
  4532. #u42260_text {
  4533. border-width:0px;
  4534. word-wrap:break-word;
  4535. text-transform:none;
  4536. }
  4537. #u42261_div {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:64px;
  4543. height:40px;
  4544. background:inherit;
  4545. background-color:rgba(255, 255, 255, 0);
  4546. border-left:0px;
  4547. border-top:0px;
  4548. border-right:0px;
  4549. border-radius:0px;
  4550. border-bottom-right-radius:0px;
  4551. border-bottom-left-radius:0px;
  4552. filter:drop-shadow(none);
  4553. transition:none;
  4554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4555. font-weight:400;
  4556. font-style:normal;
  4557. font-size:14px;
  4558. line-height:40px;
  4559. }
  4560. #u42261 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:48px;
  4564. top:457px;
  4565. width:64px;
  4566. height:40px;
  4567. display:flex;
  4568. transition:none;
  4569. transform-origin:50% 50%;
  4570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:14px;
  4574. line-height:40px;
  4575. }
  4576. #u42261 .text {
  4577. position:absolute;
  4578. align-self:flex-start;
  4579. padding:0px 0px 0px 0px;
  4580. box-sizing:border-box;
  4581. width:100%;
  4582. }
  4583. #u42261_text {
  4584. border-width:0px;
  4585. white-space:nowrap;
  4586. text-transform:none;
  4587. }
  4588. #u42262 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:0px;
  4594. height:0px;
  4595. }
  4596. #u42263 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:0px;
  4600. top:0px;
  4601. width:0px;
  4602. height:0px;
  4603. }
  4604. #u42264_div {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:235px;
  4610. height:40px;
  4611. background:inherit;
  4612. background-color:rgba(255, 255, 255, 0);
  4613. border-left:0px;
  4614. border-top:0px;
  4615. border-right:0px;
  4616. border-radius:0px;
  4617. border-bottom-right-radius:0px;
  4618. border-bottom-left-radius:0px;
  4619. filter:drop-shadow(none);
  4620. transition:none;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:14px;
  4625. color:#AAAAAA;
  4626. line-height:40px;
  4627. }
  4628. #u42264 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:48px;
  4632. top:577px;
  4633. width:235px;
  4634. height:40px;
  4635. display:flex;
  4636. transition:none;
  4637. transform-origin:50% 50%;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:14px;
  4642. color:#AAAAAA;
  4643. line-height:40px;
  4644. }
  4645. #u42264 .text {
  4646. position:absolute;
  4647. align-self:flex-start;
  4648. padding:0px 0px 0px 0px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u42264_text {
  4653. border-width:0px;
  4654. word-wrap:break-word;
  4655. text-transform:none;
  4656. }
  4657. #u42265_div {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:57px;
  4663. height:40px;
  4664. background:inherit;
  4665. background-color:rgba(255, 255, 255, 0);
  4666. border-left:0px;
  4667. border-top:0px;
  4668. border-right:0px;
  4669. border-radius:0px;
  4670. border-bottom-right-radius:0px;
  4671. border-bottom-left-radius:0px;
  4672. filter:drop-shadow(none);
  4673. transition:none;
  4674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:14px;
  4678. line-height:40px;
  4679. }
  4680. #u42265 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:48px;
  4684. top:537px;
  4685. width:57px;
  4686. height:40px;
  4687. display:flex;
  4688. transition:none;
  4689. transform-origin:50% 50%;
  4690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4691. font-weight:400;
  4692. font-style:normal;
  4693. font-size:14px;
  4694. line-height:40px;
  4695. }
  4696. #u42265 .text {
  4697. position:absolute;
  4698. align-self:flex-start;
  4699. padding:0px 0px 0px 0px;
  4700. box-sizing:border-box;
  4701. width:100%;
  4702. }
  4703. #u42265_text {
  4704. border-width:0px;
  4705. white-space:nowrap;
  4706. text-transform:none;
  4707. }
  4708. #u42266 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:0px;
  4714. height:0px;
  4715. }
  4716. #u42267_div {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:64px;
  4722. height:40px;
  4723. background:inherit;
  4724. background-color:rgba(255, 255, 255, 0);
  4725. border-left:0px;
  4726. border-top:0px;
  4727. border-right:0px;
  4728. border-radius:0px;
  4729. border-bottom-right-radius:0px;
  4730. border-bottom-left-radius:0px;
  4731. filter:drop-shadow(none);
  4732. transition:none;
  4733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:14px;
  4737. line-height:40px;
  4738. }
  4739. #u42267 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:48px;
  4743. top:617px;
  4744. width:64px;
  4745. height:40px;
  4746. display:flex;
  4747. transition:none;
  4748. transform-origin:50% 50%;
  4749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:14px;
  4753. line-height:40px;
  4754. }
  4755. #u42267 .text {
  4756. position:absolute;
  4757. align-self:flex-start;
  4758. padding:0px 0px 0px 0px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u42267_text {
  4763. border-width:0px;
  4764. white-space:nowrap;
  4765. text-transform:none;
  4766. }
  4767. #u42268 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:48px;
  4771. top:657px;
  4772. width:331px;
  4773. height:110px;
  4774. display:flex;
  4775. transition:none;
  4776. }
  4777. #u42268 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:2px 2px 2px 2px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u42268_img {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:0px;
  4788. top:0px;
  4789. width:331px;
  4790. height:110px;
  4791. }
  4792. #u42268_text {
  4793. border-width:0px;
  4794. word-wrap:break-word;
  4795. text-transform:none;
  4796. visibility:hidden;
  4797. }
  4798. #u42269_div {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:137px;
  4804. height:30px;
  4805. background:inherit;
  4806. background-color:rgba(255, 255, 255, 0);
  4807. border-left:0px;
  4808. border-top:0px;
  4809. border-right:0px;
  4810. border-radius:0px;
  4811. border-bottom-right-radius:0px;
  4812. border-bottom-left-radius:0px;
  4813. filter:drop-shadow(none);
  4814. transition:none;
  4815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4816. font-weight:400;
  4817. font-style:normal;
  4818. font-size:11px;
  4819. color:#D9001B;
  4820. line-height:30px;
  4821. }
  4822. #u42269 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:139px;
  4826. top:628px;
  4827. width:137px;
  4828. height:30px;
  4829. display:flex;
  4830. transition:none;
  4831. transform-origin:50% 50%;
  4832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4833. font-weight:400;
  4834. font-style:normal;
  4835. font-size:11px;
  4836. color:#D9001B;
  4837. line-height:30px;
  4838. }
  4839. #u42269 .text {
  4840. position:absolute;
  4841. align-self:flex-start;
  4842. padding:0px 0px 0px 0px;
  4843. box-sizing:border-box;
  4844. width:100%;
  4845. }
  4846. #u42269_text {
  4847. border-width:0px;
  4848. white-space:nowrap;
  4849. text-transform:none;
  4850. }
  4851. #u42270 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:0px;
  4857. height:0px;
  4858. }
  4859. #u42271 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:0px;
  4865. height:0px;
  4866. }
  4867. #u42272_div {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:337px;
  4873. height:40px;
  4874. background:inherit;
  4875. background-color:rgba(255, 255, 255, 0);
  4876. border-left:0px;
  4877. border-top:0px;
  4878. border-right:0px;
  4879. border-radius:0px;
  4880. border-bottom-right-radius:0px;
  4881. border-bottom-left-radius:0px;
  4882. filter:drop-shadow(none);
  4883. transition:none;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:14px;
  4888. color:#AAAAAA;
  4889. line-height:40px;
  4890. }
  4891. #u42272 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:48px;
  4895. top:415px;
  4896. width:337px;
  4897. height:40px;
  4898. display:flex;
  4899. transition:none;
  4900. transform-origin:50% 50%;
  4901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4902. font-weight:400;
  4903. font-style:normal;
  4904. font-size:14px;
  4905. color:#AAAAAA;
  4906. line-height:40px;
  4907. }
  4908. #u42272 .text {
  4909. position:absolute;
  4910. align-self:flex-start;
  4911. padding:0px 0px 0px 0px;
  4912. box-sizing:border-box;
  4913. width:100%;
  4914. }
  4915. #u42272_text {
  4916. border-width:0px;
  4917. word-wrap:break-word;
  4918. text-transform:none;
  4919. }
  4920. #u42273_div {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:64px;
  4926. height:40px;
  4927. background:inherit;
  4928. background-color:rgba(255, 255, 255, 0);
  4929. border-left:0px;
  4930. border-top:0px;
  4931. border-right:0px;
  4932. border-radius:0px;
  4933. border-bottom-right-radius:0px;
  4934. border-bottom-left-radius:0px;
  4935. filter:drop-shadow(none);
  4936. transition:none;
  4937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4938. font-weight:400;
  4939. font-style:normal;
  4940. font-size:14px;
  4941. line-height:40px;
  4942. }
  4943. #u42273 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:48px;
  4947. top:375px;
  4948. width:64px;
  4949. height:40px;
  4950. display:flex;
  4951. transition:none;
  4952. transform-origin:50% 50%;
  4953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4954. font-weight:400;
  4955. font-style:normal;
  4956. font-size:14px;
  4957. line-height:40px;
  4958. }
  4959. #u42273 .text {
  4960. position:absolute;
  4961. align-self:flex-start;
  4962. padding:0px 0px 0px 0px;
  4963. box-sizing:border-box;
  4964. width:100%;
  4965. }
  4966. #u42273_text {
  4967. border-width:0px;
  4968. white-space:nowrap;
  4969. text-transform:none;
  4970. }
  4971. #u42274 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:0px;
  4977. height:0px;
  4978. }
  4979. #u42275_div {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:375px;
  4985. height:80px;
  4986. background:inherit;
  4987. background-color:rgba(255, 255, 255, 1);
  4988. border-top:0px;
  4989. border-bottom:0px;
  4990. border-radius:0px;
  4991. border-top-left-radius:0px;
  4992. border-top-right-radius:0px;
  4993. border-bottom-right-radius:0px;
  4994. border-bottom-left-radius:0px;
  4995. filter:drop-shadow(none);
  4996. transition:none;
  4997. }
  4998. #u42275 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:29px;
  5002. top:107px;
  5003. width:375px;
  5004. height:80px;
  5005. display:flex;
  5006. transition:none;
  5007. transform-origin:50% 50%;
  5008. }
  5009. #u42275 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:2px 2px 2px 2px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u42275_text {
  5017. border-width:0px;
  5018. word-wrap:break-word;
  5019. text-transform:none;
  5020. visibility:hidden;
  5021. }
  5022. #u42276_div {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:73px;
  5028. height:30px;
  5029. background:inherit;
  5030. background-color:rgba(255, 255, 255, 0);
  5031. border-left:0px;
  5032. border-top:0px;
  5033. border-right:0px;
  5034. border-radius:0px;
  5035. border-bottom-right-radius:0px;
  5036. border-bottom-left-radius:0px;
  5037. filter:drop-shadow(none);
  5038. transition:none;
  5039. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5040. font-weight:500;
  5041. font-style:normal;
  5042. font-size:18px;
  5043. line-height:30px;
  5044. }
  5045. #u42276 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:48px;
  5049. top:117px;
  5050. width:73px;
  5051. height:30px;
  5052. display:flex;
  5053. transition:none;
  5054. transform-origin:50% 50%;
  5055. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5056. font-weight:500;
  5057. font-style:normal;
  5058. font-size:18px;
  5059. line-height:30px;
  5060. }
  5061. #u42276 .text {
  5062. position:absolute;
  5063. align-self:flex-start;
  5064. padding:0px 0px 0px 0px;
  5065. box-sizing:border-box;
  5066. width:100%;
  5067. }
  5068. #u42276_text {
  5069. border-width:0px;
  5070. white-space:nowrap;
  5071. text-transform:none;
  5072. }
  5073. #u42277_input {
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:346px;
  5078. height:27px;
  5079. padding:2px 2px 2px 2px;
  5080. font-family:'ArialMT', 'Arial', sans-serif;
  5081. font-weight:400;
  5082. font-style:normal;
  5083. font-size:14px;
  5084. letter-spacing:normal;
  5085. color:#1890FF;
  5086. vertical-align:none;
  5087. text-align:left;
  5088. text-transform:none;
  5089. background-color:transparent;
  5090. border-color:transparent;
  5091. }
  5092. #u42277_input.disabled {
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:346px;
  5097. height:27px;
  5098. padding:2px 2px 2px 2px;
  5099. font-family:'ArialMT', 'Arial', sans-serif;
  5100. font-weight:400;
  5101. font-style:normal;
  5102. font-size:14px;
  5103. letter-spacing:normal;
  5104. color:#1890FF;
  5105. vertical-align:none;
  5106. text-align:left;
  5107. text-transform:none;
  5108. background-color:transparent;
  5109. border-color:transparent;
  5110. }
  5111. #u42277_div {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:346px;
  5117. height:27px;
  5118. background:inherit;
  5119. background-color:rgba(255, 255, 255, 1);
  5120. border-radius:0px;
  5121. filter:drop-shadow(none);
  5122. transition:none;
  5123. font-size:14px;
  5124. color:#1890FF;
  5125. }
  5126. #u42277 {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:48px;
  5130. top:150px;
  5131. width:346px;
  5132. height:27px;
  5133. display:flex;
  5134. transition:none;
  5135. transform-origin:50% 50%;
  5136. font-size:14px;
  5137. color:#1890FF;
  5138. }
  5139. #u42277 .text {
  5140. position:absolute;
  5141. align-self:flex-start;
  5142. padding:2px 2px 2px 2px;
  5143. box-sizing:border-box;
  5144. width:100%;
  5145. }
  5146. #u42277_div.disabled {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:346px;
  5152. height:27px;
  5153. background:inherit;
  5154. background-color:rgba(240, 240, 240, 1);
  5155. border-radius:0px;
  5156. filter:drop-shadow(none);
  5157. transition:none;
  5158. font-size:14px;
  5159. color:#1890FF;
  5160. }
  5161. #u42277.disabled {
  5162. }
  5163. .u42277_input_option {
  5164. font-size:14px;
  5165. }
  5166. #u42278 {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:0px;
  5172. height:0px;
  5173. }
  5174. #u42279_div {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:375px;
  5180. height:60px;
  5181. background:inherit;
  5182. background-color:rgba(255, 255, 255, 1);
  5183. border-top:0px;
  5184. border-radius:28px;
  5185. border-top-left-radius:0px;
  5186. border-top-right-radius:0px;
  5187. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  5188. transition:none;
  5189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:14px;
  5193. color:#FFFFFF;
  5194. }
  5195. #u42279 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:29px;
  5199. top:924px;
  5200. width:375px;
  5201. height:60px;
  5202. display:flex;
  5203. transition:none;
  5204. transform-origin:50% 50%;
  5205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5206. font-weight:400;
  5207. font-style:normal;
  5208. font-size:14px;
  5209. color:#FFFFFF;
  5210. }
  5211. #u42279 .text {
  5212. position:absolute;
  5213. align-self:center;
  5214. padding:2px 2px 2px 2px;
  5215. box-sizing:border-box;
  5216. width:100%;
  5217. }
  5218. #u42279_text {
  5219. border-width:0px;
  5220. word-wrap:break-word;
  5221. text-transform:none;
  5222. visibility:hidden;
  5223. }
  5224. #u42280_div {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:0px;
  5228. top:0px;
  5229. width:324px;
  5230. height:40px;
  5231. background:inherit;
  5232. background-color:rgba(215, 215, 215, 1);
  5233. border-radius:63px;
  5234. filter:drop-shadow(none);
  5235. transition:none;
  5236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5237. font-weight:400;
  5238. font-style:normal;
  5239. font-size:14px;
  5240. color:#FFFFFF;
  5241. }
  5242. #u42280 {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:57px;
  5246. top:933px;
  5247. width:324px;
  5248. height:40px;
  5249. display:flex;
  5250. transition:none;
  5251. transform-origin:50% 50%;
  5252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5253. font-weight:400;
  5254. font-style:normal;
  5255. font-size:14px;
  5256. color:#FFFFFF;
  5257. }
  5258. #u42280 .text {
  5259. position:absolute;
  5260. align-self:center;
  5261. padding:2px 2px 2px 2px;
  5262. box-sizing:border-box;
  5263. width:100%;
  5264. }
  5265. #u42280_text {
  5266. border-width:0px;
  5267. word-wrap:break-word;
  5268. text-transform:none;
  5269. }
  5270. #u42281_div {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:234px;
  5276. height:34px;
  5277. background:inherit;
  5278. background-color:rgba(255, 255, 255, 0);
  5279. border-left:0px;
  5280. border-top:0px;
  5281. border-right:0px;
  5282. border-radius:0px;
  5283. border-bottom-right-radius:0px;
  5284. border-bottom-left-radius:0px;
  5285. filter:drop-shadow(none);
  5286. transition:none;
  5287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5288. font-weight:400;
  5289. font-style:normal;
  5290. font-size:12px;
  5291. color:#D9001B;
  5292. }
  5293. #u42281 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:52px;
  5297. top:182px;
  5298. width:234px;
  5299. height:34px;
  5300. display:flex;
  5301. transition:none;
  5302. transform-origin:50% 50%;
  5303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:12px;
  5307. color:#D9001B;
  5308. }
  5309. #u42281 .text {
  5310. position:absolute;
  5311. align-self:center;
  5312. padding:0px 0px 0px 0px;
  5313. box-sizing:border-box;
  5314. width:100%;
  5315. }
  5316. #u42281_text {
  5317. border-width:0px;
  5318. white-space:nowrap;
  5319. text-transform:none;
  5320. }
  5321. #u42282_div {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:270px;
  5327. height:17px;
  5328. background:inherit;
  5329. background-color:rgba(255, 255, 255, 0);
  5330. border-left:0px;
  5331. border-top:0px;
  5332. border-right:0px;
  5333. border-radius:0px;
  5334. border-bottom-right-radius:0px;
  5335. border-bottom-left-radius:0px;
  5336. filter:drop-shadow(none);
  5337. transition:none;
  5338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:12px;
  5342. color:#D9001B;
  5343. }
  5344. #u42282 {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:120px;
  5348. top:239px;
  5349. width:270px;
  5350. height:17px;
  5351. display:flex;
  5352. transition:none;
  5353. transform-origin:50% 50%;
  5354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:12px;
  5358. color:#D9001B;
  5359. }
  5360. #u42282 .text {
  5361. position:absolute;
  5362. align-self:center;
  5363. padding:0px 0px 0px 0px;
  5364. box-sizing:border-box;
  5365. width:100%;
  5366. }
  5367. #u42282_text {
  5368. border-width:0px;
  5369. white-space:nowrap;
  5370. text-transform:none;
  5371. }
  5372. #u42283 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:0px;
  5376. top:0px;
  5377. width:0px;
  5378. height:0px;
  5379. }
  5380. #u42284_div {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:0px;
  5384. top:0px;
  5385. width:64px;
  5386. height:40px;
  5387. background:inherit;
  5388. background-color:rgba(255, 255, 255, 0);
  5389. border-left:0px;
  5390. border-top:0px;
  5391. border-right:0px;
  5392. border-radius:0px;
  5393. border-bottom-right-radius:0px;
  5394. border-bottom-left-radius:0px;
  5395. filter:drop-shadow(none);
  5396. transition:none;
  5397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. font-size:14px;
  5401. line-height:40px;
  5402. }
  5403. #u42284 {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:48px;
  5407. top:779px;
  5408. width:64px;
  5409. height:40px;
  5410. display:flex;
  5411. transition:none;
  5412. transform-origin:50% 50%;
  5413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:14px;
  5417. line-height:40px;
  5418. }
  5419. #u42284 .text {
  5420. position:absolute;
  5421. align-self:flex-start;
  5422. padding:0px 0px 0px 0px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u42284_text {
  5427. border-width:0px;
  5428. white-space:nowrap;
  5429. text-transform:none;
  5430. }
  5431. #u42285_div {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:229px;
  5437. height:34px;
  5438. background:inherit;
  5439. background-color:rgba(255, 255, 255, 0);
  5440. border-left:0px;
  5441. border-top:0px;
  5442. border-right:0px;
  5443. border-radius:0px;
  5444. border-bottom-right-radius:0px;
  5445. border-bottom-left-radius:0px;
  5446. filter:drop-shadow(none);
  5447. transition:none;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:12px;
  5452. color:#AAAAAA;
  5453. }
  5454. #u42285 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:150px;
  5458. top:819px;
  5459. width:229px;
  5460. height:34px;
  5461. display:flex;
  5462. transition:none;
  5463. transform-origin:50% 50%;
  5464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5465. font-weight:400;
  5466. font-style:normal;
  5467. font-size:12px;
  5468. color:#AAAAAA;
  5469. }
  5470. #u42285 .text {
  5471. position:absolute;
  5472. align-self:flex-start;
  5473. padding:0px 0px 0px 0px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u42285_text {
  5478. border-width:0px;
  5479. white-space:nowrap;
  5480. text-transform:none;
  5481. }
  5482. #u42286 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:48px;
  5486. top:819px;
  5487. width:90px;
  5488. height:90px;
  5489. display:flex;
  5490. transition:none;
  5491. font-size:28px;
  5492. }
  5493. #u42286 .text {
  5494. position:absolute;
  5495. align-self:center;
  5496. padding:2px 2px 2px 2px;
  5497. box-sizing:border-box;
  5498. width:100%;
  5499. }
  5500. #u42286_img {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:90px;
  5506. height:90px;
  5507. }
  5508. #u42286_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. }
  5513. #u42287 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:0px;
  5519. height:0px;
  5520. }
  5521. #u42288_div {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:375px;
  5527. height:60px;
  5528. background:inherit;
  5529. background-color:rgba(255, 255, 255, 1);
  5530. border-top:0px;
  5531. border-radius:28px;
  5532. border-top-left-radius:0px;
  5533. border-top-right-radius:0px;
  5534. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  5535. transition:none;
  5536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5537. font-weight:400;
  5538. font-style:normal;
  5539. font-size:14px;
  5540. color:#FFFFFF;
  5541. }
  5542. #u42288 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:453px;
  5546. top:926px;
  5547. width:375px;
  5548. height:60px;
  5549. display:flex;
  5550. transition:none;
  5551. transform-origin:50% 50%;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:14px;
  5556. color:#FFFFFF;
  5557. }
  5558. #u42288 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:2px 2px 2px 2px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u42288_text {
  5566. border-width:0px;
  5567. word-wrap:break-word;
  5568. text-transform:none;
  5569. visibility:hidden;
  5570. }
  5571. #u42289_div {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:324px;
  5577. height:40px;
  5578. background:inherit;
  5579. background-color:rgba(215, 215, 215, 1);
  5580. border-radius:63px;
  5581. filter:drop-shadow(none);
  5582. transition:none;
  5583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5584. font-weight:400;
  5585. font-style:normal;
  5586. font-size:14px;
  5587. color:#FFFFFF;
  5588. }
  5589. #u42289 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:481px;
  5593. top:935px;
  5594. width:324px;
  5595. height:40px;
  5596. display:flex;
  5597. transition:none;
  5598. transform-origin:50% 50%;
  5599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:14px;
  5603. color:#FFFFFF;
  5604. }
  5605. #u42289 .text {
  5606. position:absolute;
  5607. align-self:center;
  5608. padding:2px 2px 2px 2px;
  5609. box-sizing:border-box;
  5610. width:100%;
  5611. }
  5612. #u42289_text {
  5613. border-width:0px;
  5614. word-wrap:break-word;
  5615. text-transform:none;
  5616. }