styles.css 109 KB

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