styles.css 167 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2255px;
  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. #u45332_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u45332 {
  28. border-width:0px;
  29. position:absolute;
  30. left:1364px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u45332 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u45332_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u45333_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. #u45333 {
  73. border-width:0px;
  74. position:absolute;
  75. left:1393px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u45333 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u45333_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u45334 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u45335_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. #u45335 {
  121. border-width:0px;
  122. position:absolute;
  123. left:1673px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u45335 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u45335_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u45336 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u45337_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u45337 {
  159. border-width:0px;
  160. position:absolute;
  161. left:1736px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u45337 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u45337_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u45338_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u45338 {
  189. border-width:0px;
  190. position:absolute;
  191. left:1742px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u45338 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u45338_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u45339 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u45340_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u45340 {
  227. border-width:0px;
  228. position:absolute;
  229. left:1687px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u45340 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u45340_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u45341_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u45341 {
  257. border-width:0px;
  258. position:absolute;
  259. left:1703px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u45341 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u45341_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u45342_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u45342 {
  287. border-width:0px;
  288. position:absolute;
  289. left:1694px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u45342 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u45342_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u45343_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u45343 {
  317. border-width:0px;
  318. position:absolute;
  319. left:1711px;
  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. #u45343 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u45343_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u45344_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u45344 {
  351. border-width:0px;
  352. position:absolute;
  353. left:1393px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u45344 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u45344_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u45345_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. #u45345 {
  393. border-width:0px;
  394. position:absolute;
  395. left:1393px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u45345 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u45345_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u45346 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u45347_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u45347 {
  431. border-width:0px;
  432. position:absolute;
  433. left:1433px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u45347 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u45347_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u45348_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. #u45348 {
  472. border-width:0px;
  473. position:absolute;
  474. left:1433px;
  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. #u45348 .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. #u45348_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u45349 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u45350_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u45350 {
  513. border-width:0px;
  514. position:absolute;
  515. left:1703px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u45350 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u45350_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u45351_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. #u45351 {
  554. border-width:0px;
  555. position:absolute;
  556. left:1703px;
  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. #u45351 .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. #u45351_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u45352_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. #u45352 {
  594. border-width:0px;
  595. position:absolute;
  596. left:1393px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u45352 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u45352_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u45353 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u45354_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u45354 {
  632. border-width:0px;
  633. position:absolute;
  634. left:1615px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u45354 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u45354_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u45355_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. #u45355 {
  673. border-width:0px;
  674. position:absolute;
  675. left:1609px;
  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. #u45355 .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. #u45355_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u45356 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u45357_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u45357 {
  714. border-width:0px;
  715. position:absolute;
  716. left:1521px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u45357 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u45357_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u45358_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. #u45358 {
  755. border-width:0px;
  756. position:absolute;
  757. left:1515px;
  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. #u45358 .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. #u45358_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u45359_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u45359 {
  798. border-width:0px;
  799. position:absolute;
  800. left:1393px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u45359 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u45359_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u45360_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:57px;
  825. height:30px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. border:none;
  829. border-left:0px;
  830. border-top:0px;
  831. border-right:0px;
  832. border-radius:0px;
  833. border-bottom-right-radius:0px;
  834. border-bottom-left-radius:0px;
  835. -moz-box-shadow:none;
  836. -webkit-box-shadow:none;
  837. box-shadow:none;
  838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  839. font-weight:500;
  840. font-style:normal;
  841. font-size:14px;
  842. line-height:30px;
  843. }
  844. #u45360 {
  845. border-width:0px;
  846. position:absolute;
  847. left:1545px;
  848. top:73px;
  849. width:57px;
  850. height:30px;
  851. display:flex;
  852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  853. font-weight:500;
  854. font-style:normal;
  855. font-size:14px;
  856. line-height:30px;
  857. }
  858. #u45360 .text {
  859. position:absolute;
  860. align-self:flex-start;
  861. padding:0px 0px 0px 0px;
  862. box-sizing:border-box;
  863. width:100%;
  864. }
  865. #u45360_text {
  866. border-width:0px;
  867. white-space:nowrap;
  868. text-transform:none;
  869. }
  870. #u45361 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u45362_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:11px;
  884. height:18px;
  885. }
  886. #u45362 {
  887. border-width:0px;
  888. position:absolute;
  889. left:1406px;
  890. top:79px;
  891. width:11px;
  892. height:18px;
  893. display:flex;
  894. }
  895. #u45362 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:2px 2px 2px 2px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u45362_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. visibility:hidden;
  907. }
  908. #u45363_div {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:375px;
  914. height:115px;
  915. background:inherit;
  916. background-color:rgba(255, 255, 255, 1);
  917. border:none;
  918. border-left:0px;
  919. border-top:0px;
  920. border-right:0px;
  921. border-radius:0px;
  922. border-bottom-right-radius:0px;
  923. border-bottom-left-radius:0px;
  924. -moz-box-shadow:none;
  925. -webkit-box-shadow:none;
  926. box-shadow:none;
  927. }
  928. #u45363 {
  929. border-width:0px;
  930. position:absolute;
  931. left:1393px;
  932. top:115px;
  933. width:375px;
  934. height:115px;
  935. display:flex;
  936. }
  937. #u45363 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u45363_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u45364_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:40px;
  956. height:40px;
  957. }
  958. #u45364 {
  959. border-width:0px;
  960. position:absolute;
  961. left:1410px;
  962. top:141px;
  963. width:40px;
  964. height:40px;
  965. display:flex;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. }
  970. #u45364 .text {
  971. position:absolute;
  972. align-self:center;
  973. padding:2px 2px 2px 2px;
  974. box-sizing:border-box;
  975. width:100%;
  976. }
  977. #u45364_text {
  978. border-width:0px;
  979. word-wrap:break-word;
  980. text-transform:none;
  981. }
  982. #u45365_div {
  983. border-width:0px;
  984. position:absolute;
  985. left:0px;
  986. top:0px;
  987. width:33px;
  988. height:30px;
  989. background:inherit;
  990. background-color:rgba(255, 255, 255, 0);
  991. border:none;
  992. border-left:0px;
  993. border-top:0px;
  994. border-right:0px;
  995. border-radius:0px;
  996. border-bottom-right-radius:0px;
  997. border-bottom-left-radius:0px;
  998. -moz-box-shadow:none;
  999. -webkit-box-shadow:none;
  1000. box-shadow:none;
  1001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1002. font-weight:400;
  1003. font-style:normal;
  1004. font-size:16px;
  1005. line-height:30px;
  1006. }
  1007. #u45365 {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:1470px;
  1011. top:136px;
  1012. width:33px;
  1013. height:30px;
  1014. display:flex;
  1015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1016. font-weight:400;
  1017. font-style:normal;
  1018. font-size:16px;
  1019. line-height:30px;
  1020. }
  1021. #u45365 .text {
  1022. position:absolute;
  1023. align-self:flex-start;
  1024. padding:0px 0px 0px 0px;
  1025. box-sizing:border-box;
  1026. width:100%;
  1027. }
  1028. #u45365_text {
  1029. border-width:0px;
  1030. white-space:nowrap;
  1031. text-transform:none;
  1032. }
  1033. #u45366_div {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:65px;
  1039. height:25px;
  1040. background:inherit;
  1041. background-color:rgba(255, 255, 255, 0);
  1042. border:none;
  1043. border-left:0px;
  1044. border-top:0px;
  1045. border-right:0px;
  1046. border-radius:0px;
  1047. border-bottom-right-radius:0px;
  1048. border-bottom-left-radius:0px;
  1049. -moz-box-shadow:none;
  1050. -webkit-box-shadow:none;
  1051. box-shadow:none;
  1052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1053. font-weight:400;
  1054. font-style:normal;
  1055. font-size:10px;
  1056. color:#7F7F7F;
  1057. line-height:25px;
  1058. }
  1059. #u45366 {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:1470px;
  1063. top:166px;
  1064. width:65px;
  1065. height:25px;
  1066. display:flex;
  1067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:10px;
  1071. color:#7F7F7F;
  1072. line-height:25px;
  1073. }
  1074. #u45366 .text {
  1075. position:absolute;
  1076. align-self:flex-start;
  1077. padding:0px 0px 0px 0px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u45366_text {
  1082. border-width:0px;
  1083. white-space:nowrap;
  1084. text-transform:none;
  1085. }
  1086. #u45367_div {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:0px;
  1090. top:0px;
  1091. width:161px;
  1092. height:25px;
  1093. background:inherit;
  1094. background-color:rgba(255, 255, 255, 0);
  1095. border:none;
  1096. border-left:0px;
  1097. border-top:0px;
  1098. border-right:0px;
  1099. border-radius:0px;
  1100. border-bottom-right-radius:0px;
  1101. border-bottom-left-radius:0px;
  1102. -moz-box-shadow:none;
  1103. -webkit-box-shadow:none;
  1104. box-shadow:none;
  1105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1106. font-weight:400;
  1107. font-style:normal;
  1108. font-size:10px;
  1109. color:#F59A23;
  1110. line-height:25px;
  1111. }
  1112. #u45367 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1470px;
  1116. top:191px;
  1117. width:161px;
  1118. height:25px;
  1119. display:flex;
  1120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1121. font-weight:400;
  1122. font-style:normal;
  1123. font-size:10px;
  1124. color:#F59A23;
  1125. line-height:25px;
  1126. }
  1127. #u45367 .text {
  1128. position:absolute;
  1129. align-self:flex-start;
  1130. padding:0px 0px 0px 0px;
  1131. box-sizing:border-box;
  1132. width:100%;
  1133. }
  1134. #u45367_text {
  1135. border-width:0px;
  1136. white-space:nowrap;
  1137. text-transform:none;
  1138. }
  1139. #u45368 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:0px;
  1143. top:0px;
  1144. width:0px;
  1145. height:0px;
  1146. }
  1147. #u45369_div {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:375px;
  1153. height:80px;
  1154. background:inherit;
  1155. background-color:rgba(255, 255, 255, 1);
  1156. border:none;
  1157. border-left:0px;
  1158. border-top:0px;
  1159. border-right:0px;
  1160. border-radius:0px;
  1161. border-bottom-right-radius:0px;
  1162. border-bottom-left-radius:0px;
  1163. -moz-box-shadow:none;
  1164. -webkit-box-shadow:none;
  1165. box-shadow:none;
  1166. }
  1167. #u45369 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:1393px;
  1171. top:312px;
  1172. width:375px;
  1173. height:80px;
  1174. display:flex;
  1175. }
  1176. #u45369 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u45369_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. visibility:hidden;
  1188. }
  1189. #u45370_div {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:177px;
  1195. height:30px;
  1196. background:inherit;
  1197. background-color:rgba(255, 255, 255, 0);
  1198. border:none;
  1199. border-left:0px;
  1200. border-top:0px;
  1201. border-right:0px;
  1202. border-radius:0px;
  1203. border-bottom-right-radius:0px;
  1204. border-bottom-left-radius:0px;
  1205. -moz-box-shadow:none;
  1206. -webkit-box-shadow:none;
  1207. box-shadow:none;
  1208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1209. font-weight:400;
  1210. font-style:normal;
  1211. font-size:16px;
  1212. line-height:30px;
  1213. }
  1214. #u45370 {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:1470px;
  1218. top:351px;
  1219. width:177px;
  1220. height:30px;
  1221. display:flex;
  1222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1223. font-weight:400;
  1224. font-style:normal;
  1225. font-size:16px;
  1226. line-height:30px;
  1227. }
  1228. #u45370 .text {
  1229. position:absolute;
  1230. align-self:flex-start;
  1231. padding:0px 0px 0px 0px;
  1232. box-sizing:border-box;
  1233. width:100%;
  1234. }
  1235. #u45370_text {
  1236. border-width:0px;
  1237. white-space:nowrap;
  1238. text-transform:none;
  1239. }
  1240. #u45371_div {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:0px;
  1244. top:0px;
  1245. width:49px;
  1246. height:25px;
  1247. background:inherit;
  1248. background-color:rgba(255, 255, 255, 0);
  1249. border:none;
  1250. border-left:0px;
  1251. border-top:0px;
  1252. border-right:0px;
  1253. border-radius:0px;
  1254. border-bottom-right-radius:0px;
  1255. border-bottom-left-radius:0px;
  1256. -moz-box-shadow:none;
  1257. -webkit-box-shadow:none;
  1258. box-shadow:none;
  1259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1260. font-weight:400;
  1261. font-style:normal;
  1262. font-size:12px;
  1263. color:#7F7F7F;
  1264. line-height:25px;
  1265. }
  1266. #u45371 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:1470px;
  1270. top:326px;
  1271. width:49px;
  1272. height:25px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:12px;
  1278. color:#7F7F7F;
  1279. line-height:25px;
  1280. }
  1281. #u45371 .text {
  1282. position:absolute;
  1283. align-self:flex-start;
  1284. padding:0px 0px 0px 0px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u45371_text {
  1289. border-width:0px;
  1290. white-space:nowrap;
  1291. text-transform:none;
  1292. }
  1293. #u45372 {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:0px;
  1299. height:0px;
  1300. }
  1301. #u45373_div {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:0px;
  1305. top:0px;
  1306. width:375px;
  1307. height:80px;
  1308. background:inherit;
  1309. background-color:rgba(255, 255, 255, 1);
  1310. border:none;
  1311. border-left:0px;
  1312. border-top:0px;
  1313. border-right:0px;
  1314. border-radius:0px;
  1315. border-bottom-right-radius:0px;
  1316. border-bottom-left-radius:0px;
  1317. -moz-box-shadow:none;
  1318. -webkit-box-shadow:none;
  1319. box-shadow:none;
  1320. }
  1321. #u45373 {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:1393px;
  1325. top:393px;
  1326. width:375px;
  1327. height:80px;
  1328. display:flex;
  1329. }
  1330. #u45373 .text {
  1331. position:absolute;
  1332. align-self:center;
  1333. padding:2px 2px 2px 2px;
  1334. box-sizing:border-box;
  1335. width:100%;
  1336. }
  1337. #u45373_text {
  1338. border-width:0px;
  1339. word-wrap:break-word;
  1340. text-transform:none;
  1341. visibility:hidden;
  1342. }
  1343. #u45374_div {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:33px;
  1349. height:30px;
  1350. background:inherit;
  1351. background-color:rgba(255, 255, 255, 0);
  1352. border:none;
  1353. border-left:0px;
  1354. border-top:0px;
  1355. border-right:0px;
  1356. border-radius:0px;
  1357. border-bottom-right-radius:0px;
  1358. border-bottom-left-radius:0px;
  1359. -moz-box-shadow:none;
  1360. -webkit-box-shadow:none;
  1361. box-shadow:none;
  1362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1363. font-weight:400;
  1364. font-style:normal;
  1365. font-size:16px;
  1366. line-height:30px;
  1367. }
  1368. #u45374 {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:1470px;
  1372. top:432px;
  1373. width:33px;
  1374. height:30px;
  1375. display:flex;
  1376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1377. font-weight:400;
  1378. font-style:normal;
  1379. font-size:16px;
  1380. line-height:30px;
  1381. }
  1382. #u45374 .text {
  1383. position:absolute;
  1384. align-self:flex-start;
  1385. padding:0px 0px 0px 0px;
  1386. box-sizing:border-box;
  1387. width:100%;
  1388. }
  1389. #u45374_text {
  1390. border-width:0px;
  1391. white-space:nowrap;
  1392. text-transform:none;
  1393. }
  1394. #u45375_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:73px;
  1400. height:25px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-left:0px;
  1405. border-top:0px;
  1406. border-right:0px;
  1407. border-radius:0px;
  1408. border-bottom-right-radius:0px;
  1409. border-bottom-left-radius:0px;
  1410. -moz-box-shadow:none;
  1411. -webkit-box-shadow:none;
  1412. box-shadow:none;
  1413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1414. font-weight:400;
  1415. font-style:normal;
  1416. font-size:12px;
  1417. color:#7F7F7F;
  1418. line-height:25px;
  1419. }
  1420. #u45375 {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:1470px;
  1424. top:407px;
  1425. width:73px;
  1426. height:25px;
  1427. display:flex;
  1428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1429. font-weight:400;
  1430. font-style:normal;
  1431. font-size:12px;
  1432. color:#7F7F7F;
  1433. line-height:25px;
  1434. }
  1435. #u45375 .text {
  1436. position:absolute;
  1437. align-self:flex-start;
  1438. padding:0px 0px 0px 0px;
  1439. box-sizing:border-box;
  1440. width:100%;
  1441. }
  1442. #u45375_text {
  1443. border-width:0px;
  1444. white-space:nowrap;
  1445. text-transform:none;
  1446. }
  1447. #u45376 {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:0px;
  1451. top:0px;
  1452. width:0px;
  1453. height:0px;
  1454. }
  1455. #u45377_div {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:375px;
  1461. height:80px;
  1462. background:inherit;
  1463. background-color:rgba(255, 255, 255, 1);
  1464. border:none;
  1465. border-left:0px;
  1466. border-top:0px;
  1467. border-right:0px;
  1468. border-radius:0px;
  1469. border-bottom-right-radius:0px;
  1470. border-bottom-left-radius:0px;
  1471. -moz-box-shadow:none;
  1472. -webkit-box-shadow:none;
  1473. box-shadow:none;
  1474. }
  1475. #u45377 {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:1393px;
  1479. top:474px;
  1480. width:375px;
  1481. height:80px;
  1482. display:flex;
  1483. }
  1484. #u45377 .text {
  1485. position:absolute;
  1486. align-self:center;
  1487. padding:2px 2px 2px 2px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u45377_text {
  1492. border-width:0px;
  1493. word-wrap:break-word;
  1494. text-transform:none;
  1495. visibility:hidden;
  1496. }
  1497. #u45378_div {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:129px;
  1503. height:30px;
  1504. background:inherit;
  1505. background-color:rgba(255, 255, 255, 0);
  1506. border:none;
  1507. border-left:0px;
  1508. border-top:0px;
  1509. border-right:0px;
  1510. border-radius:0px;
  1511. border-bottom-right-radius:0px;
  1512. border-bottom-left-radius:0px;
  1513. -moz-box-shadow:none;
  1514. -webkit-box-shadow:none;
  1515. box-shadow:none;
  1516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1517. font-weight:400;
  1518. font-style:normal;
  1519. font-size:16px;
  1520. line-height:30px;
  1521. }
  1522. #u45378 {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:1470px;
  1526. top:513px;
  1527. width:129px;
  1528. height:30px;
  1529. display:flex;
  1530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1531. font-weight:400;
  1532. font-style:normal;
  1533. font-size:16px;
  1534. line-height:30px;
  1535. }
  1536. #u45378 .text {
  1537. position:absolute;
  1538. align-self:flex-start;
  1539. padding:0px 0px 0px 0px;
  1540. box-sizing:border-box;
  1541. width:100%;
  1542. }
  1543. #u45378_text {
  1544. border-width:0px;
  1545. white-space:nowrap;
  1546. text-transform:none;
  1547. }
  1548. #u45379_div {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:0px;
  1552. top:0px;
  1553. width:73px;
  1554. height:25px;
  1555. background:inherit;
  1556. background-color:rgba(255, 255, 255, 0);
  1557. border:none;
  1558. border-left:0px;
  1559. border-top:0px;
  1560. border-right:0px;
  1561. border-radius:0px;
  1562. border-bottom-right-radius:0px;
  1563. border-bottom-left-radius:0px;
  1564. -moz-box-shadow:none;
  1565. -webkit-box-shadow:none;
  1566. box-shadow:none;
  1567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:12px;
  1571. color:#7F7F7F;
  1572. line-height:25px;
  1573. }
  1574. #u45379 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:1470px;
  1578. top:488px;
  1579. width:73px;
  1580. height:25px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:12px;
  1586. color:#7F7F7F;
  1587. line-height:25px;
  1588. }
  1589. #u45379 .text {
  1590. position:absolute;
  1591. align-self:flex-start;
  1592. padding:0px 0px 0px 0px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u45379_text {
  1597. border-width:0px;
  1598. white-space:nowrap;
  1599. text-transform:none;
  1600. }
  1601. #u45380 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:0px;
  1607. height:0px;
  1608. }
  1609. #u45381_div {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:0px;
  1613. top:0px;
  1614. width:375px;
  1615. height:90px;
  1616. background:inherit;
  1617. background-color:rgba(255, 255, 255, 1);
  1618. border:none;
  1619. border-left:0px;
  1620. border-top:0px;
  1621. border-right:0px;
  1622. border-radius:0px;
  1623. border-bottom-right-radius:0px;
  1624. border-bottom-left-radius:0px;
  1625. -moz-box-shadow:none;
  1626. -webkit-box-shadow:none;
  1627. box-shadow:none;
  1628. }
  1629. #u45381 {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:1393px;
  1633. top:717px;
  1634. width:375px;
  1635. height:90px;
  1636. display:flex;
  1637. }
  1638. #u45381 .text {
  1639. position:absolute;
  1640. align-self:center;
  1641. padding:2px 2px 2px 2px;
  1642. box-sizing:border-box;
  1643. width:100%;
  1644. }
  1645. #u45381_text {
  1646. border-width:0px;
  1647. word-wrap:break-word;
  1648. text-transform:none;
  1649. visibility:hidden;
  1650. }
  1651. #u45382_div {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:129px;
  1657. height:60px;
  1658. background:inherit;
  1659. background-color:rgba(255, 255, 255, 0);
  1660. border:none;
  1661. border-left:0px;
  1662. border-top:0px;
  1663. border-right:0px;
  1664. border-radius:0px;
  1665. border-bottom-right-radius:0px;
  1666. border-bottom-left-radius:0px;
  1667. -moz-box-shadow:none;
  1668. -webkit-box-shadow:none;
  1669. box-shadow:none;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:16px;
  1674. line-height:30px;
  1675. }
  1676. #u45382 {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:1470px;
  1680. top:732px;
  1681. width:129px;
  1682. height:60px;
  1683. display:flex;
  1684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1685. font-weight:400;
  1686. font-style:normal;
  1687. font-size:16px;
  1688. line-height:30px;
  1689. }
  1690. #u45382 .text {
  1691. position:absolute;
  1692. align-self:flex-start;
  1693. padding:0px 0px 0px 0px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u45382_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u45383_div {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:0px;
  1706. top:0px;
  1707. width:68px;
  1708. height:30px;
  1709. background:inherit;
  1710. background-color:rgba(242, 242, 242, 1);
  1711. border:none;
  1712. border-radius:40px;
  1713. -moz-box-shadow:none;
  1714. -webkit-box-shadow:none;
  1715. box-shadow:none;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:12px;
  1720. color:#7F7F7F;
  1721. }
  1722. #u45383 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:1678px;
  1726. top:136px;
  1727. width:68px;
  1728. height:30px;
  1729. display:flex;
  1730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. font-size:12px;
  1734. color:#7F7F7F;
  1735. }
  1736. #u45383 .text {
  1737. position:absolute;
  1738. align-self:center;
  1739. padding:2px 2px 2px 2px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u45383_text {
  1744. border-width:0px;
  1745. word-wrap:break-word;
  1746. text-transform:none;
  1747. }
  1748. #u45385_img {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:433px;
  1754. height:865px;
  1755. }
  1756. #u45385 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:1822px;
  1760. top:0px;
  1761. width:433px;
  1762. height:865px;
  1763. display:flex;
  1764. }
  1765. #u45385 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 2px 2px 2px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u45385_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. visibility:hidden;
  1777. }
  1778. #u45386_div {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:375px;
  1784. height:40px;
  1785. background:inherit;
  1786. background-color:rgba(255, 255, 255, 1);
  1787. box-sizing:border-box;
  1788. border-width:1px;
  1789. border-style:solid;
  1790. border-color:rgba(215, 215, 215, 1);
  1791. border-left:0px;
  1792. border-top:0px;
  1793. border-right:0px;
  1794. border-radius:0px;
  1795. border-bottom-right-radius:0px;
  1796. border-bottom-left-radius:0px;
  1797. -moz-box-shadow:none;
  1798. -webkit-box-shadow:none;
  1799. box-shadow:none;
  1800. }
  1801. #u45386 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:1851px;
  1805. top:67px;
  1806. width:375px;
  1807. height:40px;
  1808. display:flex;
  1809. }
  1810. #u45386 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 2px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u45386_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. visibility:hidden;
  1822. }
  1823. #u45387 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:0px;
  1829. height:0px;
  1830. }
  1831. #u45388_div {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:88px;
  1837. height:32px;
  1838. background:inherit;
  1839. background-color:rgba(255, 255, 255, 1);
  1840. box-sizing:border-box;
  1841. border-width:1px;
  1842. border-style:solid;
  1843. border-color:rgba(242, 242, 242, 1);
  1844. border-radius:33px;
  1845. -moz-box-shadow:none;
  1846. -webkit-box-shadow:none;
  1847. box-shadow:none;
  1848. }
  1849. #u45388 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:2131px;
  1853. top:71px;
  1854. width:88px;
  1855. height:32px;
  1856. display:flex;
  1857. }
  1858. #u45388 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:2px 2px 2px 2px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u45388_text {
  1866. border-width:0px;
  1867. word-wrap:break-word;
  1868. text-transform:none;
  1869. visibility:hidden;
  1870. }
  1871. #u45389 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:0px;
  1877. height:0px;
  1878. }
  1879. #u45390_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:18px;
  1885. height:18px;
  1886. }
  1887. #u45390 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:2194px;
  1891. top:78px;
  1892. width:18px;
  1893. height:18px;
  1894. display:flex;
  1895. }
  1896. #u45390 .text {
  1897. position:absolute;
  1898. align-self:center;
  1899. padding:2px 2px 2px 2px;
  1900. box-sizing:border-box;
  1901. width:100%;
  1902. }
  1903. #u45390_text {
  1904. border-width:0px;
  1905. word-wrap:break-word;
  1906. text-transform:none;
  1907. visibility:hidden;
  1908. }
  1909. #u45391_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:6px;
  1915. height:6px;
  1916. }
  1917. #u45391 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:2200px;
  1921. top:84px;
  1922. width:6px;
  1923. height:6px;
  1924. display:flex;
  1925. }
  1926. #u45391 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:2px 2px 2px 2px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u45391_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. visibility:hidden;
  1938. }
  1939. #u45392 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:0px;
  1945. height:0px;
  1946. }
  1947. #u45393_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:5px;
  1953. height:5px;
  1954. }
  1955. #u45393 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:2145px;
  1959. top:85px;
  1960. width:5px;
  1961. height:5px;
  1962. display:flex;
  1963. }
  1964. #u45393 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:2px 2px 2px 2px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u45393_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. visibility:hidden;
  1976. }
  1977. #u45394_img {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:5px;
  1983. height:5px;
  1984. }
  1985. #u45394 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:2161px;
  1989. top:85px;
  1990. width:5px;
  1991. height:5px;
  1992. display:flex;
  1993. }
  1994. #u45394 .text {
  1995. position:absolute;
  1996. align-self:center;
  1997. padding:2px 2px 2px 2px;
  1998. box-sizing:border-box;
  1999. width:100%;
  2000. }
  2001. #u45394_text {
  2002. border-width:0px;
  2003. word-wrap:break-word;
  2004. text-transform:none;
  2005. visibility:hidden;
  2006. }
  2007. #u45395_img {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:7px;
  2013. height:7px;
  2014. }
  2015. #u45395 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:2152px;
  2019. top:84px;
  2020. width:7px;
  2021. height:7px;
  2022. display:flex;
  2023. }
  2024. #u45395 .text {
  2025. position:absolute;
  2026. align-self:center;
  2027. padding:2px 2px 2px 2px;
  2028. box-sizing:border-box;
  2029. width:100%;
  2030. }
  2031. #u45395_text {
  2032. border-width:0px;
  2033. word-wrap:break-word;
  2034. text-transform:none;
  2035. visibility:hidden;
  2036. }
  2037. #u45396_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:19px;
  2043. height:2px;
  2044. }
  2045. #u45396 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:2169px;
  2049. top:87px;
  2050. width:18px;
  2051. height:1px;
  2052. display:flex;
  2053. -webkit-transform:rotate(90deg);
  2054. -moz-transform:rotate(90deg);
  2055. -ms-transform:rotate(90deg);
  2056. transform:rotate(90deg);
  2057. }
  2058. #u45396 .text {
  2059. position:absolute;
  2060. align-self:center;
  2061. padding:2px 2px 2px 2px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u45396_text {
  2066. border-width:0px;
  2067. word-wrap:break-word;
  2068. text-transform:none;
  2069. visibility:hidden;
  2070. }
  2071. #u45397_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:375px;
  2077. height:44px;
  2078. }
  2079. #u45397 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:1851px;
  2083. top:24px;
  2084. width:375px;
  2085. height:44px;
  2086. display:flex;
  2087. }
  2088. #u45397 .text {
  2089. position:absolute;
  2090. align-self:center;
  2091. padding:2px 2px 2px 2px;
  2092. box-sizing:border-box;
  2093. width:100%;
  2094. }
  2095. #u45397_text {
  2096. border-width:0px;
  2097. word-wrap:break-word;
  2098. text-transform:none;
  2099. visibility:hidden;
  2100. }
  2101. #u45398_div {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:375px;
  2107. height:50px;
  2108. background:inherit;
  2109. background-color:rgba(255, 255, 255, 1);
  2110. box-sizing:border-box;
  2111. border-width:1px;
  2112. border-style:solid;
  2113. border-color:rgba(242, 242, 242, 1);
  2114. border-radius:26px;
  2115. border-top-left-radius:0px;
  2116. border-top-right-radius:0px;
  2117. -moz-box-shadow:none;
  2118. -webkit-box-shadow:none;
  2119. box-shadow:none;
  2120. }
  2121. #u45398 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:1851px;
  2125. top:788px;
  2126. width:375px;
  2127. height:50px;
  2128. display:flex;
  2129. }
  2130. #u45398 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:2px 2px 2px 2px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u45398_text {
  2138. border-width:0px;
  2139. word-wrap:break-word;
  2140. text-transform:none;
  2141. visibility:hidden;
  2142. }
  2143. #u45399 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:0px;
  2149. height:0px;
  2150. }
  2151. #u45400_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:24px;
  2157. height:24px;
  2158. }
  2159. #u45400 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:1891px;
  2163. top:792px;
  2164. width:24px;
  2165. height:24px;
  2166. display:flex;
  2167. font-size:8px;
  2168. }
  2169. #u45400 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:2px 2px 2px 2px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u45400_text {
  2177. border-width:0px;
  2178. word-wrap:break-word;
  2179. text-transform:none;
  2180. }
  2181. #u45401_div {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:25px;
  2187. height:17px;
  2188. background:inherit;
  2189. background-color:rgba(255, 255, 255, 0);
  2190. border:none;
  2191. border-radius:0px;
  2192. -moz-box-shadow:none;
  2193. -webkit-box-shadow:none;
  2194. box-shadow:none;
  2195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2196. font-weight:400;
  2197. font-style:normal;
  2198. font-size:12px;
  2199. }
  2200. #u45401 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:1891px;
  2204. top:817px;
  2205. width:25px;
  2206. height:17px;
  2207. display:flex;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:12px;
  2212. }
  2213. #u45401 .text {
  2214. position:absolute;
  2215. align-self:flex-start;
  2216. padding:0px 0px 0px 0px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u45401_text {
  2221. border-width:0px;
  2222. white-space:nowrap;
  2223. text-transform:none;
  2224. }
  2225. #u45402 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:0px;
  2231. height:0px;
  2232. }
  2233. #u45403_img {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:24px;
  2239. height:24px;
  2240. }
  2241. #u45403 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:2161px;
  2245. top:794px;
  2246. width:24px;
  2247. height:24px;
  2248. display:flex;
  2249. font-size:8px;
  2250. }
  2251. #u45403 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 2px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u45403_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. }
  2263. #u45404_div {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:25px;
  2269. height:17px;
  2270. background:inherit;
  2271. background-color:rgba(255, 255, 255, 0);
  2272. border:none;
  2273. border-radius:0px;
  2274. -moz-box-shadow:none;
  2275. -webkit-box-shadow:none;
  2276. box-shadow:none;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:12px;
  2281. }
  2282. #u45404 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:2161px;
  2286. top:819px;
  2287. width:25px;
  2288. height:17px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:12px;
  2294. }
  2295. #u45404 .text {
  2296. position:absolute;
  2297. align-self:flex-start;
  2298. padding:0px 0px 0px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u45404_text {
  2303. border-width:0px;
  2304. white-space:nowrap;
  2305. text-transform:none;
  2306. }
  2307. #u45405_div {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:375px;
  2313. height:681px;
  2314. background:inherit;
  2315. background-color:rgba(242, 242, 242, 0.462745098039216);
  2316. border:none;
  2317. border-radius:0px;
  2318. -moz-box-shadow:none;
  2319. -webkit-box-shadow:none;
  2320. box-shadow:none;
  2321. }
  2322. #u45405 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:1851px;
  2326. top:107px;
  2327. width:375px;
  2328. height:681px;
  2329. display:flex;
  2330. }
  2331. #u45405 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:2px 2px 2px 2px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u45405_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. visibility:hidden;
  2343. }
  2344. #u45406 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:0px;
  2350. height:0px;
  2351. }
  2352. #u45407_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:24px;
  2358. height:24px;
  2359. }
  2360. #u45407 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:2073px;
  2364. top:792px;
  2365. width:24px;
  2366. height:24px;
  2367. display:flex;
  2368. font-size:8px;
  2369. }
  2370. #u45407 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 2px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u45407_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. }
  2382. #u45408_div {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:37px;
  2388. height:17px;
  2389. background:inherit;
  2390. background-color:rgba(255, 255, 255, 0);
  2391. border:none;
  2392. border-radius:0px;
  2393. -moz-box-shadow:none;
  2394. -webkit-box-shadow:none;
  2395. box-shadow:none;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:12px;
  2400. }
  2401. #u45408 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:2067px;
  2405. top:817px;
  2406. width:37px;
  2407. height:17px;
  2408. display:flex;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:12px;
  2413. }
  2414. #u45408 .text {
  2415. position:absolute;
  2416. align-self:flex-start;
  2417. padding:0px 0px 0px 0px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u45408_text {
  2422. border-width:0px;
  2423. white-space:nowrap;
  2424. text-transform:none;
  2425. }
  2426. #u45409 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:0px;
  2432. height:0px;
  2433. }
  2434. #u45410_img {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:24px;
  2440. height:24px;
  2441. }
  2442. #u45410 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:1979px;
  2446. top:792px;
  2447. width:24px;
  2448. height:24px;
  2449. display:flex;
  2450. font-size:8px;
  2451. }
  2452. #u45410 .text {
  2453. position:absolute;
  2454. align-self:center;
  2455. padding:2px 2px 2px 2px;
  2456. box-sizing:border-box;
  2457. width:100%;
  2458. }
  2459. #u45410_text {
  2460. border-width:0px;
  2461. word-wrap:break-word;
  2462. text-transform:none;
  2463. }
  2464. #u45411_div {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:37px;
  2470. height:17px;
  2471. background:inherit;
  2472. background-color:rgba(255, 255, 255, 0);
  2473. border:none;
  2474. border-radius:0px;
  2475. -moz-box-shadow:none;
  2476. -webkit-box-shadow:none;
  2477. box-shadow:none;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. }
  2483. #u45411 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:1973px;
  2487. top:817px;
  2488. width:37px;
  2489. height:17px;
  2490. display:flex;
  2491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:12px;
  2495. }
  2496. #u45411 .text {
  2497. position:absolute;
  2498. align-self:flex-start;
  2499. padding:0px 0px 0px 0px;
  2500. box-sizing:border-box;
  2501. width:100%;
  2502. }
  2503. #u45411_text {
  2504. border-width:0px;
  2505. white-space:nowrap;
  2506. text-transform:none;
  2507. }
  2508. #u45412_div {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:375px;
  2514. height:735px;
  2515. background:inherit;
  2516. background-color:rgba(242, 242, 242, 1);
  2517. border:none;
  2518. border-top:0px;
  2519. border-radius:25px;
  2520. border-top-left-radius:0px;
  2521. border-top-right-radius:0px;
  2522. -moz-box-shadow:none;
  2523. -webkit-box-shadow:none;
  2524. box-shadow:none;
  2525. }
  2526. #u45412 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:1851px;
  2530. top:105px;
  2531. width:375px;
  2532. height:735px;
  2533. display:flex;
  2534. }
  2535. #u45412 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 2px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u45412_text {
  2543. border-width:0px;
  2544. word-wrap:break-word;
  2545. text-transform:none;
  2546. visibility:hidden;
  2547. }
  2548. #u45413_div {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:57px;
  2554. height:30px;
  2555. background:inherit;
  2556. background-color:rgba(255, 255, 255, 0);
  2557. border:none;
  2558. border-left:0px;
  2559. border-top:0px;
  2560. border-right:0px;
  2561. border-radius:0px;
  2562. border-bottom-right-radius:0px;
  2563. border-bottom-left-radius:0px;
  2564. -moz-box-shadow:none;
  2565. -webkit-box-shadow:none;
  2566. box-shadow:none;
  2567. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2568. font-weight:500;
  2569. font-style:normal;
  2570. font-size:14px;
  2571. line-height:30px;
  2572. }
  2573. #u45413 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:2003px;
  2577. top:73px;
  2578. width:57px;
  2579. height:30px;
  2580. display:flex;
  2581. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2582. font-weight:500;
  2583. font-style:normal;
  2584. font-size:14px;
  2585. line-height:30px;
  2586. }
  2587. #u45413 .text {
  2588. position:absolute;
  2589. align-self:flex-start;
  2590. padding:0px 0px 0px 0px;
  2591. box-sizing:border-box;
  2592. width:100%;
  2593. }
  2594. #u45413_text {
  2595. border-width:0px;
  2596. white-space:nowrap;
  2597. text-transform:none;
  2598. }
  2599. #u45414 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:0px;
  2603. top:0px;
  2604. width:0px;
  2605. height:0px;
  2606. }
  2607. #u45415_img {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:11px;
  2613. height:18px;
  2614. }
  2615. #u45415 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:1864px;
  2619. top:79px;
  2620. width:11px;
  2621. height:18px;
  2622. display:flex;
  2623. }
  2624. #u45415 .text {
  2625. position:absolute;
  2626. align-self:center;
  2627. padding:2px 2px 2px 2px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u45415_text {
  2632. border-width:0px;
  2633. word-wrap:break-word;
  2634. text-transform:none;
  2635. visibility:hidden;
  2636. }
  2637. #u45416_div {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:375px;
  2643. height:115px;
  2644. background:inherit;
  2645. background-color:rgba(255, 255, 255, 1);
  2646. border:none;
  2647. border-left:0px;
  2648. border-top:0px;
  2649. border-right:0px;
  2650. border-radius:0px;
  2651. border-bottom-right-radius:0px;
  2652. border-bottom-left-radius:0px;
  2653. -moz-box-shadow:none;
  2654. -webkit-box-shadow:none;
  2655. box-shadow:none;
  2656. }
  2657. #u45416 {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:1851px;
  2661. top:115px;
  2662. width:375px;
  2663. height:115px;
  2664. display:flex;
  2665. }
  2666. #u45416 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 2px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u45416_text {
  2674. border-width:0px;
  2675. word-wrap:break-word;
  2676. text-transform:none;
  2677. visibility:hidden;
  2678. }
  2679. #u45417_img {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:40px;
  2685. height:40px;
  2686. }
  2687. #u45417 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:1868px;
  2691. top:141px;
  2692. width:40px;
  2693. height:40px;
  2694. display:flex;
  2695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2696. font-weight:400;
  2697. font-style:normal;
  2698. }
  2699. #u45417 .text {
  2700. position:absolute;
  2701. align-self:center;
  2702. padding:2px 2px 2px 2px;
  2703. box-sizing:border-box;
  2704. width:100%;
  2705. }
  2706. #u45417_text {
  2707. border-width:0px;
  2708. word-wrap:break-word;
  2709. text-transform:none;
  2710. }
  2711. #u45418_div {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:33px;
  2717. height:30px;
  2718. background:inherit;
  2719. background-color:rgba(255, 255, 255, 0);
  2720. border:none;
  2721. border-left:0px;
  2722. border-top:0px;
  2723. border-right:0px;
  2724. border-radius:0px;
  2725. border-bottom-right-radius:0px;
  2726. border-bottom-left-radius:0px;
  2727. -moz-box-shadow:none;
  2728. -webkit-box-shadow:none;
  2729. box-shadow:none;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:16px;
  2734. line-height:30px;
  2735. }
  2736. #u45418 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:1928px;
  2740. top:136px;
  2741. width:33px;
  2742. height:30px;
  2743. display:flex;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. font-size:16px;
  2748. line-height:30px;
  2749. }
  2750. #u45418 .text {
  2751. position:absolute;
  2752. align-self:flex-start;
  2753. padding:0px 0px 0px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u45418_text {
  2758. border-width:0px;
  2759. white-space:nowrap;
  2760. text-transform:none;
  2761. }
  2762. #u45419_div {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:65px;
  2768. height:25px;
  2769. background:inherit;
  2770. background-color:rgba(255, 255, 255, 0);
  2771. border:none;
  2772. border-left:0px;
  2773. border-top:0px;
  2774. border-right:0px;
  2775. border-radius:0px;
  2776. border-bottom-right-radius:0px;
  2777. border-bottom-left-radius:0px;
  2778. -moz-box-shadow:none;
  2779. -webkit-box-shadow:none;
  2780. box-shadow:none;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:10px;
  2785. color:#7F7F7F;
  2786. line-height:25px;
  2787. }
  2788. #u45419 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:1928px;
  2792. top:166px;
  2793. width:65px;
  2794. height:25px;
  2795. display:flex;
  2796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. font-size:10px;
  2800. color:#7F7F7F;
  2801. line-height:25px;
  2802. }
  2803. #u45419 .text {
  2804. position:absolute;
  2805. align-self:flex-start;
  2806. padding:0px 0px 0px 0px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u45419_text {
  2811. border-width:0px;
  2812. white-space:nowrap;
  2813. text-transform:none;
  2814. }
  2815. #u45420_div {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:161px;
  2821. height:25px;
  2822. background:inherit;
  2823. background-color:rgba(255, 255, 255, 0);
  2824. border:none;
  2825. border-left:0px;
  2826. border-top:0px;
  2827. border-right:0px;
  2828. border-radius:0px;
  2829. border-bottom-right-radius:0px;
  2830. border-bottom-left-radius:0px;
  2831. -moz-box-shadow:none;
  2832. -webkit-box-shadow:none;
  2833. box-shadow:none;
  2834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:10px;
  2838. color:#F59A23;
  2839. line-height:25px;
  2840. }
  2841. #u45420 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:1928px;
  2845. top:191px;
  2846. width:161px;
  2847. height:25px;
  2848. display:flex;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:10px;
  2853. color:#F59A23;
  2854. line-height:25px;
  2855. }
  2856. #u45420 .text {
  2857. position:absolute;
  2858. align-self:flex-start;
  2859. padding:0px 0px 0px 0px;
  2860. box-sizing:border-box;
  2861. width:100%;
  2862. }
  2863. #u45420_text {
  2864. border-width:0px;
  2865. white-space:nowrap;
  2866. text-transform:none;
  2867. }
  2868. #u45421_div {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:144px;
  2874. height:40px;
  2875. background:inherit;
  2876. background-color:rgba(24, 144, 255, 1);
  2877. border:none;
  2878. border-radius:40px;
  2879. -moz-box-shadow:none;
  2880. -webkit-box-shadow:none;
  2881. box-shadow:none;
  2882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2883. font-weight:400;
  2884. font-style:normal;
  2885. font-size:14px;
  2886. color:#FFFFFF;
  2887. }
  2888. #u45421 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:2049px;
  2892. top:790px;
  2893. width:144px;
  2894. height:40px;
  2895. display:flex;
  2896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2897. font-weight:400;
  2898. font-style:normal;
  2899. font-size:14px;
  2900. color:#FFFFFF;
  2901. }
  2902. #u45421 .text {
  2903. position:absolute;
  2904. align-self:center;
  2905. padding:2px 2px 2px 2px;
  2906. box-sizing:border-box;
  2907. width:100%;
  2908. }
  2909. #u45421_text {
  2910. border-width:0px;
  2911. word-wrap:break-word;
  2912. text-transform:none;
  2913. }
  2914. #u45422_div {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:144px;
  2920. height:40px;
  2921. background:inherit;
  2922. background-color:rgba(255, 255, 255, 1);
  2923. box-sizing:border-box;
  2924. border-width:1px;
  2925. border-style:solid;
  2926. border-color:rgba(127, 127, 127, 1);
  2927. border-radius:40px;
  2928. -moz-box-shadow:none;
  2929. -webkit-box-shadow:none;
  2930. box-shadow:none;
  2931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. font-size:14px;
  2935. }
  2936. #u45422 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:1885px;
  2940. top:790px;
  2941. width:144px;
  2942. height:40px;
  2943. display:flex;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:14px;
  2948. }
  2949. #u45422 .text {
  2950. position:absolute;
  2951. align-self:center;
  2952. padding:2px 2px 2px 2px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u45422_text {
  2957. border-width:0px;
  2958. word-wrap:break-word;
  2959. text-transform:none;
  2960. }
  2961. #u45424_img {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:433px;
  2967. height:865px;
  2968. }
  2969. #u45424 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:433px;
  2975. height:865px;
  2976. display:flex;
  2977. }
  2978. #u45424 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:2px 2px 2px 2px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u45424_text {
  2986. border-width:0px;
  2987. word-wrap:break-word;
  2988. text-transform:none;
  2989. visibility:hidden;
  2990. }
  2991. #u45425_div {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:375px;
  2997. height:40px;
  2998. background:inherit;
  2999. background-color:rgba(255, 255, 255, 1);
  3000. box-sizing:border-box;
  3001. border-width:1px;
  3002. border-style:solid;
  3003. border-color:rgba(215, 215, 215, 1);
  3004. border-left:0px;
  3005. border-top:0px;
  3006. border-right:0px;
  3007. border-radius:0px;
  3008. border-bottom-right-radius:0px;
  3009. border-bottom-left-radius:0px;
  3010. -moz-box-shadow:none;
  3011. -webkit-box-shadow:none;
  3012. box-shadow:none;
  3013. }
  3014. #u45425 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:29px;
  3018. top:67px;
  3019. width:375px;
  3020. height:40px;
  3021. display:flex;
  3022. }
  3023. #u45425 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 2px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u45425_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u45426 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:0px;
  3042. height:0px;
  3043. }
  3044. #u45427_div {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:88px;
  3050. height:32px;
  3051. background:inherit;
  3052. background-color:rgba(255, 255, 255, 1);
  3053. box-sizing:border-box;
  3054. border-width:1px;
  3055. border-style:solid;
  3056. border-color:rgba(242, 242, 242, 1);
  3057. border-radius:33px;
  3058. -moz-box-shadow:none;
  3059. -webkit-box-shadow:none;
  3060. box-shadow:none;
  3061. }
  3062. #u45427 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:309px;
  3066. top:71px;
  3067. width:88px;
  3068. height:32px;
  3069. display:flex;
  3070. }
  3071. #u45427 .text {
  3072. position:absolute;
  3073. align-self:center;
  3074. padding:2px 2px 2px 2px;
  3075. box-sizing:border-box;
  3076. width:100%;
  3077. }
  3078. #u45427_text {
  3079. border-width:0px;
  3080. word-wrap:break-word;
  3081. text-transform:none;
  3082. visibility:hidden;
  3083. }
  3084. #u45428 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:0px;
  3090. height:0px;
  3091. }
  3092. #u45429_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:18px;
  3098. height:18px;
  3099. }
  3100. #u45429 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:372px;
  3104. top:78px;
  3105. width:18px;
  3106. height:18px;
  3107. display:flex;
  3108. }
  3109. #u45429 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 2px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u45429_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. visibility:hidden;
  3121. }
  3122. #u45430_img {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:6px;
  3128. height:6px;
  3129. }
  3130. #u45430 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:378px;
  3134. top:84px;
  3135. width:6px;
  3136. height:6px;
  3137. display:flex;
  3138. }
  3139. #u45430 .text {
  3140. position:absolute;
  3141. align-self:center;
  3142. padding:2px 2px 2px 2px;
  3143. box-sizing:border-box;
  3144. width:100%;
  3145. }
  3146. #u45430_text {
  3147. border-width:0px;
  3148. word-wrap:break-word;
  3149. text-transform:none;
  3150. visibility:hidden;
  3151. }
  3152. #u45431 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:0px;
  3158. height:0px;
  3159. }
  3160. #u45432_img {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:5px;
  3166. height:5px;
  3167. }
  3168. #u45432 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:323px;
  3172. top:85px;
  3173. width:5px;
  3174. height:5px;
  3175. display:flex;
  3176. }
  3177. #u45432 .text {
  3178. position:absolute;
  3179. align-self:center;
  3180. padding:2px 2px 2px 2px;
  3181. box-sizing:border-box;
  3182. width:100%;
  3183. }
  3184. #u45432_text {
  3185. border-width:0px;
  3186. word-wrap:break-word;
  3187. text-transform:none;
  3188. visibility:hidden;
  3189. }
  3190. #u45433_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:5px;
  3196. height:5px;
  3197. }
  3198. #u45433 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:339px;
  3202. top:85px;
  3203. width:5px;
  3204. height:5px;
  3205. display:flex;
  3206. }
  3207. #u45433 .text {
  3208. position:absolute;
  3209. align-self:center;
  3210. padding:2px 2px 2px 2px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u45433_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. visibility:hidden;
  3219. }
  3220. #u45434_img {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:7px;
  3226. height:7px;
  3227. }
  3228. #u45434 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:330px;
  3232. top:84px;
  3233. width:7px;
  3234. height:7px;
  3235. display:flex;
  3236. }
  3237. #u45434 .text {
  3238. position:absolute;
  3239. align-self:center;
  3240. padding:2px 2px 2px 2px;
  3241. box-sizing:border-box;
  3242. width:100%;
  3243. }
  3244. #u45434_text {
  3245. border-width:0px;
  3246. word-wrap:break-word;
  3247. text-transform:none;
  3248. visibility:hidden;
  3249. }
  3250. #u45435_img {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:19px;
  3256. height:2px;
  3257. }
  3258. #u45435 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:347px;
  3262. top:87px;
  3263. width:18px;
  3264. height:1px;
  3265. display:flex;
  3266. -webkit-transform:rotate(90deg);
  3267. -moz-transform:rotate(90deg);
  3268. -ms-transform:rotate(90deg);
  3269. transform:rotate(90deg);
  3270. }
  3271. #u45435 .text {
  3272. position:absolute;
  3273. align-self:center;
  3274. padding:2px 2px 2px 2px;
  3275. box-sizing:border-box;
  3276. width:100%;
  3277. }
  3278. #u45435_text {
  3279. border-width:0px;
  3280. word-wrap:break-word;
  3281. text-transform:none;
  3282. visibility:hidden;
  3283. }
  3284. #u45436_img {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:375px;
  3290. height:44px;
  3291. }
  3292. #u45436 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:29px;
  3296. top:24px;
  3297. width:375px;
  3298. height:44px;
  3299. display:flex;
  3300. }
  3301. #u45436 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 2px 2px 2px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u45436_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. visibility:hidden;
  3313. }
  3314. #u45437_div {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:375px;
  3320. height:50px;
  3321. background:inherit;
  3322. background-color:rgba(255, 255, 255, 1);
  3323. box-sizing:border-box;
  3324. border-width:1px;
  3325. border-style:solid;
  3326. border-color:rgba(242, 242, 242, 1);
  3327. border-radius:26px;
  3328. border-top-left-radius:0px;
  3329. border-top-right-radius:0px;
  3330. -moz-box-shadow:none;
  3331. -webkit-box-shadow:none;
  3332. box-shadow:none;
  3333. }
  3334. #u45437 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:29px;
  3338. top:788px;
  3339. width:375px;
  3340. height:50px;
  3341. display:flex;
  3342. }
  3343. #u45437 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:2px 2px 2px 2px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u45437_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. visibility:hidden;
  3355. }
  3356. #u45438 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:0px;
  3362. height:0px;
  3363. }
  3364. #u45439_img {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:0px;
  3368. top:0px;
  3369. width:24px;
  3370. height:24px;
  3371. }
  3372. #u45439 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:69px;
  3376. top:792px;
  3377. width:24px;
  3378. height:24px;
  3379. display:flex;
  3380. font-size:8px;
  3381. }
  3382. #u45439 .text {
  3383. position:absolute;
  3384. align-self:center;
  3385. padding:2px 2px 2px 2px;
  3386. box-sizing:border-box;
  3387. width:100%;
  3388. }
  3389. #u45439_text {
  3390. border-width:0px;
  3391. word-wrap:break-word;
  3392. text-transform:none;
  3393. }
  3394. #u45440_div {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:25px;
  3400. height:17px;
  3401. background:inherit;
  3402. background-color:rgba(255, 255, 255, 0);
  3403. border:none;
  3404. border-radius:0px;
  3405. -moz-box-shadow:none;
  3406. -webkit-box-shadow:none;
  3407. box-shadow:none;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:12px;
  3412. }
  3413. #u45440 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:69px;
  3417. top:817px;
  3418. width:25px;
  3419. height:17px;
  3420. display:flex;
  3421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3422. font-weight:400;
  3423. font-style:normal;
  3424. font-size:12px;
  3425. }
  3426. #u45440 .text {
  3427. position:absolute;
  3428. align-self:flex-start;
  3429. padding:0px 0px 0px 0px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u45440_text {
  3434. border-width:0px;
  3435. white-space:nowrap;
  3436. text-transform:none;
  3437. }
  3438. #u45441 {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:0px;
  3444. height:0px;
  3445. }
  3446. #u45442_img {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:24px;
  3452. height:24px;
  3453. }
  3454. #u45442 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:339px;
  3458. top:794px;
  3459. width:24px;
  3460. height:24px;
  3461. display:flex;
  3462. font-size:8px;
  3463. }
  3464. #u45442 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 2px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u45442_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. }
  3476. #u45443_div {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:25px;
  3482. height:17px;
  3483. background:inherit;
  3484. background-color:rgba(255, 255, 255, 0);
  3485. border:none;
  3486. border-radius:0px;
  3487. -moz-box-shadow:none;
  3488. -webkit-box-shadow:none;
  3489. box-shadow:none;
  3490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. font-size:12px;
  3494. }
  3495. #u45443 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:339px;
  3499. top:819px;
  3500. width:25px;
  3501. height:17px;
  3502. display:flex;
  3503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3504. font-weight:400;
  3505. font-style:normal;
  3506. font-size:12px;
  3507. }
  3508. #u45443 .text {
  3509. position:absolute;
  3510. align-self:flex-start;
  3511. padding:0px 0px 0px 0px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u45443_text {
  3516. border-width:0px;
  3517. white-space:nowrap;
  3518. text-transform:none;
  3519. }
  3520. #u45444_div {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:375px;
  3526. height:681px;
  3527. background:inherit;
  3528. background-color:rgba(242, 242, 242, 0.462745098039216);
  3529. border:none;
  3530. border-radius:0px;
  3531. -moz-box-shadow:none;
  3532. -webkit-box-shadow:none;
  3533. box-shadow:none;
  3534. }
  3535. #u45444 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:29px;
  3539. top:107px;
  3540. width:375px;
  3541. height:681px;
  3542. display:flex;
  3543. }
  3544. #u45444 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 2px 2px 2px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u45444_text {
  3552. border-width:0px;
  3553. word-wrap:break-word;
  3554. text-transform:none;
  3555. visibility:hidden;
  3556. }
  3557. #u45445 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:0px;
  3563. height:0px;
  3564. }
  3565. #u45446_img {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:24px;
  3571. height:24px;
  3572. }
  3573. #u45446 {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:251px;
  3577. top:792px;
  3578. width:24px;
  3579. height:24px;
  3580. display:flex;
  3581. font-size:8px;
  3582. }
  3583. #u45446 .text {
  3584. position:absolute;
  3585. align-self:center;
  3586. padding:2px 2px 2px 2px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u45446_text {
  3591. border-width:0px;
  3592. word-wrap:break-word;
  3593. text-transform:none;
  3594. }
  3595. #u45447_div {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:37px;
  3601. height:17px;
  3602. background:inherit;
  3603. background-color:rgba(255, 255, 255, 0);
  3604. border:none;
  3605. border-radius:0px;
  3606. -moz-box-shadow:none;
  3607. -webkit-box-shadow:none;
  3608. box-shadow:none;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. }
  3614. #u45447 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:245px;
  3618. top:817px;
  3619. width:37px;
  3620. height:17px;
  3621. display:flex;
  3622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. font-size:12px;
  3626. }
  3627. #u45447 .text {
  3628. position:absolute;
  3629. align-self:flex-start;
  3630. padding:0px 0px 0px 0px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u45447_text {
  3635. border-width:0px;
  3636. white-space:nowrap;
  3637. text-transform:none;
  3638. }
  3639. #u45448 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:0px;
  3645. height:0px;
  3646. }
  3647. #u45449_img {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:24px;
  3653. height:24px;
  3654. }
  3655. #u45449 {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:157px;
  3659. top:792px;
  3660. width:24px;
  3661. height:24px;
  3662. display:flex;
  3663. font-size:8px;
  3664. }
  3665. #u45449 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:2px 2px 2px 2px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u45449_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. }
  3677. #u45450_div {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:37px;
  3683. height:17px;
  3684. background:inherit;
  3685. background-color:rgba(255, 255, 255, 0);
  3686. border:none;
  3687. border-radius:0px;
  3688. -moz-box-shadow:none;
  3689. -webkit-box-shadow:none;
  3690. box-shadow:none;
  3691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3692. font-weight:400;
  3693. font-style:normal;
  3694. font-size:12px;
  3695. }
  3696. #u45450 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:151px;
  3700. top:817px;
  3701. width:37px;
  3702. height:17px;
  3703. display:flex;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. }
  3709. #u45450 .text {
  3710. position:absolute;
  3711. align-self:flex-start;
  3712. padding:0px 0px 0px 0px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u45450_text {
  3717. border-width:0px;
  3718. white-space:nowrap;
  3719. text-transform:none;
  3720. }
  3721. #u45451_div {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:375px;
  3727. height:735px;
  3728. background:inherit;
  3729. background-color:rgba(242, 242, 242, 1);
  3730. border:none;
  3731. border-top:0px;
  3732. border-radius:25px;
  3733. border-top-left-radius:0px;
  3734. border-top-right-radius:0px;
  3735. -moz-box-shadow:none;
  3736. -webkit-box-shadow:none;
  3737. box-shadow:none;
  3738. }
  3739. #u45451 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:29px;
  3743. top:105px;
  3744. width:375px;
  3745. height:735px;
  3746. display:flex;
  3747. }
  3748. #u45451 .text {
  3749. position:absolute;
  3750. align-self:center;
  3751. padding:2px 2px 2px 2px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u45451_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. visibility:hidden;
  3760. }
  3761. #u45452_div {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:99px;
  3767. height:30px;
  3768. background:inherit;
  3769. background-color:rgba(255, 255, 255, 0);
  3770. border:none;
  3771. border-left:0px;
  3772. border-top:0px;
  3773. border-right:0px;
  3774. border-radius:0px;
  3775. border-bottom-right-radius:0px;
  3776. border-bottom-left-radius:0px;
  3777. -moz-box-shadow:none;
  3778. -webkit-box-shadow:none;
  3779. box-shadow:none;
  3780. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3781. font-weight:500;
  3782. font-style:normal;
  3783. font-size:14px;
  3784. line-height:30px;
  3785. }
  3786. #u45452 {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:167px;
  3790. top:73px;
  3791. width:99px;
  3792. height:30px;
  3793. display:flex;
  3794. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3795. font-weight:500;
  3796. font-style:normal;
  3797. font-size:14px;
  3798. line-height:30px;
  3799. }
  3800. #u45452 .text {
  3801. position:absolute;
  3802. align-self:flex-start;
  3803. padding:0px 0px 0px 0px;
  3804. box-sizing:border-box;
  3805. width:100%;
  3806. }
  3807. #u45452_text {
  3808. border-width:0px;
  3809. white-space:nowrap;
  3810. text-transform:none;
  3811. }
  3812. #u45453 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:0px;
  3818. height:0px;
  3819. }
  3820. #u45454_img {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:11px;
  3826. height:18px;
  3827. }
  3828. #u45454 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:42px;
  3832. top:79px;
  3833. width:11px;
  3834. height:18px;
  3835. display:flex;
  3836. }
  3837. #u45454 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:2px 2px 2px 2px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u45454_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. visibility:hidden;
  3849. }
  3850. #u45455 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:0px;
  3856. height:0px;
  3857. }
  3858. #u45456_div {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:375px;
  3864. height:40px;
  3865. background:inherit;
  3866. background-color:rgba(255, 255, 255, 1);
  3867. border:none;
  3868. border-radius:0px;
  3869. -moz-box-shadow:none;
  3870. -webkit-box-shadow:none;
  3871. box-shadow:none;
  3872. }
  3873. #u45456 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:29px;
  3877. top:105px;
  3878. width:375px;
  3879. height:40px;
  3880. display:flex;
  3881. }
  3882. #u45456 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 2px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u45456_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u45457_div {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:43px;
  3901. height:40px;
  3902. background:inherit;
  3903. background-color:rgba(255, 255, 255, 0);
  3904. border:none;
  3905. border-left:0px;
  3906. border-top:0px;
  3907. border-right:0px;
  3908. border-radius:0px;
  3909. border-bottom-right-radius:0px;
  3910. border-bottom-left-radius:0px;
  3911. -moz-box-shadow:none;
  3912. -webkit-box-shadow:none;
  3913. box-shadow:none;
  3914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3915. font-weight:400;
  3916. font-style:normal;
  3917. font-size:14px;
  3918. line-height:30px;
  3919. }
  3920. #u45457 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:305px;
  3924. top:105px;
  3925. width:43px;
  3926. height:40px;
  3927. display:flex;
  3928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:14px;
  3932. line-height:30px;
  3933. }
  3934. #u45457 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:0px 0px 0px 0px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u45457_text {
  3942. border-width:0px;
  3943. white-space:nowrap;
  3944. text-transform:none;
  3945. }
  3946. #u45458_div {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:0px;
  3950. top:0px;
  3951. width:43px;
  3952. height:40px;
  3953. background:inherit;
  3954. background-color:rgba(255, 255, 255, 0);
  3955. border:none;
  3956. border-left:0px;
  3957. border-top:0px;
  3958. border-right:0px;
  3959. border-radius:0px;
  3960. border-bottom-right-radius:0px;
  3961. border-bottom-left-radius:0px;
  3962. -moz-box-shadow:none;
  3963. -webkit-box-shadow:none;
  3964. box-shadow:none;
  3965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:14px;
  3969. line-height:30px;
  3970. }
  3971. #u45458 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:200px;
  3975. top:105px;
  3976. width:43px;
  3977. height:40px;
  3978. display:flex;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:14px;
  3983. line-height:30px;
  3984. }
  3985. #u45458 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:0px 0px 0px 0px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u45458_text {
  3993. border-width:0px;
  3994. white-space:nowrap;
  3995. text-transform:none;
  3996. }
  3997. #u45459_div {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:43px;
  4003. height:40px;
  4004. background:inherit;
  4005. background-color:rgba(255, 255, 255, 0);
  4006. box-sizing:border-box;
  4007. border-width:2px;
  4008. border-style:solid;
  4009. border-color:rgba(51, 51, 51, 1);
  4010. border-left:0px;
  4011. border-top:0px;
  4012. border-right:0px;
  4013. border-radius:0px;
  4014. border-bottom-right-radius:0px;
  4015. border-bottom-left-radius:0px;
  4016. -moz-box-shadow:none;
  4017. -webkit-box-shadow:none;
  4018. box-shadow:none;
  4019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4020. font-weight:400;
  4021. font-style:normal;
  4022. font-size:14px;
  4023. line-height:40px;
  4024. }
  4025. #u45459 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:85px;
  4029. top:105px;
  4030. width:43px;
  4031. height:40px;
  4032. display:flex;
  4033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. font-size:14px;
  4037. line-height:40px;
  4038. }
  4039. #u45459 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:0px 0px 0px 0px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u45459_text {
  4047. border-width:0px;
  4048. white-space:nowrap;
  4049. text-transform:none;
  4050. }
  4051. #u45461_img {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:433px;
  4057. height:865px;
  4058. }
  4059. #u45461 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:453px;
  4063. top:0px;
  4064. width:433px;
  4065. height:865px;
  4066. display:flex;
  4067. }
  4068. #u45461 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 2px 2px 2px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u45461_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u45462_div {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:375px;
  4087. height:40px;
  4088. background:inherit;
  4089. background-color:rgba(255, 255, 255, 1);
  4090. box-sizing:border-box;
  4091. border-width:1px;
  4092. border-style:solid;
  4093. border-color:rgba(215, 215, 215, 1);
  4094. border-left:0px;
  4095. border-top:0px;
  4096. border-right:0px;
  4097. border-radius:0px;
  4098. border-bottom-right-radius:0px;
  4099. border-bottom-left-radius:0px;
  4100. -moz-box-shadow:none;
  4101. -webkit-box-shadow:none;
  4102. box-shadow:none;
  4103. }
  4104. #u45462 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:482px;
  4108. top:67px;
  4109. width:375px;
  4110. height:40px;
  4111. display:flex;
  4112. }
  4113. #u45462 .text {
  4114. position:absolute;
  4115. align-self:center;
  4116. padding:2px 2px 2px 2px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u45462_text {
  4121. border-width:0px;
  4122. word-wrap:break-word;
  4123. text-transform:none;
  4124. visibility:hidden;
  4125. }
  4126. #u45463 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:0px;
  4132. height:0px;
  4133. }
  4134. #u45464_div {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:88px;
  4140. height:32px;
  4141. background:inherit;
  4142. background-color:rgba(255, 255, 255, 1);
  4143. box-sizing:border-box;
  4144. border-width:1px;
  4145. border-style:solid;
  4146. border-color:rgba(242, 242, 242, 1);
  4147. border-radius:33px;
  4148. -moz-box-shadow:none;
  4149. -webkit-box-shadow:none;
  4150. box-shadow:none;
  4151. }
  4152. #u45464 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:762px;
  4156. top:71px;
  4157. width:88px;
  4158. height:32px;
  4159. display:flex;
  4160. }
  4161. #u45464 .text {
  4162. position:absolute;
  4163. align-self:center;
  4164. padding:2px 2px 2px 2px;
  4165. box-sizing:border-box;
  4166. width:100%;
  4167. }
  4168. #u45464_text {
  4169. border-width:0px;
  4170. word-wrap:break-word;
  4171. text-transform:none;
  4172. visibility:hidden;
  4173. }
  4174. #u45465 {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:0px;
  4180. height:0px;
  4181. }
  4182. #u45466_img {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:18px;
  4188. height:18px;
  4189. }
  4190. #u45466 {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:825px;
  4194. top:78px;
  4195. width:18px;
  4196. height:18px;
  4197. display:flex;
  4198. }
  4199. #u45466 .text {
  4200. position:absolute;
  4201. align-self:center;
  4202. padding:2px 2px 2px 2px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u45466_text {
  4207. border-width:0px;
  4208. word-wrap:break-word;
  4209. text-transform:none;
  4210. visibility:hidden;
  4211. }
  4212. #u45467_img {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:6px;
  4218. height:6px;
  4219. }
  4220. #u45467 {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:831px;
  4224. top:84px;
  4225. width:6px;
  4226. height:6px;
  4227. display:flex;
  4228. }
  4229. #u45467 .text {
  4230. position:absolute;
  4231. align-self:center;
  4232. padding:2px 2px 2px 2px;
  4233. box-sizing:border-box;
  4234. width:100%;
  4235. }
  4236. #u45467_text {
  4237. border-width:0px;
  4238. word-wrap:break-word;
  4239. text-transform:none;
  4240. visibility:hidden;
  4241. }
  4242. #u45468 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:0px;
  4246. top:0px;
  4247. width:0px;
  4248. height:0px;
  4249. }
  4250. #u45469_img {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:5px;
  4256. height:5px;
  4257. }
  4258. #u45469 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:776px;
  4262. top:85px;
  4263. width:5px;
  4264. height:5px;
  4265. display:flex;
  4266. }
  4267. #u45469 .text {
  4268. position:absolute;
  4269. align-self:center;
  4270. padding:2px 2px 2px 2px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u45469_text {
  4275. border-width:0px;
  4276. word-wrap:break-word;
  4277. text-transform:none;
  4278. visibility:hidden;
  4279. }
  4280. #u45470_img {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:5px;
  4286. height:5px;
  4287. }
  4288. #u45470 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:792px;
  4292. top:85px;
  4293. width:5px;
  4294. height:5px;
  4295. display:flex;
  4296. }
  4297. #u45470 .text {
  4298. position:absolute;
  4299. align-self:center;
  4300. padding:2px 2px 2px 2px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u45470_text {
  4305. border-width:0px;
  4306. word-wrap:break-word;
  4307. text-transform:none;
  4308. visibility:hidden;
  4309. }
  4310. #u45471_img {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:7px;
  4316. height:7px;
  4317. }
  4318. #u45471 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:783px;
  4322. top:84px;
  4323. width:7px;
  4324. height:7px;
  4325. display:flex;
  4326. }
  4327. #u45471 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 2px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u45471_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u45472_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:19px;
  4346. height:2px;
  4347. }
  4348. #u45472 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:800px;
  4352. top:87px;
  4353. width:18px;
  4354. height:1px;
  4355. display:flex;
  4356. -webkit-transform:rotate(90deg);
  4357. -moz-transform:rotate(90deg);
  4358. -ms-transform:rotate(90deg);
  4359. transform:rotate(90deg);
  4360. }
  4361. #u45472 .text {
  4362. position:absolute;
  4363. align-self:center;
  4364. padding:2px 2px 2px 2px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u45472_text {
  4369. border-width:0px;
  4370. word-wrap:break-word;
  4371. text-transform:none;
  4372. visibility:hidden;
  4373. }
  4374. #u45473_img {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:375px;
  4380. height:44px;
  4381. }
  4382. #u45473 {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:482px;
  4386. top:24px;
  4387. width:375px;
  4388. height:44px;
  4389. display:flex;
  4390. }
  4391. #u45473 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 2px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u45473_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. visibility:hidden;
  4403. }
  4404. #u45474_div {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:375px;
  4410. height:50px;
  4411. background:inherit;
  4412. background-color:rgba(255, 255, 255, 1);
  4413. box-sizing:border-box;
  4414. border-width:1px;
  4415. border-style:solid;
  4416. border-color:rgba(242, 242, 242, 1);
  4417. border-radius:26px;
  4418. border-top-left-radius:0px;
  4419. border-top-right-radius:0px;
  4420. -moz-box-shadow:none;
  4421. -webkit-box-shadow:none;
  4422. box-shadow:none;
  4423. }
  4424. #u45474 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:482px;
  4428. top:788px;
  4429. width:375px;
  4430. height:50px;
  4431. display:flex;
  4432. }
  4433. #u45474 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 2px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u45474_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. visibility:hidden;
  4445. }
  4446. #u45475 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:0px;
  4452. height:0px;
  4453. }
  4454. #u45476_img {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:24px;
  4460. height:24px;
  4461. }
  4462. #u45476 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:522px;
  4466. top:792px;
  4467. width:24px;
  4468. height:24px;
  4469. display:flex;
  4470. font-size:8px;
  4471. }
  4472. #u45476 .text {
  4473. position:absolute;
  4474. align-self:center;
  4475. padding:2px 2px 2px 2px;
  4476. box-sizing:border-box;
  4477. width:100%;
  4478. }
  4479. #u45476_text {
  4480. border-width:0px;
  4481. word-wrap:break-word;
  4482. text-transform:none;
  4483. }
  4484. #u45477_div {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:25px;
  4490. height:17px;
  4491. background:inherit;
  4492. background-color:rgba(255, 255, 255, 0);
  4493. border:none;
  4494. border-radius:0px;
  4495. -moz-box-shadow:none;
  4496. -webkit-box-shadow:none;
  4497. box-shadow:none;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:12px;
  4502. }
  4503. #u45477 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:522px;
  4507. top:817px;
  4508. width:25px;
  4509. height:17px;
  4510. display:flex;
  4511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4512. font-weight:400;
  4513. font-style:normal;
  4514. font-size:12px;
  4515. }
  4516. #u45477 .text {
  4517. position:absolute;
  4518. align-self:flex-start;
  4519. padding:0px 0px 0px 0px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u45477_text {
  4524. border-width:0px;
  4525. white-space:nowrap;
  4526. text-transform:none;
  4527. }
  4528. #u45478 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:0px;
  4534. height:0px;
  4535. }
  4536. #u45479_img {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:24px;
  4542. height:24px;
  4543. }
  4544. #u45479 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:792px;
  4548. top:794px;
  4549. width:24px;
  4550. height:24px;
  4551. display:flex;
  4552. font-size:8px;
  4553. }
  4554. #u45479 .text {
  4555. position:absolute;
  4556. align-self:center;
  4557. padding:2px 2px 2px 2px;
  4558. box-sizing:border-box;
  4559. width:100%;
  4560. }
  4561. #u45479_text {
  4562. border-width:0px;
  4563. word-wrap:break-word;
  4564. text-transform:none;
  4565. }
  4566. #u45480_div {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:0px;
  4570. top:0px;
  4571. width:25px;
  4572. height:17px;
  4573. background:inherit;
  4574. background-color:rgba(255, 255, 255, 0);
  4575. border:none;
  4576. border-radius:0px;
  4577. -moz-box-shadow:none;
  4578. -webkit-box-shadow:none;
  4579. box-shadow:none;
  4580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4581. font-weight:400;
  4582. font-style:normal;
  4583. font-size:12px;
  4584. }
  4585. #u45480 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:792px;
  4589. top:819px;
  4590. width:25px;
  4591. height:17px;
  4592. display:flex;
  4593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4594. font-weight:400;
  4595. font-style:normal;
  4596. font-size:12px;
  4597. }
  4598. #u45480 .text {
  4599. position:absolute;
  4600. align-self:flex-start;
  4601. padding:0px 0px 0px 0px;
  4602. box-sizing:border-box;
  4603. width:100%;
  4604. }
  4605. #u45480_text {
  4606. border-width:0px;
  4607. white-space:nowrap;
  4608. text-transform:none;
  4609. }
  4610. #u45481_div {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:375px;
  4616. height:681px;
  4617. background:inherit;
  4618. background-color:rgba(242, 242, 242, 0.462745098039216);
  4619. border:none;
  4620. border-radius:0px;
  4621. -moz-box-shadow:none;
  4622. -webkit-box-shadow:none;
  4623. box-shadow:none;
  4624. }
  4625. #u45481 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:482px;
  4629. top:107px;
  4630. width:375px;
  4631. height:681px;
  4632. display:flex;
  4633. }
  4634. #u45481 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 2px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u45481_text {
  4642. border-width:0px;
  4643. word-wrap:break-word;
  4644. text-transform:none;
  4645. visibility:hidden;
  4646. }
  4647. #u45482 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:0px;
  4653. height:0px;
  4654. }
  4655. #u45483_img {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:24px;
  4661. height:24px;
  4662. }
  4663. #u45483 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:704px;
  4667. top:792px;
  4668. width:24px;
  4669. height:24px;
  4670. display:flex;
  4671. font-size:8px;
  4672. }
  4673. #u45483 .text {
  4674. position:absolute;
  4675. align-self:center;
  4676. padding:2px 2px 2px 2px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u45483_text {
  4681. border-width:0px;
  4682. word-wrap:break-word;
  4683. text-transform:none;
  4684. }
  4685. #u45484_div {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:37px;
  4691. height:17px;
  4692. background:inherit;
  4693. background-color:rgba(255, 255, 255, 0);
  4694. border:none;
  4695. border-radius:0px;
  4696. -moz-box-shadow:none;
  4697. -webkit-box-shadow:none;
  4698. box-shadow:none;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:12px;
  4703. }
  4704. #u45484 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:698px;
  4708. top:817px;
  4709. width:37px;
  4710. height:17px;
  4711. display:flex;
  4712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:12px;
  4716. }
  4717. #u45484 .text {
  4718. position:absolute;
  4719. align-self:flex-start;
  4720. padding:0px 0px 0px 0px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u45484_text {
  4725. border-width:0px;
  4726. white-space:nowrap;
  4727. text-transform:none;
  4728. }
  4729. #u45485 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:0px;
  4735. height:0px;
  4736. }
  4737. #u45486_img {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:24px;
  4743. height:24px;
  4744. }
  4745. #u45486 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:610px;
  4749. top:792px;
  4750. width:24px;
  4751. height:24px;
  4752. display:flex;
  4753. font-size:8px;
  4754. }
  4755. #u45486 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:2px 2px 2px 2px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u45486_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. }
  4767. #u45487_div {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:37px;
  4773. height:17px;
  4774. background:inherit;
  4775. background-color:rgba(255, 255, 255, 0);
  4776. border:none;
  4777. border-radius:0px;
  4778. -moz-box-shadow:none;
  4779. -webkit-box-shadow:none;
  4780. box-shadow:none;
  4781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:12px;
  4785. }
  4786. #u45487 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:604px;
  4790. top:817px;
  4791. width:37px;
  4792. height:17px;
  4793. display:flex;
  4794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4795. font-weight:400;
  4796. font-style:normal;
  4797. font-size:12px;
  4798. }
  4799. #u45487 .text {
  4800. position:absolute;
  4801. align-self:flex-start;
  4802. padding:0px 0px 0px 0px;
  4803. box-sizing:border-box;
  4804. width:100%;
  4805. }
  4806. #u45487_text {
  4807. border-width:0px;
  4808. white-space:nowrap;
  4809. text-transform:none;
  4810. }
  4811. #u45488_div {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:375px;
  4817. height:735px;
  4818. background:inherit;
  4819. background-color:rgba(242, 242, 242, 1);
  4820. border:none;
  4821. border-top:0px;
  4822. border-radius:25px;
  4823. border-top-left-radius:0px;
  4824. border-top-right-radius:0px;
  4825. -moz-box-shadow:none;
  4826. -webkit-box-shadow:none;
  4827. box-shadow:none;
  4828. }
  4829. #u45488 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:482px;
  4833. top:105px;
  4834. width:375px;
  4835. height:735px;
  4836. display:flex;
  4837. }
  4838. #u45488 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 2px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u45488_text {
  4846. border-width:0px;
  4847. word-wrap:break-word;
  4848. text-transform:none;
  4849. visibility:hidden;
  4850. }
  4851. #u45489 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:0px;
  4857. height:0px;
  4858. }
  4859. #u45490_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:11px;
  4865. height:18px;
  4866. }
  4867. #u45490 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:495px;
  4871. top:79px;
  4872. width:11px;
  4873. height:18px;
  4874. display:flex;
  4875. }
  4876. #u45490 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:2px 2px 2px 2px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u45490_text {
  4884. border-width:0px;
  4885. word-wrap:break-word;
  4886. text-transform:none;
  4887. visibility:hidden;
  4888. }
  4889. #u45491 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:0px;
  4895. height:0px;
  4896. }
  4897. #u45492_div {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:375px;
  4903. height:200px;
  4904. background:inherit;
  4905. background-color:rgba(255, 255, 255, 1);
  4906. border:none;
  4907. border-left:0px;
  4908. border-top:0px;
  4909. border-right:0px;
  4910. border-radius:0px;
  4911. border-bottom-right-radius:0px;
  4912. border-bottom-left-radius:0px;
  4913. -moz-box-shadow:none;
  4914. -webkit-box-shadow:none;
  4915. box-shadow:none;
  4916. }
  4917. #u45492 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:482px;
  4921. top:155px;
  4922. width:375px;
  4923. height:200px;
  4924. display:flex;
  4925. }
  4926. #u45492 .text {
  4927. position:absolute;
  4928. align-self:center;
  4929. padding:2px 2px 2px 2px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u45492_text {
  4934. border-width:0px;
  4935. word-wrap:break-word;
  4936. text-transform:none;
  4937. visibility:hidden;
  4938. }
  4939. #u45493_div {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:181px;
  4945. height:80px;
  4946. background:inherit;
  4947. background-color:rgba(255, 255, 255, 0);
  4948. border:none;
  4949. border-left:0px;
  4950. border-top:0px;
  4951. border-right:0px;
  4952. border-radius:0px;
  4953. border-bottom-right-radius:0px;
  4954. border-bottom-left-radius:0px;
  4955. -moz-box-shadow:none;
  4956. -webkit-box-shadow:none;
  4957. box-shadow:none;
  4958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:12px;
  4962. color:#7F7F7F;
  4963. line-height:20px;
  4964. }
  4965. #u45493 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:499px;
  4969. top:219px;
  4970. width:181px;
  4971. height:80px;
  4972. display:flex;
  4973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4974. font-weight:400;
  4975. font-style:normal;
  4976. font-size:12px;
  4977. color:#7F7F7F;
  4978. line-height:20px;
  4979. }
  4980. #u45493 .text {
  4981. position:absolute;
  4982. align-self:flex-start;
  4983. padding:0px 0px 0px 0px;
  4984. box-sizing:border-box;
  4985. width:100%;
  4986. }
  4987. #u45493_text {
  4988. border-width:0px;
  4989. white-space:nowrap;
  4990. text-transform:none;
  4991. }
  4992. #u45494_img {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:0px;
  4996. top:0px;
  4997. width:40px;
  4998. height:40px;
  4999. }
  5000. #u45494 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:499px;
  5004. top:171px;
  5005. width:40px;
  5006. height:40px;
  5007. display:flex;
  5008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5009. font-weight:400;
  5010. font-style:normal;
  5011. }
  5012. #u45494 .text {
  5013. position:absolute;
  5014. align-self:center;
  5015. padding:2px 2px 2px 2px;
  5016. box-sizing:border-box;
  5017. width:100%;
  5018. }
  5019. #u45494_text {
  5020. border-width:0px;
  5021. word-wrap:break-word;
  5022. text-transform:none;
  5023. }
  5024. #u45495_div {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:33px;
  5030. height:30px;
  5031. background:inherit;
  5032. background-color:rgba(255, 255, 255, 0);
  5033. border:none;
  5034. border-left:0px;
  5035. border-top:0px;
  5036. border-right:0px;
  5037. border-radius:0px;
  5038. border-bottom-right-radius:0px;
  5039. border-bottom-left-radius:0px;
  5040. -moz-box-shadow:none;
  5041. -webkit-box-shadow:none;
  5042. box-shadow:none;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:16px;
  5047. line-height:30px;
  5048. }
  5049. #u45495 {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:559px;
  5053. top:176px;
  5054. width:33px;
  5055. height:30px;
  5056. display:flex;
  5057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:16px;
  5061. line-height:30px;
  5062. }
  5063. #u45495 .text {
  5064. position:absolute;
  5065. align-self:flex-start;
  5066. padding:0px 0px 0px 0px;
  5067. box-sizing:border-box;
  5068. width:100%;
  5069. }
  5070. #u45495_text {
  5071. border-width:0px;
  5072. white-space:nowrap;
  5073. text-transform:none;
  5074. }
  5075. #u45496_div {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:85px;
  5081. height:30px;
  5082. background:inherit;
  5083. background-color:rgba(242, 242, 242, 1);
  5084. border:none;
  5085. border-radius:40px;
  5086. -moz-box-shadow:none;
  5087. -webkit-box-shadow:none;
  5088. box-shadow:none;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. font-size:12px;
  5093. color:#AAAAAA;
  5094. }
  5095. #u45496 {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:762px;
  5099. top:315px;
  5100. width:85px;
  5101. height:30px;
  5102. display:flex;
  5103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:12px;
  5107. color:#AAAAAA;
  5108. }
  5109. #u45496 .text {
  5110. position:absolute;
  5111. align-self:center;
  5112. padding:2px 2px 2px 2px;
  5113. box-sizing:border-box;
  5114. width:100%;
  5115. }
  5116. #u45496_text {
  5117. border-width:0px;
  5118. word-wrap:break-word;
  5119. text-transform:none;
  5120. }
  5121. #u45497 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:0px;
  5125. top:0px;
  5126. width:0px;
  5127. height:0px;
  5128. }
  5129. #u45498_div {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:375px;
  5135. height:40px;
  5136. background:inherit;
  5137. background-color:rgba(255, 255, 255, 1);
  5138. border:none;
  5139. border-radius:0px;
  5140. -moz-box-shadow:none;
  5141. -webkit-box-shadow:none;
  5142. box-shadow:none;
  5143. }
  5144. #u45498 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:482px;
  5148. top:105px;
  5149. width:375px;
  5150. height:40px;
  5151. display:flex;
  5152. }
  5153. #u45498 .text {
  5154. position:absolute;
  5155. align-self:center;
  5156. padding:2px 2px 2px 2px;
  5157. box-sizing:border-box;
  5158. width:100%;
  5159. }
  5160. #u45498_text {
  5161. border-width:0px;
  5162. word-wrap:break-word;
  5163. text-transform:none;
  5164. visibility:hidden;
  5165. }
  5166. #u45499_div {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:43px;
  5172. height:40px;
  5173. background:inherit;
  5174. background-color:rgba(255, 255, 255, 0);
  5175. box-sizing:border-box;
  5176. border-width:2px;
  5177. border-style:solid;
  5178. border-color:rgba(51, 51, 51, 1);
  5179. border-left:0px;
  5180. border-top:0px;
  5181. border-right:0px;
  5182. border-radius:0px;
  5183. border-bottom-right-radius:0px;
  5184. border-bottom-left-radius:0px;
  5185. -moz-box-shadow:none;
  5186. -webkit-box-shadow:none;
  5187. box-shadow:none;
  5188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:14px;
  5192. line-height:30px;
  5193. }
  5194. #u45499 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:758px;
  5198. top:105px;
  5199. width:43px;
  5200. height:40px;
  5201. display:flex;
  5202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:14px;
  5206. line-height:30px;
  5207. }
  5208. #u45499 .text {
  5209. position:absolute;
  5210. align-self:center;
  5211. padding:0px 0px 0px 0px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u45499_text {
  5216. border-width:0px;
  5217. white-space:nowrap;
  5218. text-transform:none;
  5219. }
  5220. #u45500_div {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:43px;
  5226. height:40px;
  5227. background:inherit;
  5228. background-color:rgba(255, 255, 255, 0);
  5229. box-sizing:border-box;
  5230. border-width:2px;
  5231. border-style:solid;
  5232. border-color:rgba(51, 51, 51, 1);
  5233. border-left:0px;
  5234. border-top:0px;
  5235. border-right:0px;
  5236. border-radius:0px;
  5237. border-bottom-right-radius:0px;
  5238. border-bottom-left-radius:0px;
  5239. -moz-box-shadow:none;
  5240. -webkit-box-shadow:none;
  5241. box-shadow:none;
  5242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5243. font-weight:400;
  5244. font-style:normal;
  5245. font-size:14px;
  5246. line-height:30px;
  5247. }
  5248. #u45500 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:653px;
  5252. top:105px;
  5253. width:43px;
  5254. height:40px;
  5255. display:flex;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:14px;
  5260. line-height:30px;
  5261. }
  5262. #u45500 .text {
  5263. position:absolute;
  5264. align-self:center;
  5265. padding:0px 0px 0px 0px;
  5266. box-sizing:border-box;
  5267. width:100%;
  5268. }
  5269. #u45500_text {
  5270. border-width:0px;
  5271. white-space:nowrap;
  5272. text-transform:none;
  5273. }
  5274. #u45501_div {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:52px;
  5280. height:40px;
  5281. background:inherit;
  5282. background-color:rgba(255, 255, 255, 0);
  5283. border:none;
  5284. border-left:0px;
  5285. border-top:0px;
  5286. border-right:0px;
  5287. border-radius:0px;
  5288. border-bottom-right-radius:0px;
  5289. border-bottom-left-radius:0px;
  5290. -moz-box-shadow:none;
  5291. -webkit-box-shadow:none;
  5292. box-shadow:none;
  5293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5294. font-weight:400;
  5295. font-style:normal;
  5296. font-size:14px;
  5297. line-height:30px;
  5298. }
  5299. #u45501 {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:538px;
  5303. top:105px;
  5304. width:52px;
  5305. height:40px;
  5306. display:flex;
  5307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. font-size:14px;
  5311. line-height:30px;
  5312. }
  5313. #u45501 .text {
  5314. position:absolute;
  5315. align-self:center;
  5316. padding:0px 0px 0px 0px;
  5317. box-sizing:border-box;
  5318. width:100%;
  5319. }
  5320. #u45501_text {
  5321. border-width:0px;
  5322. word-wrap:break-word;
  5323. text-transform:none;
  5324. }
  5325. #u45502 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:0px;
  5331. height:0px;
  5332. }
  5333. #u45503_div {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:0px;
  5337. top:0px;
  5338. width:375px;
  5339. height:200px;
  5340. background:inherit;
  5341. background-color:rgba(255, 255, 255, 1);
  5342. border:none;
  5343. border-left:0px;
  5344. border-top:0px;
  5345. border-right:0px;
  5346. border-radius:0px;
  5347. border-bottom-right-radius:0px;
  5348. border-bottom-left-radius:0px;
  5349. -moz-box-shadow:none;
  5350. -webkit-box-shadow:none;
  5351. box-shadow:none;
  5352. }
  5353. #u45503 {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:29px;
  5357. top:366px;
  5358. width:375px;
  5359. height:200px;
  5360. display:flex;
  5361. }
  5362. #u45503 .text {
  5363. position:absolute;
  5364. align-self:center;
  5365. padding:2px 2px 2px 2px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u45503_text {
  5370. border-width:0px;
  5371. word-wrap:break-word;
  5372. text-transform:none;
  5373. visibility:hidden;
  5374. }
  5375. #u45504_div {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:181px;
  5381. height:80px;
  5382. background:inherit;
  5383. background-color:rgba(255, 255, 255, 0);
  5384. border:none;
  5385. border-left:0px;
  5386. border-top:0px;
  5387. border-right:0px;
  5388. border-radius:0px;
  5389. border-bottom-right-radius:0px;
  5390. border-bottom-left-radius:0px;
  5391. -moz-box-shadow:none;
  5392. -webkit-box-shadow:none;
  5393. box-shadow:none;
  5394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5395. font-weight:400;
  5396. font-style:normal;
  5397. font-size:12px;
  5398. color:#7F7F7F;
  5399. line-height:20px;
  5400. }
  5401. #u45504 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:46px;
  5405. top:436px;
  5406. width:181px;
  5407. height:80px;
  5408. display:flex;
  5409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:12px;
  5413. color:#7F7F7F;
  5414. line-height:20px;
  5415. }
  5416. #u45504 .text {
  5417. position:absolute;
  5418. align-self:flex-start;
  5419. padding:0px 0px 0px 0px;
  5420. box-sizing:border-box;
  5421. width:100%;
  5422. }
  5423. #u45504_text {
  5424. border-width:0px;
  5425. white-space:nowrap;
  5426. text-transform:none;
  5427. }
  5428. #u45505_img {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:40px;
  5434. height:40px;
  5435. }
  5436. #u45505 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:46px;
  5440. top:382px;
  5441. width:40px;
  5442. height:40px;
  5443. display:flex;
  5444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. }
  5448. #u45505 .text {
  5449. position:absolute;
  5450. align-self:center;
  5451. padding:2px 2px 2px 2px;
  5452. box-sizing:border-box;
  5453. width:100%;
  5454. }
  5455. #u45505_text {
  5456. border-width:0px;
  5457. word-wrap:break-word;
  5458. text-transform:none;
  5459. }
  5460. #u45506_div {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:33px;
  5466. height:30px;
  5467. background:inherit;
  5468. background-color:rgba(255, 255, 255, 0);
  5469. border:none;
  5470. border-left:0px;
  5471. border-top:0px;
  5472. border-right:0px;
  5473. border-radius:0px;
  5474. border-bottom-right-radius:0px;
  5475. border-bottom-left-radius:0px;
  5476. -moz-box-shadow:none;
  5477. -webkit-box-shadow:none;
  5478. box-shadow:none;
  5479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. font-size:16px;
  5483. line-height:30px;
  5484. }
  5485. #u45506 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:106px;
  5489. top:387px;
  5490. width:33px;
  5491. height:30px;
  5492. display:flex;
  5493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5494. font-weight:400;
  5495. font-style:normal;
  5496. font-size:16px;
  5497. line-height:30px;
  5498. }
  5499. #u45506 .text {
  5500. position:absolute;
  5501. align-self:flex-start;
  5502. padding:0px 0px 0px 0px;
  5503. box-sizing:border-box;
  5504. width:100%;
  5505. }
  5506. #u45506_text {
  5507. border-width:0px;
  5508. white-space:nowrap;
  5509. text-transform:none;
  5510. }
  5511. #u45507_div {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:79px;
  5517. height:30px;
  5518. background:inherit;
  5519. background-color:rgba(255, 255, 255, 1);
  5520. box-sizing:border-box;
  5521. border-width:1px;
  5522. border-style:solid;
  5523. border-color:rgba(127, 127, 127, 1);
  5524. border-radius:40px;
  5525. -moz-box-shadow:none;
  5526. -webkit-box-shadow:none;
  5527. box-shadow:none;
  5528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:12px;
  5532. }
  5533. #u45507 {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:305px;
  5537. top:526px;
  5538. width:79px;
  5539. height:30px;
  5540. display:flex;
  5541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5542. font-weight:400;
  5543. font-style:normal;
  5544. font-size:12px;
  5545. }
  5546. #u45507 .text {
  5547. position:absolute;
  5548. align-self:center;
  5549. padding:2px 2px 2px 2px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u45507_text {
  5554. border-width:0px;
  5555. word-wrap:break-word;
  5556. text-transform:none;
  5557. }
  5558. #u45508_div {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:161px;
  5564. height:25px;
  5565. background:inherit;
  5566. background-color:rgba(255, 255, 255, 0);
  5567. border:none;
  5568. border-left:0px;
  5569. border-top:0px;
  5570. border-right:0px;
  5571. border-radius:0px;
  5572. border-bottom-right-radius:0px;
  5573. border-bottom-left-radius:0px;
  5574. -moz-box-shadow:none;
  5575. -webkit-box-shadow:none;
  5576. box-shadow:none;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:10px;
  5581. color:#F59A23;
  5582. line-height:25px;
  5583. }
  5584. #u45508 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:106px;
  5588. top:411px;
  5589. width:161px;
  5590. height:25px;
  5591. display:flex;
  5592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5593. font-weight:400;
  5594. font-style:normal;
  5595. font-size:10px;
  5596. color:#F59A23;
  5597. line-height:25px;
  5598. }
  5599. #u45508 .text {
  5600. position:absolute;
  5601. align-self:flex-start;
  5602. padding:0px 0px 0px 0px;
  5603. box-sizing:border-box;
  5604. width:100%;
  5605. }
  5606. #u45508_text {
  5607. border-width:0px;
  5608. white-space:nowrap;
  5609. text-transform:none;
  5610. }
  5611. #u45510_img {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:0px;
  5615. top:0px;
  5616. width:433px;
  5617. height:865px;
  5618. }
  5619. #u45510 {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:911px;
  5623. top:0px;
  5624. width:433px;
  5625. height:865px;
  5626. display:flex;
  5627. }
  5628. #u45510 .text {
  5629. position:absolute;
  5630. align-self:center;
  5631. padding:2px 2px 2px 2px;
  5632. box-sizing:border-box;
  5633. width:100%;
  5634. }
  5635. #u45510_text {
  5636. border-width:0px;
  5637. word-wrap:break-word;
  5638. text-transform:none;
  5639. visibility:hidden;
  5640. }
  5641. #u45511_div {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:375px;
  5647. height:40px;
  5648. background:inherit;
  5649. background-color:rgba(255, 255, 255, 1);
  5650. box-sizing:border-box;
  5651. border-width:1px;
  5652. border-style:solid;
  5653. border-color:rgba(215, 215, 215, 1);
  5654. border-left:0px;
  5655. border-top:0px;
  5656. border-right:0px;
  5657. border-radius:0px;
  5658. border-bottom-right-radius:0px;
  5659. border-bottom-left-radius:0px;
  5660. -moz-box-shadow:none;
  5661. -webkit-box-shadow:none;
  5662. box-shadow:none;
  5663. }
  5664. #u45511 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:940px;
  5668. top:67px;
  5669. width:375px;
  5670. height:40px;
  5671. display:flex;
  5672. }
  5673. #u45511 .text {
  5674. position:absolute;
  5675. align-self:center;
  5676. padding:2px 2px 2px 2px;
  5677. box-sizing:border-box;
  5678. width:100%;
  5679. }
  5680. #u45511_text {
  5681. border-width:0px;
  5682. word-wrap:break-word;
  5683. text-transform:none;
  5684. visibility:hidden;
  5685. }
  5686. #u45512 {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:0px;
  5690. top:0px;
  5691. width:0px;
  5692. height:0px;
  5693. }
  5694. #u45513_div {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:88px;
  5700. height:32px;
  5701. background:inherit;
  5702. background-color:rgba(255, 255, 255, 1);
  5703. box-sizing:border-box;
  5704. border-width:1px;
  5705. border-style:solid;
  5706. border-color:rgba(242, 242, 242, 1);
  5707. border-radius:33px;
  5708. -moz-box-shadow:none;
  5709. -webkit-box-shadow:none;
  5710. box-shadow:none;
  5711. }
  5712. #u45513 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:1220px;
  5716. top:71px;
  5717. width:88px;
  5718. height:32px;
  5719. display:flex;
  5720. }
  5721. #u45513 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 2px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u45513_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u45514 {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:0px;
  5740. height:0px;
  5741. }
  5742. #u45515_img {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:18px;
  5748. height:18px;
  5749. }
  5750. #u45515 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:1283px;
  5754. top:78px;
  5755. width:18px;
  5756. height:18px;
  5757. display:flex;
  5758. }
  5759. #u45515 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 2px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u45515_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u45516_img {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:6px;
  5778. height:6px;
  5779. }
  5780. #u45516 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:1289px;
  5784. top:84px;
  5785. width:6px;
  5786. height:6px;
  5787. display:flex;
  5788. }
  5789. #u45516 .text {
  5790. position:absolute;
  5791. align-self:center;
  5792. padding:2px 2px 2px 2px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u45516_text {
  5797. border-width:0px;
  5798. word-wrap:break-word;
  5799. text-transform:none;
  5800. visibility:hidden;
  5801. }
  5802. #u45517 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:0px;
  5808. height:0px;
  5809. }
  5810. #u45518_img {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:5px;
  5816. height:5px;
  5817. }
  5818. #u45518 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:1234px;
  5822. top:85px;
  5823. width:5px;
  5824. height:5px;
  5825. display:flex;
  5826. }
  5827. #u45518 .text {
  5828. position:absolute;
  5829. align-self:center;
  5830. padding:2px 2px 2px 2px;
  5831. box-sizing:border-box;
  5832. width:100%;
  5833. }
  5834. #u45518_text {
  5835. border-width:0px;
  5836. word-wrap:break-word;
  5837. text-transform:none;
  5838. visibility:hidden;
  5839. }
  5840. #u45519_img {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:5px;
  5846. height:5px;
  5847. }
  5848. #u45519 {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:1250px;
  5852. top:85px;
  5853. width:5px;
  5854. height:5px;
  5855. display:flex;
  5856. }
  5857. #u45519 .text {
  5858. position:absolute;
  5859. align-self:center;
  5860. padding:2px 2px 2px 2px;
  5861. box-sizing:border-box;
  5862. width:100%;
  5863. }
  5864. #u45519_text {
  5865. border-width:0px;
  5866. word-wrap:break-word;
  5867. text-transform:none;
  5868. visibility:hidden;
  5869. }
  5870. #u45520_img {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:7px;
  5876. height:7px;
  5877. }
  5878. #u45520 {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:1241px;
  5882. top:84px;
  5883. width:7px;
  5884. height:7px;
  5885. display:flex;
  5886. }
  5887. #u45520 .text {
  5888. position:absolute;
  5889. align-self:center;
  5890. padding:2px 2px 2px 2px;
  5891. box-sizing:border-box;
  5892. width:100%;
  5893. }
  5894. #u45520_text {
  5895. border-width:0px;
  5896. word-wrap:break-word;
  5897. text-transform:none;
  5898. visibility:hidden;
  5899. }
  5900. #u45521_img {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:19px;
  5906. height:2px;
  5907. }
  5908. #u45521 {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:1258px;
  5912. top:87px;
  5913. width:18px;
  5914. height:1px;
  5915. display:flex;
  5916. -webkit-transform:rotate(90deg);
  5917. -moz-transform:rotate(90deg);
  5918. -ms-transform:rotate(90deg);
  5919. transform:rotate(90deg);
  5920. }
  5921. #u45521 .text {
  5922. position:absolute;
  5923. align-self:center;
  5924. padding:2px 2px 2px 2px;
  5925. box-sizing:border-box;
  5926. width:100%;
  5927. }
  5928. #u45521_text {
  5929. border-width:0px;
  5930. word-wrap:break-word;
  5931. text-transform:none;
  5932. visibility:hidden;
  5933. }
  5934. #u45522_img {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:375px;
  5940. height:44px;
  5941. }
  5942. #u45522 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:940px;
  5946. top:24px;
  5947. width:375px;
  5948. height:44px;
  5949. display:flex;
  5950. }
  5951. #u45522 .text {
  5952. position:absolute;
  5953. align-self:center;
  5954. padding:2px 2px 2px 2px;
  5955. box-sizing:border-box;
  5956. width:100%;
  5957. }
  5958. #u45522_text {
  5959. border-width:0px;
  5960. word-wrap:break-word;
  5961. text-transform:none;
  5962. visibility:hidden;
  5963. }
  5964. #u45523_div {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:375px;
  5970. height:50px;
  5971. background:inherit;
  5972. background-color:rgba(255, 255, 255, 1);
  5973. box-sizing:border-box;
  5974. border-width:1px;
  5975. border-style:solid;
  5976. border-color:rgba(242, 242, 242, 1);
  5977. border-radius:26px;
  5978. border-top-left-radius:0px;
  5979. border-top-right-radius:0px;
  5980. -moz-box-shadow:none;
  5981. -webkit-box-shadow:none;
  5982. box-shadow:none;
  5983. }
  5984. #u45523 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:940px;
  5988. top:788px;
  5989. width:375px;
  5990. height:50px;
  5991. display:flex;
  5992. }
  5993. #u45523 .text {
  5994. position:absolute;
  5995. align-self:center;
  5996. padding:2px 2px 2px 2px;
  5997. box-sizing:border-box;
  5998. width:100%;
  5999. }
  6000. #u45523_text {
  6001. border-width:0px;
  6002. word-wrap:break-word;
  6003. text-transform:none;
  6004. visibility:hidden;
  6005. }
  6006. #u45524 {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:0px;
  6012. height:0px;
  6013. }
  6014. #u45525_img {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:24px;
  6020. height:24px;
  6021. }
  6022. #u45525 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:980px;
  6026. top:792px;
  6027. width:24px;
  6028. height:24px;
  6029. display:flex;
  6030. font-size:8px;
  6031. }
  6032. #u45525 .text {
  6033. position:absolute;
  6034. align-self:center;
  6035. padding:2px 2px 2px 2px;
  6036. box-sizing:border-box;
  6037. width:100%;
  6038. }
  6039. #u45525_text {
  6040. border-width:0px;
  6041. word-wrap:break-word;
  6042. text-transform:none;
  6043. }
  6044. #u45526_div {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:25px;
  6050. height:17px;
  6051. background:inherit;
  6052. background-color:rgba(255, 255, 255, 0);
  6053. border:none;
  6054. border-radius:0px;
  6055. -moz-box-shadow:none;
  6056. -webkit-box-shadow:none;
  6057. box-shadow:none;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:12px;
  6062. }
  6063. #u45526 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:980px;
  6067. top:817px;
  6068. width:25px;
  6069. height:17px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:12px;
  6075. }
  6076. #u45526 .text {
  6077. position:absolute;
  6078. align-self:flex-start;
  6079. padding:0px 0px 0px 0px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u45526_text {
  6084. border-width:0px;
  6085. white-space:nowrap;
  6086. text-transform:none;
  6087. }
  6088. #u45527 {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:0px;
  6094. height:0px;
  6095. }
  6096. #u45528_img {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:24px;
  6102. height:24px;
  6103. }
  6104. #u45528 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:1250px;
  6108. top:794px;
  6109. width:24px;
  6110. height:24px;
  6111. display:flex;
  6112. font-size:8px;
  6113. }
  6114. #u45528 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:2px 2px 2px 2px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u45528_text {
  6122. border-width:0px;
  6123. word-wrap:break-word;
  6124. text-transform:none;
  6125. }
  6126. #u45529_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:25px;
  6132. height:17px;
  6133. background:inherit;
  6134. background-color:rgba(255, 255, 255, 0);
  6135. border:none;
  6136. border-radius:0px;
  6137. -moz-box-shadow:none;
  6138. -webkit-box-shadow:none;
  6139. box-shadow:none;
  6140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. font-size:12px;
  6144. }
  6145. #u45529 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:1250px;
  6149. top:819px;
  6150. width:25px;
  6151. height:17px;
  6152. display:flex;
  6153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. font-size:12px;
  6157. }
  6158. #u45529 .text {
  6159. position:absolute;
  6160. align-self:flex-start;
  6161. padding:0px 0px 0px 0px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u45529_text {
  6166. border-width:0px;
  6167. white-space:nowrap;
  6168. text-transform:none;
  6169. }
  6170. #u45530_div {
  6171. border-width:0px;
  6172. position:absolute;
  6173. left:0px;
  6174. top:0px;
  6175. width:375px;
  6176. height:681px;
  6177. background:inherit;
  6178. background-color:rgba(242, 242, 242, 0.462745098039216);
  6179. border:none;
  6180. border-radius:0px;
  6181. -moz-box-shadow:none;
  6182. -webkit-box-shadow:none;
  6183. box-shadow:none;
  6184. }
  6185. #u45530 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:940px;
  6189. top:107px;
  6190. width:375px;
  6191. height:681px;
  6192. display:flex;
  6193. }
  6194. #u45530 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:2px 2px 2px 2px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u45530_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. visibility:hidden;
  6206. }
  6207. #u45531 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:0px;
  6213. height:0px;
  6214. }
  6215. #u45532_img {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:24px;
  6221. height:24px;
  6222. }
  6223. #u45532 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:1162px;
  6227. top:792px;
  6228. width:24px;
  6229. height:24px;
  6230. display:flex;
  6231. font-size:8px;
  6232. }
  6233. #u45532 .text {
  6234. position:absolute;
  6235. align-self:center;
  6236. padding:2px 2px 2px 2px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u45532_text {
  6241. border-width:0px;
  6242. word-wrap:break-word;
  6243. text-transform:none;
  6244. }
  6245. #u45533_div {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:37px;
  6251. height:17px;
  6252. background:inherit;
  6253. background-color:rgba(255, 255, 255, 0);
  6254. border:none;
  6255. border-radius:0px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:12px;
  6263. }
  6264. #u45533 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:1156px;
  6268. top:817px;
  6269. width:37px;
  6270. height:17px;
  6271. display:flex;
  6272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. font-size:12px;
  6276. }
  6277. #u45533 .text {
  6278. position:absolute;
  6279. align-self:flex-start;
  6280. padding:0px 0px 0px 0px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u45533_text {
  6285. border-width:0px;
  6286. white-space:nowrap;
  6287. text-transform:none;
  6288. }
  6289. #u45534 {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:0px;
  6295. height:0px;
  6296. }
  6297. #u45535_img {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:24px;
  6303. height:24px;
  6304. }
  6305. #u45535 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:1068px;
  6309. top:792px;
  6310. width:24px;
  6311. height:24px;
  6312. display:flex;
  6313. font-size:8px;
  6314. }
  6315. #u45535 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:2px 2px 2px 2px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u45535_text {
  6323. border-width:0px;
  6324. word-wrap:break-word;
  6325. text-transform:none;
  6326. }
  6327. #u45536_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:37px;
  6333. height:17px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 0);
  6336. border:none;
  6337. border-radius:0px;
  6338. -moz-box-shadow:none;
  6339. -webkit-box-shadow:none;
  6340. box-shadow:none;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:12px;
  6345. }
  6346. #u45536 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:1062px;
  6350. top:817px;
  6351. width:37px;
  6352. height:17px;
  6353. display:flex;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. }
  6359. #u45536 .text {
  6360. position:absolute;
  6361. align-self:flex-start;
  6362. padding:0px 0px 0px 0px;
  6363. box-sizing:border-box;
  6364. width:100%;
  6365. }
  6366. #u45536_text {
  6367. border-width:0px;
  6368. white-space:nowrap;
  6369. text-transform:none;
  6370. }
  6371. #u45537_div {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:0px;
  6375. top:0px;
  6376. width:375px;
  6377. height:735px;
  6378. background:inherit;
  6379. background-color:rgba(242, 242, 242, 1);
  6380. border:none;
  6381. border-top:0px;
  6382. border-radius:25px;
  6383. border-top-left-radius:0px;
  6384. border-top-right-radius:0px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. }
  6389. #u45537 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:940px;
  6393. top:105px;
  6394. width:375px;
  6395. height:735px;
  6396. display:flex;
  6397. }
  6398. #u45537 .text {
  6399. position:absolute;
  6400. align-self:center;
  6401. padding:2px 2px 2px 2px;
  6402. box-sizing:border-box;
  6403. width:100%;
  6404. }
  6405. #u45537_text {
  6406. border-width:0px;
  6407. word-wrap:break-word;
  6408. text-transform:none;
  6409. visibility:hidden;
  6410. }
  6411. #u45538 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:0px;
  6417. height:0px;
  6418. }
  6419. #u45539_img {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:0px;
  6424. width:11px;
  6425. height:18px;
  6426. }
  6427. #u45539 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:953px;
  6431. top:79px;
  6432. width:11px;
  6433. height:18px;
  6434. display:flex;
  6435. }
  6436. #u45539 .text {
  6437. position:absolute;
  6438. align-self:center;
  6439. padding:2px 2px 2px 2px;
  6440. box-sizing:border-box;
  6441. width:100%;
  6442. }
  6443. #u45539_text {
  6444. border-width:0px;
  6445. word-wrap:break-word;
  6446. text-transform:none;
  6447. visibility:hidden;
  6448. }
  6449. #u45540 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:0px;
  6455. height:0px;
  6456. }
  6457. #u45541_div {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:0px;
  6461. top:0px;
  6462. width:375px;
  6463. height:40px;
  6464. background:inherit;
  6465. background-color:rgba(255, 255, 255, 1);
  6466. border:none;
  6467. border-radius:0px;
  6468. -moz-box-shadow:none;
  6469. -webkit-box-shadow:none;
  6470. box-shadow:none;
  6471. }
  6472. #u45541 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:940px;
  6476. top:105px;
  6477. width:375px;
  6478. height:40px;
  6479. display:flex;
  6480. }
  6481. #u45541 .text {
  6482. position:absolute;
  6483. align-self:center;
  6484. padding:2px 2px 2px 2px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u45541_text {
  6489. border-width:0px;
  6490. word-wrap:break-word;
  6491. text-transform:none;
  6492. visibility:hidden;
  6493. }
  6494. #u45542_div {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:43px;
  6500. height:40px;
  6501. background:inherit;
  6502. background-color:rgba(255, 255, 255, 0);
  6503. box-sizing:border-box;
  6504. border-width:2px;
  6505. border-style:solid;
  6506. border-color:rgba(51, 51, 51, 1);
  6507. border-left:0px;
  6508. border-top:0px;
  6509. border-right:0px;
  6510. border-radius:0px;
  6511. border-bottom-right-radius:0px;
  6512. border-bottom-left-radius:0px;
  6513. -moz-box-shadow:none;
  6514. -webkit-box-shadow:none;
  6515. box-shadow:none;
  6516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6517. font-weight:400;
  6518. font-style:normal;
  6519. font-size:14px;
  6520. line-height:30px;
  6521. }
  6522. #u45542 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:1216px;
  6526. top:105px;
  6527. width:43px;
  6528. height:40px;
  6529. display:flex;
  6530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:14px;
  6534. line-height:30px;
  6535. }
  6536. #u45542 .text {
  6537. position:absolute;
  6538. align-self:center;
  6539. padding:0px 0px 0px 0px;
  6540. box-sizing:border-box;
  6541. width:100%;
  6542. }
  6543. #u45542_text {
  6544. border-width:0px;
  6545. white-space:nowrap;
  6546. text-transform:none;
  6547. }
  6548. #u45543_div {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:43px;
  6554. height:40px;
  6555. background:inherit;
  6556. background-color:rgba(255, 255, 255, 0);
  6557. border:none;
  6558. border-left:0px;
  6559. border-top:0px;
  6560. border-right:0px;
  6561. border-radius:0px;
  6562. border-bottom-right-radius:0px;
  6563. border-bottom-left-radius:0px;
  6564. -moz-box-shadow:none;
  6565. -webkit-box-shadow:none;
  6566. box-shadow:none;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:14px;
  6571. line-height:30px;
  6572. }
  6573. #u45543 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:1111px;
  6577. top:105px;
  6578. width:43px;
  6579. height:40px;
  6580. display:flex;
  6581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:14px;
  6585. line-height:30px;
  6586. }
  6587. #u45543 .text {
  6588. position:absolute;
  6589. align-self:center;
  6590. padding:0px 0px 0px 0px;
  6591. box-sizing:border-box;
  6592. width:100%;
  6593. }
  6594. #u45543_text {
  6595. border-width:0px;
  6596. white-space:nowrap;
  6597. text-transform:none;
  6598. }
  6599. #u45544_div {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:52px;
  6605. height:40px;
  6606. background:inherit;
  6607. background-color:rgba(255, 255, 255, 0);
  6608. border:none;
  6609. border-left:0px;
  6610. border-top:0px;
  6611. border-right:0px;
  6612. border-radius:0px;
  6613. border-bottom-right-radius:0px;
  6614. border-bottom-left-radius:0px;
  6615. -moz-box-shadow:none;
  6616. -webkit-box-shadow:none;
  6617. box-shadow:none;
  6618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6619. font-weight:400;
  6620. font-style:normal;
  6621. font-size:14px;
  6622. line-height:30px;
  6623. }
  6624. #u45544 {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:996px;
  6628. top:105px;
  6629. width:52px;
  6630. height:40px;
  6631. display:flex;
  6632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. font-size:14px;
  6636. line-height:30px;
  6637. }
  6638. #u45544 .text {
  6639. position:absolute;
  6640. align-self:center;
  6641. padding:0px 0px 0px 0px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u45544_text {
  6646. border-width:0px;
  6647. word-wrap:break-word;
  6648. text-transform:none;
  6649. }
  6650. #u45545 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:0px;
  6654. top:0px;
  6655. width:0px;
  6656. height:0px;
  6657. }
  6658. #u45546_div {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:0px;
  6662. top:0px;
  6663. width:375px;
  6664. height:200px;
  6665. background:inherit;
  6666. background-color:rgba(255, 255, 255, 1);
  6667. border:none;
  6668. border-left:0px;
  6669. border-top:0px;
  6670. border-right:0px;
  6671. border-radius:0px;
  6672. border-bottom-right-radius:0px;
  6673. border-bottom-left-radius:0px;
  6674. -moz-box-shadow:none;
  6675. -webkit-box-shadow:none;
  6676. box-shadow:none;
  6677. }
  6678. #u45546 {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:29px;
  6682. top:155px;
  6683. width:375px;
  6684. height:200px;
  6685. display:flex;
  6686. }
  6687. #u45546 .text {
  6688. position:absolute;
  6689. align-self:center;
  6690. padding:2px 2px 2px 2px;
  6691. box-sizing:border-box;
  6692. width:100%;
  6693. }
  6694. #u45546_text {
  6695. border-width:0px;
  6696. word-wrap:break-word;
  6697. text-transform:none;
  6698. visibility:hidden;
  6699. }
  6700. #u45547_div {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:205px;
  6706. height:80px;
  6707. background:inherit;
  6708. background-color:rgba(255, 255, 255, 0);
  6709. border:none;
  6710. border-left:0px;
  6711. border-top:0px;
  6712. border-right:0px;
  6713. border-radius:0px;
  6714. border-bottom-right-radius:0px;
  6715. border-bottom-left-radius:0px;
  6716. -moz-box-shadow:none;
  6717. -webkit-box-shadow:none;
  6718. box-shadow:none;
  6719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6720. font-weight:400;
  6721. font-style:normal;
  6722. font-size:12px;
  6723. color:#7F7F7F;
  6724. line-height:20px;
  6725. }
  6726. #u45547 {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:46px;
  6730. top:221px;
  6731. width:205px;
  6732. height:80px;
  6733. display:flex;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:12px;
  6738. color:#7F7F7F;
  6739. line-height:20px;
  6740. }
  6741. #u45547 .text {
  6742. position:absolute;
  6743. align-self:flex-start;
  6744. padding:0px 0px 0px 0px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u45547_text {
  6749. border-width:0px;
  6750. white-space:nowrap;
  6751. text-transform:none;
  6752. }
  6753. #u45548_img {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:40px;
  6759. height:40px;
  6760. }
  6761. #u45548 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:46px;
  6765. top:171px;
  6766. width:40px;
  6767. height:40px;
  6768. display:flex;
  6769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. }
  6773. #u45548 .text {
  6774. position:absolute;
  6775. align-self:center;
  6776. padding:2px 2px 2px 2px;
  6777. box-sizing:border-box;
  6778. width:100%;
  6779. }
  6780. #u45548_text {
  6781. border-width:0px;
  6782. word-wrap:break-word;
  6783. text-transform:none;
  6784. }
  6785. #u45549_div {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:0px;
  6789. top:0px;
  6790. width:33px;
  6791. height:30px;
  6792. background:inherit;
  6793. background-color:rgba(255, 255, 255, 0);
  6794. border:none;
  6795. border-left:0px;
  6796. border-top:0px;
  6797. border-right:0px;
  6798. border-radius:0px;
  6799. border-bottom-right-radius:0px;
  6800. border-bottom-left-radius:0px;
  6801. -moz-box-shadow:none;
  6802. -webkit-box-shadow:none;
  6803. box-shadow:none;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:16px;
  6808. line-height:30px;
  6809. }
  6810. #u45549 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:106px;
  6814. top:170px;
  6815. width:33px;
  6816. height:30px;
  6817. display:flex;
  6818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6819. font-weight:400;
  6820. font-style:normal;
  6821. font-size:16px;
  6822. line-height:30px;
  6823. }
  6824. #u45549 .text {
  6825. position:absolute;
  6826. align-self:flex-start;
  6827. padding:0px 0px 0px 0px;
  6828. box-sizing:border-box;
  6829. width:100%;
  6830. }
  6831. #u45549_text {
  6832. border-width:0px;
  6833. white-space:nowrap;
  6834. text-transform:none;
  6835. }
  6836. #u45550_div {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:161px;
  6842. height:25px;
  6843. background:inherit;
  6844. background-color:rgba(255, 255, 255, 0);
  6845. border:none;
  6846. border-left:0px;
  6847. border-top:0px;
  6848. border-right:0px;
  6849. border-radius:0px;
  6850. border-bottom-right-radius:0px;
  6851. border-bottom-left-radius:0px;
  6852. -moz-box-shadow:none;
  6853. -webkit-box-shadow:none;
  6854. box-shadow:none;
  6855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6856. font-weight:400;
  6857. font-style:normal;
  6858. font-size:10px;
  6859. color:#F59A23;
  6860. line-height:25px;
  6861. }
  6862. #u45550 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:106px;
  6866. top:196px;
  6867. width:161px;
  6868. height:25px;
  6869. display:flex;
  6870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6871. font-weight:400;
  6872. font-style:normal;
  6873. font-size:10px;
  6874. color:#F59A23;
  6875. line-height:25px;
  6876. }
  6877. #u45550 .text {
  6878. position:absolute;
  6879. align-self:flex-start;
  6880. padding:0px 0px 0px 0px;
  6881. box-sizing:border-box;
  6882. width:100%;
  6883. }
  6884. #u45550_text {
  6885. border-width:0px;
  6886. white-space:nowrap;
  6887. text-transform:none;
  6888. }
  6889. #u45551_div {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:0px;
  6893. top:0px;
  6894. width:58px;
  6895. height:30px;
  6896. background:inherit;
  6897. background-color:rgba(24, 144, 255, 1);
  6898. border:none;
  6899. border-radius:40px;
  6900. -moz-box-shadow:none;
  6901. -webkit-box-shadow:none;
  6902. box-shadow:none;
  6903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6904. font-weight:400;
  6905. font-style:normal;
  6906. font-size:12px;
  6907. color:#FFFFFF;
  6908. }
  6909. #u45551 {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:332px;
  6913. top:315px;
  6914. width:58px;
  6915. height:30px;
  6916. display:flex;
  6917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:12px;
  6921. color:#FFFFFF;
  6922. }
  6923. #u45551 .text {
  6924. position:absolute;
  6925. align-self:center;
  6926. padding:2px 2px 2px 2px;
  6927. box-sizing:border-box;
  6928. width:100%;
  6929. }
  6930. #u45551_text {
  6931. border-width:0px;
  6932. word-wrap:break-word;
  6933. text-transform:none;
  6934. }
  6935. #u45552_div {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:58px;
  6941. height:30px;
  6942. background:inherit;
  6943. background-color:rgba(255, 255, 255, 1);
  6944. box-sizing:border-box;
  6945. border-width:1px;
  6946. border-style:solid;
  6947. border-color:rgba(127, 127, 127, 1);
  6948. border-radius:40px;
  6949. -moz-box-shadow:none;
  6950. -webkit-box-shadow:none;
  6951. box-shadow:none;
  6952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6953. font-weight:400;
  6954. font-style:normal;
  6955. font-size:12px;
  6956. }
  6957. #u45552 {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:264px;
  6961. top:315px;
  6962. width:58px;
  6963. height:30px;
  6964. display:flex;
  6965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6966. font-weight:400;
  6967. font-style:normal;
  6968. font-size:12px;
  6969. }
  6970. #u45552 .text {
  6971. position:absolute;
  6972. align-self:center;
  6973. padding:2px 2px 2px 2px;
  6974. box-sizing:border-box;
  6975. width:100%;
  6976. }
  6977. #u45552_text {
  6978. border-width:0px;
  6979. word-wrap:break-word;
  6980. text-transform:none;
  6981. }
  6982. #u45553_div {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:0px;
  6986. top:0px;
  6987. width:99px;
  6988. height:30px;
  6989. background:inherit;
  6990. background-color:rgba(255, 255, 255, 0);
  6991. border:none;
  6992. border-radius:0px;
  6993. -moz-box-shadow:none;
  6994. -webkit-box-shadow:none;
  6995. box-shadow:none;
  6996. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6997. font-weight:500;
  6998. font-style:normal;
  6999. font-size:14px;
  7000. line-height:30px;
  7001. }
  7002. #u45553 {
  7003. border-width:0px;
  7004. position:absolute;
  7005. left:620px;
  7006. top:73px;
  7007. width:99px;
  7008. height:30px;
  7009. display:flex;
  7010. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7011. font-weight:500;
  7012. font-style:normal;
  7013. font-size:14px;
  7014. line-height:30px;
  7015. }
  7016. #u45553 .text {
  7017. position:absolute;
  7018. align-self:flex-start;
  7019. padding:0px 0px 0px 0px;
  7020. box-sizing:border-box;
  7021. width:100%;
  7022. }
  7023. #u45553_text {
  7024. border-width:0px;
  7025. white-space:nowrap;
  7026. text-transform:none;
  7027. }
  7028. #u45554_div {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:99px;
  7034. height:30px;
  7035. background:inherit;
  7036. background-color:rgba(255, 255, 255, 0);
  7037. border:none;
  7038. border-radius:0px;
  7039. -moz-box-shadow:none;
  7040. -webkit-box-shadow:none;
  7041. box-shadow:none;
  7042. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7043. font-weight:500;
  7044. font-style:normal;
  7045. font-size:14px;
  7046. line-height:30px;
  7047. }
  7048. #u45554 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:1083px;
  7052. top:73px;
  7053. width:99px;
  7054. height:30px;
  7055. display:flex;
  7056. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7057. font-weight:500;
  7058. font-style:normal;
  7059. font-size:14px;
  7060. line-height:30px;
  7061. }
  7062. #u45554 .text {
  7063. position:absolute;
  7064. align-self:flex-start;
  7065. padding:0px 0px 0px 0px;
  7066. box-sizing:border-box;
  7067. width:100%;
  7068. }
  7069. #u45554_text {
  7070. border-width:0px;
  7071. white-space:nowrap;
  7072. text-transform:none;
  7073. }
  7074. #u45555 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:0px;
  7078. top:0px;
  7079. width:0px;
  7080. height:0px;
  7081. }
  7082. #u45556_div {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:0px;
  7086. top:0px;
  7087. width:375px;
  7088. height:80px;
  7089. background:inherit;
  7090. background-color:rgba(255, 255, 255, 1);
  7091. border:none;
  7092. border-left:0px;
  7093. border-top:0px;
  7094. border-right:0px;
  7095. border-radius:0px;
  7096. border-bottom-right-radius:0px;
  7097. border-bottom-left-radius:0px;
  7098. -moz-box-shadow:none;
  7099. -webkit-box-shadow:none;
  7100. box-shadow:none;
  7101. }
  7102. #u45556 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:1393px;
  7106. top:231px;
  7107. width:375px;
  7108. height:80px;
  7109. display:flex;
  7110. }
  7111. #u45556 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 2px 2px 2px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u45556_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u45557_div {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:33px;
  7130. height:30px;
  7131. background:inherit;
  7132. background-color:rgba(255, 255, 255, 0);
  7133. border:none;
  7134. border-left:0px;
  7135. border-top:0px;
  7136. border-right:0px;
  7137. border-radius:0px;
  7138. border-bottom-right-radius:0px;
  7139. border-bottom-left-radius:0px;
  7140. -moz-box-shadow:none;
  7141. -webkit-box-shadow:none;
  7142. box-shadow:none;
  7143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7144. font-weight:400;
  7145. font-style:normal;
  7146. font-size:16px;
  7147. line-height:30px;
  7148. }
  7149. #u45557 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:1470px;
  7153. top:265px;
  7154. width:33px;
  7155. height:30px;
  7156. display:flex;
  7157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:16px;
  7161. line-height:30px;
  7162. }
  7163. #u45557 .text {
  7164. position:absolute;
  7165. align-self:flex-start;
  7166. padding:0px 0px 0px 0px;
  7167. box-sizing:border-box;
  7168. width:100%;
  7169. }
  7170. #u45557_text {
  7171. border-width:0px;
  7172. white-space:nowrap;
  7173. text-transform:none;
  7174. }
  7175. #u45558_div {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:0px;
  7179. top:0px;
  7180. width:49px;
  7181. height:25px;
  7182. background:inherit;
  7183. background-color:rgba(255, 255, 255, 0);
  7184. border:none;
  7185. border-left:0px;
  7186. border-top:0px;
  7187. border-right:0px;
  7188. border-radius:0px;
  7189. border-bottom-right-radius:0px;
  7190. border-bottom-left-radius:0px;
  7191. -moz-box-shadow:none;
  7192. -webkit-box-shadow:none;
  7193. box-shadow:none;
  7194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:12px;
  7198. color:#7F7F7F;
  7199. line-height:25px;
  7200. }
  7201. #u45558 {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:1470px;
  7205. top:240px;
  7206. width:49px;
  7207. height:25px;
  7208. display:flex;
  7209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7210. font-weight:400;
  7211. font-style:normal;
  7212. font-size:12px;
  7213. color:#7F7F7F;
  7214. line-height:25px;
  7215. }
  7216. #u45558 .text {
  7217. position:absolute;
  7218. align-self:flex-start;
  7219. padding:0px 0px 0px 0px;
  7220. box-sizing:border-box;
  7221. width:100%;
  7222. }
  7223. #u45558_text {
  7224. border-width:0px;
  7225. white-space:nowrap;
  7226. text-transform:none;
  7227. }
  7228. #u45559 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:0px;
  7234. height:0px;
  7235. }
  7236. #u45560_div {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:0px;
  7240. top:0px;
  7241. width:300px;
  7242. height:149px;
  7243. background:inherit;
  7244. background-color:rgba(255, 255, 255, 1);
  7245. border:none;
  7246. border-radius:10px;
  7247. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7248. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7249. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7250. }
  7251. #u45560 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:505px;
  7255. top:431px;
  7256. width:300px;
  7257. height:149px;
  7258. display:flex;
  7259. }
  7260. #u45560 .text {
  7261. position:absolute;
  7262. align-self:center;
  7263. padding:2px 2px 2px 2px;
  7264. box-sizing:border-box;
  7265. width:100%;
  7266. }
  7267. #u45560_text {
  7268. border-width:0px;
  7269. word-wrap:break-word;
  7270. text-transform:none;
  7271. visibility:hidden;
  7272. }
  7273. #u45561_div {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:0px;
  7277. top:0px;
  7278. width:253px;
  7279. height:30px;
  7280. background:inherit;
  7281. background-color:rgba(255, 255, 255, 0);
  7282. border:none;
  7283. border-left:0px;
  7284. border-top:0px;
  7285. border-right:0px;
  7286. border-radius:0px;
  7287. border-bottom-right-radius:0px;
  7288. border-bottom-left-radius:0px;
  7289. -moz-box-shadow:none;
  7290. -webkit-box-shadow:none;
  7291. box-shadow:none;
  7292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7293. font-weight:400;
  7294. font-style:normal;
  7295. font-size:18px;
  7296. text-align:center;
  7297. line-height:30px;
  7298. }
  7299. #u45561 {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:528px;
  7303. top:465px;
  7304. width:253px;
  7305. height:30px;
  7306. display:flex;
  7307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7308. font-weight:400;
  7309. font-style:normal;
  7310. font-size:18px;
  7311. text-align:center;
  7312. line-height:30px;
  7313. }
  7314. #u45561 .text {
  7315. position:absolute;
  7316. align-self:flex-start;
  7317. padding:0px 0px 0px 0px;
  7318. box-sizing:border-box;
  7319. width:100%;
  7320. }
  7321. #u45561_text {
  7322. border-width:0px;
  7323. white-space:nowrap;
  7324. text-transform:none;
  7325. }
  7326. #u45562_img {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:301px;
  7332. height:2px;
  7333. }
  7334. #u45562 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:505px;
  7338. top:531px;
  7339. width:300px;
  7340. height:1px;
  7341. display:flex;
  7342. }
  7343. #u45562 .text {
  7344. position:absolute;
  7345. align-self:center;
  7346. padding:2px 2px 2px 2px;
  7347. box-sizing:border-box;
  7348. width:100%;
  7349. }
  7350. #u45562_text {
  7351. border-width:0px;
  7352. word-wrap:break-word;
  7353. text-transform:none;
  7354. visibility:hidden;
  7355. }
  7356. #u45563_div {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:0px;
  7360. top:0px;
  7361. width:41px;
  7362. height:30px;
  7363. background:inherit;
  7364. background-color:rgba(255, 255, 255, 0);
  7365. border:none;
  7366. border-left:0px;
  7367. border-top:0px;
  7368. border-right:0px;
  7369. border-radius:0px;
  7370. border-bottom-right-radius:0px;
  7371. border-bottom-left-radius:0px;
  7372. -moz-box-shadow:none;
  7373. -webkit-box-shadow:none;
  7374. box-shadow:none;
  7375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7376. font-weight:400;
  7377. font-style:normal;
  7378. font-size:18px;
  7379. color:#1890FF;
  7380. text-align:center;
  7381. line-height:30px;
  7382. }
  7383. #u45563 {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:721px;
  7387. top:541px;
  7388. width:41px;
  7389. height:30px;
  7390. display:flex;
  7391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:18px;
  7395. color:#1890FF;
  7396. text-align:center;
  7397. line-height:30px;
  7398. }
  7399. #u45563 .text {
  7400. position:absolute;
  7401. align-self:flex-start;
  7402. padding:0px 0px 0px 0px;
  7403. box-sizing:border-box;
  7404. width:100%;
  7405. }
  7406. #u45563_text {
  7407. border-width:0px;
  7408. word-wrap:break-word;
  7409. text-transform:none;
  7410. }
  7411. #u45564_div {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:0px;
  7415. top:0px;
  7416. width:41px;
  7417. height:30px;
  7418. background:inherit;
  7419. background-color:rgba(255, 255, 255, 0);
  7420. border:none;
  7421. border-left:0px;
  7422. border-top:0px;
  7423. border-right:0px;
  7424. border-radius:0px;
  7425. border-bottom-right-radius:0px;
  7426. border-bottom-left-radius:0px;
  7427. -moz-box-shadow:none;
  7428. -webkit-box-shadow:none;
  7429. box-shadow:none;
  7430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:18px;
  7434. color:#1890FF;
  7435. text-align:center;
  7436. line-height:30px;
  7437. }
  7438. #u45564 {
  7439. border-width:0px;
  7440. position:absolute;
  7441. left:551px;
  7442. top:541px;
  7443. width:41px;
  7444. height:30px;
  7445. display:flex;
  7446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7447. font-weight:400;
  7448. font-style:normal;
  7449. font-size:18px;
  7450. color:#1890FF;
  7451. text-align:center;
  7452. line-height:30px;
  7453. }
  7454. #u45564 .text {
  7455. position:absolute;
  7456. align-self:flex-start;
  7457. padding:0px 0px 0px 0px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u45564_text {
  7462. border-width:0px;
  7463. word-wrap:break-word;
  7464. text-transform:none;
  7465. }
  7466. #u45565_img {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:2px;
  7472. height:49px;
  7473. }
  7474. #u45565 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:654px;
  7478. top:532px;
  7479. width:1px;
  7480. height:48px;
  7481. display:flex;
  7482. }
  7483. #u45565 .text {
  7484. position:absolute;
  7485. align-self:center;
  7486. padding:2px 2px 2px 2px;
  7487. box-sizing:border-box;
  7488. width:100%;
  7489. }
  7490. #u45565_text {
  7491. border-width:0px;
  7492. word-wrap:break-word;
  7493. text-transform:none;
  7494. visibility:hidden;
  7495. }
  7496. #u45566 {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:0px;
  7500. top:0px;
  7501. width:0px;
  7502. height:0px;
  7503. }
  7504. #u45567_div {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:300px;
  7510. height:149px;
  7511. background:inherit;
  7512. background-color:rgba(255, 255, 255, 1);
  7513. border:none;
  7514. border-radius:10px;
  7515. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7516. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7517. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7518. }
  7519. #u45567 {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:505px;
  7523. top:595px;
  7524. width:300px;
  7525. height:149px;
  7526. display:flex;
  7527. }
  7528. #u45567 .text {
  7529. position:absolute;
  7530. align-self:center;
  7531. padding:2px 2px 2px 2px;
  7532. box-sizing:border-box;
  7533. width:100%;
  7534. }
  7535. #u45567_text {
  7536. border-width:0px;
  7537. word-wrap:break-word;
  7538. text-transform:none;
  7539. visibility:hidden;
  7540. }
  7541. #u45568_div {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:253px;
  7547. height:30px;
  7548. background:inherit;
  7549. background-color:rgba(255, 255, 255, 0);
  7550. border:none;
  7551. border-left:0px;
  7552. border-top:0px;
  7553. border-right:0px;
  7554. border-radius:0px;
  7555. border-bottom-right-radius:0px;
  7556. border-bottom-left-radius:0px;
  7557. -moz-box-shadow:none;
  7558. -webkit-box-shadow:none;
  7559. box-shadow:none;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:18px;
  7564. text-align:center;
  7565. line-height:30px;
  7566. }
  7567. #u45568 {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:528px;
  7571. top:629px;
  7572. width:253px;
  7573. height:30px;
  7574. display:flex;
  7575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7576. font-weight:400;
  7577. font-style:normal;
  7578. font-size:18px;
  7579. text-align:center;
  7580. line-height:30px;
  7581. }
  7582. #u45568 .text {
  7583. position:absolute;
  7584. align-self:flex-start;
  7585. padding:0px 0px 0px 0px;
  7586. box-sizing:border-box;
  7587. width:100%;
  7588. }
  7589. #u45568_text {
  7590. border-width:0px;
  7591. white-space:nowrap;
  7592. text-transform:none;
  7593. }
  7594. #u45569_img {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:0px;
  7598. top:0px;
  7599. width:301px;
  7600. height:2px;
  7601. }
  7602. #u45569 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:505px;
  7606. top:695px;
  7607. width:300px;
  7608. height:1px;
  7609. display:flex;
  7610. }
  7611. #u45569 .text {
  7612. position:absolute;
  7613. align-self:center;
  7614. padding:2px 2px 2px 2px;
  7615. box-sizing:border-box;
  7616. width:100%;
  7617. }
  7618. #u45569_text {
  7619. border-width:0px;
  7620. word-wrap:break-word;
  7621. text-transform:none;
  7622. visibility:hidden;
  7623. }
  7624. #u45570_div {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:41px;
  7630. height:30px;
  7631. background:inherit;
  7632. background-color:rgba(255, 255, 255, 0);
  7633. border:none;
  7634. border-left:0px;
  7635. border-top:0px;
  7636. border-right:0px;
  7637. border-radius:0px;
  7638. border-bottom-right-radius:0px;
  7639. border-bottom-left-radius:0px;
  7640. -moz-box-shadow:none;
  7641. -webkit-box-shadow:none;
  7642. box-shadow:none;
  7643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:18px;
  7647. color:#1890FF;
  7648. text-align:center;
  7649. line-height:30px;
  7650. }
  7651. #u45570 {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:721px;
  7655. top:705px;
  7656. width:41px;
  7657. height:30px;
  7658. display:flex;
  7659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7660. font-weight:400;
  7661. font-style:normal;
  7662. font-size:18px;
  7663. color:#1890FF;
  7664. text-align:center;
  7665. line-height:30px;
  7666. }
  7667. #u45570 .text {
  7668. position:absolute;
  7669. align-self:flex-start;
  7670. padding:0px 0px 0px 0px;
  7671. box-sizing:border-box;
  7672. width:100%;
  7673. }
  7674. #u45570_text {
  7675. border-width:0px;
  7676. word-wrap:break-word;
  7677. text-transform:none;
  7678. }
  7679. #u45571_div {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:0px;
  7683. top:0px;
  7684. width:41px;
  7685. height:30px;
  7686. background:inherit;
  7687. background-color:rgba(255, 255, 255, 0);
  7688. border:none;
  7689. border-left:0px;
  7690. border-top:0px;
  7691. border-right:0px;
  7692. border-radius:0px;
  7693. border-bottom-right-radius:0px;
  7694. border-bottom-left-radius:0px;
  7695. -moz-box-shadow:none;
  7696. -webkit-box-shadow:none;
  7697. box-shadow:none;
  7698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:18px;
  7702. color:#1890FF;
  7703. text-align:center;
  7704. line-height:30px;
  7705. }
  7706. #u45571 {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:551px;
  7710. top:705px;
  7711. width:41px;
  7712. height:30px;
  7713. display:flex;
  7714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7715. font-weight:400;
  7716. font-style:normal;
  7717. font-size:18px;
  7718. color:#1890FF;
  7719. text-align:center;
  7720. line-height:30px;
  7721. }
  7722. #u45571 .text {
  7723. position:absolute;
  7724. align-self:flex-start;
  7725. padding:0px 0px 0px 0px;
  7726. box-sizing:border-box;
  7727. width:100%;
  7728. }
  7729. #u45571_text {
  7730. border-width:0px;
  7731. word-wrap:break-word;
  7732. text-transform:none;
  7733. }
  7734. #u45572_img {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:0px;
  7738. top:0px;
  7739. width:2px;
  7740. height:49px;
  7741. }
  7742. #u45572 {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:654px;
  7746. top:696px;
  7747. width:1px;
  7748. height:48px;
  7749. display:flex;
  7750. }
  7751. #u45572 .text {
  7752. position:absolute;
  7753. align-self:center;
  7754. padding:2px 2px 2px 2px;
  7755. box-sizing:border-box;
  7756. width:100%;
  7757. }
  7758. #u45572_text {
  7759. border-width:0px;
  7760. word-wrap:break-word;
  7761. text-transform:none;
  7762. visibility:hidden;
  7763. }
  7764. #u45573_div {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:0px;
  7768. top:0px;
  7769. width:333px;
  7770. height:75px;
  7771. background:inherit;
  7772. background-color:rgba(255, 255, 255, 0);
  7773. border:none;
  7774. border-left:0px;
  7775. border-top:0px;
  7776. border-right:0px;
  7777. border-radius:0px;
  7778. border-bottom-right-radius:0px;
  7779. border-bottom-left-radius:0px;
  7780. -moz-box-shadow:none;
  7781. -webkit-box-shadow:none;
  7782. box-shadow:none;
  7783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7784. font-weight:400;
  7785. font-style:normal;
  7786. font-size:12px;
  7787. color:#D9001B;
  7788. line-height:25px;
  7789. }
  7790. #u45573 {
  7791. border-width:0px;
  7792. position:absolute;
  7793. left:50px;
  7794. top:595px;
  7795. width:333px;
  7796. height:75px;
  7797. display:flex;
  7798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7799. font-weight:400;
  7800. font-style:normal;
  7801. font-size:12px;
  7802. color:#D9001B;
  7803. line-height:25px;
  7804. }
  7805. #u45573 .text {
  7806. position:absolute;
  7807. align-self:flex-start;
  7808. padding:0px 0px 0px 0px;
  7809. box-sizing:border-box;
  7810. width:100%;
  7811. }
  7812. #u45573_text {
  7813. border-width:0px;
  7814. word-wrap:break-word;
  7815. text-transform:none;
  7816. }
  7817. #u45574 {
  7818. border-width:0px;
  7819. position:absolute;
  7820. left:0px;
  7821. top:0px;
  7822. width:0px;
  7823. height:0px;
  7824. }
  7825. #u45575_div {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:0px;
  7829. top:0px;
  7830. width:375px;
  7831. height:200px;
  7832. background:inherit;
  7833. background-color:rgba(255, 255, 255, 1);
  7834. border:none;
  7835. border-left:0px;
  7836. border-top:0px;
  7837. border-right:0px;
  7838. border-radius:0px;
  7839. border-bottom-right-radius:0px;
  7840. border-bottom-left-radius:0px;
  7841. -moz-box-shadow:none;
  7842. -webkit-box-shadow:none;
  7843. box-shadow:none;
  7844. }
  7845. #u45575 {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:940px;
  7849. top:155px;
  7850. width:375px;
  7851. height:200px;
  7852. display:flex;
  7853. }
  7854. #u45575 .text {
  7855. position:absolute;
  7856. align-self:center;
  7857. padding:2px 2px 2px 2px;
  7858. box-sizing:border-box;
  7859. width:100%;
  7860. }
  7861. #u45575_text {
  7862. border-width:0px;
  7863. word-wrap:break-word;
  7864. text-transform:none;
  7865. visibility:hidden;
  7866. }
  7867. #u45576_div {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:0px;
  7871. top:0px;
  7872. width:181px;
  7873. height:80px;
  7874. background:inherit;
  7875. background-color:rgba(255, 255, 255, 0);
  7876. border:none;
  7877. border-left:0px;
  7878. border-top:0px;
  7879. border-right:0px;
  7880. border-radius:0px;
  7881. border-bottom-right-radius:0px;
  7882. border-bottom-left-radius:0px;
  7883. -moz-box-shadow:none;
  7884. -webkit-box-shadow:none;
  7885. box-shadow:none;
  7886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7887. font-weight:400;
  7888. font-style:normal;
  7889. font-size:12px;
  7890. color:#7F7F7F;
  7891. line-height:20px;
  7892. }
  7893. #u45576 {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:957px;
  7897. top:219px;
  7898. width:181px;
  7899. height:80px;
  7900. display:flex;
  7901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7902. font-weight:400;
  7903. font-style:normal;
  7904. font-size:12px;
  7905. color:#7F7F7F;
  7906. line-height:20px;
  7907. }
  7908. #u45576 .text {
  7909. position:absolute;
  7910. align-self:flex-start;
  7911. padding:0px 0px 0px 0px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u45576_text {
  7916. border-width:0px;
  7917. white-space:nowrap;
  7918. text-transform:none;
  7919. }
  7920. #u45577_img {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:40px;
  7926. height:40px;
  7927. }
  7928. #u45577 {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:957px;
  7932. top:171px;
  7933. width:40px;
  7934. height:40px;
  7935. display:flex;
  7936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7937. font-weight:400;
  7938. font-style:normal;
  7939. }
  7940. #u45577 .text {
  7941. position:absolute;
  7942. align-self:center;
  7943. padding:2px 2px 2px 2px;
  7944. box-sizing:border-box;
  7945. width:100%;
  7946. }
  7947. #u45577_text {
  7948. border-width:0px;
  7949. word-wrap:break-word;
  7950. text-transform:none;
  7951. }
  7952. #u45578_div {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:33px;
  7958. height:30px;
  7959. background:inherit;
  7960. background-color:rgba(255, 255, 255, 0);
  7961. border:none;
  7962. border-left:0px;
  7963. border-top:0px;
  7964. border-right:0px;
  7965. border-radius:0px;
  7966. border-bottom-right-radius:0px;
  7967. border-bottom-left-radius:0px;
  7968. -moz-box-shadow:none;
  7969. -webkit-box-shadow:none;
  7970. box-shadow:none;
  7971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7972. font-weight:400;
  7973. font-style:normal;
  7974. font-size:16px;
  7975. line-height:30px;
  7976. }
  7977. #u45578 {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:1017px;
  7981. top:176px;
  7982. width:33px;
  7983. height:30px;
  7984. display:flex;
  7985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:16px;
  7989. line-height:30px;
  7990. }
  7991. #u45578 .text {
  7992. position:absolute;
  7993. align-self:flex-start;
  7994. padding:0px 0px 0px 0px;
  7995. box-sizing:border-box;
  7996. width:100%;
  7997. }
  7998. #u45578_text {
  7999. border-width:0px;
  8000. white-space:nowrap;
  8001. text-transform:none;
  8002. }
  8003. #u45579_div {
  8004. border-width:0px;
  8005. position:absolute;
  8006. left:0px;
  8007. top:0px;
  8008. width:85px;
  8009. height:30px;
  8010. background:inherit;
  8011. background-color:rgba(242, 242, 242, 1);
  8012. border:none;
  8013. border-radius:40px;
  8014. -moz-box-shadow:none;
  8015. -webkit-box-shadow:none;
  8016. box-shadow:none;
  8017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8018. font-weight:400;
  8019. font-style:normal;
  8020. font-size:12px;
  8021. color:#AAAAAA;
  8022. }
  8023. #u45579 {
  8024. border-width:0px;
  8025. position:absolute;
  8026. left:1220px;
  8027. top:315px;
  8028. width:85px;
  8029. height:30px;
  8030. display:flex;
  8031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8032. font-weight:400;
  8033. font-style:normal;
  8034. font-size:12px;
  8035. color:#AAAAAA;
  8036. }
  8037. #u45579 .text {
  8038. position:absolute;
  8039. align-self:center;
  8040. padding:2px 2px 2px 2px;
  8041. box-sizing:border-box;
  8042. width:100%;
  8043. }
  8044. #u45579_text {
  8045. border-width:0px;
  8046. word-wrap:break-word;
  8047. text-transform:none;
  8048. }
  8049. #u45580 {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:0px;
  8053. top:0px;
  8054. width:0px;
  8055. height:0px;
  8056. }
  8057. #u45581_div {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:375px;
  8063. height:80px;
  8064. background:inherit;
  8065. background-color:rgba(255, 255, 255, 1);
  8066. border:none;
  8067. border-left:0px;
  8068. border-top:0px;
  8069. border-right:0px;
  8070. border-radius:0px;
  8071. border-bottom-right-radius:0px;
  8072. border-bottom-left-radius:0px;
  8073. -moz-box-shadow:none;
  8074. -webkit-box-shadow:none;
  8075. box-shadow:none;
  8076. }
  8077. #u45581 {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:1393px;
  8081. top:555px;
  8082. width:375px;
  8083. height:80px;
  8084. display:flex;
  8085. }
  8086. #u45581 .text {
  8087. position:absolute;
  8088. align-self:center;
  8089. padding:2px 2px 2px 2px;
  8090. box-sizing:border-box;
  8091. width:100%;
  8092. }
  8093. #u45581_text {
  8094. border-width:0px;
  8095. word-wrap:break-word;
  8096. text-transform:none;
  8097. visibility:hidden;
  8098. }
  8099. #u45582_div {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:0px;
  8103. top:0px;
  8104. width:129px;
  8105. height:30px;
  8106. background:inherit;
  8107. background-color:rgba(255, 255, 255, 0);
  8108. border:none;
  8109. border-left:0px;
  8110. border-top:0px;
  8111. border-right:0px;
  8112. border-radius:0px;
  8113. border-bottom-right-radius:0px;
  8114. border-bottom-left-radius:0px;
  8115. -moz-box-shadow:none;
  8116. -webkit-box-shadow:none;
  8117. box-shadow:none;
  8118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8119. font-weight:400;
  8120. font-style:normal;
  8121. font-size:16px;
  8122. line-height:30px;
  8123. }
  8124. #u45582 {
  8125. border-width:0px;
  8126. position:absolute;
  8127. left:1470px;
  8128. top:594px;
  8129. width:129px;
  8130. height:30px;
  8131. display:flex;
  8132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8133. font-weight:400;
  8134. font-style:normal;
  8135. font-size:16px;
  8136. line-height:30px;
  8137. }
  8138. #u45582 .text {
  8139. position:absolute;
  8140. align-self:flex-start;
  8141. padding:0px 0px 0px 0px;
  8142. box-sizing:border-box;
  8143. width:100%;
  8144. }
  8145. #u45582_text {
  8146. border-width:0px;
  8147. white-space:nowrap;
  8148. text-transform:none;
  8149. }
  8150. #u45583_div {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:73px;
  8156. height:25px;
  8157. background:inherit;
  8158. background-color:rgba(255, 255, 255, 0);
  8159. border:none;
  8160. border-left:0px;
  8161. border-top:0px;
  8162. border-right:0px;
  8163. border-radius:0px;
  8164. border-bottom-right-radius:0px;
  8165. border-bottom-left-radius:0px;
  8166. -moz-box-shadow:none;
  8167. -webkit-box-shadow:none;
  8168. box-shadow:none;
  8169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8170. font-weight:400;
  8171. font-style:normal;
  8172. font-size:12px;
  8173. color:#7F7F7F;
  8174. line-height:25px;
  8175. }
  8176. #u45583 {
  8177. border-width:0px;
  8178. position:absolute;
  8179. left:1470px;
  8180. top:569px;
  8181. width:73px;
  8182. height:25px;
  8183. display:flex;
  8184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8185. font-weight:400;
  8186. font-style:normal;
  8187. font-size:12px;
  8188. color:#7F7F7F;
  8189. line-height:25px;
  8190. }
  8191. #u45583 .text {
  8192. position:absolute;
  8193. align-self:flex-start;
  8194. padding:0px 0px 0px 0px;
  8195. box-sizing:border-box;
  8196. width:100%;
  8197. }
  8198. #u45583_text {
  8199. border-width:0px;
  8200. white-space:nowrap;
  8201. text-transform:none;
  8202. }
  8203. #u45584 {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:0px;
  8207. top:0px;
  8208. width:0px;
  8209. height:0px;
  8210. }
  8211. #u45585_div {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:375px;
  8217. height:80px;
  8218. background:inherit;
  8219. background-color:rgba(255, 255, 255, 1);
  8220. border:none;
  8221. border-left:0px;
  8222. border-top:0px;
  8223. border-right:0px;
  8224. border-radius:0px;
  8225. border-bottom-right-radius:0px;
  8226. border-bottom-left-radius:0px;
  8227. -moz-box-shadow:none;
  8228. -webkit-box-shadow:none;
  8229. box-shadow:none;
  8230. }
  8231. #u45585 {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:1851px;
  8235. top:312px;
  8236. width:375px;
  8237. height:80px;
  8238. display:flex;
  8239. }
  8240. #u45585 .text {
  8241. position:absolute;
  8242. align-self:center;
  8243. padding:2px 2px 2px 2px;
  8244. box-sizing:border-box;
  8245. width:100%;
  8246. }
  8247. #u45585_text {
  8248. border-width:0px;
  8249. word-wrap:break-word;
  8250. text-transform:none;
  8251. visibility:hidden;
  8252. }
  8253. #u45586_div {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:0px;
  8257. top:0px;
  8258. width:177px;
  8259. height:30px;
  8260. background:inherit;
  8261. background-color:rgba(255, 255, 255, 0);
  8262. border:none;
  8263. border-left:0px;
  8264. border-top:0px;
  8265. border-right:0px;
  8266. border-radius:0px;
  8267. border-bottom-right-radius:0px;
  8268. border-bottom-left-radius:0px;
  8269. -moz-box-shadow:none;
  8270. -webkit-box-shadow:none;
  8271. box-shadow:none;
  8272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8273. font-weight:400;
  8274. font-style:normal;
  8275. font-size:16px;
  8276. line-height:30px;
  8277. }
  8278. #u45586 {
  8279. border-width:0px;
  8280. position:absolute;
  8281. left:1928px;
  8282. top:351px;
  8283. width:177px;
  8284. height:30px;
  8285. display:flex;
  8286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8287. font-weight:400;
  8288. font-style:normal;
  8289. font-size:16px;
  8290. line-height:30px;
  8291. }
  8292. #u45586 .text {
  8293. position:absolute;
  8294. align-self:flex-start;
  8295. padding:0px 0px 0px 0px;
  8296. box-sizing:border-box;
  8297. width:100%;
  8298. }
  8299. #u45586_text {
  8300. border-width:0px;
  8301. white-space:nowrap;
  8302. text-transform:none;
  8303. }
  8304. #u45587_div {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:49px;
  8310. height:25px;
  8311. background:inherit;
  8312. background-color:rgba(255, 255, 255, 0);
  8313. border:none;
  8314. border-left:0px;
  8315. border-top:0px;
  8316. border-right:0px;
  8317. border-radius:0px;
  8318. border-bottom-right-radius:0px;
  8319. border-bottom-left-radius:0px;
  8320. -moz-box-shadow:none;
  8321. -webkit-box-shadow:none;
  8322. box-shadow:none;
  8323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8324. font-weight:400;
  8325. font-style:normal;
  8326. font-size:12px;
  8327. color:#7F7F7F;
  8328. line-height:25px;
  8329. }
  8330. #u45587 {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:1928px;
  8334. top:326px;
  8335. width:49px;
  8336. height:25px;
  8337. display:flex;
  8338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8339. font-weight:400;
  8340. font-style:normal;
  8341. font-size:12px;
  8342. color:#7F7F7F;
  8343. line-height:25px;
  8344. }
  8345. #u45587 .text {
  8346. position:absolute;
  8347. align-self:flex-start;
  8348. padding:0px 0px 0px 0px;
  8349. box-sizing:border-box;
  8350. width:100%;
  8351. }
  8352. #u45587_text {
  8353. border-width:0px;
  8354. white-space:nowrap;
  8355. text-transform:none;
  8356. }
  8357. #u45588 {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:0px;
  8361. top:0px;
  8362. width:0px;
  8363. height:0px;
  8364. }
  8365. #u45589_div {
  8366. border-width:0px;
  8367. position:absolute;
  8368. left:0px;
  8369. top:0px;
  8370. width:375px;
  8371. height:80px;
  8372. background:inherit;
  8373. background-color:rgba(255, 255, 255, 1);
  8374. border:none;
  8375. border-left:0px;
  8376. border-top:0px;
  8377. border-right:0px;
  8378. border-radius:0px;
  8379. border-bottom-right-radius:0px;
  8380. border-bottom-left-radius:0px;
  8381. -moz-box-shadow:none;
  8382. -webkit-box-shadow:none;
  8383. box-shadow:none;
  8384. }
  8385. #u45589 {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:1851px;
  8389. top:393px;
  8390. width:375px;
  8391. height:80px;
  8392. display:flex;
  8393. }
  8394. #u45589 .text {
  8395. position:absolute;
  8396. align-self:center;
  8397. padding:2px 2px 2px 2px;
  8398. box-sizing:border-box;
  8399. width:100%;
  8400. }
  8401. #u45589_text {
  8402. border-width:0px;
  8403. word-wrap:break-word;
  8404. text-transform:none;
  8405. visibility:hidden;
  8406. }
  8407. #u45590_div {
  8408. border-width:0px;
  8409. position:absolute;
  8410. left:0px;
  8411. top:0px;
  8412. width:33px;
  8413. height:30px;
  8414. background:inherit;
  8415. background-color:rgba(255, 255, 255, 0);
  8416. border:none;
  8417. border-left:0px;
  8418. border-top:0px;
  8419. border-right:0px;
  8420. border-radius:0px;
  8421. border-bottom-right-radius:0px;
  8422. border-bottom-left-radius:0px;
  8423. -moz-box-shadow:none;
  8424. -webkit-box-shadow:none;
  8425. box-shadow:none;
  8426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8427. font-weight:400;
  8428. font-style:normal;
  8429. font-size:16px;
  8430. line-height:30px;
  8431. }
  8432. #u45590 {
  8433. border-width:0px;
  8434. position:absolute;
  8435. left:1928px;
  8436. top:432px;
  8437. width:33px;
  8438. height:30px;
  8439. display:flex;
  8440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8441. font-weight:400;
  8442. font-style:normal;
  8443. font-size:16px;
  8444. line-height:30px;
  8445. }
  8446. #u45590 .text {
  8447. position:absolute;
  8448. align-self:flex-start;
  8449. padding:0px 0px 0px 0px;
  8450. box-sizing:border-box;
  8451. width:100%;
  8452. }
  8453. #u45590_text {
  8454. border-width:0px;
  8455. white-space:nowrap;
  8456. text-transform:none;
  8457. }
  8458. #u45591_div {
  8459. border-width:0px;
  8460. position:absolute;
  8461. left:0px;
  8462. top:0px;
  8463. width:73px;
  8464. height:25px;
  8465. background:inherit;
  8466. background-color:rgba(255, 255, 255, 0);
  8467. border:none;
  8468. border-left:0px;
  8469. border-top:0px;
  8470. border-right:0px;
  8471. border-radius:0px;
  8472. border-bottom-right-radius:0px;
  8473. border-bottom-left-radius:0px;
  8474. -moz-box-shadow:none;
  8475. -webkit-box-shadow:none;
  8476. box-shadow:none;
  8477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8478. font-weight:400;
  8479. font-style:normal;
  8480. font-size:12px;
  8481. color:#7F7F7F;
  8482. line-height:25px;
  8483. }
  8484. #u45591 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:1928px;
  8488. top:407px;
  8489. width:73px;
  8490. height:25px;
  8491. display:flex;
  8492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8493. font-weight:400;
  8494. font-style:normal;
  8495. font-size:12px;
  8496. color:#7F7F7F;
  8497. line-height:25px;
  8498. }
  8499. #u45591 .text {
  8500. position:absolute;
  8501. align-self:flex-start;
  8502. padding:0px 0px 0px 0px;
  8503. box-sizing:border-box;
  8504. width:100%;
  8505. }
  8506. #u45591_text {
  8507. border-width:0px;
  8508. white-space:nowrap;
  8509. text-transform:none;
  8510. }
  8511. #u45592 {
  8512. border-width:0px;
  8513. position:absolute;
  8514. left:0px;
  8515. top:0px;
  8516. width:0px;
  8517. height:0px;
  8518. }
  8519. #u45593_div {
  8520. border-width:0px;
  8521. position:absolute;
  8522. left:0px;
  8523. top:0px;
  8524. width:375px;
  8525. height:80px;
  8526. background:inherit;
  8527. background-color:rgba(255, 255, 255, 1);
  8528. border:none;
  8529. border-left:0px;
  8530. border-top:0px;
  8531. border-right:0px;
  8532. border-radius:0px;
  8533. border-bottom-right-radius:0px;
  8534. border-bottom-left-radius:0px;
  8535. -moz-box-shadow:none;
  8536. -webkit-box-shadow:none;
  8537. box-shadow:none;
  8538. }
  8539. #u45593 {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:1851px;
  8543. top:474px;
  8544. width:375px;
  8545. height:80px;
  8546. display:flex;
  8547. }
  8548. #u45593 .text {
  8549. position:absolute;
  8550. align-self:center;
  8551. padding:2px 2px 2px 2px;
  8552. box-sizing:border-box;
  8553. width:100%;
  8554. }
  8555. #u45593_text {
  8556. border-width:0px;
  8557. word-wrap:break-word;
  8558. text-transform:none;
  8559. visibility:hidden;
  8560. }
  8561. #u45594_div {
  8562. border-width:0px;
  8563. position:absolute;
  8564. left:0px;
  8565. top:0px;
  8566. width:129px;
  8567. height:30px;
  8568. background:inherit;
  8569. background-color:rgba(255, 255, 255, 0);
  8570. border:none;
  8571. border-left:0px;
  8572. border-top:0px;
  8573. border-right:0px;
  8574. border-radius:0px;
  8575. border-bottom-right-radius:0px;
  8576. border-bottom-left-radius:0px;
  8577. -moz-box-shadow:none;
  8578. -webkit-box-shadow:none;
  8579. box-shadow:none;
  8580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8581. font-weight:400;
  8582. font-style:normal;
  8583. font-size:16px;
  8584. line-height:30px;
  8585. }
  8586. #u45594 {
  8587. border-width:0px;
  8588. position:absolute;
  8589. left:1928px;
  8590. top:513px;
  8591. width:129px;
  8592. height:30px;
  8593. display:flex;
  8594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8595. font-weight:400;
  8596. font-style:normal;
  8597. font-size:16px;
  8598. line-height:30px;
  8599. }
  8600. #u45594 .text {
  8601. position:absolute;
  8602. align-self:flex-start;
  8603. padding:0px 0px 0px 0px;
  8604. box-sizing:border-box;
  8605. width:100%;
  8606. }
  8607. #u45594_text {
  8608. border-width:0px;
  8609. white-space:nowrap;
  8610. text-transform:none;
  8611. }
  8612. #u45595_div {
  8613. border-width:0px;
  8614. position:absolute;
  8615. left:0px;
  8616. top:0px;
  8617. width:73px;
  8618. height:25px;
  8619. background:inherit;
  8620. background-color:rgba(255, 255, 255, 0);
  8621. border:none;
  8622. border-left:0px;
  8623. border-top:0px;
  8624. border-right:0px;
  8625. border-radius:0px;
  8626. border-bottom-right-radius:0px;
  8627. border-bottom-left-radius:0px;
  8628. -moz-box-shadow:none;
  8629. -webkit-box-shadow:none;
  8630. box-shadow:none;
  8631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8632. font-weight:400;
  8633. font-style:normal;
  8634. font-size:12px;
  8635. color:#7F7F7F;
  8636. line-height:25px;
  8637. }
  8638. #u45595 {
  8639. border-width:0px;
  8640. position:absolute;
  8641. left:1928px;
  8642. top:488px;
  8643. width:73px;
  8644. height:25px;
  8645. display:flex;
  8646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8647. font-weight:400;
  8648. font-style:normal;
  8649. font-size:12px;
  8650. color:#7F7F7F;
  8651. line-height:25px;
  8652. }
  8653. #u45595 .text {
  8654. position:absolute;
  8655. align-self:flex-start;
  8656. padding:0px 0px 0px 0px;
  8657. box-sizing:border-box;
  8658. width:100%;
  8659. }
  8660. #u45595_text {
  8661. border-width:0px;
  8662. white-space:nowrap;
  8663. text-transform:none;
  8664. }
  8665. #u45596 {
  8666. border-width:0px;
  8667. position:absolute;
  8668. left:0px;
  8669. top:0px;
  8670. width:0px;
  8671. height:0px;
  8672. }
  8673. #u45597_div {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:0px;
  8677. top:0px;
  8678. width:375px;
  8679. height:80px;
  8680. background:inherit;
  8681. background-color:rgba(255, 255, 255, 1);
  8682. border:none;
  8683. border-left:0px;
  8684. border-top:0px;
  8685. border-right:0px;
  8686. border-radius:0px;
  8687. border-bottom-right-radius:0px;
  8688. border-bottom-left-radius:0px;
  8689. -moz-box-shadow:none;
  8690. -webkit-box-shadow:none;
  8691. box-shadow:none;
  8692. }
  8693. #u45597 {
  8694. border-width:0px;
  8695. position:absolute;
  8696. left:1851px;
  8697. top:231px;
  8698. width:375px;
  8699. height:80px;
  8700. display:flex;
  8701. }
  8702. #u45597 .text {
  8703. position:absolute;
  8704. align-self:center;
  8705. padding:2px 2px 2px 2px;
  8706. box-sizing:border-box;
  8707. width:100%;
  8708. }
  8709. #u45597_text {
  8710. border-width:0px;
  8711. word-wrap:break-word;
  8712. text-transform:none;
  8713. visibility:hidden;
  8714. }
  8715. #u45598_div {
  8716. border-width:0px;
  8717. position:absolute;
  8718. left:0px;
  8719. top:0px;
  8720. width:33px;
  8721. height:30px;
  8722. background:inherit;
  8723. background-color:rgba(255, 255, 255, 0);
  8724. border:none;
  8725. border-left:0px;
  8726. border-top:0px;
  8727. border-right:0px;
  8728. border-radius:0px;
  8729. border-bottom-right-radius:0px;
  8730. border-bottom-left-radius:0px;
  8731. -moz-box-shadow:none;
  8732. -webkit-box-shadow:none;
  8733. box-shadow:none;
  8734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:16px;
  8738. line-height:30px;
  8739. }
  8740. #u45598 {
  8741. border-width:0px;
  8742. position:absolute;
  8743. left:1928px;
  8744. top:265px;
  8745. width:33px;
  8746. height:30px;
  8747. display:flex;
  8748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8749. font-weight:400;
  8750. font-style:normal;
  8751. font-size:16px;
  8752. line-height:30px;
  8753. }
  8754. #u45598 .text {
  8755. position:absolute;
  8756. align-self:flex-start;
  8757. padding:0px 0px 0px 0px;
  8758. box-sizing:border-box;
  8759. width:100%;
  8760. }
  8761. #u45598_text {
  8762. border-width:0px;
  8763. white-space:nowrap;
  8764. text-transform:none;
  8765. }
  8766. #u45599_div {
  8767. border-width:0px;
  8768. position:absolute;
  8769. left:0px;
  8770. top:0px;
  8771. width:49px;
  8772. height:25px;
  8773. background:inherit;
  8774. background-color:rgba(255, 255, 255, 0);
  8775. border:none;
  8776. border-left:0px;
  8777. border-top:0px;
  8778. border-right:0px;
  8779. border-radius:0px;
  8780. border-bottom-right-radius:0px;
  8781. border-bottom-left-radius:0px;
  8782. -moz-box-shadow:none;
  8783. -webkit-box-shadow:none;
  8784. box-shadow:none;
  8785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8786. font-weight:400;
  8787. font-style:normal;
  8788. font-size:12px;
  8789. color:#7F7F7F;
  8790. line-height:25px;
  8791. }
  8792. #u45599 {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:1928px;
  8796. top:240px;
  8797. width:49px;
  8798. height:25px;
  8799. display:flex;
  8800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8801. font-weight:400;
  8802. font-style:normal;
  8803. font-size:12px;
  8804. color:#7F7F7F;
  8805. line-height:25px;
  8806. }
  8807. #u45599 .text {
  8808. position:absolute;
  8809. align-self:flex-start;
  8810. padding:0px 0px 0px 0px;
  8811. box-sizing:border-box;
  8812. width:100%;
  8813. }
  8814. #u45599_text {
  8815. border-width:0px;
  8816. white-space:nowrap;
  8817. text-transform:none;
  8818. }
  8819. #u45600 {
  8820. border-width:0px;
  8821. position:absolute;
  8822. left:0px;
  8823. top:0px;
  8824. width:0px;
  8825. height:0px;
  8826. }
  8827. #u45601_div {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:0px;
  8831. top:0px;
  8832. width:375px;
  8833. height:80px;
  8834. background:inherit;
  8835. background-color:rgba(255, 255, 255, 1);
  8836. border:none;
  8837. border-left:0px;
  8838. border-top:0px;
  8839. border-right:0px;
  8840. border-radius:0px;
  8841. border-bottom-right-radius:0px;
  8842. border-bottom-left-radius:0px;
  8843. -moz-box-shadow:none;
  8844. -webkit-box-shadow:none;
  8845. box-shadow:none;
  8846. }
  8847. #u45601 {
  8848. border-width:0px;
  8849. position:absolute;
  8850. left:1851px;
  8851. top:555px;
  8852. width:375px;
  8853. height:80px;
  8854. display:flex;
  8855. }
  8856. #u45601 .text {
  8857. position:absolute;
  8858. align-self:center;
  8859. padding:2px 2px 2px 2px;
  8860. box-sizing:border-box;
  8861. width:100%;
  8862. }
  8863. #u45601_text {
  8864. border-width:0px;
  8865. word-wrap:break-word;
  8866. text-transform:none;
  8867. visibility:hidden;
  8868. }
  8869. #u45602_div {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:0px;
  8873. top:0px;
  8874. width:129px;
  8875. height:30px;
  8876. background:inherit;
  8877. background-color:rgba(255, 255, 255, 0);
  8878. border:none;
  8879. border-left:0px;
  8880. border-top:0px;
  8881. border-right:0px;
  8882. border-radius:0px;
  8883. border-bottom-right-radius:0px;
  8884. border-bottom-left-radius:0px;
  8885. -moz-box-shadow:none;
  8886. -webkit-box-shadow:none;
  8887. box-shadow:none;
  8888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8889. font-weight:400;
  8890. font-style:normal;
  8891. font-size:16px;
  8892. line-height:30px;
  8893. }
  8894. #u45602 {
  8895. border-width:0px;
  8896. position:absolute;
  8897. left:1928px;
  8898. top:594px;
  8899. width:129px;
  8900. height:30px;
  8901. display:flex;
  8902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8903. font-weight:400;
  8904. font-style:normal;
  8905. font-size:16px;
  8906. line-height:30px;
  8907. }
  8908. #u45602 .text {
  8909. position:absolute;
  8910. align-self:flex-start;
  8911. padding:0px 0px 0px 0px;
  8912. box-sizing:border-box;
  8913. width:100%;
  8914. }
  8915. #u45602_text {
  8916. border-width:0px;
  8917. white-space:nowrap;
  8918. text-transform:none;
  8919. }
  8920. #u45603_div {
  8921. border-width:0px;
  8922. position:absolute;
  8923. left:0px;
  8924. top:0px;
  8925. width:73px;
  8926. height:25px;
  8927. background:inherit;
  8928. background-color:rgba(255, 255, 255, 0);
  8929. border:none;
  8930. border-left:0px;
  8931. border-top:0px;
  8932. border-right:0px;
  8933. border-radius:0px;
  8934. border-bottom-right-radius:0px;
  8935. border-bottom-left-radius:0px;
  8936. -moz-box-shadow:none;
  8937. -webkit-box-shadow:none;
  8938. box-shadow:none;
  8939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8940. font-weight:400;
  8941. font-style:normal;
  8942. font-size:12px;
  8943. color:#7F7F7F;
  8944. line-height:25px;
  8945. }
  8946. #u45603 {
  8947. border-width:0px;
  8948. position:absolute;
  8949. left:1928px;
  8950. top:569px;
  8951. width:73px;
  8952. height:25px;
  8953. display:flex;
  8954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8955. font-weight:400;
  8956. font-style:normal;
  8957. font-size:12px;
  8958. color:#7F7F7F;
  8959. line-height:25px;
  8960. }
  8961. #u45603 .text {
  8962. position:absolute;
  8963. align-self:flex-start;
  8964. padding:0px 0px 0px 0px;
  8965. box-sizing:border-box;
  8966. width:100%;
  8967. }
  8968. #u45603_text {
  8969. border-width:0px;
  8970. white-space:nowrap;
  8971. text-transform:none;
  8972. }
  8973. #u45604 {
  8974. border-width:0px;
  8975. position:absolute;
  8976. left:0px;
  8977. top:0px;
  8978. width:0px;
  8979. height:0px;
  8980. }
  8981. #u45605_div {
  8982. border-width:0px;
  8983. position:absolute;
  8984. left:0px;
  8985. top:0px;
  8986. width:375px;
  8987. height:60px;
  8988. background:inherit;
  8989. background-color:rgba(255, 255, 255, 1);
  8990. border:none;
  8991. border-left:0px;
  8992. border-top:0px;
  8993. border-right:0px;
  8994. border-radius:0px;
  8995. border-bottom-right-radius:0px;
  8996. border-bottom-left-radius:0px;
  8997. -moz-box-shadow:none;
  8998. -webkit-box-shadow:none;
  8999. box-shadow:none;
  9000. }
  9001. #u45605 {
  9002. border-width:0px;
  9003. position:absolute;
  9004. left:1851px;
  9005. top:717px;
  9006. width:375px;
  9007. height:60px;
  9008. display:flex;
  9009. }
  9010. #u45605 .text {
  9011. position:absolute;
  9012. align-self:center;
  9013. padding:2px 2px 2px 2px;
  9014. box-sizing:border-box;
  9015. width:100%;
  9016. }
  9017. #u45605_text {
  9018. border-width:0px;
  9019. word-wrap:break-word;
  9020. text-transform:none;
  9021. visibility:hidden;
  9022. }
  9023. #u45606_div {
  9024. border-width:0px;
  9025. position:absolute;
  9026. left:0px;
  9027. top:0px;
  9028. width:129px;
  9029. height:30px;
  9030. background:inherit;
  9031. background-color:rgba(255, 255, 255, 0);
  9032. border:none;
  9033. border-left:0px;
  9034. border-top:0px;
  9035. border-right:0px;
  9036. border-radius:0px;
  9037. border-bottom-right-radius:0px;
  9038. border-bottom-left-radius:0px;
  9039. -moz-box-shadow:none;
  9040. -webkit-box-shadow:none;
  9041. box-shadow:none;
  9042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9043. font-weight:400;
  9044. font-style:normal;
  9045. font-size:16px;
  9046. line-height:30px;
  9047. }
  9048. #u45606 {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:1928px;
  9052. top:732px;
  9053. width:129px;
  9054. height:30px;
  9055. display:flex;
  9056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9057. font-weight:400;
  9058. font-style:normal;
  9059. font-size:16px;
  9060. line-height:30px;
  9061. }
  9062. #u45606 .text {
  9063. position:absolute;
  9064. align-self:flex-start;
  9065. padding:0px 0px 0px 0px;
  9066. box-sizing:border-box;
  9067. width:100%;
  9068. }
  9069. #u45606_text {
  9070. border-width:0px;
  9071. white-space:nowrap;
  9072. text-transform:none;
  9073. }
  9074. #u45607 {
  9075. border-width:0px;
  9076. position:absolute;
  9077. left:0px;
  9078. top:0px;
  9079. width:0px;
  9080. height:0px;
  9081. }
  9082. #u45608_div {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:0px;
  9086. top:0px;
  9087. width:375px;
  9088. height:80px;
  9089. background:inherit;
  9090. background-color:rgba(255, 255, 255, 1);
  9091. border:none;
  9092. border-left:0px;
  9093. border-top:0px;
  9094. border-right:0px;
  9095. border-radius:0px;
  9096. border-bottom-right-radius:0px;
  9097. border-bottom-left-radius:0px;
  9098. -moz-box-shadow:none;
  9099. -webkit-box-shadow:none;
  9100. box-shadow:none;
  9101. }
  9102. #u45608 {
  9103. border-width:0px;
  9104. position:absolute;
  9105. left:1393px;
  9106. top:636px;
  9107. width:375px;
  9108. height:80px;
  9109. display:flex;
  9110. }
  9111. #u45608 .text {
  9112. position:absolute;
  9113. align-self:center;
  9114. padding:2px 2px 2px 2px;
  9115. box-sizing:border-box;
  9116. width:100%;
  9117. }
  9118. #u45608_text {
  9119. border-width:0px;
  9120. word-wrap:break-word;
  9121. text-transform:none;
  9122. visibility:hidden;
  9123. }
  9124. #u45609_div {
  9125. border-width:0px;
  9126. position:absolute;
  9127. left:0px;
  9128. top:0px;
  9129. width:49px;
  9130. height:30px;
  9131. background:inherit;
  9132. background-color:rgba(255, 255, 255, 0);
  9133. border:none;
  9134. border-left:0px;
  9135. border-top:0px;
  9136. border-right:0px;
  9137. border-radius:0px;
  9138. border-bottom-right-radius:0px;
  9139. border-bottom-left-radius:0px;
  9140. -moz-box-shadow:none;
  9141. -webkit-box-shadow:none;
  9142. box-shadow:none;
  9143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9144. font-weight:400;
  9145. font-style:normal;
  9146. font-size:16px;
  9147. line-height:30px;
  9148. }
  9149. #u45609 {
  9150. border-width:0px;
  9151. position:absolute;
  9152. left:1470px;
  9153. top:675px;
  9154. width:49px;
  9155. height:30px;
  9156. display:flex;
  9157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9158. font-weight:400;
  9159. font-style:normal;
  9160. font-size:16px;
  9161. line-height:30px;
  9162. }
  9163. #u45609 .text {
  9164. position:absolute;
  9165. align-self:flex-start;
  9166. padding:0px 0px 0px 0px;
  9167. box-sizing:border-box;
  9168. width:100%;
  9169. }
  9170. #u45609_text {
  9171. border-width:0px;
  9172. white-space:nowrap;
  9173. text-transform:none;
  9174. }
  9175. #u45610_div {
  9176. border-width:0px;
  9177. position:absolute;
  9178. left:0px;
  9179. top:0px;
  9180. width:49px;
  9181. height:25px;
  9182. background:inherit;
  9183. background-color:rgba(255, 255, 255, 0);
  9184. border:none;
  9185. border-left:0px;
  9186. border-top:0px;
  9187. border-right:0px;
  9188. border-radius:0px;
  9189. border-bottom-right-radius:0px;
  9190. border-bottom-left-radius:0px;
  9191. -moz-box-shadow:none;
  9192. -webkit-box-shadow:none;
  9193. box-shadow:none;
  9194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9195. font-weight:400;
  9196. font-style:normal;
  9197. font-size:12px;
  9198. color:#7F7F7F;
  9199. line-height:25px;
  9200. }
  9201. #u45610 {
  9202. border-width:0px;
  9203. position:absolute;
  9204. left:1470px;
  9205. top:650px;
  9206. width:49px;
  9207. height:25px;
  9208. display:flex;
  9209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9210. font-weight:400;
  9211. font-style:normal;
  9212. font-size:12px;
  9213. color:#7F7F7F;
  9214. line-height:25px;
  9215. }
  9216. #u45610 .text {
  9217. position:absolute;
  9218. align-self:flex-start;
  9219. padding:0px 0px 0px 0px;
  9220. box-sizing:border-box;
  9221. width:100%;
  9222. }
  9223. #u45610_text {
  9224. border-width:0px;
  9225. white-space:nowrap;
  9226. text-transform:none;
  9227. }
  9228. #u45611 {
  9229. border-width:0px;
  9230. position:absolute;
  9231. left:0px;
  9232. top:0px;
  9233. width:0px;
  9234. height:0px;
  9235. }
  9236. #u45612_div {
  9237. border-width:0px;
  9238. position:absolute;
  9239. left:0px;
  9240. top:0px;
  9241. width:375px;
  9242. height:80px;
  9243. background:inherit;
  9244. background-color:rgba(255, 255, 255, 1);
  9245. border:none;
  9246. border-left:0px;
  9247. border-top:0px;
  9248. border-right:0px;
  9249. border-radius:0px;
  9250. border-bottom-right-radius:0px;
  9251. border-bottom-left-radius:0px;
  9252. -moz-box-shadow:none;
  9253. -webkit-box-shadow:none;
  9254. box-shadow:none;
  9255. }
  9256. #u45612 {
  9257. border-width:0px;
  9258. position:absolute;
  9259. left:1851px;
  9260. top:636px;
  9261. width:375px;
  9262. height:80px;
  9263. display:flex;
  9264. }
  9265. #u45612 .text {
  9266. position:absolute;
  9267. align-self:center;
  9268. padding:2px 2px 2px 2px;
  9269. box-sizing:border-box;
  9270. width:100%;
  9271. }
  9272. #u45612_text {
  9273. border-width:0px;
  9274. word-wrap:break-word;
  9275. text-transform:none;
  9276. visibility:hidden;
  9277. }
  9278. #u45613_div {
  9279. border-width:0px;
  9280. position:absolute;
  9281. left:0px;
  9282. top:0px;
  9283. width:49px;
  9284. height:30px;
  9285. background:inherit;
  9286. background-color:rgba(255, 255, 255, 0);
  9287. border:none;
  9288. border-left:0px;
  9289. border-top:0px;
  9290. border-right:0px;
  9291. border-radius:0px;
  9292. border-bottom-right-radius:0px;
  9293. border-bottom-left-radius:0px;
  9294. -moz-box-shadow:none;
  9295. -webkit-box-shadow:none;
  9296. box-shadow:none;
  9297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9298. font-weight:400;
  9299. font-style:normal;
  9300. font-size:16px;
  9301. line-height:30px;
  9302. }
  9303. #u45613 {
  9304. border-width:0px;
  9305. position:absolute;
  9306. left:1928px;
  9307. top:675px;
  9308. width:49px;
  9309. height:30px;
  9310. display:flex;
  9311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9312. font-weight:400;
  9313. font-style:normal;
  9314. font-size:16px;
  9315. line-height:30px;
  9316. }
  9317. #u45613 .text {
  9318. position:absolute;
  9319. align-self:flex-start;
  9320. padding:0px 0px 0px 0px;
  9321. box-sizing:border-box;
  9322. width:100%;
  9323. }
  9324. #u45613_text {
  9325. border-width:0px;
  9326. white-space:nowrap;
  9327. text-transform:none;
  9328. }
  9329. #u45614_div {
  9330. border-width:0px;
  9331. position:absolute;
  9332. left:0px;
  9333. top:0px;
  9334. width:49px;
  9335. height:25px;
  9336. background:inherit;
  9337. background-color:rgba(255, 255, 255, 0);
  9338. border:none;
  9339. border-left:0px;
  9340. border-top:0px;
  9341. border-right:0px;
  9342. border-radius:0px;
  9343. border-bottom-right-radius:0px;
  9344. border-bottom-left-radius:0px;
  9345. -moz-box-shadow:none;
  9346. -webkit-box-shadow:none;
  9347. box-shadow:none;
  9348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9349. font-weight:400;
  9350. font-style:normal;
  9351. font-size:12px;
  9352. color:#7F7F7F;
  9353. line-height:25px;
  9354. }
  9355. #u45614 {
  9356. border-width:0px;
  9357. position:absolute;
  9358. left:1928px;
  9359. top:650px;
  9360. width:49px;
  9361. height:25px;
  9362. display:flex;
  9363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9364. font-weight:400;
  9365. font-style:normal;
  9366. font-size:12px;
  9367. color:#7F7F7F;
  9368. line-height:25px;
  9369. }
  9370. #u45614 .text {
  9371. position:absolute;
  9372. align-self:flex-start;
  9373. padding:0px 0px 0px 0px;
  9374. box-sizing:border-box;
  9375. width:100%;
  9376. }
  9377. #u45614_text {
  9378. border-width:0px;
  9379. white-space:nowrap;
  9380. text-transform:none;
  9381. }