styles.css 210 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2274px;
  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. #u144626_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u144626 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u144626 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u144626_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u144627_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. #u144627 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u144627 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u144627_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u144628 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u144629_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. #u144629 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u144629 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u144629_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u144630 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u144631_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u144631 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u144631 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u144631_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u144632_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u144632 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u144632 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u144632_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u144633 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u144634_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u144634 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u144634 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u144634_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u144635_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u144635 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u144635 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u144635_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u144636_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u144636 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u144636 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u144636_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u144637_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u144637 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u144637 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u144637_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u144638_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u144638 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u144638 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u144638_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u144639_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. #u144639 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u144639 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u144639_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u144640 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u144641_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u144641 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u144641 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u144641_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u144642_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. #u144642 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u144642 .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. #u144642_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u144643 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u144644_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u144644 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u144644 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u144644_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u144645_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. #u144645 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u144645 .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. #u144645_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u144646_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. #u144646 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u144646 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u144646_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u144647 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u144648_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u144648 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u144648 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u144648_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u144649_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. #u144649 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u144649 .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. #u144649_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u144650 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u144651_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u144651 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u144651 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u144651_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u144652_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. #u144652 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u144652 .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. #u144652_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u144653_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:740px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. 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. #u144653 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:740px;
  804. display:flex;
  805. }
  806. #u144653 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u144653_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u144654 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u144655_img {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:11px;
  833. height:18px;
  834. }
  835. #u144655 {
  836. border-width:0px;
  837. position:absolute;
  838. left:40px;
  839. top:79px;
  840. width:11px;
  841. height:18px;
  842. display:flex;
  843. }
  844. #u144655 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u144655_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u144656 {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:0px;
  863. height:0px;
  864. }
  865. #u144657_div {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:88px;
  871. height:32px;
  872. background:inherit;
  873. background-color:rgba(255, 255, 255, 1);
  874. box-sizing:border-box;
  875. border-width:1px;
  876. border-style:solid;
  877. border-color:rgba(242, 242, 242, 1);
  878. border-radius:33px;
  879. -moz-box-shadow:none;
  880. -webkit-box-shadow:none;
  881. box-shadow:none;
  882. }
  883. #u144657 {
  884. border-width:0px;
  885. position:absolute;
  886. left:309px;
  887. top:71px;
  888. width:88px;
  889. height:32px;
  890. display:flex;
  891. }
  892. #u144657 .text {
  893. position:absolute;
  894. align-self:center;
  895. padding:2px 2px 2px 2px;
  896. box-sizing:border-box;
  897. width:100%;
  898. }
  899. #u144657_text {
  900. border-width:0px;
  901. word-wrap:break-word;
  902. text-transform:none;
  903. visibility:hidden;
  904. }
  905. #u144658 {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:0px;
  911. height:0px;
  912. }
  913. #u144659_img {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:18px;
  919. height:18px;
  920. }
  921. #u144659 {
  922. border-width:0px;
  923. position:absolute;
  924. left:372px;
  925. top:78px;
  926. width:18px;
  927. height:18px;
  928. display:flex;
  929. }
  930. #u144659 .text {
  931. position:absolute;
  932. align-self:center;
  933. padding:2px 2px 2px 2px;
  934. box-sizing:border-box;
  935. width:100%;
  936. }
  937. #u144659_text {
  938. border-width:0px;
  939. word-wrap:break-word;
  940. text-transform:none;
  941. visibility:hidden;
  942. }
  943. #u144660_img {
  944. border-width:0px;
  945. position:absolute;
  946. left:0px;
  947. top:0px;
  948. width:6px;
  949. height:6px;
  950. }
  951. #u144660 {
  952. border-width:0px;
  953. position:absolute;
  954. left:378px;
  955. top:84px;
  956. width:6px;
  957. height:6px;
  958. display:flex;
  959. }
  960. #u144660 .text {
  961. position:absolute;
  962. align-self:center;
  963. padding:2px 2px 2px 2px;
  964. box-sizing:border-box;
  965. width:100%;
  966. }
  967. #u144660_text {
  968. border-width:0px;
  969. word-wrap:break-word;
  970. text-transform:none;
  971. visibility:hidden;
  972. }
  973. #u144661 {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:0px;
  979. height:0px;
  980. }
  981. #u144662_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:5px;
  987. height:5px;
  988. }
  989. #u144662 {
  990. border-width:0px;
  991. position:absolute;
  992. left:323px;
  993. top:85px;
  994. width:5px;
  995. height:5px;
  996. display:flex;
  997. }
  998. #u144662 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u144662_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u144663_img {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:5px;
  1017. height:5px;
  1018. }
  1019. #u144663 {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:339px;
  1023. top:85px;
  1024. width:5px;
  1025. height:5px;
  1026. display:flex;
  1027. }
  1028. #u144663 .text {
  1029. position:absolute;
  1030. align-self:center;
  1031. padding:2px 2px 2px 2px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u144663_text {
  1036. border-width:0px;
  1037. word-wrap:break-word;
  1038. text-transform:none;
  1039. visibility:hidden;
  1040. }
  1041. #u144664_img {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:0px;
  1045. top:0px;
  1046. width:7px;
  1047. height:7px;
  1048. }
  1049. #u144664 {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:330px;
  1053. top:84px;
  1054. width:7px;
  1055. height:7px;
  1056. display:flex;
  1057. }
  1058. #u144664 .text {
  1059. position:absolute;
  1060. align-self:center;
  1061. padding:2px 2px 2px 2px;
  1062. box-sizing:border-box;
  1063. width:100%;
  1064. }
  1065. #u144664_text {
  1066. border-width:0px;
  1067. word-wrap:break-word;
  1068. text-transform:none;
  1069. visibility:hidden;
  1070. }
  1071. #u144665_img {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:19px;
  1077. height:2px;
  1078. }
  1079. #u144665 {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:347px;
  1083. top:87px;
  1084. width:18px;
  1085. height:1px;
  1086. display:flex;
  1087. -webkit-transform:rotate(90deg);
  1088. -moz-transform:rotate(90deg);
  1089. -ms-transform:rotate(90deg);
  1090. transform:rotate(90deg);
  1091. }
  1092. #u144665 .text {
  1093. position:absolute;
  1094. align-self:center;
  1095. padding:2px 2px 2px 2px;
  1096. box-sizing:border-box;
  1097. width:100%;
  1098. }
  1099. #u144665_text {
  1100. border-width:0px;
  1101. word-wrap:break-word;
  1102. text-transform:none;
  1103. visibility:hidden;
  1104. }
  1105. #u144666 {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:0px;
  1109. top:0px;
  1110. width:0px;
  1111. height:0px;
  1112. }
  1113. #u144667_img {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:0px;
  1117. top:0px;
  1118. width:355px;
  1119. height:200px;
  1120. }
  1121. #u144667 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:207px;
  1126. width:355px;
  1127. height:200px;
  1128. display:flex;
  1129. }
  1130. #u144667 .text {
  1131. position:absolute;
  1132. align-self:center;
  1133. padding:2px 2px 2px 2px;
  1134. box-sizing:border-box;
  1135. width:100%;
  1136. }
  1137. #u144667_text {
  1138. border-width:0px;
  1139. word-wrap:break-word;
  1140. text-transform:none;
  1141. visibility:hidden;
  1142. }
  1143. #u144668_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:124px;
  1149. height:30px;
  1150. background:inherit;
  1151. background-color:rgba(255, 255, 255, 0);
  1152. border:none;
  1153. border-left:0px;
  1154. border-top:0px;
  1155. border-right:0px;
  1156. border-radius:0px;
  1157. border-bottom-right-radius:0px;
  1158. border-bottom-left-radius:0px;
  1159. -moz-box-shadow:none;
  1160. -webkit-box-shadow:none;
  1161. box-shadow:none;
  1162. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1163. font-weight:500;
  1164. font-style:normal;
  1165. font-size:14px;
  1166. line-height:30px;
  1167. }
  1168. #u144668 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:55px;
  1172. top:213px;
  1173. width:124px;
  1174. height:30px;
  1175. display:flex;
  1176. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1177. font-weight:500;
  1178. font-style:normal;
  1179. font-size:14px;
  1180. line-height:30px;
  1181. }
  1182. #u144668 .text {
  1183. position:absolute;
  1184. align-self:flex-start;
  1185. padding:0px 0px 0px 0px;
  1186. box-sizing:border-box;
  1187. width:100%;
  1188. }
  1189. #u144668_text {
  1190. border-width:0px;
  1191. white-space:nowrap;
  1192. text-transform:none;
  1193. }
  1194. #u144669_div {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:0px;
  1198. top:0px;
  1199. width:325px;
  1200. height:125px;
  1201. background:inherit;
  1202. background-color:rgba(255, 255, 255, 0);
  1203. border:none;
  1204. border-left:0px;
  1205. border-top:0px;
  1206. border-right:0px;
  1207. border-radius:0px;
  1208. border-bottom-right-radius:0px;
  1209. border-bottom-left-radius:0px;
  1210. -moz-box-shadow:none;
  1211. -webkit-box-shadow:none;
  1212. box-shadow:none;
  1213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1214. font-weight:400;
  1215. font-style:normal;
  1216. font-size:12px;
  1217. line-height:25px;
  1218. }
  1219. #u144669 {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:55px;
  1223. top:243px;
  1224. width:325px;
  1225. height:125px;
  1226. display:flex;
  1227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1228. font-weight:400;
  1229. font-style:normal;
  1230. font-size:12px;
  1231. line-height:25px;
  1232. }
  1233. #u144669 .text {
  1234. position:absolute;
  1235. align-self:flex-start;
  1236. padding:0px 0px 0px 0px;
  1237. box-sizing:border-box;
  1238. width:100%;
  1239. }
  1240. #u144669_text {
  1241. border-width:0px;
  1242. word-wrap:break-word;
  1243. text-transform:none;
  1244. }
  1245. #u144670_div {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:9px;
  1251. height:9px;
  1252. background:inherit;
  1253. background-color:rgba(255, 255, 255, 0);
  1254. box-sizing:border-box;
  1255. border-width:1px;
  1256. border-style:solid;
  1257. border-color:rgba(127, 127, 127, 1);
  1258. border-right:0px;
  1259. border-bottom:0px;
  1260. border-radius:0px;
  1261. border-top-right-radius:0px;
  1262. border-bottom-left-radius:0px;
  1263. -moz-box-shadow:none;
  1264. -webkit-box-shadow:none;
  1265. box-shadow:none;
  1266. }
  1267. #u144670 {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:370px;
  1271. top:221px;
  1272. width:9px;
  1273. height:9px;
  1274. display:flex;
  1275. -webkit-transform:rotate(135deg);
  1276. -moz-transform:rotate(135deg);
  1277. -ms-transform:rotate(135deg);
  1278. transform:rotate(135deg);
  1279. }
  1280. #u144670 .text {
  1281. position:absolute;
  1282. align-self:center;
  1283. padding:2px 2px 2px 2px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u144670_text {
  1288. border-width:0px;
  1289. word-wrap:break-word;
  1290. text-transform:none;
  1291. visibility:hidden;
  1292. }
  1293. #u144671_div {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:60px;
  1299. height:30px;
  1300. background:inherit;
  1301. background-color:rgba(255, 255, 255, 1);
  1302. box-sizing:border-box;
  1303. border-width:1px;
  1304. border-style:solid;
  1305. border-color:rgba(215, 215, 215, 1);
  1306. border-radius:63px;
  1307. -moz-box-shadow:none;
  1308. -webkit-box-shadow:none;
  1309. box-shadow:none;
  1310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1311. font-weight:400;
  1312. font-style:normal;
  1313. font-size:14px;
  1314. color:#555555;
  1315. }
  1316. #u144671 {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:320px;
  1320. top:367px;
  1321. width:60px;
  1322. height:30px;
  1323. display:flex;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:14px;
  1328. color:#555555;
  1329. }
  1330. #u144671 .text {
  1331. position:absolute;
  1332. align-self:center;
  1333. padding:2px 2px 2px 2px;
  1334. box-sizing:border-box;
  1335. width:100%;
  1336. }
  1337. #u144671_text {
  1338. border-width:0px;
  1339. word-wrap:break-word;
  1340. text-transform:none;
  1341. }
  1342. #u144673_img {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:0px;
  1346. top:0px;
  1347. width:433px;
  1348. height:865px;
  1349. }
  1350. #u144673 {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:457px;
  1354. top:0px;
  1355. width:433px;
  1356. height:865px;
  1357. display:flex;
  1358. }
  1359. #u144673 .text {
  1360. position:absolute;
  1361. align-self:center;
  1362. padding:2px 2px 2px 2px;
  1363. box-sizing:border-box;
  1364. width:100%;
  1365. }
  1366. #u144673_text {
  1367. border-width:0px;
  1368. word-wrap:break-word;
  1369. text-transform:none;
  1370. visibility:hidden;
  1371. }
  1372. #u144674_div {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:0px;
  1376. top:0px;
  1377. width:375px;
  1378. height:40px;
  1379. background:inherit;
  1380. background-color:rgba(255, 255, 255, 1);
  1381. box-sizing:border-box;
  1382. border-width:1px;
  1383. border-style:solid;
  1384. border-color:rgba(215, 215, 215, 1);
  1385. border-left:0px;
  1386. border-top:0px;
  1387. border-right:0px;
  1388. border-radius:0px;
  1389. border-bottom-right-radius:0px;
  1390. border-bottom-left-radius:0px;
  1391. -moz-box-shadow:none;
  1392. -webkit-box-shadow:none;
  1393. box-shadow:none;
  1394. }
  1395. #u144674 {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:486px;
  1399. top:67px;
  1400. width:375px;
  1401. height:40px;
  1402. display:flex;
  1403. }
  1404. #u144674 .text {
  1405. position:absolute;
  1406. align-self:center;
  1407. padding:2px 2px 2px 2px;
  1408. box-sizing:border-box;
  1409. width:100%;
  1410. }
  1411. #u144674_text {
  1412. border-width:0px;
  1413. word-wrap:break-word;
  1414. text-transform:none;
  1415. visibility:hidden;
  1416. }
  1417. #u144675 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:0px;
  1421. top:0px;
  1422. width:0px;
  1423. height:0px;
  1424. }
  1425. #u144676_div {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:0px;
  1429. top:0px;
  1430. width:88px;
  1431. height:32px;
  1432. background:inherit;
  1433. background-color:rgba(255, 255, 255, 1);
  1434. box-sizing:border-box;
  1435. border-width:1px;
  1436. border-style:solid;
  1437. border-color:rgba(242, 242, 242, 1);
  1438. border-radius:33px;
  1439. -moz-box-shadow:none;
  1440. -webkit-box-shadow:none;
  1441. box-shadow:none;
  1442. }
  1443. #u144676 {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:766px;
  1447. top:71px;
  1448. width:88px;
  1449. height:32px;
  1450. display:flex;
  1451. }
  1452. #u144676 .text {
  1453. position:absolute;
  1454. align-self:center;
  1455. padding:2px 2px 2px 2px;
  1456. box-sizing:border-box;
  1457. width:100%;
  1458. }
  1459. #u144676_text {
  1460. border-width:0px;
  1461. word-wrap:break-word;
  1462. text-transform:none;
  1463. visibility:hidden;
  1464. }
  1465. #u144677 {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:0px;
  1471. height:0px;
  1472. }
  1473. #u144678_img {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:18px;
  1479. height:18px;
  1480. }
  1481. #u144678 {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:829px;
  1485. top:78px;
  1486. width:18px;
  1487. height:18px;
  1488. display:flex;
  1489. }
  1490. #u144678 .text {
  1491. position:absolute;
  1492. align-self:center;
  1493. padding:2px 2px 2px 2px;
  1494. box-sizing:border-box;
  1495. width:100%;
  1496. }
  1497. #u144678_text {
  1498. border-width:0px;
  1499. word-wrap:break-word;
  1500. text-transform:none;
  1501. visibility:hidden;
  1502. }
  1503. #u144679_img {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:0px;
  1507. top:0px;
  1508. width:6px;
  1509. height:6px;
  1510. }
  1511. #u144679 {
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:835px;
  1515. top:84px;
  1516. width:6px;
  1517. height:6px;
  1518. display:flex;
  1519. }
  1520. #u144679 .text {
  1521. position:absolute;
  1522. align-self:center;
  1523. padding:2px 2px 2px 2px;
  1524. box-sizing:border-box;
  1525. width:100%;
  1526. }
  1527. #u144679_text {
  1528. border-width:0px;
  1529. word-wrap:break-word;
  1530. text-transform:none;
  1531. visibility:hidden;
  1532. }
  1533. #u144680 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:0px;
  1539. height:0px;
  1540. }
  1541. #u144681_img {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:0px;
  1545. top:0px;
  1546. width:5px;
  1547. height:5px;
  1548. }
  1549. #u144681 {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:780px;
  1553. top:85px;
  1554. width:5px;
  1555. height:5px;
  1556. display:flex;
  1557. }
  1558. #u144681 .text {
  1559. position:absolute;
  1560. align-self:center;
  1561. padding:2px 2px 2px 2px;
  1562. box-sizing:border-box;
  1563. width:100%;
  1564. }
  1565. #u144681_text {
  1566. border-width:0px;
  1567. word-wrap:break-word;
  1568. text-transform:none;
  1569. visibility:hidden;
  1570. }
  1571. #u144682_img {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:0px;
  1575. top:0px;
  1576. width:5px;
  1577. height:5px;
  1578. }
  1579. #u144682 {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:796px;
  1583. top:85px;
  1584. width:5px;
  1585. height:5px;
  1586. display:flex;
  1587. }
  1588. #u144682 .text {
  1589. position:absolute;
  1590. align-self:center;
  1591. padding:2px 2px 2px 2px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u144682_text {
  1596. border-width:0px;
  1597. word-wrap:break-word;
  1598. text-transform:none;
  1599. visibility:hidden;
  1600. }
  1601. #u144683_img {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:7px;
  1607. height:7px;
  1608. }
  1609. #u144683 {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:787px;
  1613. top:84px;
  1614. width:7px;
  1615. height:7px;
  1616. display:flex;
  1617. }
  1618. #u144683 .text {
  1619. position:absolute;
  1620. align-self:center;
  1621. padding:2px 2px 2px 2px;
  1622. box-sizing:border-box;
  1623. width:100%;
  1624. }
  1625. #u144683_text {
  1626. border-width:0px;
  1627. word-wrap:break-word;
  1628. text-transform:none;
  1629. visibility:hidden;
  1630. }
  1631. #u144684_img {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:0px;
  1635. top:0px;
  1636. width:19px;
  1637. height:2px;
  1638. }
  1639. #u144684 {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:804px;
  1643. top:87px;
  1644. width:18px;
  1645. height:1px;
  1646. display:flex;
  1647. -webkit-transform:rotate(90deg);
  1648. -moz-transform:rotate(90deg);
  1649. -ms-transform:rotate(90deg);
  1650. transform:rotate(90deg);
  1651. }
  1652. #u144684 .text {
  1653. position:absolute;
  1654. align-self:center;
  1655. padding:2px 2px 2px 2px;
  1656. box-sizing:border-box;
  1657. width:100%;
  1658. }
  1659. #u144684_text {
  1660. border-width:0px;
  1661. word-wrap:break-word;
  1662. text-transform:none;
  1663. visibility:hidden;
  1664. }
  1665. #u144685_img {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:0px;
  1669. top:0px;
  1670. width:375px;
  1671. height:44px;
  1672. }
  1673. #u144685 {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:486px;
  1677. top:24px;
  1678. width:375px;
  1679. height:44px;
  1680. display:flex;
  1681. }
  1682. #u144685 .text {
  1683. position:absolute;
  1684. align-self:center;
  1685. padding:2px 2px 2px 2px;
  1686. box-sizing:border-box;
  1687. width:100%;
  1688. }
  1689. #u144685_text {
  1690. border-width:0px;
  1691. word-wrap:break-word;
  1692. text-transform:none;
  1693. visibility:hidden;
  1694. }
  1695. #u144686_div {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:375px;
  1701. height:50px;
  1702. background:inherit;
  1703. background-color:rgba(255, 255, 255, 1);
  1704. box-sizing:border-box;
  1705. border-width:1px;
  1706. border-style:solid;
  1707. border-color:rgba(242, 242, 242, 1);
  1708. border-radius:26px;
  1709. border-top-left-radius:0px;
  1710. border-top-right-radius:0px;
  1711. -moz-box-shadow:none;
  1712. -webkit-box-shadow:none;
  1713. box-shadow:none;
  1714. }
  1715. #u144686 {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:486px;
  1719. top:788px;
  1720. width:375px;
  1721. height:50px;
  1722. display:flex;
  1723. }
  1724. #u144686 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:2px 2px 2px 2px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u144686_text {
  1732. border-width:0px;
  1733. word-wrap:break-word;
  1734. text-transform:none;
  1735. visibility:hidden;
  1736. }
  1737. #u144687 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:0px;
  1743. height:0px;
  1744. }
  1745. #u144688_img {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:0px;
  1749. top:0px;
  1750. width:24px;
  1751. height:24px;
  1752. }
  1753. #u144688 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:526px;
  1757. top:792px;
  1758. width:24px;
  1759. height:24px;
  1760. display:flex;
  1761. font-size:8px;
  1762. }
  1763. #u144688 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:2px 2px 2px 2px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u144688_text {
  1771. border-width:0px;
  1772. word-wrap:break-word;
  1773. text-transform:none;
  1774. }
  1775. #u144689_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:25px;
  1781. height:17px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 0);
  1784. border:none;
  1785. border-radius:0px;
  1786. -moz-box-shadow:none;
  1787. -webkit-box-shadow:none;
  1788. box-shadow:none;
  1789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:12px;
  1793. }
  1794. #u144689 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:526px;
  1798. top:817px;
  1799. width:25px;
  1800. height:17px;
  1801. display:flex;
  1802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1803. font-weight:400;
  1804. font-style:normal;
  1805. font-size:12px;
  1806. }
  1807. #u144689 .text {
  1808. position:absolute;
  1809. align-self:flex-start;
  1810. padding:0px 0px 0px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u144689_text {
  1815. border-width:0px;
  1816. white-space:nowrap;
  1817. text-transform:none;
  1818. }
  1819. #u144690 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:0px;
  1825. height:0px;
  1826. }
  1827. #u144691_img {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:24px;
  1833. height:24px;
  1834. }
  1835. #u144691 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:796px;
  1839. top:794px;
  1840. width:24px;
  1841. height:24px;
  1842. display:flex;
  1843. font-size:8px;
  1844. }
  1845. #u144691 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 2px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u144691_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u144692_div {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:25px;
  1863. height:17px;
  1864. background:inherit;
  1865. background-color:rgba(255, 255, 255, 0);
  1866. border:none;
  1867. border-radius:0px;
  1868. -moz-box-shadow:none;
  1869. -webkit-box-shadow:none;
  1870. box-shadow:none;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:12px;
  1875. }
  1876. #u144692 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:796px;
  1880. top:819px;
  1881. width:25px;
  1882. height:17px;
  1883. display:flex;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:12px;
  1888. }
  1889. #u144692 .text {
  1890. position:absolute;
  1891. align-self:flex-start;
  1892. padding:0px 0px 0px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u144692_text {
  1897. border-width:0px;
  1898. white-space:nowrap;
  1899. text-transform:none;
  1900. }
  1901. #u144693_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:375px;
  1907. height:681px;
  1908. background:inherit;
  1909. background-color:rgba(242, 242, 242, 0.462745098039216);
  1910. border:none;
  1911. border-radius:0px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. }
  1916. #u144693 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:486px;
  1920. top:107px;
  1921. width:375px;
  1922. height:681px;
  1923. display:flex;
  1924. }
  1925. #u144693 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:2px 2px 2px 2px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u144693_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. visibility:hidden;
  1937. }
  1938. #u144694 {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:0px;
  1944. height:0px;
  1945. }
  1946. #u144695_img {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:24px;
  1952. height:24px;
  1953. }
  1954. #u144695 {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:708px;
  1958. top:792px;
  1959. width:24px;
  1960. height:24px;
  1961. display:flex;
  1962. font-size:8px;
  1963. }
  1964. #u144695 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:2px 2px 2px 2px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u144695_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u144696_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:37px;
  1982. height:17px;
  1983. background:inherit;
  1984. background-color:rgba(255, 255, 255, 0);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:12px;
  1994. }
  1995. #u144696 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:702px;
  1999. top:817px;
  2000. width:37px;
  2001. height:17px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:12px;
  2007. }
  2008. #u144696 .text {
  2009. position:absolute;
  2010. align-self:flex-start;
  2011. padding:0px 0px 0px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u144696_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u144697 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:0px;
  2026. height:0px;
  2027. }
  2028. #u144698_img {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:24px;
  2034. height:24px;
  2035. }
  2036. #u144698 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:614px;
  2040. top:792px;
  2041. width:24px;
  2042. height:24px;
  2043. display:flex;
  2044. font-size:8px;
  2045. }
  2046. #u144698 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:2px 2px 2px 2px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u144698_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. }
  2058. #u144699_div {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:37px;
  2064. height:17px;
  2065. background:inherit;
  2066. background-color:rgba(255, 255, 255, 0);
  2067. border:none;
  2068. border-radius:0px;
  2069. -moz-box-shadow:none;
  2070. -webkit-box-shadow:none;
  2071. box-shadow:none;
  2072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:12px;
  2076. }
  2077. #u144699 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:608px;
  2081. top:817px;
  2082. width:37px;
  2083. height:17px;
  2084. display:flex;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:12px;
  2089. }
  2090. #u144699 .text {
  2091. position:absolute;
  2092. align-self:flex-start;
  2093. padding:0px 0px 0px 0px;
  2094. box-sizing:border-box;
  2095. width:100%;
  2096. }
  2097. #u144699_text {
  2098. border-width:0px;
  2099. white-space:nowrap;
  2100. text-transform:none;
  2101. }
  2102. #u144700_div {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:375px;
  2108. height:740px;
  2109. background:inherit;
  2110. background-color:rgba(242, 242, 242, 1);
  2111. border:none;
  2112. border-top:0px;
  2113. border-radius:25px;
  2114. border-top-left-radius:0px;
  2115. border-top-right-radius:0px;
  2116. -moz-box-shadow:none;
  2117. -webkit-box-shadow:none;
  2118. box-shadow:none;
  2119. }
  2120. #u144700 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:486px;
  2124. top:105px;
  2125. width:375px;
  2126. height:740px;
  2127. display:flex;
  2128. }
  2129. #u144700 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u144700_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. visibility:hidden;
  2141. }
  2142. #u144701 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:0px;
  2148. height:0px;
  2149. }
  2150. #u144702_img {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:11px;
  2156. height:18px;
  2157. }
  2158. #u144702 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:497px;
  2162. top:79px;
  2163. width:11px;
  2164. height:18px;
  2165. display:flex;
  2166. }
  2167. #u144702 .text {
  2168. position:absolute;
  2169. align-self:center;
  2170. padding:2px 2px 2px 2px;
  2171. box-sizing:border-box;
  2172. width:100%;
  2173. }
  2174. #u144702_text {
  2175. border-width:0px;
  2176. word-wrap:break-word;
  2177. text-transform:none;
  2178. visibility:hidden;
  2179. }
  2180. #u144703 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:0px;
  2186. height:0px;
  2187. }
  2188. #u144704_div {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:88px;
  2194. height:32px;
  2195. background:inherit;
  2196. background-color:rgba(255, 255, 255, 1);
  2197. box-sizing:border-box;
  2198. border-width:1px;
  2199. border-style:solid;
  2200. border-color:rgba(242, 242, 242, 1);
  2201. border-radius:33px;
  2202. -moz-box-shadow:none;
  2203. -webkit-box-shadow:none;
  2204. box-shadow:none;
  2205. }
  2206. #u144704 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:766px;
  2210. top:71px;
  2211. width:88px;
  2212. height:32px;
  2213. display:flex;
  2214. }
  2215. #u144704 .text {
  2216. position:absolute;
  2217. align-self:center;
  2218. padding:2px 2px 2px 2px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u144704_text {
  2223. border-width:0px;
  2224. word-wrap:break-word;
  2225. text-transform:none;
  2226. visibility:hidden;
  2227. }
  2228. #u144705 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:0px;
  2234. height:0px;
  2235. }
  2236. #u144706_img {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:18px;
  2242. height:18px;
  2243. }
  2244. #u144706 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:829px;
  2248. top:78px;
  2249. width:18px;
  2250. height:18px;
  2251. display:flex;
  2252. }
  2253. #u144706 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 2px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u144706_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. visibility:hidden;
  2265. }
  2266. #u144707_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:6px;
  2272. height:6px;
  2273. }
  2274. #u144707 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:835px;
  2278. top:84px;
  2279. width:6px;
  2280. height:6px;
  2281. display:flex;
  2282. }
  2283. #u144707 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:2px 2px 2px 2px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u144707_text {
  2291. border-width:0px;
  2292. word-wrap:break-word;
  2293. text-transform:none;
  2294. visibility:hidden;
  2295. }
  2296. #u144708 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:0px;
  2302. height:0px;
  2303. }
  2304. #u144709_img {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:0px;
  2308. top:0px;
  2309. width:5px;
  2310. height:5px;
  2311. }
  2312. #u144709 {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:780px;
  2316. top:85px;
  2317. width:5px;
  2318. height:5px;
  2319. display:flex;
  2320. }
  2321. #u144709 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:2px 2px 2px 2px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u144709_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. visibility:hidden;
  2333. }
  2334. #u144710_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:5px;
  2340. height:5px;
  2341. }
  2342. #u144710 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:796px;
  2346. top:85px;
  2347. width:5px;
  2348. height:5px;
  2349. display:flex;
  2350. }
  2351. #u144710 .text {
  2352. position:absolute;
  2353. align-self:center;
  2354. padding:2px 2px 2px 2px;
  2355. box-sizing:border-box;
  2356. width:100%;
  2357. }
  2358. #u144710_text {
  2359. border-width:0px;
  2360. word-wrap:break-word;
  2361. text-transform:none;
  2362. visibility:hidden;
  2363. }
  2364. #u144711_img {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:7px;
  2370. height:7px;
  2371. }
  2372. #u144711 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:787px;
  2376. top:84px;
  2377. width:7px;
  2378. height:7px;
  2379. display:flex;
  2380. }
  2381. #u144711 .text {
  2382. position:absolute;
  2383. align-self:center;
  2384. padding:2px 2px 2px 2px;
  2385. box-sizing:border-box;
  2386. width:100%;
  2387. }
  2388. #u144711_text {
  2389. border-width:0px;
  2390. word-wrap:break-word;
  2391. text-transform:none;
  2392. visibility:hidden;
  2393. }
  2394. #u144712_img {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:19px;
  2400. height:2px;
  2401. }
  2402. #u144712 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:804px;
  2406. top:87px;
  2407. width:18px;
  2408. height:1px;
  2409. display:flex;
  2410. -webkit-transform:rotate(90deg);
  2411. -moz-transform:rotate(90deg);
  2412. -ms-transform:rotate(90deg);
  2413. transform:rotate(90deg);
  2414. }
  2415. #u144712 .text {
  2416. position:absolute;
  2417. align-self:center;
  2418. padding:2px 2px 2px 2px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u144712_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. visibility:hidden;
  2427. }
  2428. #u144713_div {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:12px;
  2434. height:12px;
  2435. background:inherit;
  2436. background-color:rgba(255, 255, 255, 0);
  2437. box-sizing:border-box;
  2438. border-width:2px;
  2439. border-style:solid;
  2440. border-color:rgba(51, 51, 51, 1);
  2441. border-right:0px;
  2442. border-bottom:0px;
  2443. border-radius:0px;
  2444. border-top-right-radius:0px;
  2445. border-bottom-left-radius:0px;
  2446. -moz-box-shadow:none;
  2447. -webkit-box-shadow:none;
  2448. box-shadow:none;
  2449. }
  2450. #u144713 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:501px;
  2454. top:82px;
  2455. width:12px;
  2456. height:12px;
  2457. display:flex;
  2458. -webkit-transform:rotate(315deg);
  2459. -moz-transform:rotate(315deg);
  2460. -ms-transform:rotate(315deg);
  2461. transform:rotate(315deg);
  2462. }
  2463. #u144713 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 2px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u144713_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. visibility:hidden;
  2475. }
  2476. #u144714_div {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:65px;
  2482. height:22px;
  2483. background:inherit;
  2484. background-color:rgba(255, 255, 255, 0);
  2485. border:none;
  2486. border-radius:0px;
  2487. -moz-box-shadow:none;
  2488. -webkit-box-shadow:none;
  2489. box-shadow:none;
  2490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2491. font-weight:400;
  2492. font-style:normal;
  2493. font-size:16px;
  2494. color:#000000;
  2495. }
  2496. #u144714 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:638px;
  2500. top:77px;
  2501. width:65px;
  2502. height:22px;
  2503. display:flex;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:16px;
  2508. color:#000000;
  2509. }
  2510. #u144714 .text {
  2511. position:absolute;
  2512. align-self:flex-start;
  2513. padding:0px 0px 0px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u144714_text {
  2518. border-width:0px;
  2519. white-space:nowrap;
  2520. text-transform:none;
  2521. }
  2522. #u144716_img {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:433px;
  2528. height:865px;
  2529. }
  2530. #u144716 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:918px;
  2534. top:0px;
  2535. width:433px;
  2536. height:865px;
  2537. display:flex;
  2538. }
  2539. #u144716 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 2px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u144716_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. visibility:hidden;
  2551. }
  2552. #u144717_div {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:375px;
  2558. height:40px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 1);
  2561. box-sizing:border-box;
  2562. border-width:1px;
  2563. border-style:solid;
  2564. border-color:rgba(215, 215, 215, 1);
  2565. border-left:0px;
  2566. border-top:0px;
  2567. border-right:0px;
  2568. border-radius:0px;
  2569. border-bottom-right-radius:0px;
  2570. border-bottom-left-radius:0px;
  2571. -moz-box-shadow:none;
  2572. -webkit-box-shadow:none;
  2573. box-shadow:none;
  2574. }
  2575. #u144717 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:947px;
  2579. top:67px;
  2580. width:375px;
  2581. height:40px;
  2582. display:flex;
  2583. }
  2584. #u144717 .text {
  2585. position:absolute;
  2586. align-self:center;
  2587. padding:2px 2px 2px 2px;
  2588. box-sizing:border-box;
  2589. width:100%;
  2590. }
  2591. #u144717_text {
  2592. border-width:0px;
  2593. word-wrap:break-word;
  2594. text-transform:none;
  2595. visibility:hidden;
  2596. }
  2597. #u144718 {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:0px;
  2603. height:0px;
  2604. }
  2605. #u144719_div {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:88px;
  2611. height:32px;
  2612. background:inherit;
  2613. background-color:rgba(255, 255, 255, 1);
  2614. box-sizing:border-box;
  2615. border-width:1px;
  2616. border-style:solid;
  2617. border-color:rgba(242, 242, 242, 1);
  2618. border-radius:33px;
  2619. -moz-box-shadow:none;
  2620. -webkit-box-shadow:none;
  2621. box-shadow:none;
  2622. }
  2623. #u144719 {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:1227px;
  2627. top:71px;
  2628. width:88px;
  2629. height:32px;
  2630. display:flex;
  2631. }
  2632. #u144719 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:2px 2px 2px 2px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u144719_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. visibility:hidden;
  2644. }
  2645. #u144720 {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:0px;
  2651. height:0px;
  2652. }
  2653. #u144721_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:18px;
  2659. height:18px;
  2660. }
  2661. #u144721 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:1290px;
  2665. top:78px;
  2666. width:18px;
  2667. height:18px;
  2668. display:flex;
  2669. }
  2670. #u144721 .text {
  2671. position:absolute;
  2672. align-self:center;
  2673. padding:2px 2px 2px 2px;
  2674. box-sizing:border-box;
  2675. width:100%;
  2676. }
  2677. #u144721_text {
  2678. border-width:0px;
  2679. word-wrap:break-word;
  2680. text-transform:none;
  2681. visibility:hidden;
  2682. }
  2683. #u144722_img {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:6px;
  2689. height:6px;
  2690. }
  2691. #u144722 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:1296px;
  2695. top:84px;
  2696. width:6px;
  2697. height:6px;
  2698. display:flex;
  2699. }
  2700. #u144722 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 2px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u144722_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. visibility:hidden;
  2712. }
  2713. #u144723 {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:0px;
  2719. height:0px;
  2720. }
  2721. #u144724_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:5px;
  2727. height:5px;
  2728. }
  2729. #u144724 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:1241px;
  2733. top:85px;
  2734. width:5px;
  2735. height:5px;
  2736. display:flex;
  2737. }
  2738. #u144724 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 2px 2px 2px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u144724_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u144725_img {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:5px;
  2757. height:5px;
  2758. }
  2759. #u144725 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:1257px;
  2763. top:85px;
  2764. width:5px;
  2765. height:5px;
  2766. display:flex;
  2767. }
  2768. #u144725 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 2px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u144725_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. visibility:hidden;
  2780. }
  2781. #u144726_img {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:7px;
  2787. height:7px;
  2788. }
  2789. #u144726 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:1248px;
  2793. top:84px;
  2794. width:7px;
  2795. height:7px;
  2796. display:flex;
  2797. }
  2798. #u144726 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 2px 2px 2px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u144726_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. visibility:hidden;
  2810. }
  2811. #u144727_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:19px;
  2817. height:2px;
  2818. }
  2819. #u144727 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:1265px;
  2823. top:87px;
  2824. width:18px;
  2825. height:1px;
  2826. display:flex;
  2827. -webkit-transform:rotate(90deg);
  2828. -moz-transform:rotate(90deg);
  2829. -ms-transform:rotate(90deg);
  2830. transform:rotate(90deg);
  2831. }
  2832. #u144727 .text {
  2833. position:absolute;
  2834. align-self:center;
  2835. padding:2px 2px 2px 2px;
  2836. box-sizing:border-box;
  2837. width:100%;
  2838. }
  2839. #u144727_text {
  2840. border-width:0px;
  2841. word-wrap:break-word;
  2842. text-transform:none;
  2843. visibility:hidden;
  2844. }
  2845. #u144728_img {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:375px;
  2851. height:44px;
  2852. }
  2853. #u144728 {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:947px;
  2857. top:24px;
  2858. width:375px;
  2859. height:44px;
  2860. display:flex;
  2861. }
  2862. #u144728 .text {
  2863. position:absolute;
  2864. align-self:center;
  2865. padding:2px 2px 2px 2px;
  2866. box-sizing:border-box;
  2867. width:100%;
  2868. }
  2869. #u144728_text {
  2870. border-width:0px;
  2871. word-wrap:break-word;
  2872. text-transform:none;
  2873. visibility:hidden;
  2874. }
  2875. #u144729_div {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:375px;
  2881. height:50px;
  2882. background:inherit;
  2883. background-color:rgba(255, 255, 255, 1);
  2884. box-sizing:border-box;
  2885. border-width:1px;
  2886. border-style:solid;
  2887. border-color:rgba(242, 242, 242, 1);
  2888. border-radius:26px;
  2889. border-top-left-radius:0px;
  2890. border-top-right-radius:0px;
  2891. -moz-box-shadow:none;
  2892. -webkit-box-shadow:none;
  2893. box-shadow:none;
  2894. }
  2895. #u144729 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:947px;
  2899. top:788px;
  2900. width:375px;
  2901. height:50px;
  2902. display:flex;
  2903. }
  2904. #u144729 .text {
  2905. position:absolute;
  2906. align-self:center;
  2907. padding:2px 2px 2px 2px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u144729_text {
  2912. border-width:0px;
  2913. word-wrap:break-word;
  2914. text-transform:none;
  2915. visibility:hidden;
  2916. }
  2917. #u144730 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:0px;
  2923. height:0px;
  2924. }
  2925. #u144731_img {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:24px;
  2931. height:24px;
  2932. }
  2933. #u144731 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:987px;
  2937. top:792px;
  2938. width:24px;
  2939. height:24px;
  2940. display:flex;
  2941. font-size:8px;
  2942. }
  2943. #u144731 .text {
  2944. position:absolute;
  2945. align-self:center;
  2946. padding:2px 2px 2px 2px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u144731_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. }
  2955. #u144732_div {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:25px;
  2961. height:17px;
  2962. background:inherit;
  2963. background-color:rgba(255, 255, 255, 0);
  2964. border:none;
  2965. border-radius:0px;
  2966. -moz-box-shadow:none;
  2967. -webkit-box-shadow:none;
  2968. box-shadow:none;
  2969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2970. font-weight:400;
  2971. font-style:normal;
  2972. font-size:12px;
  2973. }
  2974. #u144732 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:987px;
  2978. top:817px;
  2979. width:25px;
  2980. height:17px;
  2981. display:flex;
  2982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2983. font-weight:400;
  2984. font-style:normal;
  2985. font-size:12px;
  2986. }
  2987. #u144732 .text {
  2988. position:absolute;
  2989. align-self:flex-start;
  2990. padding:0px 0px 0px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u144732_text {
  2995. border-width:0px;
  2996. white-space:nowrap;
  2997. text-transform:none;
  2998. }
  2999. #u144733 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:0px;
  3005. height:0px;
  3006. }
  3007. #u144734_img {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:24px;
  3013. height:24px;
  3014. }
  3015. #u144734 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:1257px;
  3019. top:794px;
  3020. width:24px;
  3021. height:24px;
  3022. display:flex;
  3023. font-size:8px;
  3024. }
  3025. #u144734 .text {
  3026. position:absolute;
  3027. align-self:center;
  3028. padding:2px 2px 2px 2px;
  3029. box-sizing:border-box;
  3030. width:100%;
  3031. }
  3032. #u144734_text {
  3033. border-width:0px;
  3034. word-wrap:break-word;
  3035. text-transform:none;
  3036. }
  3037. #u144735_div {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:25px;
  3043. height:17px;
  3044. background:inherit;
  3045. background-color:rgba(255, 255, 255, 0);
  3046. border:none;
  3047. border-radius:0px;
  3048. -moz-box-shadow:none;
  3049. -webkit-box-shadow:none;
  3050. box-shadow:none;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:12px;
  3055. }
  3056. #u144735 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:1257px;
  3060. top:819px;
  3061. width:25px;
  3062. height:17px;
  3063. display:flex;
  3064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. font-size:12px;
  3068. }
  3069. #u144735 .text {
  3070. position:absolute;
  3071. align-self:flex-start;
  3072. padding:0px 0px 0px 0px;
  3073. box-sizing:border-box;
  3074. width:100%;
  3075. }
  3076. #u144735_text {
  3077. border-width:0px;
  3078. white-space:nowrap;
  3079. text-transform:none;
  3080. }
  3081. #u144736_div {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:375px;
  3087. height:681px;
  3088. background:inherit;
  3089. background-color:rgba(242, 242, 242, 0.462745098039216);
  3090. border:none;
  3091. border-radius:0px;
  3092. -moz-box-shadow:none;
  3093. -webkit-box-shadow:none;
  3094. box-shadow:none;
  3095. }
  3096. #u144736 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:947px;
  3100. top:107px;
  3101. width:375px;
  3102. height:681px;
  3103. display:flex;
  3104. }
  3105. #u144736 .text {
  3106. position:absolute;
  3107. align-self:center;
  3108. padding:2px 2px 2px 2px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u144736_text {
  3113. border-width:0px;
  3114. word-wrap:break-word;
  3115. text-transform:none;
  3116. visibility:hidden;
  3117. }
  3118. #u144737 {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:0px;
  3124. height:0px;
  3125. }
  3126. #u144738_img {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:24px;
  3132. height:24px;
  3133. }
  3134. #u144738 {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:1169px;
  3138. top:792px;
  3139. width:24px;
  3140. height:24px;
  3141. display:flex;
  3142. font-size:8px;
  3143. }
  3144. #u144738 .text {
  3145. position:absolute;
  3146. align-self:center;
  3147. padding:2px 2px 2px 2px;
  3148. box-sizing:border-box;
  3149. width:100%;
  3150. }
  3151. #u144738_text {
  3152. border-width:0px;
  3153. word-wrap:break-word;
  3154. text-transform:none;
  3155. }
  3156. #u144739_div {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:37px;
  3162. height:17px;
  3163. background:inherit;
  3164. background-color:rgba(255, 255, 255, 0);
  3165. border:none;
  3166. border-radius:0px;
  3167. -moz-box-shadow:none;
  3168. -webkit-box-shadow:none;
  3169. box-shadow:none;
  3170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3171. font-weight:400;
  3172. font-style:normal;
  3173. font-size:12px;
  3174. }
  3175. #u144739 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:1163px;
  3179. top:817px;
  3180. width:37px;
  3181. height:17px;
  3182. display:flex;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:12px;
  3187. }
  3188. #u144739 .text {
  3189. position:absolute;
  3190. align-self:flex-start;
  3191. padding:0px 0px 0px 0px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u144739_text {
  3196. border-width:0px;
  3197. white-space:nowrap;
  3198. text-transform:none;
  3199. }
  3200. #u144740 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:0px;
  3206. height:0px;
  3207. }
  3208. #u144741_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:24px;
  3214. height:24px;
  3215. }
  3216. #u144741 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:1075px;
  3220. top:792px;
  3221. width:24px;
  3222. height:24px;
  3223. display:flex;
  3224. font-size:8px;
  3225. }
  3226. #u144741 .text {
  3227. position:absolute;
  3228. align-self:center;
  3229. padding:2px 2px 2px 2px;
  3230. box-sizing:border-box;
  3231. width:100%;
  3232. }
  3233. #u144741_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. }
  3238. #u144742_div {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:37px;
  3244. height:17px;
  3245. background:inherit;
  3246. background-color:rgba(255, 255, 255, 0);
  3247. border:none;
  3248. border-radius:0px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:12px;
  3256. }
  3257. #u144742 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:1069px;
  3261. top:817px;
  3262. width:37px;
  3263. height:17px;
  3264. display:flex;
  3265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3266. font-weight:400;
  3267. font-style:normal;
  3268. font-size:12px;
  3269. }
  3270. #u144742 .text {
  3271. position:absolute;
  3272. align-self:flex-start;
  3273. padding:0px 0px 0px 0px;
  3274. box-sizing:border-box;
  3275. width:100%;
  3276. }
  3277. #u144742_text {
  3278. border-width:0px;
  3279. white-space:nowrap;
  3280. text-transform:none;
  3281. }
  3282. #u144743_div {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:0px;
  3287. width:375px;
  3288. height:740px;
  3289. background:inherit;
  3290. background-color:rgba(242, 242, 242, 1);
  3291. border:none;
  3292. border-top:0px;
  3293. border-radius:25px;
  3294. border-top-left-radius:0px;
  3295. border-top-right-radius:0px;
  3296. -moz-box-shadow:none;
  3297. -webkit-box-shadow:none;
  3298. box-shadow:none;
  3299. }
  3300. #u144743 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:947px;
  3304. top:105px;
  3305. width:375px;
  3306. height:740px;
  3307. display:flex;
  3308. }
  3309. #u144743 .text {
  3310. position:absolute;
  3311. align-self:center;
  3312. padding:2px 2px 2px 2px;
  3313. box-sizing:border-box;
  3314. width:100%;
  3315. }
  3316. #u144743_text {
  3317. border-width:0px;
  3318. word-wrap:break-word;
  3319. text-transform:none;
  3320. visibility:hidden;
  3321. }
  3322. #u144744 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:0px;
  3328. height:0px;
  3329. }
  3330. #u144745_img {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:11px;
  3336. height:18px;
  3337. }
  3338. #u144745 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:958px;
  3342. top:79px;
  3343. width:11px;
  3344. height:18px;
  3345. display:flex;
  3346. }
  3347. #u144745 .text {
  3348. position:absolute;
  3349. align-self:center;
  3350. padding:2px 2px 2px 2px;
  3351. box-sizing:border-box;
  3352. width:100%;
  3353. }
  3354. #u144745_text {
  3355. border-width:0px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. visibility:hidden;
  3359. }
  3360. #u144746 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:0px;
  3366. height:0px;
  3367. }
  3368. #u144747_div {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:88px;
  3374. height:32px;
  3375. background:inherit;
  3376. background-color:rgba(255, 255, 255, 1);
  3377. box-sizing:border-box;
  3378. border-width:1px;
  3379. border-style:solid;
  3380. border-color:rgba(242, 242, 242, 1);
  3381. border-radius:33px;
  3382. -moz-box-shadow:none;
  3383. -webkit-box-shadow:none;
  3384. box-shadow:none;
  3385. }
  3386. #u144747 {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:1227px;
  3390. top:71px;
  3391. width:88px;
  3392. height:32px;
  3393. display:flex;
  3394. }
  3395. #u144747 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 2px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u144747_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. visibility:hidden;
  3407. }
  3408. #u144748 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:0px;
  3414. height:0px;
  3415. }
  3416. #u144749_img {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:18px;
  3422. height:18px;
  3423. }
  3424. #u144749 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:1290px;
  3428. top:78px;
  3429. width:18px;
  3430. height:18px;
  3431. display:flex;
  3432. }
  3433. #u144749 .text {
  3434. position:absolute;
  3435. align-self:center;
  3436. padding:2px 2px 2px 2px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u144749_text {
  3441. border-width:0px;
  3442. word-wrap:break-word;
  3443. text-transform:none;
  3444. visibility:hidden;
  3445. }
  3446. #u144750_img {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:6px;
  3452. height:6px;
  3453. }
  3454. #u144750 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:1296px;
  3458. top:84px;
  3459. width:6px;
  3460. height:6px;
  3461. display:flex;
  3462. }
  3463. #u144750 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 2px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u144750_text {
  3471. border-width:0px;
  3472. word-wrap:break-word;
  3473. text-transform:none;
  3474. visibility:hidden;
  3475. }
  3476. #u144751 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:0px;
  3482. height:0px;
  3483. }
  3484. #u144752_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:5px;
  3490. height:5px;
  3491. }
  3492. #u144752 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:1241px;
  3496. top:85px;
  3497. width:5px;
  3498. height:5px;
  3499. display:flex;
  3500. }
  3501. #u144752 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 2px 2px 2px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u144752_text {
  3509. border-width:0px;
  3510. word-wrap:break-word;
  3511. text-transform:none;
  3512. visibility:hidden;
  3513. }
  3514. #u144753_img {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:5px;
  3520. height:5px;
  3521. }
  3522. #u144753 {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:1257px;
  3526. top:85px;
  3527. width:5px;
  3528. height:5px;
  3529. display:flex;
  3530. }
  3531. #u144753 .text {
  3532. position:absolute;
  3533. align-self:center;
  3534. padding:2px 2px 2px 2px;
  3535. box-sizing:border-box;
  3536. width:100%;
  3537. }
  3538. #u144753_text {
  3539. border-width:0px;
  3540. word-wrap:break-word;
  3541. text-transform:none;
  3542. visibility:hidden;
  3543. }
  3544. #u144754_img {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:7px;
  3550. height:7px;
  3551. }
  3552. #u144754 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:1248px;
  3556. top:84px;
  3557. width:7px;
  3558. height:7px;
  3559. display:flex;
  3560. }
  3561. #u144754 .text {
  3562. position:absolute;
  3563. align-self:center;
  3564. padding:2px 2px 2px 2px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u144754_text {
  3569. border-width:0px;
  3570. word-wrap:break-word;
  3571. text-transform:none;
  3572. visibility:hidden;
  3573. }
  3574. #u144755_img {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:19px;
  3580. height:2px;
  3581. }
  3582. #u144755 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:1265px;
  3586. top:87px;
  3587. width:18px;
  3588. height:1px;
  3589. display:flex;
  3590. -webkit-transform:rotate(90deg);
  3591. -moz-transform:rotate(90deg);
  3592. -ms-transform:rotate(90deg);
  3593. transform:rotate(90deg);
  3594. }
  3595. #u144755 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 2px 2px 2px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u144755_text {
  3603. border-width:0px;
  3604. word-wrap:break-word;
  3605. text-transform:none;
  3606. visibility:hidden;
  3607. }
  3608. #u144756_div {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:12px;
  3614. height:12px;
  3615. background:inherit;
  3616. background-color:rgba(255, 255, 255, 0);
  3617. box-sizing:border-box;
  3618. border-width:2px;
  3619. border-style:solid;
  3620. border-color:rgba(51, 51, 51, 1);
  3621. border-right:0px;
  3622. border-bottom:0px;
  3623. border-radius:0px;
  3624. border-top-right-radius:0px;
  3625. border-bottom-left-radius:0px;
  3626. -moz-box-shadow:none;
  3627. -webkit-box-shadow:none;
  3628. box-shadow:none;
  3629. }
  3630. #u144756 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:962px;
  3634. top:81px;
  3635. width:12px;
  3636. height:12px;
  3637. display:flex;
  3638. -webkit-transform:rotate(315deg);
  3639. -moz-transform:rotate(315deg);
  3640. -ms-transform:rotate(315deg);
  3641. transform:rotate(315deg);
  3642. }
  3643. #u144756 .text {
  3644. position:absolute;
  3645. align-self:center;
  3646. padding:2px 2px 2px 2px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u144756_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. visibility:hidden;
  3655. }
  3656. #u144757_div {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:65px;
  3662. height:22px;
  3663. background:inherit;
  3664. background-color:rgba(255, 255, 255, 0);
  3665. border:none;
  3666. border-radius:0px;
  3667. -moz-box-shadow:none;
  3668. -webkit-box-shadow:none;
  3669. box-shadow:none;
  3670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3671. font-weight:400;
  3672. font-style:normal;
  3673. font-size:16px;
  3674. color:#000000;
  3675. }
  3676. #u144757 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:1099px;
  3680. top:76px;
  3681. width:65px;
  3682. height:22px;
  3683. display:flex;
  3684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3685. font-weight:400;
  3686. font-style:normal;
  3687. font-size:16px;
  3688. color:#000000;
  3689. }
  3690. #u144757 .text {
  3691. position:absolute;
  3692. align-self:flex-start;
  3693. padding:0px 0px 0px 0px;
  3694. box-sizing:border-box;
  3695. width:100%;
  3696. }
  3697. #u144757_text {
  3698. border-width:0px;
  3699. white-space:nowrap;
  3700. text-transform:none;
  3701. }
  3702. #u144759_img {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:433px;
  3708. height:865px;
  3709. }
  3710. #u144759 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:1376px;
  3714. top:0px;
  3715. width:433px;
  3716. height:865px;
  3717. display:flex;
  3718. }
  3719. #u144759 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 2px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u144759_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. visibility:hidden;
  3731. }
  3732. #u144760_div {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:375px;
  3738. height:40px;
  3739. background:inherit;
  3740. background-color:rgba(255, 255, 255, 1);
  3741. box-sizing:border-box;
  3742. border-width:1px;
  3743. border-style:solid;
  3744. border-color:rgba(215, 215, 215, 1);
  3745. border-left:0px;
  3746. border-top:0px;
  3747. border-right:0px;
  3748. border-radius:0px;
  3749. border-bottom-right-radius:0px;
  3750. border-bottom-left-radius:0px;
  3751. -moz-box-shadow:none;
  3752. -webkit-box-shadow:none;
  3753. box-shadow:none;
  3754. }
  3755. #u144760 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:1405px;
  3759. top:67px;
  3760. width:375px;
  3761. height:40px;
  3762. display:flex;
  3763. }
  3764. #u144760 .text {
  3765. position:absolute;
  3766. align-self:center;
  3767. padding:2px 2px 2px 2px;
  3768. box-sizing:border-box;
  3769. width:100%;
  3770. }
  3771. #u144760_text {
  3772. border-width:0px;
  3773. word-wrap:break-word;
  3774. text-transform:none;
  3775. visibility:hidden;
  3776. }
  3777. #u144761 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:0px;
  3783. height:0px;
  3784. }
  3785. #u144762_div {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:88px;
  3791. height:32px;
  3792. background:inherit;
  3793. background-color:rgba(255, 255, 255, 1);
  3794. box-sizing:border-box;
  3795. border-width:1px;
  3796. border-style:solid;
  3797. border-color:rgba(242, 242, 242, 1);
  3798. border-radius:33px;
  3799. -moz-box-shadow:none;
  3800. -webkit-box-shadow:none;
  3801. box-shadow:none;
  3802. }
  3803. #u144762 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:1685px;
  3807. top:71px;
  3808. width:88px;
  3809. height:32px;
  3810. display:flex;
  3811. }
  3812. #u144762 .text {
  3813. position:absolute;
  3814. align-self:center;
  3815. padding:2px 2px 2px 2px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u144762_text {
  3820. border-width:0px;
  3821. word-wrap:break-word;
  3822. text-transform:none;
  3823. visibility:hidden;
  3824. }
  3825. #u144763 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:0px;
  3831. height:0px;
  3832. }
  3833. #u144764_img {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:18px;
  3839. height:18px;
  3840. }
  3841. #u144764 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:1748px;
  3845. top:78px;
  3846. width:18px;
  3847. height:18px;
  3848. display:flex;
  3849. }
  3850. #u144764 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 2px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u144764_text {
  3858. border-width:0px;
  3859. word-wrap:break-word;
  3860. text-transform:none;
  3861. visibility:hidden;
  3862. }
  3863. #u144765_img {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:0px;
  3867. top:0px;
  3868. width:6px;
  3869. height:6px;
  3870. }
  3871. #u144765 {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:1754px;
  3875. top:84px;
  3876. width:6px;
  3877. height:6px;
  3878. display:flex;
  3879. }
  3880. #u144765 .text {
  3881. position:absolute;
  3882. align-self:center;
  3883. padding:2px 2px 2px 2px;
  3884. box-sizing:border-box;
  3885. width:100%;
  3886. }
  3887. #u144765_text {
  3888. border-width:0px;
  3889. word-wrap:break-word;
  3890. text-transform:none;
  3891. visibility:hidden;
  3892. }
  3893. #u144766 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:0px;
  3897. top:0px;
  3898. width:0px;
  3899. height:0px;
  3900. }
  3901. #u144767_img {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:5px;
  3907. height:5px;
  3908. }
  3909. #u144767 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:1699px;
  3913. top:85px;
  3914. width:5px;
  3915. height:5px;
  3916. display:flex;
  3917. }
  3918. #u144767 .text {
  3919. position:absolute;
  3920. align-self:center;
  3921. padding:2px 2px 2px 2px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u144767_text {
  3926. border-width:0px;
  3927. word-wrap:break-word;
  3928. text-transform:none;
  3929. visibility:hidden;
  3930. }
  3931. #u144768_img {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:5px;
  3937. height:5px;
  3938. }
  3939. #u144768 {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:1715px;
  3943. top:85px;
  3944. width:5px;
  3945. height:5px;
  3946. display:flex;
  3947. }
  3948. #u144768 .text {
  3949. position:absolute;
  3950. align-self:center;
  3951. padding:2px 2px 2px 2px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u144768_text {
  3956. border-width:0px;
  3957. word-wrap:break-word;
  3958. text-transform:none;
  3959. visibility:hidden;
  3960. }
  3961. #u144769_img {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:7px;
  3967. height:7px;
  3968. }
  3969. #u144769 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:1706px;
  3973. top:84px;
  3974. width:7px;
  3975. height:7px;
  3976. display:flex;
  3977. }
  3978. #u144769 .text {
  3979. position:absolute;
  3980. align-self:center;
  3981. padding:2px 2px 2px 2px;
  3982. box-sizing:border-box;
  3983. width:100%;
  3984. }
  3985. #u144769_text {
  3986. border-width:0px;
  3987. word-wrap:break-word;
  3988. text-transform:none;
  3989. visibility:hidden;
  3990. }
  3991. #u144770_img {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:19px;
  3997. height:2px;
  3998. }
  3999. #u144770 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:1723px;
  4003. top:87px;
  4004. width:18px;
  4005. height:1px;
  4006. display:flex;
  4007. -webkit-transform:rotate(90deg);
  4008. -moz-transform:rotate(90deg);
  4009. -ms-transform:rotate(90deg);
  4010. transform:rotate(90deg);
  4011. }
  4012. #u144770 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:2px 2px 2px 2px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u144770_text {
  4020. border-width:0px;
  4021. word-wrap:break-word;
  4022. text-transform:none;
  4023. visibility:hidden;
  4024. }
  4025. #u144771_img {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:375px;
  4031. height:44px;
  4032. }
  4033. #u144771 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:1405px;
  4037. top:24px;
  4038. width:375px;
  4039. height:44px;
  4040. display:flex;
  4041. }
  4042. #u144771 .text {
  4043. position:absolute;
  4044. align-self:center;
  4045. padding:2px 2px 2px 2px;
  4046. box-sizing:border-box;
  4047. width:100%;
  4048. }
  4049. #u144771_text {
  4050. border-width:0px;
  4051. word-wrap:break-word;
  4052. text-transform:none;
  4053. visibility:hidden;
  4054. }
  4055. #u144772_div {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:375px;
  4061. height:50px;
  4062. background:inherit;
  4063. background-color:rgba(255, 255, 255, 1);
  4064. box-sizing:border-box;
  4065. border-width:1px;
  4066. border-style:solid;
  4067. border-color:rgba(242, 242, 242, 1);
  4068. border-radius:26px;
  4069. border-top-left-radius:0px;
  4070. border-top-right-radius:0px;
  4071. -moz-box-shadow:none;
  4072. -webkit-box-shadow:none;
  4073. box-shadow:none;
  4074. }
  4075. #u144772 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:1405px;
  4079. top:788px;
  4080. width:375px;
  4081. height:50px;
  4082. display:flex;
  4083. }
  4084. #u144772 .text {
  4085. position:absolute;
  4086. align-self:center;
  4087. padding:2px 2px 2px 2px;
  4088. box-sizing:border-box;
  4089. width:100%;
  4090. }
  4091. #u144772_text {
  4092. border-width:0px;
  4093. word-wrap:break-word;
  4094. text-transform:none;
  4095. visibility:hidden;
  4096. }
  4097. #u144773 {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:0px;
  4103. height:0px;
  4104. }
  4105. #u144774_img {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:0px;
  4109. top:0px;
  4110. width:24px;
  4111. height:24px;
  4112. }
  4113. #u144774 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:1445px;
  4117. top:792px;
  4118. width:24px;
  4119. height:24px;
  4120. display:flex;
  4121. font-size:8px;
  4122. }
  4123. #u144774 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 2px 2px 2px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u144774_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. }
  4135. #u144775_div {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:25px;
  4141. height:17px;
  4142. background:inherit;
  4143. background-color:rgba(255, 255, 255, 0);
  4144. border:none;
  4145. border-radius:0px;
  4146. -moz-box-shadow:none;
  4147. -webkit-box-shadow:none;
  4148. box-shadow:none;
  4149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. }
  4154. #u144775 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:1445px;
  4158. top:817px;
  4159. width:25px;
  4160. height:17px;
  4161. display:flex;
  4162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:12px;
  4166. }
  4167. #u144775 .text {
  4168. position:absolute;
  4169. align-self:flex-start;
  4170. padding:0px 0px 0px 0px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u144775_text {
  4175. border-width:0px;
  4176. white-space:nowrap;
  4177. text-transform:none;
  4178. }
  4179. #u144776 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:0px;
  4185. height:0px;
  4186. }
  4187. #u144777_img {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:0px;
  4191. top:0px;
  4192. width:24px;
  4193. height:24px;
  4194. }
  4195. #u144777 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:1715px;
  4199. top:794px;
  4200. width:24px;
  4201. height:24px;
  4202. display:flex;
  4203. font-size:8px;
  4204. }
  4205. #u144777 .text {
  4206. position:absolute;
  4207. align-self:center;
  4208. padding:2px 2px 2px 2px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u144777_text {
  4213. border-width:0px;
  4214. word-wrap:break-word;
  4215. text-transform:none;
  4216. }
  4217. #u144778_div {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:25px;
  4223. height:17px;
  4224. background:inherit;
  4225. background-color:rgba(255, 255, 255, 0);
  4226. border:none;
  4227. border-radius:0px;
  4228. -moz-box-shadow:none;
  4229. -webkit-box-shadow:none;
  4230. box-shadow:none;
  4231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4232. font-weight:400;
  4233. font-style:normal;
  4234. font-size:12px;
  4235. }
  4236. #u144778 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:1715px;
  4240. top:819px;
  4241. width:25px;
  4242. height:17px;
  4243. display:flex;
  4244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4245. font-weight:400;
  4246. font-style:normal;
  4247. font-size:12px;
  4248. }
  4249. #u144778 .text {
  4250. position:absolute;
  4251. align-self:flex-start;
  4252. padding:0px 0px 0px 0px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u144778_text {
  4257. border-width:0px;
  4258. white-space:nowrap;
  4259. text-transform:none;
  4260. }
  4261. #u144779_div {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:0px;
  4266. width:375px;
  4267. height:681px;
  4268. background:inherit;
  4269. background-color:rgba(242, 242, 242, 0.462745098039216);
  4270. border:none;
  4271. border-radius:0px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. }
  4276. #u144779 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:1405px;
  4280. top:107px;
  4281. width:375px;
  4282. height:681px;
  4283. display:flex;
  4284. }
  4285. #u144779 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 2px 2px 2px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u144779_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u144780 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:0px;
  4304. height:0px;
  4305. }
  4306. #u144781_img {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:0px;
  4310. top:0px;
  4311. width:24px;
  4312. height:24px;
  4313. }
  4314. #u144781 {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:1627px;
  4318. top:792px;
  4319. width:24px;
  4320. height:24px;
  4321. display:flex;
  4322. font-size:8px;
  4323. }
  4324. #u144781 .text {
  4325. position:absolute;
  4326. align-self:center;
  4327. padding:2px 2px 2px 2px;
  4328. box-sizing:border-box;
  4329. width:100%;
  4330. }
  4331. #u144781_text {
  4332. border-width:0px;
  4333. word-wrap:break-word;
  4334. text-transform:none;
  4335. }
  4336. #u144782_div {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:0px;
  4340. top:0px;
  4341. width:37px;
  4342. height:17px;
  4343. background:inherit;
  4344. background-color:rgba(255, 255, 255, 0);
  4345. border:none;
  4346. border-radius:0px;
  4347. -moz-box-shadow:none;
  4348. -webkit-box-shadow:none;
  4349. box-shadow:none;
  4350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. font-size:12px;
  4354. }
  4355. #u144782 {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:1621px;
  4359. top:817px;
  4360. width:37px;
  4361. height:17px;
  4362. display:flex;
  4363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4364. font-weight:400;
  4365. font-style:normal;
  4366. font-size:12px;
  4367. }
  4368. #u144782 .text {
  4369. position:absolute;
  4370. align-self:flex-start;
  4371. padding:0px 0px 0px 0px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u144782_text {
  4376. border-width:0px;
  4377. white-space:nowrap;
  4378. text-transform:none;
  4379. }
  4380. #u144783 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:0px;
  4386. height:0px;
  4387. }
  4388. #u144784_img {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:0px;
  4392. top:0px;
  4393. width:24px;
  4394. height:24px;
  4395. }
  4396. #u144784 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:1533px;
  4400. top:792px;
  4401. width:24px;
  4402. height:24px;
  4403. display:flex;
  4404. font-size:8px;
  4405. }
  4406. #u144784 .text {
  4407. position:absolute;
  4408. align-self:center;
  4409. padding:2px 2px 2px 2px;
  4410. box-sizing:border-box;
  4411. width:100%;
  4412. }
  4413. #u144784_text {
  4414. border-width:0px;
  4415. word-wrap:break-word;
  4416. text-transform:none;
  4417. }
  4418. #u144785_div {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:37px;
  4424. height:17px;
  4425. background:inherit;
  4426. background-color:rgba(255, 255, 255, 0);
  4427. border:none;
  4428. border-radius:0px;
  4429. -moz-box-shadow:none;
  4430. -webkit-box-shadow:none;
  4431. box-shadow:none;
  4432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:12px;
  4436. }
  4437. #u144785 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:1527px;
  4441. top:817px;
  4442. width:37px;
  4443. height:17px;
  4444. display:flex;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:12px;
  4449. }
  4450. #u144785 .text {
  4451. position:absolute;
  4452. align-self:flex-start;
  4453. padding:0px 0px 0px 0px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u144785_text {
  4458. border-width:0px;
  4459. white-space:nowrap;
  4460. text-transform:none;
  4461. }
  4462. #u144786_div {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:375px;
  4468. height:740px;
  4469. background:inherit;
  4470. background-color:rgba(242, 242, 242, 1);
  4471. border:none;
  4472. border-top:0px;
  4473. border-radius:25px;
  4474. border-top-left-radius:0px;
  4475. border-top-right-radius:0px;
  4476. -moz-box-shadow:none;
  4477. -webkit-box-shadow:none;
  4478. box-shadow:none;
  4479. }
  4480. #u144786 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:1405px;
  4484. top:105px;
  4485. width:375px;
  4486. height:740px;
  4487. display:flex;
  4488. }
  4489. #u144786 .text {
  4490. position:absolute;
  4491. align-self:center;
  4492. padding:2px 2px 2px 2px;
  4493. box-sizing:border-box;
  4494. width:100%;
  4495. }
  4496. #u144786_text {
  4497. border-width:0px;
  4498. word-wrap:break-word;
  4499. text-transform:none;
  4500. visibility:hidden;
  4501. }
  4502. #u144787 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:0px;
  4508. height:0px;
  4509. }
  4510. #u144788_img {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:0px;
  4514. top:0px;
  4515. width:11px;
  4516. height:18px;
  4517. }
  4518. #u144788 {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:1416px;
  4522. top:79px;
  4523. width:11px;
  4524. height:18px;
  4525. display:flex;
  4526. }
  4527. #u144788 .text {
  4528. position:absolute;
  4529. align-self:center;
  4530. padding:2px 2px 2px 2px;
  4531. box-sizing:border-box;
  4532. width:100%;
  4533. }
  4534. #u144788_text {
  4535. border-width:0px;
  4536. word-wrap:break-word;
  4537. text-transform:none;
  4538. visibility:hidden;
  4539. }
  4540. #u144789 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:0px;
  4544. top:0px;
  4545. width:0px;
  4546. height:0px;
  4547. }
  4548. #u144790_div {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:88px;
  4554. height:32px;
  4555. background:inherit;
  4556. background-color:rgba(255, 255, 255, 1);
  4557. box-sizing:border-box;
  4558. border-width:1px;
  4559. border-style:solid;
  4560. border-color:rgba(242, 242, 242, 1);
  4561. border-radius:33px;
  4562. -moz-box-shadow:none;
  4563. -webkit-box-shadow:none;
  4564. box-shadow:none;
  4565. }
  4566. #u144790 {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:1685px;
  4570. top:71px;
  4571. width:88px;
  4572. height:32px;
  4573. display:flex;
  4574. }
  4575. #u144790 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 2px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u144790_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u144791 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:0px;
  4594. height:0px;
  4595. }
  4596. #u144792_img {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:0px;
  4600. top:0px;
  4601. width:18px;
  4602. height:18px;
  4603. }
  4604. #u144792 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:1748px;
  4608. top:78px;
  4609. width:18px;
  4610. height:18px;
  4611. display:flex;
  4612. }
  4613. #u144792 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 2px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u144792_text {
  4621. border-width:0px;
  4622. word-wrap:break-word;
  4623. text-transform:none;
  4624. visibility:hidden;
  4625. }
  4626. #u144793_img {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:6px;
  4632. height:6px;
  4633. }
  4634. #u144793 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:1754px;
  4638. top:84px;
  4639. width:6px;
  4640. height:6px;
  4641. display:flex;
  4642. }
  4643. #u144793 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:2px 2px 2px 2px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u144793_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. visibility:hidden;
  4655. }
  4656. #u144794 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:0px;
  4662. height:0px;
  4663. }
  4664. #u144795_img {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:0px;
  4668. top:0px;
  4669. width:5px;
  4670. height:5px;
  4671. }
  4672. #u144795 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:1699px;
  4676. top:85px;
  4677. width:5px;
  4678. height:5px;
  4679. display:flex;
  4680. }
  4681. #u144795 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:2px 2px 2px 2px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u144795_text {
  4689. border-width:0px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. visibility:hidden;
  4693. }
  4694. #u144796_img {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:5px;
  4700. height:5px;
  4701. }
  4702. #u144796 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:1715px;
  4706. top:85px;
  4707. width:5px;
  4708. height:5px;
  4709. display:flex;
  4710. }
  4711. #u144796 .text {
  4712. position:absolute;
  4713. align-self:center;
  4714. padding:2px 2px 2px 2px;
  4715. box-sizing:border-box;
  4716. width:100%;
  4717. }
  4718. #u144796_text {
  4719. border-width:0px;
  4720. word-wrap:break-word;
  4721. text-transform:none;
  4722. visibility:hidden;
  4723. }
  4724. #u144797_img {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:0px;
  4728. top:0px;
  4729. width:7px;
  4730. height:7px;
  4731. }
  4732. #u144797 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:1706px;
  4736. top:84px;
  4737. width:7px;
  4738. height:7px;
  4739. display:flex;
  4740. }
  4741. #u144797 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:2px 2px 2px 2px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u144797_text {
  4749. border-width:0px;
  4750. word-wrap:break-word;
  4751. text-transform:none;
  4752. visibility:hidden;
  4753. }
  4754. #u144798_img {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:19px;
  4760. height:2px;
  4761. }
  4762. #u144798 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:1723px;
  4766. top:87px;
  4767. width:18px;
  4768. height:1px;
  4769. display:flex;
  4770. -webkit-transform:rotate(90deg);
  4771. -moz-transform:rotate(90deg);
  4772. -ms-transform:rotate(90deg);
  4773. transform:rotate(90deg);
  4774. }
  4775. #u144798 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 2px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u144798_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. visibility:hidden;
  4787. }
  4788. #u144799_div {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:12px;
  4794. height:12px;
  4795. background:inherit;
  4796. background-color:rgba(255, 255, 255, 0);
  4797. box-sizing:border-box;
  4798. border-width:2px;
  4799. border-style:solid;
  4800. border-color:rgba(51, 51, 51, 1);
  4801. border-right:0px;
  4802. border-bottom:0px;
  4803. border-radius:0px;
  4804. border-top-right-radius:0px;
  4805. border-bottom-left-radius:0px;
  4806. -moz-box-shadow:none;
  4807. -webkit-box-shadow:none;
  4808. box-shadow:none;
  4809. }
  4810. #u144799 {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:1420px;
  4814. top:81px;
  4815. width:12px;
  4816. height:12px;
  4817. display:flex;
  4818. -webkit-transform:rotate(315deg);
  4819. -moz-transform:rotate(315deg);
  4820. -ms-transform:rotate(315deg);
  4821. transform:rotate(315deg);
  4822. }
  4823. #u144799 .text {
  4824. position:absolute;
  4825. align-self:center;
  4826. padding:2px 2px 2px 2px;
  4827. box-sizing:border-box;
  4828. width:100%;
  4829. }
  4830. #u144799_text {
  4831. border-width:0px;
  4832. word-wrap:break-word;
  4833. text-transform:none;
  4834. visibility:hidden;
  4835. }
  4836. #u144800_div {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:65px;
  4842. height:22px;
  4843. background:inherit;
  4844. background-color:rgba(255, 255, 255, 0);
  4845. border:none;
  4846. border-radius:0px;
  4847. -moz-box-shadow:none;
  4848. -webkit-box-shadow:none;
  4849. box-shadow:none;
  4850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. font-size:16px;
  4854. color:#000000;
  4855. }
  4856. #u144800 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:1557px;
  4860. top:76px;
  4861. width:65px;
  4862. height:22px;
  4863. display:flex;
  4864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:16px;
  4868. color:#000000;
  4869. }
  4870. #u144800 .text {
  4871. position:absolute;
  4872. align-self:flex-start;
  4873. padding:0px 0px 0px 0px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u144800_text {
  4878. border-width:0px;
  4879. white-space:nowrap;
  4880. text-transform:none;
  4881. }
  4882. #u144802_img {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:0px;
  4886. top:0px;
  4887. width:433px;
  4888. height:865px;
  4889. }
  4890. #u144802 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:1841px;
  4894. top:0px;
  4895. width:433px;
  4896. height:865px;
  4897. display:flex;
  4898. }
  4899. #u144802 .text {
  4900. position:absolute;
  4901. align-self:center;
  4902. padding:2px 2px 2px 2px;
  4903. box-sizing:border-box;
  4904. width:100%;
  4905. }
  4906. #u144802_text {
  4907. border-width:0px;
  4908. word-wrap:break-word;
  4909. text-transform:none;
  4910. visibility:hidden;
  4911. }
  4912. #u144803_div {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:0px;
  4916. top:0px;
  4917. width:375px;
  4918. height:40px;
  4919. background:inherit;
  4920. background-color:rgba(255, 255, 255, 1);
  4921. box-sizing:border-box;
  4922. border-width:1px;
  4923. border-style:solid;
  4924. border-color:rgba(215, 215, 215, 1);
  4925. border-left:0px;
  4926. border-top:0px;
  4927. border-right:0px;
  4928. border-radius:0px;
  4929. border-bottom-right-radius:0px;
  4930. border-bottom-left-radius:0px;
  4931. -moz-box-shadow:none;
  4932. -webkit-box-shadow:none;
  4933. box-shadow:none;
  4934. }
  4935. #u144803 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:1870px;
  4939. top:67px;
  4940. width:375px;
  4941. height:40px;
  4942. display:flex;
  4943. }
  4944. #u144803 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:2px 2px 2px 2px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u144803_text {
  4952. border-width:0px;
  4953. word-wrap:break-word;
  4954. text-transform:none;
  4955. visibility:hidden;
  4956. }
  4957. #u144804 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:0px;
  4963. height:0px;
  4964. }
  4965. #u144805_div {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:0px;
  4969. top:0px;
  4970. width:88px;
  4971. height:32px;
  4972. background:inherit;
  4973. background-color:rgba(255, 255, 255, 1);
  4974. box-sizing:border-box;
  4975. border-width:1px;
  4976. border-style:solid;
  4977. border-color:rgba(242, 242, 242, 1);
  4978. border-radius:33px;
  4979. -moz-box-shadow:none;
  4980. -webkit-box-shadow:none;
  4981. box-shadow:none;
  4982. }
  4983. #u144805 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:2150px;
  4987. top:71px;
  4988. width:88px;
  4989. height:32px;
  4990. display:flex;
  4991. }
  4992. #u144805 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 2px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u144805_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. visibility:hidden;
  5004. }
  5005. #u144806 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:0px;
  5011. height:0px;
  5012. }
  5013. #u144807_img {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:18px;
  5019. height:18px;
  5020. }
  5021. #u144807 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:2213px;
  5025. top:78px;
  5026. width:18px;
  5027. height:18px;
  5028. display:flex;
  5029. }
  5030. #u144807 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:2px 2px 2px 2px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u144807_text {
  5038. border-width:0px;
  5039. word-wrap:break-word;
  5040. text-transform:none;
  5041. visibility:hidden;
  5042. }
  5043. #u144808_img {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:6px;
  5049. height:6px;
  5050. }
  5051. #u144808 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:2219px;
  5055. top:84px;
  5056. width:6px;
  5057. height:6px;
  5058. display:flex;
  5059. }
  5060. #u144808 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:2px 2px 2px 2px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u144808_text {
  5068. border-width:0px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. visibility:hidden;
  5072. }
  5073. #u144809 {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:0px;
  5079. height:0px;
  5080. }
  5081. #u144810_img {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:5px;
  5087. height:5px;
  5088. }
  5089. #u144810 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:2164px;
  5093. top:85px;
  5094. width:5px;
  5095. height:5px;
  5096. display:flex;
  5097. }
  5098. #u144810 .text {
  5099. position:absolute;
  5100. align-self:center;
  5101. padding:2px 2px 2px 2px;
  5102. box-sizing:border-box;
  5103. width:100%;
  5104. }
  5105. #u144810_text {
  5106. border-width:0px;
  5107. word-wrap:break-word;
  5108. text-transform:none;
  5109. visibility:hidden;
  5110. }
  5111. #u144811_img {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:5px;
  5117. height:5px;
  5118. }
  5119. #u144811 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:2180px;
  5123. top:85px;
  5124. width:5px;
  5125. height:5px;
  5126. display:flex;
  5127. }
  5128. #u144811 .text {
  5129. position:absolute;
  5130. align-self:center;
  5131. padding:2px 2px 2px 2px;
  5132. box-sizing:border-box;
  5133. width:100%;
  5134. }
  5135. #u144811_text {
  5136. border-width:0px;
  5137. word-wrap:break-word;
  5138. text-transform:none;
  5139. visibility:hidden;
  5140. }
  5141. #u144812_img {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:7px;
  5147. height:7px;
  5148. }
  5149. #u144812 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:2171px;
  5153. top:84px;
  5154. width:7px;
  5155. height:7px;
  5156. display:flex;
  5157. }
  5158. #u144812 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 2px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u144812_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. visibility:hidden;
  5170. }
  5171. #u144813_img {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:19px;
  5177. height:2px;
  5178. }
  5179. #u144813 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:2188px;
  5183. top:87px;
  5184. width:18px;
  5185. height:1px;
  5186. display:flex;
  5187. -webkit-transform:rotate(90deg);
  5188. -moz-transform:rotate(90deg);
  5189. -ms-transform:rotate(90deg);
  5190. transform:rotate(90deg);
  5191. }
  5192. #u144813 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:2px 2px 2px 2px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u144813_text {
  5200. border-width:0px;
  5201. word-wrap:break-word;
  5202. text-transform:none;
  5203. visibility:hidden;
  5204. }
  5205. #u144814_img {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:375px;
  5211. height:44px;
  5212. }
  5213. #u144814 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:1870px;
  5217. top:24px;
  5218. width:375px;
  5219. height:44px;
  5220. display:flex;
  5221. }
  5222. #u144814 .text {
  5223. position:absolute;
  5224. align-self:center;
  5225. padding:2px 2px 2px 2px;
  5226. box-sizing:border-box;
  5227. width:100%;
  5228. }
  5229. #u144814_text {
  5230. border-width:0px;
  5231. word-wrap:break-word;
  5232. text-transform:none;
  5233. visibility:hidden;
  5234. }
  5235. #u144815_div {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:375px;
  5241. height:50px;
  5242. background:inherit;
  5243. background-color:rgba(255, 255, 255, 1);
  5244. box-sizing:border-box;
  5245. border-width:1px;
  5246. border-style:solid;
  5247. border-color:rgba(242, 242, 242, 1);
  5248. border-radius:26px;
  5249. border-top-left-radius:0px;
  5250. border-top-right-radius:0px;
  5251. -moz-box-shadow:none;
  5252. -webkit-box-shadow:none;
  5253. box-shadow:none;
  5254. }
  5255. #u144815 {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:1870px;
  5259. top:788px;
  5260. width:375px;
  5261. height:50px;
  5262. display:flex;
  5263. }
  5264. #u144815 .text {
  5265. position:absolute;
  5266. align-self:center;
  5267. padding:2px 2px 2px 2px;
  5268. box-sizing:border-box;
  5269. width:100%;
  5270. }
  5271. #u144815_text {
  5272. border-width:0px;
  5273. word-wrap:break-word;
  5274. text-transform:none;
  5275. visibility:hidden;
  5276. }
  5277. #u144816 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:0px;
  5283. height:0px;
  5284. }
  5285. #u144817_img {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:24px;
  5291. height:24px;
  5292. }
  5293. #u144817 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:1910px;
  5297. top:792px;
  5298. width:24px;
  5299. height:24px;
  5300. display:flex;
  5301. font-size:8px;
  5302. }
  5303. #u144817 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u144817_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. }
  5315. #u144818_div {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:25px;
  5321. height:17px;
  5322. background:inherit;
  5323. background-color:rgba(255, 255, 255, 0);
  5324. border:none;
  5325. border-radius:0px;
  5326. -moz-box-shadow:none;
  5327. -webkit-box-shadow:none;
  5328. box-shadow:none;
  5329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:12px;
  5333. }
  5334. #u144818 {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:1910px;
  5338. top:817px;
  5339. width:25px;
  5340. height:17px;
  5341. display:flex;
  5342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5343. font-weight:400;
  5344. font-style:normal;
  5345. font-size:12px;
  5346. }
  5347. #u144818 .text {
  5348. position:absolute;
  5349. align-self:flex-start;
  5350. padding:0px 0px 0px 0px;
  5351. box-sizing:border-box;
  5352. width:100%;
  5353. }
  5354. #u144818_text {
  5355. border-width:0px;
  5356. white-space:nowrap;
  5357. text-transform:none;
  5358. }
  5359. #u144819 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:0px;
  5363. top:0px;
  5364. width:0px;
  5365. height:0px;
  5366. }
  5367. #u144820_img {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:24px;
  5373. height:24px;
  5374. }
  5375. #u144820 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:2180px;
  5379. top:794px;
  5380. width:24px;
  5381. height:24px;
  5382. display:flex;
  5383. font-size:8px;
  5384. }
  5385. #u144820 .text {
  5386. position:absolute;
  5387. align-self:center;
  5388. padding:2px 2px 2px 2px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u144820_text {
  5393. border-width:0px;
  5394. word-wrap:break-word;
  5395. text-transform:none;
  5396. }
  5397. #u144821_div {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:25px;
  5403. height:17px;
  5404. background:inherit;
  5405. background-color:rgba(255, 255, 255, 0);
  5406. border:none;
  5407. border-radius:0px;
  5408. -moz-box-shadow:none;
  5409. -webkit-box-shadow:none;
  5410. box-shadow:none;
  5411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:12px;
  5415. }
  5416. #u144821 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:2180px;
  5420. top:819px;
  5421. width:25px;
  5422. height:17px;
  5423. display:flex;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:12px;
  5428. }
  5429. #u144821 .text {
  5430. position:absolute;
  5431. align-self:flex-start;
  5432. padding:0px 0px 0px 0px;
  5433. box-sizing:border-box;
  5434. width:100%;
  5435. }
  5436. #u144821_text {
  5437. border-width:0px;
  5438. white-space:nowrap;
  5439. text-transform:none;
  5440. }
  5441. #u144822_div {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:375px;
  5447. height:681px;
  5448. background:inherit;
  5449. background-color:rgba(242, 242, 242, 0.462745098039216);
  5450. border:none;
  5451. border-radius:0px;
  5452. -moz-box-shadow:none;
  5453. -webkit-box-shadow:none;
  5454. box-shadow:none;
  5455. }
  5456. #u144822 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:1870px;
  5460. top:107px;
  5461. width:375px;
  5462. height:681px;
  5463. display:flex;
  5464. }
  5465. #u144822 .text {
  5466. position:absolute;
  5467. align-self:center;
  5468. padding:2px 2px 2px 2px;
  5469. box-sizing:border-box;
  5470. width:100%;
  5471. }
  5472. #u144822_text {
  5473. border-width:0px;
  5474. word-wrap:break-word;
  5475. text-transform:none;
  5476. visibility:hidden;
  5477. }
  5478. #u144823 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:0px;
  5484. height:0px;
  5485. }
  5486. #u144824_img {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:24px;
  5492. height:24px;
  5493. }
  5494. #u144824 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:2092px;
  5498. top:792px;
  5499. width:24px;
  5500. height:24px;
  5501. display:flex;
  5502. font-size:8px;
  5503. }
  5504. #u144824 .text {
  5505. position:absolute;
  5506. align-self:center;
  5507. padding:2px 2px 2px 2px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u144824_text {
  5512. border-width:0px;
  5513. word-wrap:break-word;
  5514. text-transform:none;
  5515. }
  5516. #u144825_div {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:37px;
  5522. height:17px;
  5523. background:inherit;
  5524. background-color:rgba(255, 255, 255, 0);
  5525. border:none;
  5526. border-radius:0px;
  5527. -moz-box-shadow:none;
  5528. -webkit-box-shadow:none;
  5529. box-shadow:none;
  5530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. font-size:12px;
  5534. }
  5535. #u144825 {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:2086px;
  5539. top:817px;
  5540. width:37px;
  5541. height:17px;
  5542. display:flex;
  5543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:12px;
  5547. }
  5548. #u144825 .text {
  5549. position:absolute;
  5550. align-self:flex-start;
  5551. padding:0px 0px 0px 0px;
  5552. box-sizing:border-box;
  5553. width:100%;
  5554. }
  5555. #u144825_text {
  5556. border-width:0px;
  5557. white-space:nowrap;
  5558. text-transform:none;
  5559. }
  5560. #u144826 {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:0px;
  5564. top:0px;
  5565. width:0px;
  5566. height:0px;
  5567. }
  5568. #u144827_img {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:24px;
  5574. height:24px;
  5575. }
  5576. #u144827 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:1998px;
  5580. top:792px;
  5581. width:24px;
  5582. height:24px;
  5583. display:flex;
  5584. font-size:8px;
  5585. }
  5586. #u144827 .text {
  5587. position:absolute;
  5588. align-self:center;
  5589. padding:2px 2px 2px 2px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u144827_text {
  5594. border-width:0px;
  5595. word-wrap:break-word;
  5596. text-transform:none;
  5597. }
  5598. #u144828_div {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:37px;
  5604. height:17px;
  5605. background:inherit;
  5606. background-color:rgba(255, 255, 255, 0);
  5607. border:none;
  5608. border-radius:0px;
  5609. -moz-box-shadow:none;
  5610. -webkit-box-shadow:none;
  5611. box-shadow:none;
  5612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5613. font-weight:400;
  5614. font-style:normal;
  5615. font-size:12px;
  5616. }
  5617. #u144828 {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:1992px;
  5621. top:817px;
  5622. width:37px;
  5623. height:17px;
  5624. display:flex;
  5625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5626. font-weight:400;
  5627. font-style:normal;
  5628. font-size:12px;
  5629. }
  5630. #u144828 .text {
  5631. position:absolute;
  5632. align-self:flex-start;
  5633. padding:0px 0px 0px 0px;
  5634. box-sizing:border-box;
  5635. width:100%;
  5636. }
  5637. #u144828_text {
  5638. border-width:0px;
  5639. white-space:nowrap;
  5640. text-transform:none;
  5641. }
  5642. #u144829_div {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:375px;
  5648. height:740px;
  5649. background:inherit;
  5650. background-color:rgba(242, 242, 242, 1);
  5651. border:none;
  5652. border-top:0px;
  5653. border-radius:25px;
  5654. border-top-left-radius:0px;
  5655. border-top-right-radius:0px;
  5656. -moz-box-shadow:none;
  5657. -webkit-box-shadow:none;
  5658. box-shadow:none;
  5659. }
  5660. #u144829 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:1870px;
  5664. top:105px;
  5665. width:375px;
  5666. height:740px;
  5667. display:flex;
  5668. }
  5669. #u144829 .text {
  5670. position:absolute;
  5671. align-self:center;
  5672. padding:2px 2px 2px 2px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u144829_text {
  5677. border-width:0px;
  5678. word-wrap:break-word;
  5679. text-transform:none;
  5680. visibility:hidden;
  5681. }
  5682. #u144830 {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:0px;
  5686. top:0px;
  5687. width:0px;
  5688. height:0px;
  5689. }
  5690. #u144831_img {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:11px;
  5696. height:18px;
  5697. }
  5698. #u144831 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:1881px;
  5702. top:79px;
  5703. width:11px;
  5704. height:18px;
  5705. display:flex;
  5706. }
  5707. #u144831 .text {
  5708. position:absolute;
  5709. align-self:center;
  5710. padding:2px 2px 2px 2px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u144831_text {
  5715. border-width:0px;
  5716. word-wrap:break-word;
  5717. text-transform:none;
  5718. visibility:hidden;
  5719. }
  5720. #u144832 {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:0px;
  5724. top:0px;
  5725. width:0px;
  5726. height:0px;
  5727. }
  5728. #u144833_div {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:88px;
  5734. height:32px;
  5735. background:inherit;
  5736. background-color:rgba(255, 255, 255, 1);
  5737. box-sizing:border-box;
  5738. border-width:1px;
  5739. border-style:solid;
  5740. border-color:rgba(242, 242, 242, 1);
  5741. border-radius:33px;
  5742. -moz-box-shadow:none;
  5743. -webkit-box-shadow:none;
  5744. box-shadow:none;
  5745. }
  5746. #u144833 {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:2150px;
  5750. top:71px;
  5751. width:88px;
  5752. height:32px;
  5753. display:flex;
  5754. }
  5755. #u144833 .text {
  5756. position:absolute;
  5757. align-self:center;
  5758. padding:2px 2px 2px 2px;
  5759. box-sizing:border-box;
  5760. width:100%;
  5761. }
  5762. #u144833_text {
  5763. border-width:0px;
  5764. word-wrap:break-word;
  5765. text-transform:none;
  5766. visibility:hidden;
  5767. }
  5768. #u144834 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:0px;
  5774. height:0px;
  5775. }
  5776. #u144835_img {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:18px;
  5782. height:18px;
  5783. }
  5784. #u144835 {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:2213px;
  5788. top:78px;
  5789. width:18px;
  5790. height:18px;
  5791. display:flex;
  5792. }
  5793. #u144835 .text {
  5794. position:absolute;
  5795. align-self:center;
  5796. padding:2px 2px 2px 2px;
  5797. box-sizing:border-box;
  5798. width:100%;
  5799. }
  5800. #u144835_text {
  5801. border-width:0px;
  5802. word-wrap:break-word;
  5803. text-transform:none;
  5804. visibility:hidden;
  5805. }
  5806. #u144836_img {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:0px;
  5810. top:0px;
  5811. width:6px;
  5812. height:6px;
  5813. }
  5814. #u144836 {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:2219px;
  5818. top:84px;
  5819. width:6px;
  5820. height:6px;
  5821. display:flex;
  5822. }
  5823. #u144836 .text {
  5824. position:absolute;
  5825. align-self:center;
  5826. padding:2px 2px 2px 2px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u144836_text {
  5831. border-width:0px;
  5832. word-wrap:break-word;
  5833. text-transform:none;
  5834. visibility:hidden;
  5835. }
  5836. #u144837 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:0px;
  5842. height:0px;
  5843. }
  5844. #u144838_img {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:5px;
  5850. height:5px;
  5851. }
  5852. #u144838 {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:2164px;
  5856. top:85px;
  5857. width:5px;
  5858. height:5px;
  5859. display:flex;
  5860. }
  5861. #u144838 .text {
  5862. position:absolute;
  5863. align-self:center;
  5864. padding:2px 2px 2px 2px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u144838_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. visibility:hidden;
  5873. }
  5874. #u144839_img {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:5px;
  5880. height:5px;
  5881. }
  5882. #u144839 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:2180px;
  5886. top:85px;
  5887. width:5px;
  5888. height:5px;
  5889. display:flex;
  5890. }
  5891. #u144839 .text {
  5892. position:absolute;
  5893. align-self:center;
  5894. padding:2px 2px 2px 2px;
  5895. box-sizing:border-box;
  5896. width:100%;
  5897. }
  5898. #u144839_text {
  5899. border-width:0px;
  5900. word-wrap:break-word;
  5901. text-transform:none;
  5902. visibility:hidden;
  5903. }
  5904. #u144840_img {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:7px;
  5910. height:7px;
  5911. }
  5912. #u144840 {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:2171px;
  5916. top:84px;
  5917. width:7px;
  5918. height:7px;
  5919. display:flex;
  5920. }
  5921. #u144840 .text {
  5922. position:absolute;
  5923. align-self:center;
  5924. padding:2px 2px 2px 2px;
  5925. box-sizing:border-box;
  5926. width:100%;
  5927. }
  5928. #u144840_text {
  5929. border-width:0px;
  5930. word-wrap:break-word;
  5931. text-transform:none;
  5932. visibility:hidden;
  5933. }
  5934. #u144841_img {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:19px;
  5940. height:2px;
  5941. }
  5942. #u144841 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:2188px;
  5946. top:87px;
  5947. width:18px;
  5948. height:1px;
  5949. display:flex;
  5950. -webkit-transform:rotate(90deg);
  5951. -moz-transform:rotate(90deg);
  5952. -ms-transform:rotate(90deg);
  5953. transform:rotate(90deg);
  5954. }
  5955. #u144841 .text {
  5956. position:absolute;
  5957. align-self:center;
  5958. padding:2px 2px 2px 2px;
  5959. box-sizing:border-box;
  5960. width:100%;
  5961. }
  5962. #u144841_text {
  5963. border-width:0px;
  5964. word-wrap:break-word;
  5965. text-transform:none;
  5966. visibility:hidden;
  5967. }
  5968. #u144842_div {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:0px;
  5972. top:0px;
  5973. width:12px;
  5974. height:12px;
  5975. background:inherit;
  5976. background-color:rgba(255, 255, 255, 0);
  5977. box-sizing:border-box;
  5978. border-width:2px;
  5979. border-style:solid;
  5980. border-color:rgba(51, 51, 51, 1);
  5981. border-right:0px;
  5982. border-bottom:0px;
  5983. border-radius:0px;
  5984. border-top-right-radius:0px;
  5985. border-bottom-left-radius:0px;
  5986. -moz-box-shadow:none;
  5987. -webkit-box-shadow:none;
  5988. box-shadow:none;
  5989. }
  5990. #u144842 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:1885px;
  5994. top:82px;
  5995. width:12px;
  5996. height:12px;
  5997. display:flex;
  5998. -webkit-transform:rotate(315deg);
  5999. -moz-transform:rotate(315deg);
  6000. -ms-transform:rotate(315deg);
  6001. transform:rotate(315deg);
  6002. }
  6003. #u144842 .text {
  6004. position:absolute;
  6005. align-self:center;
  6006. padding:2px 2px 2px 2px;
  6007. box-sizing:border-box;
  6008. width:100%;
  6009. }
  6010. #u144842_text {
  6011. border-width:0px;
  6012. word-wrap:break-word;
  6013. text-transform:none;
  6014. visibility:hidden;
  6015. }
  6016. #u144843_div {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:65px;
  6022. height:22px;
  6023. background:inherit;
  6024. background-color:rgba(255, 255, 255, 0);
  6025. border:none;
  6026. border-radius:0px;
  6027. -moz-box-shadow:none;
  6028. -webkit-box-shadow:none;
  6029. box-shadow:none;
  6030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. font-size:16px;
  6034. color:#000000;
  6035. }
  6036. #u144843 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:2022px;
  6040. top:77px;
  6041. width:65px;
  6042. height:22px;
  6043. display:flex;
  6044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6045. font-weight:400;
  6046. font-style:normal;
  6047. font-size:16px;
  6048. color:#000000;
  6049. }
  6050. #u144843 .text {
  6051. position:absolute;
  6052. align-self:flex-start;
  6053. padding:0px 0px 0px 0px;
  6054. box-sizing:border-box;
  6055. width:100%;
  6056. }
  6057. #u144843_text {
  6058. border-width:0px;
  6059. white-space:nowrap;
  6060. text-transform:none;
  6061. }
  6062. #u144844 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:0px;
  6068. height:0px;
  6069. }
  6070. #u144845_img {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:0px;
  6074. top:0px;
  6075. width:355px;
  6076. height:200px;
  6077. }
  6078. #u144845 {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:497px;
  6082. top:207px;
  6083. width:355px;
  6084. height:200px;
  6085. display:flex;
  6086. }
  6087. #u144845 .text {
  6088. position:absolute;
  6089. align-self:center;
  6090. padding:2px 2px 2px 2px;
  6091. box-sizing:border-box;
  6092. width:100%;
  6093. }
  6094. #u144845_text {
  6095. border-width:0px;
  6096. word-wrap:break-word;
  6097. text-transform:none;
  6098. visibility:hidden;
  6099. }
  6100. #u144846_div {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:124px;
  6106. height:30px;
  6107. background:inherit;
  6108. background-color:rgba(255, 255, 255, 0);
  6109. border:none;
  6110. border-left:0px;
  6111. border-top:0px;
  6112. border-right:0px;
  6113. border-radius:0px;
  6114. border-bottom-right-radius:0px;
  6115. border-bottom-left-radius:0px;
  6116. -moz-box-shadow:none;
  6117. -webkit-box-shadow:none;
  6118. box-shadow:none;
  6119. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6120. font-weight:500;
  6121. font-style:normal;
  6122. font-size:14px;
  6123. line-height:30px;
  6124. }
  6125. #u144846 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:513px;
  6129. top:213px;
  6130. width:124px;
  6131. height:30px;
  6132. display:flex;
  6133. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6134. font-weight:500;
  6135. font-style:normal;
  6136. font-size:14px;
  6137. line-height:30px;
  6138. }
  6139. #u144846 .text {
  6140. position:absolute;
  6141. align-self:flex-start;
  6142. padding:0px 0px 0px 0px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u144846_text {
  6147. border-width:0px;
  6148. white-space:nowrap;
  6149. text-transform:none;
  6150. }
  6151. #u144847_div {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:325px;
  6157. height:125px;
  6158. background:inherit;
  6159. background-color:rgba(255, 255, 255, 0);
  6160. border:none;
  6161. border-left:0px;
  6162. border-top:0px;
  6163. border-right:0px;
  6164. border-radius:0px;
  6165. border-bottom-right-radius:0px;
  6166. border-bottom-left-radius:0px;
  6167. -moz-box-shadow:none;
  6168. -webkit-box-shadow:none;
  6169. box-shadow:none;
  6170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:12px;
  6174. line-height:25px;
  6175. }
  6176. #u144847 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:513px;
  6180. top:243px;
  6181. width:325px;
  6182. height:125px;
  6183. display:flex;
  6184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:12px;
  6188. line-height:25px;
  6189. }
  6190. #u144847 .text {
  6191. position:absolute;
  6192. align-self:flex-start;
  6193. padding:0px 0px 0px 0px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u144847_text {
  6198. border-width:0px;
  6199. word-wrap:break-word;
  6200. text-transform:none;
  6201. }
  6202. #u144848_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:9px;
  6208. height:9px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 0);
  6211. box-sizing:border-box;
  6212. border-width:1px;
  6213. border-style:solid;
  6214. border-color:rgba(127, 127, 127, 1);
  6215. border-right:0px;
  6216. border-bottom:0px;
  6217. border-radius:0px;
  6218. border-top-right-radius:0px;
  6219. border-bottom-left-radius:0px;
  6220. -moz-box-shadow:none;
  6221. -webkit-box-shadow:none;
  6222. box-shadow:none;
  6223. }
  6224. #u144848 {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:828px;
  6228. top:221px;
  6229. width:9px;
  6230. height:9px;
  6231. display:flex;
  6232. -webkit-transform:rotate(135deg);
  6233. -moz-transform:rotate(135deg);
  6234. -ms-transform:rotate(135deg);
  6235. transform:rotate(135deg);
  6236. }
  6237. #u144848 .text {
  6238. position:absolute;
  6239. align-self:center;
  6240. padding:2px 2px 2px 2px;
  6241. box-sizing:border-box;
  6242. width:100%;
  6243. }
  6244. #u144848_text {
  6245. border-width:0px;
  6246. word-wrap:break-word;
  6247. text-transform:none;
  6248. visibility:hidden;
  6249. }
  6250. #u144849_div {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:60px;
  6256. height:30px;
  6257. background:inherit;
  6258. background-color:rgba(255, 255, 255, 1);
  6259. box-sizing:border-box;
  6260. border-width:1px;
  6261. border-style:solid;
  6262. border-color:rgba(215, 215, 215, 1);
  6263. border-radius:63px;
  6264. -moz-box-shadow:none;
  6265. -webkit-box-shadow:none;
  6266. box-shadow:none;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. font-size:14px;
  6271. color:#555555;
  6272. }
  6273. #u144849 {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:778px;
  6277. top:367px;
  6278. width:60px;
  6279. height:30px;
  6280. display:flex;
  6281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6282. font-weight:400;
  6283. font-style:normal;
  6284. font-size:14px;
  6285. color:#555555;
  6286. }
  6287. #u144849 .text {
  6288. position:absolute;
  6289. align-self:center;
  6290. padding:2px 2px 2px 2px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u144849_text {
  6295. border-width:0px;
  6296. word-wrap:break-word;
  6297. text-transform:none;
  6298. }
  6299. #u144850 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:0px;
  6305. height:0px;
  6306. }
  6307. #u144851_img {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:0px;
  6311. top:0px;
  6312. width:355px;
  6313. height:200px;
  6314. }
  6315. #u144851 {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:958px;
  6319. top:207px;
  6320. width:355px;
  6321. height:200px;
  6322. display:flex;
  6323. }
  6324. #u144851 .text {
  6325. position:absolute;
  6326. align-self:center;
  6327. padding:2px 2px 2px 2px;
  6328. box-sizing:border-box;
  6329. width:100%;
  6330. }
  6331. #u144851_text {
  6332. border-width:0px;
  6333. word-wrap:break-word;
  6334. text-transform:none;
  6335. visibility:hidden;
  6336. }
  6337. #u144852_div {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:0px;
  6341. top:0px;
  6342. width:124px;
  6343. height:30px;
  6344. background:inherit;
  6345. background-color:rgba(255, 255, 255, 0);
  6346. border:none;
  6347. border-left:0px;
  6348. border-top:0px;
  6349. border-right:0px;
  6350. border-radius:0px;
  6351. border-bottom-right-radius:0px;
  6352. border-bottom-left-radius:0px;
  6353. -moz-box-shadow:none;
  6354. -webkit-box-shadow:none;
  6355. box-shadow:none;
  6356. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6357. font-weight:500;
  6358. font-style:normal;
  6359. font-size:14px;
  6360. line-height:30px;
  6361. }
  6362. #u144852 {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:974px;
  6366. top:213px;
  6367. width:124px;
  6368. height:30px;
  6369. display:flex;
  6370. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6371. font-weight:500;
  6372. font-style:normal;
  6373. font-size:14px;
  6374. line-height:30px;
  6375. }
  6376. #u144852 .text {
  6377. position:absolute;
  6378. align-self:flex-start;
  6379. padding:0px 0px 0px 0px;
  6380. box-sizing:border-box;
  6381. width:100%;
  6382. }
  6383. #u144852_text {
  6384. border-width:0px;
  6385. white-space:nowrap;
  6386. text-transform:none;
  6387. }
  6388. #u144853_div {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:0px;
  6392. top:0px;
  6393. width:325px;
  6394. height:125px;
  6395. background:inherit;
  6396. background-color:rgba(255, 255, 255, 0);
  6397. border:none;
  6398. border-left:0px;
  6399. border-top:0px;
  6400. border-right:0px;
  6401. border-radius:0px;
  6402. border-bottom-right-radius:0px;
  6403. border-bottom-left-radius:0px;
  6404. -moz-box-shadow:none;
  6405. -webkit-box-shadow:none;
  6406. box-shadow:none;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:12px;
  6411. line-height:25px;
  6412. }
  6413. #u144853 {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:974px;
  6417. top:243px;
  6418. width:325px;
  6419. height:125px;
  6420. display:flex;
  6421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:12px;
  6425. line-height:25px;
  6426. }
  6427. #u144853 .text {
  6428. position:absolute;
  6429. align-self:flex-start;
  6430. padding:0px 0px 0px 0px;
  6431. box-sizing:border-box;
  6432. width:100%;
  6433. }
  6434. #u144853_text {
  6435. border-width:0px;
  6436. word-wrap:break-word;
  6437. text-transform:none;
  6438. }
  6439. #u144854_div {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:9px;
  6445. height:9px;
  6446. background:inherit;
  6447. background-color:rgba(255, 255, 255, 0);
  6448. box-sizing:border-box;
  6449. border-width:1px;
  6450. border-style:solid;
  6451. border-color:rgba(127, 127, 127, 1);
  6452. border-right:0px;
  6453. border-bottom:0px;
  6454. border-radius:0px;
  6455. border-top-right-radius:0px;
  6456. border-bottom-left-radius:0px;
  6457. -moz-box-shadow:none;
  6458. -webkit-box-shadow:none;
  6459. box-shadow:none;
  6460. }
  6461. #u144854 {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:1289px;
  6465. top:221px;
  6466. width:9px;
  6467. height:9px;
  6468. display:flex;
  6469. -webkit-transform:rotate(135deg);
  6470. -moz-transform:rotate(135deg);
  6471. -ms-transform:rotate(135deg);
  6472. transform:rotate(135deg);
  6473. }
  6474. #u144854 .text {
  6475. position:absolute;
  6476. align-self:center;
  6477. padding:2px 2px 2px 2px;
  6478. box-sizing:border-box;
  6479. width:100%;
  6480. }
  6481. #u144854_text {
  6482. border-width:0px;
  6483. word-wrap:break-word;
  6484. text-transform:none;
  6485. visibility:hidden;
  6486. }
  6487. #u144855_div {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:0px;
  6491. top:0px;
  6492. width:60px;
  6493. height:30px;
  6494. background:inherit;
  6495. background-color:rgba(255, 255, 255, 1);
  6496. box-sizing:border-box;
  6497. border-width:1px;
  6498. border-style:solid;
  6499. border-color:rgba(215, 215, 215, 1);
  6500. border-radius:63px;
  6501. -moz-box-shadow:none;
  6502. -webkit-box-shadow:none;
  6503. box-shadow:none;
  6504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6505. font-weight:400;
  6506. font-style:normal;
  6507. font-size:14px;
  6508. color:#555555;
  6509. }
  6510. #u144855 {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:1239px;
  6514. top:367px;
  6515. width:60px;
  6516. height:30px;
  6517. display:flex;
  6518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6519. font-weight:400;
  6520. font-style:normal;
  6521. font-size:14px;
  6522. color:#555555;
  6523. }
  6524. #u144855 .text {
  6525. position:absolute;
  6526. align-self:center;
  6527. padding:2px 2px 2px 2px;
  6528. box-sizing:border-box;
  6529. width:100%;
  6530. }
  6531. #u144855_text {
  6532. border-width:0px;
  6533. word-wrap:break-word;
  6534. text-transform:none;
  6535. }
  6536. #u144856 {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:0px;
  6542. height:0px;
  6543. }
  6544. #u144857_img {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:355px;
  6550. height:170px;
  6551. }
  6552. #u144857 {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:1414px;
  6556. top:207px;
  6557. width:355px;
  6558. height:170px;
  6559. display:flex;
  6560. }
  6561. #u144857 .text {
  6562. position:absolute;
  6563. align-self:center;
  6564. padding:2px 2px 2px 2px;
  6565. box-sizing:border-box;
  6566. width:100%;
  6567. }
  6568. #u144857_text {
  6569. border-width:0px;
  6570. word-wrap:break-word;
  6571. text-transform:none;
  6572. visibility:hidden;
  6573. }
  6574. #u144858_div {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:124px;
  6580. height:30px;
  6581. background:inherit;
  6582. background-color:rgba(255, 255, 255, 0);
  6583. border:none;
  6584. border-left:0px;
  6585. border-top:0px;
  6586. border-right:0px;
  6587. border-radius:0px;
  6588. border-bottom-right-radius:0px;
  6589. border-bottom-left-radius:0px;
  6590. -moz-box-shadow:none;
  6591. -webkit-box-shadow:none;
  6592. box-shadow:none;
  6593. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6594. font-weight:500;
  6595. font-style:normal;
  6596. font-size:14px;
  6597. line-height:30px;
  6598. }
  6599. #u144858 {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:1430px;
  6603. top:213px;
  6604. width:124px;
  6605. height:30px;
  6606. display:flex;
  6607. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6608. font-weight:500;
  6609. font-style:normal;
  6610. font-size:14px;
  6611. line-height:30px;
  6612. }
  6613. #u144858 .text {
  6614. position:absolute;
  6615. align-self:flex-start;
  6616. padding:0px 0px 0px 0px;
  6617. box-sizing:border-box;
  6618. width:100%;
  6619. }
  6620. #u144858_text {
  6621. border-width:0px;
  6622. white-space:nowrap;
  6623. text-transform:none;
  6624. }
  6625. #u144859_div {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:0px;
  6629. top:0px;
  6630. width:325px;
  6631. height:125px;
  6632. background:inherit;
  6633. background-color:rgba(255, 255, 255, 0);
  6634. border:none;
  6635. border-left:0px;
  6636. border-top:0px;
  6637. border-right:0px;
  6638. border-radius:0px;
  6639. border-bottom-right-radius:0px;
  6640. border-bottom-left-radius:0px;
  6641. -moz-box-shadow:none;
  6642. -webkit-box-shadow:none;
  6643. box-shadow:none;
  6644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6645. font-weight:400;
  6646. font-style:normal;
  6647. font-size:12px;
  6648. line-height:25px;
  6649. }
  6650. #u144859 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:1430px;
  6654. top:243px;
  6655. width:325px;
  6656. height:125px;
  6657. display:flex;
  6658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6659. font-weight:400;
  6660. font-style:normal;
  6661. font-size:12px;
  6662. line-height:25px;
  6663. }
  6664. #u144859 .text {
  6665. position:absolute;
  6666. align-self:flex-start;
  6667. padding:0px 0px 0px 0px;
  6668. box-sizing:border-box;
  6669. width:100%;
  6670. }
  6671. #u144859_text {
  6672. border-width:0px;
  6673. word-wrap:break-word;
  6674. text-transform:none;
  6675. }
  6676. #u144860_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:9px;
  6682. height:9px;
  6683. background:inherit;
  6684. background-color:rgba(255, 255, 255, 0);
  6685. box-sizing:border-box;
  6686. border-width:1px;
  6687. border-style:solid;
  6688. border-color:rgba(127, 127, 127, 1);
  6689. border-right:0px;
  6690. border-bottom:0px;
  6691. border-radius:0px;
  6692. border-top-right-radius:0px;
  6693. border-bottom-left-radius:0px;
  6694. -moz-box-shadow:none;
  6695. -webkit-box-shadow:none;
  6696. box-shadow:none;
  6697. }
  6698. #u144860 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:1745px;
  6702. top:221px;
  6703. width:9px;
  6704. height:9px;
  6705. display:flex;
  6706. -webkit-transform:rotate(135deg);
  6707. -moz-transform:rotate(135deg);
  6708. -ms-transform:rotate(135deg);
  6709. transform:rotate(135deg);
  6710. }
  6711. #u144860 .text {
  6712. position:absolute;
  6713. align-self:center;
  6714. padding:2px 2px 2px 2px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u144860_text {
  6719. border-width:0px;
  6720. word-wrap:break-word;
  6721. text-transform:none;
  6722. visibility:hidden;
  6723. }
  6724. #u144861 {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:0px;
  6730. height:0px;
  6731. }
  6732. #u144862_img {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:355px;
  6738. height:170px;
  6739. }
  6740. #u144862 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:1879px;
  6744. top:207px;
  6745. width:355px;
  6746. height:170px;
  6747. display:flex;
  6748. }
  6749. #u144862 .text {
  6750. position:absolute;
  6751. align-self:center;
  6752. padding:2px 2px 2px 2px;
  6753. box-sizing:border-box;
  6754. width:100%;
  6755. }
  6756. #u144862_text {
  6757. border-width:0px;
  6758. word-wrap:break-word;
  6759. text-transform:none;
  6760. visibility:hidden;
  6761. }
  6762. #u144863_div {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:124px;
  6768. height:30px;
  6769. background:inherit;
  6770. background-color:rgba(255, 255, 255, 0);
  6771. border:none;
  6772. border-left:0px;
  6773. border-top:0px;
  6774. border-right:0px;
  6775. border-radius:0px;
  6776. border-bottom-right-radius:0px;
  6777. border-bottom-left-radius:0px;
  6778. -moz-box-shadow:none;
  6779. -webkit-box-shadow:none;
  6780. box-shadow:none;
  6781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6782. font-weight:500;
  6783. font-style:normal;
  6784. font-size:14px;
  6785. line-height:30px;
  6786. }
  6787. #u144863 {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:1895px;
  6791. top:213px;
  6792. width:124px;
  6793. height:30px;
  6794. display:flex;
  6795. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6796. font-weight:500;
  6797. font-style:normal;
  6798. font-size:14px;
  6799. line-height:30px;
  6800. }
  6801. #u144863 .text {
  6802. position:absolute;
  6803. align-self:flex-start;
  6804. padding:0px 0px 0px 0px;
  6805. box-sizing:border-box;
  6806. width:100%;
  6807. }
  6808. #u144863_text {
  6809. border-width:0px;
  6810. white-space:nowrap;
  6811. text-transform:none;
  6812. }
  6813. #u144864_div {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:325px;
  6819. height:125px;
  6820. background:inherit;
  6821. background-color:rgba(255, 255, 255, 0);
  6822. border:none;
  6823. border-left:0px;
  6824. border-top:0px;
  6825. border-right:0px;
  6826. border-radius:0px;
  6827. border-bottom-right-radius:0px;
  6828. border-bottom-left-radius:0px;
  6829. -moz-box-shadow:none;
  6830. -webkit-box-shadow:none;
  6831. box-shadow:none;
  6832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6833. font-weight:400;
  6834. font-style:normal;
  6835. font-size:12px;
  6836. line-height:25px;
  6837. }
  6838. #u144864 {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:1895px;
  6842. top:243px;
  6843. width:325px;
  6844. height:125px;
  6845. display:flex;
  6846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:12px;
  6850. line-height:25px;
  6851. }
  6852. #u144864 .text {
  6853. position:absolute;
  6854. align-self:flex-start;
  6855. padding:0px 0px 0px 0px;
  6856. box-sizing:border-box;
  6857. width:100%;
  6858. }
  6859. #u144864_text {
  6860. border-width:0px;
  6861. word-wrap:break-word;
  6862. text-transform:none;
  6863. }
  6864. #u144865_div {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:0px;
  6868. top:0px;
  6869. width:9px;
  6870. height:9px;
  6871. background:inherit;
  6872. background-color:rgba(255, 255, 255, 0);
  6873. box-sizing:border-box;
  6874. border-width:1px;
  6875. border-style:solid;
  6876. border-color:rgba(127, 127, 127, 1);
  6877. border-right:0px;
  6878. border-bottom:0px;
  6879. border-radius:0px;
  6880. border-top-right-radius:0px;
  6881. border-bottom-left-radius:0px;
  6882. -moz-box-shadow:none;
  6883. -webkit-box-shadow:none;
  6884. box-shadow:none;
  6885. }
  6886. #u144865 {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:2210px;
  6890. top:221px;
  6891. width:9px;
  6892. height:9px;
  6893. display:flex;
  6894. -webkit-transform:rotate(135deg);
  6895. -moz-transform:rotate(135deg);
  6896. -ms-transform:rotate(135deg);
  6897. transform:rotate(135deg);
  6898. }
  6899. #u144865 .text {
  6900. position:absolute;
  6901. align-self:center;
  6902. padding:2px 2px 2px 2px;
  6903. box-sizing:border-box;
  6904. width:100%;
  6905. }
  6906. #u144865_text {
  6907. border-width:0px;
  6908. word-wrap:break-word;
  6909. text-transform:none;
  6910. visibility:hidden;
  6911. }
  6912. #u144866 {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:0px;
  6918. height:0px;
  6919. }
  6920. #u144867_div {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:0px;
  6924. top:0px;
  6925. width:375px;
  6926. height:50px;
  6927. background:inherit;
  6928. background-color:rgba(255, 255, 255, 1);
  6929. box-sizing:border-box;
  6930. border-width:1px;
  6931. border-style:solid;
  6932. border-color:rgba(242, 242, 242, 1);
  6933. border-radius:26px;
  6934. border-top-left-radius:0px;
  6935. border-top-right-radius:0px;
  6936. -moz-box-shadow:none;
  6937. -webkit-box-shadow:none;
  6938. box-shadow:none;
  6939. }
  6940. #u144867 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:29px;
  6944. top:795px;
  6945. width:375px;
  6946. height:50px;
  6947. display:flex;
  6948. }
  6949. #u144867 .text {
  6950. position:absolute;
  6951. align-self:center;
  6952. padding:2px 2px 2px 2px;
  6953. box-sizing:border-box;
  6954. width:100%;
  6955. }
  6956. #u144867_text {
  6957. border-width:0px;
  6958. word-wrap:break-word;
  6959. text-transform:none;
  6960. visibility:hidden;
  6961. }
  6962. #u144868 {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:0px;
  6968. height:0px;
  6969. }
  6970. #u144869_img {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:0px;
  6974. top:0px;
  6975. width:24px;
  6976. height:24px;
  6977. }
  6978. #u144869 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:340px;
  6982. top:799px;
  6983. width:24px;
  6984. height:24px;
  6985. display:flex;
  6986. font-size:8px;
  6987. }
  6988. #u144869 .text {
  6989. position:absolute;
  6990. align-self:center;
  6991. padding:2px 2px 2px 2px;
  6992. box-sizing:border-box;
  6993. width:100%;
  6994. }
  6995. #u144869_text {
  6996. border-width:0px;
  6997. word-wrap:break-word;
  6998. text-transform:none;
  6999. }
  7000. #u144870_div {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:25px;
  7006. height:17px;
  7007. background:inherit;
  7008. background-color:rgba(255, 255, 255, 0);
  7009. border:none;
  7010. border-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:12px;
  7018. }
  7019. #u144870 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:340px;
  7023. top:824px;
  7024. width:25px;
  7025. height:17px;
  7026. display:flex;
  7027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:12px;
  7031. }
  7032. #u144870 .text {
  7033. position:absolute;
  7034. align-self:flex-start;
  7035. padding:0px 0px 0px 0px;
  7036. box-sizing:border-box;
  7037. width:100%;
  7038. }
  7039. #u144870_text {
  7040. border-width:0px;
  7041. white-space:nowrap;
  7042. text-transform:none;
  7043. }
  7044. #u144871 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:0px;
  7050. height:0px;
  7051. }
  7052. #u144872_div {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:25px;
  7058. height:17px;
  7059. background:inherit;
  7060. background-color:rgba(255, 255, 255, 0);
  7061. border:none;
  7062. border-radius:0px;
  7063. -moz-box-shadow:none;
  7064. -webkit-box-shadow:none;
  7065. box-shadow:none;
  7066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7067. font-weight:400;
  7068. font-style:normal;
  7069. font-size:12px;
  7070. }
  7071. #u144872 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:249px;
  7075. top:824px;
  7076. width:25px;
  7077. height:17px;
  7078. display:flex;
  7079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7080. font-weight:400;
  7081. font-style:normal;
  7082. font-size:12px;
  7083. }
  7084. #u144872 .text {
  7085. position:absolute;
  7086. align-self:flex-start;
  7087. padding:0px 0px 0px 0px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u144872_text {
  7092. border-width:0px;
  7093. white-space:nowrap;
  7094. text-transform:none;
  7095. }
  7096. #u144873_img {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:24px;
  7102. height:24px;
  7103. }
  7104. #u144873 {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:250px;
  7108. top:799px;
  7109. width:24px;
  7110. height:24px;
  7111. display:flex;
  7112. font-size:8px;
  7113. color:#FFFFFF;
  7114. }
  7115. #u144873 .text {
  7116. position:absolute;
  7117. align-self:center;
  7118. padding:2px 2px 2px 2px;
  7119. box-sizing:border-box;
  7120. width:100%;
  7121. }
  7122. #u144873_text {
  7123. border-width:0px;
  7124. word-wrap:break-word;
  7125. text-transform:none;
  7126. }
  7127. #u144874 {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:0px;
  7131. top:0px;
  7132. width:0px;
  7133. height:0px;
  7134. }
  7135. #u144875_img {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:0px;
  7140. width:24px;
  7141. height:24px;
  7142. }
  7143. #u144875 {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:69px;
  7147. top:799px;
  7148. width:24px;
  7149. height:24px;
  7150. display:flex;
  7151. font-size:8px;
  7152. }
  7153. #u144875 .text {
  7154. position:absolute;
  7155. align-self:center;
  7156. padding:2px 2px 2px 2px;
  7157. box-sizing:border-box;
  7158. width:100%;
  7159. }
  7160. #u144875_text {
  7161. border-width:0px;
  7162. word-wrap:break-word;
  7163. text-transform:none;
  7164. }
  7165. #u144876_div {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:0px;
  7169. top:0px;
  7170. width:25px;
  7171. height:17px;
  7172. background:inherit;
  7173. background-color:rgba(255, 255, 255, 0);
  7174. border:none;
  7175. border-radius:0px;
  7176. -moz-box-shadow:none;
  7177. -webkit-box-shadow:none;
  7178. box-shadow:none;
  7179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7180. font-weight:400;
  7181. font-style:normal;
  7182. font-size:12px;
  7183. }
  7184. #u144876 {
  7185. border-width:0px;
  7186. position:absolute;
  7187. left:69px;
  7188. top:824px;
  7189. width:25px;
  7190. height:17px;
  7191. display:flex;
  7192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7193. font-weight:400;
  7194. font-style:normal;
  7195. font-size:12px;
  7196. }
  7197. #u144876 .text {
  7198. position:absolute;
  7199. align-self:flex-start;
  7200. padding:0px 0px 0px 0px;
  7201. box-sizing:border-box;
  7202. width:100%;
  7203. }
  7204. #u144876_text {
  7205. border-width:0px;
  7206. white-space:nowrap;
  7207. text-transform:none;
  7208. }
  7209. #u144877 {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:0px;
  7213. top:0px;
  7214. width:0px;
  7215. height:0px;
  7216. }
  7217. #u144878_img {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:0px;
  7221. top:0px;
  7222. width:24px;
  7223. height:24px;
  7224. }
  7225. #u144878 {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:160px;
  7229. top:799px;
  7230. width:24px;
  7231. height:24px;
  7232. display:flex;
  7233. font-size:8px;
  7234. }
  7235. #u144878 .text {
  7236. position:absolute;
  7237. align-self:center;
  7238. padding:2px 2px 2px 2px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u144878_text {
  7243. border-width:0px;
  7244. word-wrap:break-word;
  7245. text-transform:none;
  7246. }
  7247. #u144879_div {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:25px;
  7253. height:17px;
  7254. background:inherit;
  7255. background-color:rgba(255, 255, 255, 0);
  7256. border:none;
  7257. border-radius:0px;
  7258. -moz-box-shadow:none;
  7259. -webkit-box-shadow:none;
  7260. box-shadow:none;
  7261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7262. font-weight:400;
  7263. font-style:normal;
  7264. font-size:12px;
  7265. }
  7266. #u144879 {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:160px;
  7270. top:824px;
  7271. width:25px;
  7272. height:17px;
  7273. display:flex;
  7274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7275. font-weight:400;
  7276. font-style:normal;
  7277. font-size:12px;
  7278. }
  7279. #u144879 .text {
  7280. position:absolute;
  7281. align-self:flex-start;
  7282. padding:0px 0px 0px 0px;
  7283. box-sizing:border-box;
  7284. width:100%;
  7285. }
  7286. #u144879_text {
  7287. border-width:0px;
  7288. white-space:nowrap;
  7289. text-transform:none;
  7290. }
  7291. #u144880 {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:0px;
  7297. height:0px;
  7298. }
  7299. #u144881_div {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:0px;
  7303. top:0px;
  7304. width:375px;
  7305. height:50px;
  7306. background:inherit;
  7307. background-color:rgba(255, 255, 255, 1);
  7308. box-sizing:border-box;
  7309. border-width:1px;
  7310. border-style:solid;
  7311. border-color:rgba(242, 242, 242, 1);
  7312. border-radius:26px;
  7313. border-top-left-radius:0px;
  7314. border-top-right-radius:0px;
  7315. -moz-box-shadow:none;
  7316. -webkit-box-shadow:none;
  7317. box-shadow:none;
  7318. }
  7319. #u144881 {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:486px;
  7323. top:795px;
  7324. width:375px;
  7325. height:50px;
  7326. display:flex;
  7327. }
  7328. #u144881 .text {
  7329. position:absolute;
  7330. align-self:center;
  7331. padding:2px 2px 2px 2px;
  7332. box-sizing:border-box;
  7333. width:100%;
  7334. }
  7335. #u144881_text {
  7336. border-width:0px;
  7337. word-wrap:break-word;
  7338. text-transform:none;
  7339. visibility:hidden;
  7340. }
  7341. #u144882 {
  7342. border-width:0px;
  7343. position:absolute;
  7344. left:0px;
  7345. top:0px;
  7346. width:0px;
  7347. height:0px;
  7348. }
  7349. #u144883_img {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:24px;
  7355. height:24px;
  7356. }
  7357. #u144883 {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:797px;
  7361. top:799px;
  7362. width:24px;
  7363. height:24px;
  7364. display:flex;
  7365. font-size:8px;
  7366. }
  7367. #u144883 .text {
  7368. position:absolute;
  7369. align-self:center;
  7370. padding:2px 2px 2px 2px;
  7371. box-sizing:border-box;
  7372. width:100%;
  7373. }
  7374. #u144883_text {
  7375. border-width:0px;
  7376. word-wrap:break-word;
  7377. text-transform:none;
  7378. }
  7379. #u144884_div {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:0px;
  7383. top:0px;
  7384. width:25px;
  7385. height:17px;
  7386. background:inherit;
  7387. background-color:rgba(255, 255, 255, 0);
  7388. border:none;
  7389. border-radius:0px;
  7390. -moz-box-shadow:none;
  7391. -webkit-box-shadow:none;
  7392. box-shadow:none;
  7393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7394. font-weight:400;
  7395. font-style:normal;
  7396. font-size:12px;
  7397. }
  7398. #u144884 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:797px;
  7402. top:824px;
  7403. width:25px;
  7404. height:17px;
  7405. display:flex;
  7406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:12px;
  7410. }
  7411. #u144884 .text {
  7412. position:absolute;
  7413. align-self:flex-start;
  7414. padding:0px 0px 0px 0px;
  7415. box-sizing:border-box;
  7416. width:100%;
  7417. }
  7418. #u144884_text {
  7419. border-width:0px;
  7420. white-space:nowrap;
  7421. text-transform:none;
  7422. }
  7423. #u144885 {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:0px;
  7429. height:0px;
  7430. }
  7431. #u144886_div {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:0px;
  7435. top:0px;
  7436. width:25px;
  7437. height:17px;
  7438. background:inherit;
  7439. background-color:rgba(255, 255, 255, 0);
  7440. border:none;
  7441. border-radius:0px;
  7442. -moz-box-shadow:none;
  7443. -webkit-box-shadow:none;
  7444. box-shadow:none;
  7445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7446. font-weight:400;
  7447. font-style:normal;
  7448. font-size:12px;
  7449. }
  7450. #u144886 {
  7451. border-width:0px;
  7452. position:absolute;
  7453. left:706px;
  7454. top:824px;
  7455. width:25px;
  7456. height:17px;
  7457. display:flex;
  7458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7459. font-weight:400;
  7460. font-style:normal;
  7461. font-size:12px;
  7462. }
  7463. #u144886 .text {
  7464. position:absolute;
  7465. align-self:flex-start;
  7466. padding:0px 0px 0px 0px;
  7467. box-sizing:border-box;
  7468. width:100%;
  7469. }
  7470. #u144886_text {
  7471. border-width:0px;
  7472. white-space:nowrap;
  7473. text-transform:none;
  7474. }
  7475. #u144887_img {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:0px;
  7479. top:0px;
  7480. width:24px;
  7481. height:24px;
  7482. }
  7483. #u144887 {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:707px;
  7487. top:799px;
  7488. width:24px;
  7489. height:24px;
  7490. display:flex;
  7491. font-size:8px;
  7492. color:#FFFFFF;
  7493. }
  7494. #u144887 .text {
  7495. position:absolute;
  7496. align-self:center;
  7497. padding:2px 2px 2px 2px;
  7498. box-sizing:border-box;
  7499. width:100%;
  7500. }
  7501. #u144887_text {
  7502. border-width:0px;
  7503. word-wrap:break-word;
  7504. text-transform:none;
  7505. }
  7506. #u144888 {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:0px;
  7510. top:0px;
  7511. width:0px;
  7512. height:0px;
  7513. }
  7514. #u144889_img {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:0px;
  7518. top:0px;
  7519. width:24px;
  7520. height:24px;
  7521. }
  7522. #u144889 {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:526px;
  7526. top:799px;
  7527. width:24px;
  7528. height:24px;
  7529. display:flex;
  7530. font-size:8px;
  7531. }
  7532. #u144889 .text {
  7533. position:absolute;
  7534. align-self:center;
  7535. padding:2px 2px 2px 2px;
  7536. box-sizing:border-box;
  7537. width:100%;
  7538. }
  7539. #u144889_text {
  7540. border-width:0px;
  7541. word-wrap:break-word;
  7542. text-transform:none;
  7543. }
  7544. #u144890_div {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:25px;
  7550. height:17px;
  7551. background:inherit;
  7552. background-color:rgba(255, 255, 255, 0);
  7553. border:none;
  7554. border-radius:0px;
  7555. -moz-box-shadow:none;
  7556. -webkit-box-shadow:none;
  7557. box-shadow:none;
  7558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7559. font-weight:400;
  7560. font-style:normal;
  7561. font-size:12px;
  7562. }
  7563. #u144890 {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:526px;
  7567. top:824px;
  7568. width:25px;
  7569. height:17px;
  7570. display:flex;
  7571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7572. font-weight:400;
  7573. font-style:normal;
  7574. font-size:12px;
  7575. }
  7576. #u144890 .text {
  7577. position:absolute;
  7578. align-self:flex-start;
  7579. padding:0px 0px 0px 0px;
  7580. box-sizing:border-box;
  7581. width:100%;
  7582. }
  7583. #u144890_text {
  7584. border-width:0px;
  7585. white-space:nowrap;
  7586. text-transform:none;
  7587. }
  7588. #u144891 {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:0px;
  7592. top:0px;
  7593. width:0px;
  7594. height:0px;
  7595. }
  7596. #u144892_img {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:0px;
  7600. top:0px;
  7601. width:24px;
  7602. height:24px;
  7603. }
  7604. #u144892 {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:617px;
  7608. top:799px;
  7609. width:24px;
  7610. height:24px;
  7611. display:flex;
  7612. font-size:8px;
  7613. }
  7614. #u144892 .text {
  7615. position:absolute;
  7616. align-self:center;
  7617. padding:2px 2px 2px 2px;
  7618. box-sizing:border-box;
  7619. width:100%;
  7620. }
  7621. #u144892_text {
  7622. border-width:0px;
  7623. word-wrap:break-word;
  7624. text-transform:none;
  7625. }
  7626. #u144893_div {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:0px;
  7630. top:0px;
  7631. width:25px;
  7632. height:17px;
  7633. background:inherit;
  7634. background-color:rgba(255, 255, 255, 0);
  7635. border:none;
  7636. border-radius:0px;
  7637. -moz-box-shadow:none;
  7638. -webkit-box-shadow:none;
  7639. box-shadow:none;
  7640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7641. font-weight:400;
  7642. font-style:normal;
  7643. font-size:12px;
  7644. }
  7645. #u144893 {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:617px;
  7649. top:824px;
  7650. width:25px;
  7651. height:17px;
  7652. display:flex;
  7653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7654. font-weight:400;
  7655. font-style:normal;
  7656. font-size:12px;
  7657. }
  7658. #u144893 .text {
  7659. position:absolute;
  7660. align-self:flex-start;
  7661. padding:0px 0px 0px 0px;
  7662. box-sizing:border-box;
  7663. width:100%;
  7664. }
  7665. #u144893_text {
  7666. border-width:0px;
  7667. white-space:nowrap;
  7668. text-transform:none;
  7669. }
  7670. #u144894 {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:0px;
  7674. top:0px;
  7675. width:0px;
  7676. height:0px;
  7677. }
  7678. #u144895_div {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:0px;
  7682. top:0px;
  7683. width:375px;
  7684. height:50px;
  7685. background:inherit;
  7686. background-color:rgba(255, 255, 255, 1);
  7687. box-sizing:border-box;
  7688. border-width:1px;
  7689. border-style:solid;
  7690. border-color:rgba(242, 242, 242, 1);
  7691. border-radius:26px;
  7692. border-top-left-radius:0px;
  7693. border-top-right-radius:0px;
  7694. -moz-box-shadow:none;
  7695. -webkit-box-shadow:none;
  7696. box-shadow:none;
  7697. }
  7698. #u144895 {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:947px;
  7702. top:795px;
  7703. width:375px;
  7704. height:50px;
  7705. display:flex;
  7706. }
  7707. #u144895 .text {
  7708. position:absolute;
  7709. align-self:center;
  7710. padding:2px 2px 2px 2px;
  7711. box-sizing:border-box;
  7712. width:100%;
  7713. }
  7714. #u144895_text {
  7715. border-width:0px;
  7716. word-wrap:break-word;
  7717. text-transform:none;
  7718. visibility:hidden;
  7719. }
  7720. #u144896 {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:0px;
  7724. top:0px;
  7725. width:0px;
  7726. height:0px;
  7727. }
  7728. #u144897_img {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:24px;
  7734. height:24px;
  7735. }
  7736. #u144897 {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:1258px;
  7740. top:799px;
  7741. width:24px;
  7742. height:24px;
  7743. display:flex;
  7744. font-size:8px;
  7745. }
  7746. #u144897 .text {
  7747. position:absolute;
  7748. align-self:center;
  7749. padding:2px 2px 2px 2px;
  7750. box-sizing:border-box;
  7751. width:100%;
  7752. }
  7753. #u144897_text {
  7754. border-width:0px;
  7755. word-wrap:break-word;
  7756. text-transform:none;
  7757. }
  7758. #u144898_div {
  7759. border-width:0px;
  7760. position:absolute;
  7761. left:0px;
  7762. top:0px;
  7763. width:25px;
  7764. height:17px;
  7765. background:inherit;
  7766. background-color:rgba(255, 255, 255, 0);
  7767. border:none;
  7768. border-radius:0px;
  7769. -moz-box-shadow:none;
  7770. -webkit-box-shadow:none;
  7771. box-shadow:none;
  7772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7773. font-weight:400;
  7774. font-style:normal;
  7775. font-size:12px;
  7776. }
  7777. #u144898 {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:1258px;
  7781. top:824px;
  7782. width:25px;
  7783. height:17px;
  7784. display:flex;
  7785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7786. font-weight:400;
  7787. font-style:normal;
  7788. font-size:12px;
  7789. }
  7790. #u144898 .text {
  7791. position:absolute;
  7792. align-self:flex-start;
  7793. padding:0px 0px 0px 0px;
  7794. box-sizing:border-box;
  7795. width:100%;
  7796. }
  7797. #u144898_text {
  7798. border-width:0px;
  7799. white-space:nowrap;
  7800. text-transform:none;
  7801. }
  7802. #u144899 {
  7803. border-width:0px;
  7804. position:absolute;
  7805. left:0px;
  7806. top:0px;
  7807. width:0px;
  7808. height:0px;
  7809. }
  7810. #u144900_div {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:25px;
  7816. height:17px;
  7817. background:inherit;
  7818. background-color:rgba(255, 255, 255, 0);
  7819. border:none;
  7820. border-radius:0px;
  7821. -moz-box-shadow:none;
  7822. -webkit-box-shadow:none;
  7823. box-shadow:none;
  7824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:12px;
  7828. }
  7829. #u144900 {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:1167px;
  7833. top:824px;
  7834. width:25px;
  7835. height:17px;
  7836. display:flex;
  7837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:12px;
  7841. }
  7842. #u144900 .text {
  7843. position:absolute;
  7844. align-self:flex-start;
  7845. padding:0px 0px 0px 0px;
  7846. box-sizing:border-box;
  7847. width:100%;
  7848. }
  7849. #u144900_text {
  7850. border-width:0px;
  7851. white-space:nowrap;
  7852. text-transform:none;
  7853. }
  7854. #u144901_img {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:24px;
  7860. height:24px;
  7861. }
  7862. #u144901 {
  7863. border-width:0px;
  7864. position:absolute;
  7865. left:1168px;
  7866. top:799px;
  7867. width:24px;
  7868. height:24px;
  7869. display:flex;
  7870. font-size:8px;
  7871. color:#FFFFFF;
  7872. }
  7873. #u144901 .text {
  7874. position:absolute;
  7875. align-self:center;
  7876. padding:2px 2px 2px 2px;
  7877. box-sizing:border-box;
  7878. width:100%;
  7879. }
  7880. #u144901_text {
  7881. border-width:0px;
  7882. word-wrap:break-word;
  7883. text-transform:none;
  7884. }
  7885. #u144902 {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:0px;
  7891. height:0px;
  7892. }
  7893. #u144903_img {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:24px;
  7899. height:24px;
  7900. }
  7901. #u144903 {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:987px;
  7905. top:799px;
  7906. width:24px;
  7907. height:24px;
  7908. display:flex;
  7909. font-size:8px;
  7910. }
  7911. #u144903 .text {
  7912. position:absolute;
  7913. align-self:center;
  7914. padding:2px 2px 2px 2px;
  7915. box-sizing:border-box;
  7916. width:100%;
  7917. }
  7918. #u144903_text {
  7919. border-width:0px;
  7920. word-wrap:break-word;
  7921. text-transform:none;
  7922. }
  7923. #u144904_div {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:0px;
  7927. top:0px;
  7928. width:25px;
  7929. height:17px;
  7930. background:inherit;
  7931. background-color:rgba(255, 255, 255, 0);
  7932. border:none;
  7933. border-radius:0px;
  7934. -moz-box-shadow:none;
  7935. -webkit-box-shadow:none;
  7936. box-shadow:none;
  7937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. font-size:12px;
  7941. }
  7942. #u144904 {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:987px;
  7946. top:824px;
  7947. width:25px;
  7948. height:17px;
  7949. display:flex;
  7950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7951. font-weight:400;
  7952. font-style:normal;
  7953. font-size:12px;
  7954. }
  7955. #u144904 .text {
  7956. position:absolute;
  7957. align-self:flex-start;
  7958. padding:0px 0px 0px 0px;
  7959. box-sizing:border-box;
  7960. width:100%;
  7961. }
  7962. #u144904_text {
  7963. border-width:0px;
  7964. white-space:nowrap;
  7965. text-transform:none;
  7966. }
  7967. #u144905 {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:0px;
  7971. top:0px;
  7972. width:0px;
  7973. height:0px;
  7974. }
  7975. #u144906_img {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:0px;
  7979. top:0px;
  7980. width:24px;
  7981. height:24px;
  7982. }
  7983. #u144906 {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:1078px;
  7987. top:799px;
  7988. width:24px;
  7989. height:24px;
  7990. display:flex;
  7991. font-size:8px;
  7992. }
  7993. #u144906 .text {
  7994. position:absolute;
  7995. align-self:center;
  7996. padding:2px 2px 2px 2px;
  7997. box-sizing:border-box;
  7998. width:100%;
  7999. }
  8000. #u144906_text {
  8001. border-width:0px;
  8002. word-wrap:break-word;
  8003. text-transform:none;
  8004. }
  8005. #u144907_div {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:0px;
  8009. top:0px;
  8010. width:25px;
  8011. height:17px;
  8012. background:inherit;
  8013. background-color:rgba(255, 255, 255, 0);
  8014. border:none;
  8015. border-radius:0px;
  8016. -moz-box-shadow:none;
  8017. -webkit-box-shadow:none;
  8018. box-shadow:none;
  8019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8020. font-weight:400;
  8021. font-style:normal;
  8022. font-size:12px;
  8023. }
  8024. #u144907 {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:1078px;
  8028. top:824px;
  8029. width:25px;
  8030. height:17px;
  8031. display:flex;
  8032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8033. font-weight:400;
  8034. font-style:normal;
  8035. font-size:12px;
  8036. }
  8037. #u144907 .text {
  8038. position:absolute;
  8039. align-self:flex-start;
  8040. padding:0px 0px 0px 0px;
  8041. box-sizing:border-box;
  8042. width:100%;
  8043. }
  8044. #u144907_text {
  8045. border-width:0px;
  8046. white-space:nowrap;
  8047. text-transform:none;
  8048. }
  8049. #u144908 {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:0px;
  8053. top:0px;
  8054. width:0px;
  8055. height:0px;
  8056. }
  8057. #u144909_div {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:375px;
  8063. height:50px;
  8064. background:inherit;
  8065. background-color:rgba(255, 255, 255, 1);
  8066. box-sizing:border-box;
  8067. border-width:1px;
  8068. border-style:solid;
  8069. border-color:rgba(242, 242, 242, 1);
  8070. border-radius:26px;
  8071. border-top-left-radius:0px;
  8072. border-top-right-radius:0px;
  8073. -moz-box-shadow:none;
  8074. -webkit-box-shadow:none;
  8075. box-shadow:none;
  8076. }
  8077. #u144909 {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:1405px;
  8081. top:795px;
  8082. width:375px;
  8083. height:50px;
  8084. display:flex;
  8085. }
  8086. #u144909 .text {
  8087. position:absolute;
  8088. align-self:center;
  8089. padding:2px 2px 2px 2px;
  8090. box-sizing:border-box;
  8091. width:100%;
  8092. }
  8093. #u144909_text {
  8094. border-width:0px;
  8095. word-wrap:break-word;
  8096. text-transform:none;
  8097. visibility:hidden;
  8098. }
  8099. #u144910 {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:0px;
  8103. top:0px;
  8104. width:0px;
  8105. height:0px;
  8106. }
  8107. #u144911_img {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:0px;
  8111. top:0px;
  8112. width:24px;
  8113. height:24px;
  8114. }
  8115. #u144911 {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:1716px;
  8119. top:799px;
  8120. width:24px;
  8121. height:24px;
  8122. display:flex;
  8123. font-size:8px;
  8124. }
  8125. #u144911 .text {
  8126. position:absolute;
  8127. align-self:center;
  8128. padding:2px 2px 2px 2px;
  8129. box-sizing:border-box;
  8130. width:100%;
  8131. }
  8132. #u144911_text {
  8133. border-width:0px;
  8134. word-wrap:break-word;
  8135. text-transform:none;
  8136. }
  8137. #u144912_div {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:0px;
  8141. top:0px;
  8142. width:25px;
  8143. height:17px;
  8144. background:inherit;
  8145. background-color:rgba(255, 255, 255, 0);
  8146. border:none;
  8147. border-radius:0px;
  8148. -moz-box-shadow:none;
  8149. -webkit-box-shadow:none;
  8150. box-shadow:none;
  8151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8152. font-weight:400;
  8153. font-style:normal;
  8154. font-size:12px;
  8155. }
  8156. #u144912 {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:1716px;
  8160. top:824px;
  8161. width:25px;
  8162. height:17px;
  8163. display:flex;
  8164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8165. font-weight:400;
  8166. font-style:normal;
  8167. font-size:12px;
  8168. }
  8169. #u144912 .text {
  8170. position:absolute;
  8171. align-self:flex-start;
  8172. padding:0px 0px 0px 0px;
  8173. box-sizing:border-box;
  8174. width:100%;
  8175. }
  8176. #u144912_text {
  8177. border-width:0px;
  8178. white-space:nowrap;
  8179. text-transform:none;
  8180. }
  8181. #u144913 {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:0px;
  8185. top:0px;
  8186. width:0px;
  8187. height:0px;
  8188. }
  8189. #u144914_div {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:0px;
  8193. top:0px;
  8194. width:25px;
  8195. height:17px;
  8196. background:inherit;
  8197. background-color:rgba(255, 255, 255, 0);
  8198. border:none;
  8199. border-radius:0px;
  8200. -moz-box-shadow:none;
  8201. -webkit-box-shadow:none;
  8202. box-shadow:none;
  8203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8204. font-weight:400;
  8205. font-style:normal;
  8206. font-size:12px;
  8207. }
  8208. #u144914 {
  8209. border-width:0px;
  8210. position:absolute;
  8211. left:1625px;
  8212. top:824px;
  8213. width:25px;
  8214. height:17px;
  8215. display:flex;
  8216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8217. font-weight:400;
  8218. font-style:normal;
  8219. font-size:12px;
  8220. }
  8221. #u144914 .text {
  8222. position:absolute;
  8223. align-self:flex-start;
  8224. padding:0px 0px 0px 0px;
  8225. box-sizing:border-box;
  8226. width:100%;
  8227. }
  8228. #u144914_text {
  8229. border-width:0px;
  8230. white-space:nowrap;
  8231. text-transform:none;
  8232. }
  8233. #u144915_img {
  8234. border-width:0px;
  8235. position:absolute;
  8236. left:0px;
  8237. top:0px;
  8238. width:24px;
  8239. height:24px;
  8240. }
  8241. #u144915 {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:1626px;
  8245. top:799px;
  8246. width:24px;
  8247. height:24px;
  8248. display:flex;
  8249. font-size:8px;
  8250. color:#FFFFFF;
  8251. }
  8252. #u144915 .text {
  8253. position:absolute;
  8254. align-self:center;
  8255. padding:2px 2px 2px 2px;
  8256. box-sizing:border-box;
  8257. width:100%;
  8258. }
  8259. #u144915_text {
  8260. border-width:0px;
  8261. word-wrap:break-word;
  8262. text-transform:none;
  8263. }
  8264. #u144916 {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:0px;
  8268. top:0px;
  8269. width:0px;
  8270. height:0px;
  8271. }
  8272. #u144917_img {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:0px;
  8276. top:0px;
  8277. width:24px;
  8278. height:24px;
  8279. }
  8280. #u144917 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:1445px;
  8284. top:799px;
  8285. width:24px;
  8286. height:24px;
  8287. display:flex;
  8288. font-size:8px;
  8289. }
  8290. #u144917 .text {
  8291. position:absolute;
  8292. align-self:center;
  8293. padding:2px 2px 2px 2px;
  8294. box-sizing:border-box;
  8295. width:100%;
  8296. }
  8297. #u144917_text {
  8298. border-width:0px;
  8299. word-wrap:break-word;
  8300. text-transform:none;
  8301. }
  8302. #u144918_div {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:0px;
  8306. top:0px;
  8307. width:25px;
  8308. height:17px;
  8309. background:inherit;
  8310. background-color:rgba(255, 255, 255, 0);
  8311. border:none;
  8312. border-radius:0px;
  8313. -moz-box-shadow:none;
  8314. -webkit-box-shadow:none;
  8315. box-shadow:none;
  8316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8317. font-weight:400;
  8318. font-style:normal;
  8319. font-size:12px;
  8320. }
  8321. #u144918 {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:1445px;
  8325. top:824px;
  8326. width:25px;
  8327. height:17px;
  8328. display:flex;
  8329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8330. font-weight:400;
  8331. font-style:normal;
  8332. font-size:12px;
  8333. }
  8334. #u144918 .text {
  8335. position:absolute;
  8336. align-self:flex-start;
  8337. padding:0px 0px 0px 0px;
  8338. box-sizing:border-box;
  8339. width:100%;
  8340. }
  8341. #u144918_text {
  8342. border-width:0px;
  8343. white-space:nowrap;
  8344. text-transform:none;
  8345. }
  8346. #u144919 {
  8347. border-width:0px;
  8348. position:absolute;
  8349. left:0px;
  8350. top:0px;
  8351. width:0px;
  8352. height:0px;
  8353. }
  8354. #u144920_img {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:0px;
  8358. top:0px;
  8359. width:24px;
  8360. height:24px;
  8361. }
  8362. #u144920 {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:1536px;
  8366. top:799px;
  8367. width:24px;
  8368. height:24px;
  8369. display:flex;
  8370. font-size:8px;
  8371. }
  8372. #u144920 .text {
  8373. position:absolute;
  8374. align-self:center;
  8375. padding:2px 2px 2px 2px;
  8376. box-sizing:border-box;
  8377. width:100%;
  8378. }
  8379. #u144920_text {
  8380. border-width:0px;
  8381. word-wrap:break-word;
  8382. text-transform:none;
  8383. }
  8384. #u144921_div {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:0px;
  8388. top:0px;
  8389. width:25px;
  8390. height:17px;
  8391. background:inherit;
  8392. background-color:rgba(255, 255, 255, 0);
  8393. border:none;
  8394. border-radius:0px;
  8395. -moz-box-shadow:none;
  8396. -webkit-box-shadow:none;
  8397. box-shadow:none;
  8398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8399. font-weight:400;
  8400. font-style:normal;
  8401. font-size:12px;
  8402. }
  8403. #u144921 {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:1536px;
  8407. top:824px;
  8408. width:25px;
  8409. height:17px;
  8410. display:flex;
  8411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8412. font-weight:400;
  8413. font-style:normal;
  8414. font-size:12px;
  8415. }
  8416. #u144921 .text {
  8417. position:absolute;
  8418. align-self:flex-start;
  8419. padding:0px 0px 0px 0px;
  8420. box-sizing:border-box;
  8421. width:100%;
  8422. }
  8423. #u144921_text {
  8424. border-width:0px;
  8425. white-space:nowrap;
  8426. text-transform:none;
  8427. }
  8428. #u144922 {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:0px;
  8432. top:0px;
  8433. width:0px;
  8434. height:0px;
  8435. }
  8436. #u144923_div {
  8437. border-width:0px;
  8438. position:absolute;
  8439. left:0px;
  8440. top:0px;
  8441. width:375px;
  8442. height:50px;
  8443. background:inherit;
  8444. background-color:rgba(255, 255, 255, 1);
  8445. box-sizing:border-box;
  8446. border-width:1px;
  8447. border-style:solid;
  8448. border-color:rgba(242, 242, 242, 1);
  8449. border-radius:26px;
  8450. border-top-left-radius:0px;
  8451. border-top-right-radius:0px;
  8452. -moz-box-shadow:none;
  8453. -webkit-box-shadow:none;
  8454. box-shadow:none;
  8455. }
  8456. #u144923 {
  8457. border-width:0px;
  8458. position:absolute;
  8459. left:1870px;
  8460. top:795px;
  8461. width:375px;
  8462. height:50px;
  8463. display:flex;
  8464. }
  8465. #u144923 .text {
  8466. position:absolute;
  8467. align-self:center;
  8468. padding:2px 2px 2px 2px;
  8469. box-sizing:border-box;
  8470. width:100%;
  8471. }
  8472. #u144923_text {
  8473. border-width:0px;
  8474. word-wrap:break-word;
  8475. text-transform:none;
  8476. visibility:hidden;
  8477. }
  8478. #u144924 {
  8479. border-width:0px;
  8480. position:absolute;
  8481. left:0px;
  8482. top:0px;
  8483. width:0px;
  8484. height:0px;
  8485. }
  8486. #u144925_img {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:0px;
  8490. top:0px;
  8491. width:24px;
  8492. height:24px;
  8493. }
  8494. #u144925 {
  8495. border-width:0px;
  8496. position:absolute;
  8497. left:2181px;
  8498. top:799px;
  8499. width:24px;
  8500. height:24px;
  8501. display:flex;
  8502. font-size:8px;
  8503. }
  8504. #u144925 .text {
  8505. position:absolute;
  8506. align-self:center;
  8507. padding:2px 2px 2px 2px;
  8508. box-sizing:border-box;
  8509. width:100%;
  8510. }
  8511. #u144925_text {
  8512. border-width:0px;
  8513. word-wrap:break-word;
  8514. text-transform:none;
  8515. }
  8516. #u144926_div {
  8517. border-width:0px;
  8518. position:absolute;
  8519. left:0px;
  8520. top:0px;
  8521. width:25px;
  8522. height:17px;
  8523. background:inherit;
  8524. background-color:rgba(255, 255, 255, 0);
  8525. border:none;
  8526. border-radius:0px;
  8527. -moz-box-shadow:none;
  8528. -webkit-box-shadow:none;
  8529. box-shadow:none;
  8530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8531. font-weight:400;
  8532. font-style:normal;
  8533. font-size:12px;
  8534. }
  8535. #u144926 {
  8536. border-width:0px;
  8537. position:absolute;
  8538. left:2181px;
  8539. top:824px;
  8540. width:25px;
  8541. height:17px;
  8542. display:flex;
  8543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8544. font-weight:400;
  8545. font-style:normal;
  8546. font-size:12px;
  8547. }
  8548. #u144926 .text {
  8549. position:absolute;
  8550. align-self:flex-start;
  8551. padding:0px 0px 0px 0px;
  8552. box-sizing:border-box;
  8553. width:100%;
  8554. }
  8555. #u144926_text {
  8556. border-width:0px;
  8557. white-space:nowrap;
  8558. text-transform:none;
  8559. }
  8560. #u144927 {
  8561. border-width:0px;
  8562. position:absolute;
  8563. left:0px;
  8564. top:0px;
  8565. width:0px;
  8566. height:0px;
  8567. }
  8568. #u144928_div {
  8569. border-width:0px;
  8570. position:absolute;
  8571. left:0px;
  8572. top:0px;
  8573. width:25px;
  8574. height:17px;
  8575. background:inherit;
  8576. background-color:rgba(255, 255, 255, 0);
  8577. border:none;
  8578. border-radius:0px;
  8579. -moz-box-shadow:none;
  8580. -webkit-box-shadow:none;
  8581. box-shadow:none;
  8582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8583. font-weight:400;
  8584. font-style:normal;
  8585. font-size:12px;
  8586. }
  8587. #u144928 {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:2090px;
  8591. top:824px;
  8592. width:25px;
  8593. height:17px;
  8594. display:flex;
  8595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8596. font-weight:400;
  8597. font-style:normal;
  8598. font-size:12px;
  8599. }
  8600. #u144928 .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. #u144928_text {
  8608. border-width:0px;
  8609. white-space:nowrap;
  8610. text-transform:none;
  8611. }
  8612. #u144929_img {
  8613. border-width:0px;
  8614. position:absolute;
  8615. left:0px;
  8616. top:0px;
  8617. width:24px;
  8618. height:24px;
  8619. }
  8620. #u144929 {
  8621. border-width:0px;
  8622. position:absolute;
  8623. left:2091px;
  8624. top:799px;
  8625. width:24px;
  8626. height:24px;
  8627. display:flex;
  8628. font-size:8px;
  8629. color:#FFFFFF;
  8630. }
  8631. #u144929 .text {
  8632. position:absolute;
  8633. align-self:center;
  8634. padding:2px 2px 2px 2px;
  8635. box-sizing:border-box;
  8636. width:100%;
  8637. }
  8638. #u144929_text {
  8639. border-width:0px;
  8640. word-wrap:break-word;
  8641. text-transform:none;
  8642. }
  8643. #u144930 {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:0px;
  8647. top:0px;
  8648. width:0px;
  8649. height:0px;
  8650. }
  8651. #u144931_img {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:24px;
  8657. height:24px;
  8658. }
  8659. #u144931 {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:1910px;
  8663. top:799px;
  8664. width:24px;
  8665. height:24px;
  8666. display:flex;
  8667. font-size:8px;
  8668. }
  8669. #u144931 .text {
  8670. position:absolute;
  8671. align-self:center;
  8672. padding:2px 2px 2px 2px;
  8673. box-sizing:border-box;
  8674. width:100%;
  8675. }
  8676. #u144931_text {
  8677. border-width:0px;
  8678. word-wrap:break-word;
  8679. text-transform:none;
  8680. }
  8681. #u144932_div {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:0px;
  8685. top:0px;
  8686. width:25px;
  8687. height:17px;
  8688. background:inherit;
  8689. background-color:rgba(255, 255, 255, 0);
  8690. border:none;
  8691. border-radius:0px;
  8692. -moz-box-shadow:none;
  8693. -webkit-box-shadow:none;
  8694. box-shadow:none;
  8695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8696. font-weight:400;
  8697. font-style:normal;
  8698. font-size:12px;
  8699. }
  8700. #u144932 {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:1910px;
  8704. top:824px;
  8705. width:25px;
  8706. height:17px;
  8707. display:flex;
  8708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8709. font-weight:400;
  8710. font-style:normal;
  8711. font-size:12px;
  8712. }
  8713. #u144932 .text {
  8714. position:absolute;
  8715. align-self:flex-start;
  8716. padding:0px 0px 0px 0px;
  8717. box-sizing:border-box;
  8718. width:100%;
  8719. }
  8720. #u144932_text {
  8721. border-width:0px;
  8722. white-space:nowrap;
  8723. text-transform:none;
  8724. }
  8725. #u144933 {
  8726. border-width:0px;
  8727. position:absolute;
  8728. left:0px;
  8729. top:0px;
  8730. width:0px;
  8731. height:0px;
  8732. }
  8733. #u144934_img {
  8734. border-width:0px;
  8735. position:absolute;
  8736. left:0px;
  8737. top:0px;
  8738. width:24px;
  8739. height:24px;
  8740. }
  8741. #u144934 {
  8742. border-width:0px;
  8743. position:absolute;
  8744. left:2001px;
  8745. top:799px;
  8746. width:24px;
  8747. height:24px;
  8748. display:flex;
  8749. font-size:8px;
  8750. }
  8751. #u144934 .text {
  8752. position:absolute;
  8753. align-self:center;
  8754. padding:2px 2px 2px 2px;
  8755. box-sizing:border-box;
  8756. width:100%;
  8757. }
  8758. #u144934_text {
  8759. border-width:0px;
  8760. word-wrap:break-word;
  8761. text-transform:none;
  8762. }
  8763. #u144935_div {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:0px;
  8767. top:0px;
  8768. width:25px;
  8769. height:17px;
  8770. background:inherit;
  8771. background-color:rgba(255, 255, 255, 0);
  8772. border:none;
  8773. border-radius:0px;
  8774. -moz-box-shadow:none;
  8775. -webkit-box-shadow:none;
  8776. box-shadow:none;
  8777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:12px;
  8781. }
  8782. #u144935 {
  8783. border-width:0px;
  8784. position:absolute;
  8785. left:2001px;
  8786. top:824px;
  8787. width:25px;
  8788. height:17px;
  8789. display:flex;
  8790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8791. font-weight:400;
  8792. font-style:normal;
  8793. font-size:12px;
  8794. }
  8795. #u144935 .text {
  8796. position:absolute;
  8797. align-self:flex-start;
  8798. padding:0px 0px 0px 0px;
  8799. box-sizing:border-box;
  8800. width:100%;
  8801. }
  8802. #u144935_text {
  8803. border-width:0px;
  8804. white-space:nowrap;
  8805. text-transform:none;
  8806. }
  8807. #u144936_img {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:0px;
  8811. top:0px;
  8812. width:23px;
  8813. height:23px;
  8814. }
  8815. #u144936 {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:525px;
  8819. top:76px;
  8820. width:23px;
  8821. height:23px;
  8822. display:flex;
  8823. }
  8824. #u144936 .text {
  8825. position:absolute;
  8826. align-self:center;
  8827. padding:2px 2px 2px 2px;
  8828. box-sizing:border-box;
  8829. width:100%;
  8830. }
  8831. #u144936_text {
  8832. border-width:0px;
  8833. word-wrap:break-word;
  8834. text-transform:none;
  8835. visibility:hidden;
  8836. }
  8837. #u144937_div {
  8838. border-width:0px;
  8839. position:absolute;
  8840. left:0px;
  8841. top:0px;
  8842. width:12px;
  8843. height:12px;
  8844. background:inherit;
  8845. background-color:rgba(255, 255, 255, 0);
  8846. box-sizing:border-box;
  8847. border-width:2px;
  8848. border-style:solid;
  8849. border-color:rgba(51, 51, 51, 1);
  8850. border-right:0px;
  8851. border-bottom:0px;
  8852. border-radius:0px;
  8853. border-top-right-radius:0px;
  8854. border-bottom-left-radius:0px;
  8855. -moz-box-shadow:none;
  8856. -webkit-box-shadow:none;
  8857. box-shadow:none;
  8858. }
  8859. #u144937 {
  8860. border-width:0px;
  8861. position:absolute;
  8862. left:42px;
  8863. top:82px;
  8864. width:12px;
  8865. height:12px;
  8866. display:flex;
  8867. -webkit-transform:rotate(315deg);
  8868. -moz-transform:rotate(315deg);
  8869. -ms-transform:rotate(315deg);
  8870. transform:rotate(315deg);
  8871. }
  8872. #u144937 .text {
  8873. position:absolute;
  8874. align-self:center;
  8875. padding:2px 2px 2px 2px;
  8876. box-sizing:border-box;
  8877. width:100%;
  8878. }
  8879. #u144937_text {
  8880. border-width:0px;
  8881. word-wrap:break-word;
  8882. text-transform:none;
  8883. visibility:hidden;
  8884. }
  8885. #u144938_div {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:0px;
  8889. top:0px;
  8890. width:65px;
  8891. height:22px;
  8892. background:inherit;
  8893. background-color:rgba(255, 255, 255, 0);
  8894. border:none;
  8895. border-radius:0px;
  8896. -moz-box-shadow:none;
  8897. -webkit-box-shadow:none;
  8898. box-shadow:none;
  8899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8900. font-weight:400;
  8901. font-style:normal;
  8902. font-size:16px;
  8903. color:#000000;
  8904. }
  8905. #u144938 {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:179px;
  8909. top:77px;
  8910. width:65px;
  8911. height:22px;
  8912. display:flex;
  8913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8914. font-weight:400;
  8915. font-style:normal;
  8916. font-size:16px;
  8917. color:#000000;
  8918. }
  8919. #u144938 .text {
  8920. position:absolute;
  8921. align-self:flex-start;
  8922. padding:0px 0px 0px 0px;
  8923. box-sizing:border-box;
  8924. width:100%;
  8925. }
  8926. #u144938_text {
  8927. border-width:0px;
  8928. white-space:nowrap;
  8929. text-transform:none;
  8930. }
  8931. #u144939_img {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:0px;
  8935. top:0px;
  8936. width:23px;
  8937. height:23px;
  8938. }
  8939. #u144939 {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:61px;
  8943. top:76px;
  8944. width:23px;
  8945. height:23px;
  8946. display:flex;
  8947. }
  8948. #u144939 .text {
  8949. position:absolute;
  8950. align-self:center;
  8951. padding:2px 2px 2px 2px;
  8952. box-sizing:border-box;
  8953. width:100%;
  8954. }
  8955. #u144939_text {
  8956. border-width:0px;
  8957. word-wrap:break-word;
  8958. text-transform:none;
  8959. visibility:hidden;
  8960. }
  8961. #u144940_img {
  8962. border-width:0px;
  8963. position:absolute;
  8964. left:0px;
  8965. top:0px;
  8966. width:23px;
  8967. height:23px;
  8968. }
  8969. #u144940 {
  8970. border-width:0px;
  8971. position:absolute;
  8972. left:986px;
  8973. top:76px;
  8974. width:23px;
  8975. height:23px;
  8976. display:flex;
  8977. }
  8978. #u144940 .text {
  8979. position:absolute;
  8980. align-self:center;
  8981. padding:2px 2px 2px 2px;
  8982. box-sizing:border-box;
  8983. width:100%;
  8984. }
  8985. #u144940_text {
  8986. border-width:0px;
  8987. word-wrap:break-word;
  8988. text-transform:none;
  8989. visibility:hidden;
  8990. }
  8991. #u144941_img {
  8992. border-width:0px;
  8993. position:absolute;
  8994. left:0px;
  8995. top:0px;
  8996. width:23px;
  8997. height:23px;
  8998. }
  8999. #u144941 {
  9000. border-width:0px;
  9001. position:absolute;
  9002. left:1444px;
  9003. top:76px;
  9004. width:23px;
  9005. height:23px;
  9006. display:flex;
  9007. }
  9008. #u144941 .text {
  9009. position:absolute;
  9010. align-self:center;
  9011. padding:2px 2px 2px 2px;
  9012. box-sizing:border-box;
  9013. width:100%;
  9014. }
  9015. #u144941_text {
  9016. border-width:0px;
  9017. word-wrap:break-word;
  9018. text-transform:none;
  9019. visibility:hidden;
  9020. }
  9021. #u144942_img {
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:0px;
  9025. top:0px;
  9026. width:23px;
  9027. height:23px;
  9028. }
  9029. #u144942 {
  9030. border-width:0px;
  9031. position:absolute;
  9032. left:1912px;
  9033. top:76px;
  9034. width:23px;
  9035. height:23px;
  9036. display:flex;
  9037. }
  9038. #u144942 .text {
  9039. position:absolute;
  9040. align-self:center;
  9041. padding:2px 2px 2px 2px;
  9042. box-sizing:border-box;
  9043. width:100%;
  9044. }
  9045. #u144942_text {
  9046. border-width:0px;
  9047. word-wrap:break-word;
  9048. text-transform:none;
  9049. visibility:hidden;
  9050. }
  9051. #u144943 {
  9052. border-width:0px;
  9053. position:absolute;
  9054. left:0px;
  9055. top:0px;
  9056. width:0px;
  9057. height:0px;
  9058. }
  9059. #u144944_div {
  9060. border-width:0px;
  9061. position:absolute;
  9062. left:0px;
  9063. top:0px;
  9064. width:375px;
  9065. height:50px;
  9066. background:inherit;
  9067. background-color:rgba(255, 255, 255, 1);
  9068. border:none;
  9069. border-radius:0px;
  9070. -moz-box-shadow:none;
  9071. -webkit-box-shadow:none;
  9072. box-shadow:none;
  9073. }
  9074. #u144944 {
  9075. border-width:0px;
  9076. position:absolute;
  9077. left:29px;
  9078. top:105px;
  9079. width:375px;
  9080. height:50px;
  9081. display:flex;
  9082. }
  9083. #u144944 .text {
  9084. position:absolute;
  9085. align-self:center;
  9086. padding:2px 2px 2px 2px;
  9087. box-sizing:border-box;
  9088. width:100%;
  9089. }
  9090. #u144944_text {
  9091. border-width:0px;
  9092. word-wrap:break-word;
  9093. text-transform:none;
  9094. visibility:hidden;
  9095. }
  9096. #u144945 {
  9097. border-width:0px;
  9098. position:absolute;
  9099. left:0px;
  9100. top:0px;
  9101. width:0px;
  9102. height:0px;
  9103. }
  9104. #u144946 {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:0px;
  9108. top:0px;
  9109. width:0px;
  9110. height:0px;
  9111. }
  9112. #u144947_div {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:0px;
  9116. top:0px;
  9117. width:280px;
  9118. height:30px;
  9119. background:inherit;
  9120. background-color:rgba(242, 242, 242, 1);
  9121. border:none;
  9122. border-radius:20px;
  9123. -moz-box-shadow:none;
  9124. -webkit-box-shadow:none;
  9125. box-shadow:none;
  9126. }
  9127. #u144947 {
  9128. border-width:0px;
  9129. position:absolute;
  9130. left:42px;
  9131. top:115px;
  9132. width:280px;
  9133. height:30px;
  9134. display:flex;
  9135. }
  9136. #u144947 .text {
  9137. position:absolute;
  9138. align-self:center;
  9139. padding:2px 2px 2px 2px;
  9140. box-sizing:border-box;
  9141. width:100%;
  9142. }
  9143. #u144947_text {
  9144. border-width:0px;
  9145. word-wrap:break-word;
  9146. text-transform:none;
  9147. visibility:hidden;
  9148. }
  9149. #u144948_input {
  9150. position:absolute;
  9151. left:0px;
  9152. top:0px;
  9153. width:252px;
  9154. height:22px;
  9155. padding:2px 2px 2px 2px;
  9156. font-family:'ArialMT', 'Arial', sans-serif;
  9157. font-weight:400;
  9158. font-style:normal;
  9159. font-size:12px;
  9160. letter-spacing:normal;
  9161. color:#7F7F7F;
  9162. vertical-align:none;
  9163. text-align:left;
  9164. text-transform:none;
  9165. background-color:transparent;
  9166. border-color:transparent;
  9167. }
  9168. #u144948_input.disabled {
  9169. position:absolute;
  9170. left:0px;
  9171. top:0px;
  9172. width:252px;
  9173. height:22px;
  9174. padding:2px 2px 2px 2px;
  9175. font-family:'ArialMT', 'Arial', sans-serif;
  9176. font-weight:400;
  9177. font-style:normal;
  9178. font-size:12px;
  9179. letter-spacing:normal;
  9180. color:#7F7F7F;
  9181. vertical-align:none;
  9182. text-align:left;
  9183. text-transform:none;
  9184. background-color:transparent;
  9185. border-color:transparent;
  9186. }
  9187. #u144948_div {
  9188. border-width:0px;
  9189. position:absolute;
  9190. left:0px;
  9191. top:0px;
  9192. width:252px;
  9193. height:22px;
  9194. background:inherit;
  9195. background-color:rgba(255, 255, 255, 0);
  9196. border:none;
  9197. border-radius:0px;
  9198. -moz-box-shadow:none;
  9199. -webkit-box-shadow:none;
  9200. box-shadow:none;
  9201. font-size:12px;
  9202. color:#7F7F7F;
  9203. }
  9204. #u144948 {
  9205. border-width:0px;
  9206. position:absolute;
  9207. left:56px;
  9208. top:119px;
  9209. width:252px;
  9210. height:22px;
  9211. display:flex;
  9212. font-size:12px;
  9213. color:#7F7F7F;
  9214. }
  9215. #u144948 .text {
  9216. position:absolute;
  9217. align-self:flex-start;
  9218. padding:2px 2px 2px 2px;
  9219. box-sizing:border-box;
  9220. width:100%;
  9221. }
  9222. #u144948_div.disabled {
  9223. border-width:0px;
  9224. position:absolute;
  9225. left:0px;
  9226. top:0px;
  9227. width:252px;
  9228. height:22px;
  9229. background:inherit;
  9230. background-color:rgba(240, 240, 240, 1);
  9231. border:none;
  9232. border-radius:0px;
  9233. -moz-box-shadow:none;
  9234. -webkit-box-shadow:none;
  9235. box-shadow:none;
  9236. font-size:12px;
  9237. color:#7F7F7F;
  9238. }
  9239. #u144948.disabled {
  9240. }
  9241. .u144948_input_option {
  9242. font-size:12px;
  9243. }
  9244. #u144949_div {
  9245. border-width:0px;
  9246. position:absolute;
  9247. left:0px;
  9248. top:0px;
  9249. width:64px;
  9250. height:30px;
  9251. background:inherit;
  9252. background-color:rgba(255, 255, 255, 0);
  9253. border:none;
  9254. border-left:0px;
  9255. border-top:0px;
  9256. border-right:0px;
  9257. border-radius:0px;
  9258. border-bottom-right-radius:0px;
  9259. border-bottom-left-radius:0px;
  9260. -moz-box-shadow:none;
  9261. -webkit-box-shadow:none;
  9262. box-shadow:none;
  9263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9264. font-weight:400;
  9265. font-style:normal;
  9266. font-size:12px;
  9267. color:#1890FF;
  9268. line-height:30px;
  9269. }
  9270. #u144949 {
  9271. border-width:0px;
  9272. position:absolute;
  9273. left:332px;
  9274. top:115px;
  9275. width:64px;
  9276. height:30px;
  9277. display:flex;
  9278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9279. font-weight:400;
  9280. font-style:normal;
  9281. font-size:12px;
  9282. color:#1890FF;
  9283. line-height:30px;
  9284. }
  9285. #u144949 .text {
  9286. position:absolute;
  9287. align-self:flex-start;
  9288. padding:0px 0px 0px 0px;
  9289. box-sizing:border-box;
  9290. width:100%;
  9291. }
  9292. #u144949_text {
  9293. border-width:0px;
  9294. white-space:nowrap;
  9295. text-transform:none;
  9296. }
  9297. #u144950 {
  9298. border-width:0px;
  9299. position:absolute;
  9300. left:0px;
  9301. top:0px;
  9302. width:0px;
  9303. height:0px;
  9304. }
  9305. #u144951_div {
  9306. border-width:0px;
  9307. position:absolute;
  9308. left:0px;
  9309. top:0px;
  9310. width:375px;
  9311. height:41px;
  9312. background:inherit;
  9313. background-color:rgba(255, 255, 255, 1);
  9314. border:none;
  9315. border-radius:0px;
  9316. -moz-box-shadow:none;
  9317. -webkit-box-shadow:none;
  9318. box-shadow:none;
  9319. }
  9320. #u144951 {
  9321. border-width:0px;
  9322. position:absolute;
  9323. left:29px;
  9324. top:155px;
  9325. width:375px;
  9326. height:41px;
  9327. display:flex;
  9328. }
  9329. #u144951 .text {
  9330. position:absolute;
  9331. align-self:center;
  9332. padding:2px 2px 2px 2px;
  9333. box-sizing:border-box;
  9334. width:100%;
  9335. }
  9336. #u144951_text {
  9337. border-width:0px;
  9338. word-wrap:break-word;
  9339. text-transform:none;
  9340. visibility:hidden;
  9341. }
  9342. #u144952_div {
  9343. border-width:0px;
  9344. position:absolute;
  9345. left:0px;
  9346. top:0px;
  9347. width:37px;
  9348. height:40px;
  9349. background:inherit;
  9350. background-color:rgba(255, 255, 255, 0);
  9351. border:none;
  9352. border-left:0px;
  9353. border-top:0px;
  9354. border-right:0px;
  9355. border-radius:0px;
  9356. border-bottom-right-radius:0px;
  9357. border-bottom-left-radius:0px;
  9358. -moz-box-shadow:none;
  9359. -webkit-box-shadow:none;
  9360. box-shadow:none;
  9361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9362. font-weight:400;
  9363. font-style:normal;
  9364. font-size:12px;
  9365. text-align:center;
  9366. }
  9367. #u144952 {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:110px;
  9371. top:155px;
  9372. width:37px;
  9373. height:40px;
  9374. display:flex;
  9375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:12px;
  9379. text-align:center;
  9380. }
  9381. #u144952 .text {
  9382. position:absolute;
  9383. align-self:center;
  9384. padding:0px 0px 0px 0px;
  9385. box-sizing:border-box;
  9386. width:100%;
  9387. }
  9388. #u144952_text {
  9389. border-width:0px;
  9390. white-space:nowrap;
  9391. text-transform:none;
  9392. }
  9393. #u144953_div {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:0px;
  9397. top:0px;
  9398. width:37px;
  9399. height:40px;
  9400. background:inherit;
  9401. background-color:rgba(255, 255, 255, 0);
  9402. border:none;
  9403. border-left:0px;
  9404. border-top:0px;
  9405. border-right:0px;
  9406. border-radius:0px;
  9407. border-bottom-right-radius:0px;
  9408. border-bottom-left-radius:0px;
  9409. -moz-box-shadow:none;
  9410. -webkit-box-shadow:none;
  9411. box-shadow:none;
  9412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9413. font-weight:400;
  9414. font-style:normal;
  9415. font-size:12px;
  9416. color:#000000;
  9417. text-align:center;
  9418. }
  9419. #u144953 {
  9420. border-width:0px;
  9421. position:absolute;
  9422. left:176px;
  9423. top:155px;
  9424. width:37px;
  9425. height:40px;
  9426. display:flex;
  9427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9428. font-weight:400;
  9429. font-style:normal;
  9430. font-size:12px;
  9431. color:#000000;
  9432. text-align:center;
  9433. }
  9434. #u144953 .text {
  9435. position:absolute;
  9436. align-self:center;
  9437. padding:0px 0px 0px 0px;
  9438. box-sizing:border-box;
  9439. width:100%;
  9440. }
  9441. #u144953_text {
  9442. border-width:0px;
  9443. white-space:nowrap;
  9444. text-transform:none;
  9445. }
  9446. #u144954_div {
  9447. border-width:0px;
  9448. position:absolute;
  9449. left:0px;
  9450. top:0px;
  9451. width:37px;
  9452. height:40px;
  9453. background:inherit;
  9454. background-color:rgba(255, 255, 255, 0);
  9455. border:none;
  9456. border-left:0px;
  9457. border-top:0px;
  9458. border-right:0px;
  9459. border-radius:0px;
  9460. border-bottom-right-radius:0px;
  9461. border-bottom-left-radius:0px;
  9462. -moz-box-shadow:none;
  9463. -webkit-box-shadow:none;
  9464. box-shadow:none;
  9465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9466. font-weight:400;
  9467. font-style:normal;
  9468. font-size:12px;
  9469. color:#000000;
  9470. text-align:center;
  9471. }
  9472. #u144954 {
  9473. border-width:0px;
  9474. position:absolute;
  9475. left:241px;
  9476. top:155px;
  9477. width:37px;
  9478. height:40px;
  9479. display:flex;
  9480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9481. font-weight:400;
  9482. font-style:normal;
  9483. font-size:12px;
  9484. color:#000000;
  9485. text-align:center;
  9486. }
  9487. #u144954 .text {
  9488. position:absolute;
  9489. align-self:center;
  9490. padding:0px 0px 0px 0px;
  9491. box-sizing:border-box;
  9492. width:100%;
  9493. }
  9494. #u144954_text {
  9495. border-width:0px;
  9496. white-space:nowrap;
  9497. text-transform:none;
  9498. }
  9499. #u144955_div {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:0px;
  9503. top:0px;
  9504. width:37px;
  9505. height:40px;
  9506. background:inherit;
  9507. background-color:rgba(255, 255, 255, 0);
  9508. box-sizing:border-box;
  9509. border-width:2px;
  9510. border-style:solid;
  9511. border-color:rgba(41, 143, 255, 1);
  9512. border-left:0px;
  9513. border-top:0px;
  9514. border-right:0px;
  9515. border-radius:0px;
  9516. border-bottom-right-radius:0px;
  9517. border-bottom-left-radius:0px;
  9518. -moz-box-shadow:none;
  9519. -webkit-box-shadow:none;
  9520. box-shadow:none;
  9521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9522. font-weight:400;
  9523. font-style:normal;
  9524. font-size:12px;
  9525. color:#1890FF;
  9526. text-align:center;
  9527. }
  9528. #u144955 {
  9529. border-width:0px;
  9530. position:absolute;
  9531. left:45px;
  9532. top:155px;
  9533. width:37px;
  9534. height:40px;
  9535. display:flex;
  9536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9537. font-weight:400;
  9538. font-style:normal;
  9539. font-size:12px;
  9540. color:#1890FF;
  9541. text-align:center;
  9542. }
  9543. #u144955 .text {
  9544. position:absolute;
  9545. align-self:center;
  9546. padding:0px 0px 0px 0px;
  9547. box-sizing:border-box;
  9548. width:100%;
  9549. }
  9550. #u144955_text {
  9551. border-width:0px;
  9552. white-space:nowrap;
  9553. text-transform:none;
  9554. }
  9555. #u144956_div {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:0px;
  9559. top:0px;
  9560. width:11px;
  9561. height:11px;
  9562. background:inherit;
  9563. background-color:rgba(217, 0, 27, 1);
  9564. border:none;
  9565. border-radius:7px;
  9566. -moz-box-shadow:none;
  9567. -webkit-box-shadow:none;
  9568. box-shadow:none;
  9569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9570. font-weight:400;
  9571. font-style:normal;
  9572. font-size:8px;
  9573. color:#FFFFFF;
  9574. text-align:center;
  9575. }
  9576. #u144956 {
  9577. border-width:0px;
  9578. position:absolute;
  9579. left:79px;
  9580. top:159px;
  9581. width:11px;
  9582. height:11px;
  9583. display:flex;
  9584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9585. font-weight:400;
  9586. font-style:normal;
  9587. font-size:8px;
  9588. color:#FFFFFF;
  9589. text-align:center;
  9590. }
  9591. #u144956 .text {
  9592. position:absolute;
  9593. align-self:flex-start;
  9594. padding:0px 0px 0px 0px;
  9595. box-sizing:border-box;
  9596. width:100%;
  9597. }
  9598. #u144956_text {
  9599. border-width:0px;
  9600. word-wrap:break-word;
  9601. text-transform:none;
  9602. }
  9603. #u144957_div {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:0px;
  9607. top:0px;
  9608. width:37px;
  9609. height:40px;
  9610. background:inherit;
  9611. background-color:rgba(255, 255, 255, 0);
  9612. border:none;
  9613. border-left:0px;
  9614. border-top:0px;
  9615. border-right:0px;
  9616. border-radius:0px;
  9617. border-bottom-right-radius:0px;
  9618. border-bottom-left-radius:0px;
  9619. -moz-box-shadow:none;
  9620. -webkit-box-shadow:none;
  9621. box-shadow:none;
  9622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9623. font-weight:400;
  9624. font-style:normal;
  9625. font-size:12px;
  9626. color:#000000;
  9627. text-align:center;
  9628. }
  9629. #u144957 {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:308px;
  9633. top:155px;
  9634. width:37px;
  9635. height:40px;
  9636. display:flex;
  9637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9638. font-weight:400;
  9639. font-style:normal;
  9640. font-size:12px;
  9641. color:#000000;
  9642. text-align:center;
  9643. }
  9644. #u144957 .text {
  9645. position:absolute;
  9646. align-self:center;
  9647. padding:0px 0px 0px 0px;
  9648. box-sizing:border-box;
  9649. width:100%;
  9650. }
  9651. #u144957_text {
  9652. border-width:0px;
  9653. white-space:nowrap;
  9654. text-transform:none;
  9655. }
  9656. #u144958 {
  9657. border-width:0px;
  9658. position:absolute;
  9659. left:0px;
  9660. top:0px;
  9661. width:0px;
  9662. height:0px;
  9663. }
  9664. #u144959_div {
  9665. border-width:0px;
  9666. position:absolute;
  9667. left:0px;
  9668. top:0px;
  9669. width:375px;
  9670. height:50px;
  9671. background:inherit;
  9672. background-color:rgba(255, 255, 255, 1);
  9673. border:none;
  9674. border-radius:0px;
  9675. -moz-box-shadow:none;
  9676. -webkit-box-shadow:none;
  9677. box-shadow:none;
  9678. }
  9679. #u144959 {
  9680. border-width:0px;
  9681. position:absolute;
  9682. left:486px;
  9683. top:105px;
  9684. width:375px;
  9685. height:50px;
  9686. display:flex;
  9687. }
  9688. #u144959 .text {
  9689. position:absolute;
  9690. align-self:center;
  9691. padding:2px 2px 2px 2px;
  9692. box-sizing:border-box;
  9693. width:100%;
  9694. }
  9695. #u144959_text {
  9696. border-width:0px;
  9697. word-wrap:break-word;
  9698. text-transform:none;
  9699. visibility:hidden;
  9700. }
  9701. #u144960 {
  9702. border-width:0px;
  9703. position:absolute;
  9704. left:0px;
  9705. top:0px;
  9706. width:0px;
  9707. height:0px;
  9708. }
  9709. #u144961 {
  9710. border-width:0px;
  9711. position:absolute;
  9712. left:0px;
  9713. top:0px;
  9714. width:0px;
  9715. height:0px;
  9716. }
  9717. #u144962_div {
  9718. border-width:0px;
  9719. position:absolute;
  9720. left:0px;
  9721. top:0px;
  9722. width:280px;
  9723. height:30px;
  9724. background:inherit;
  9725. background-color:rgba(242, 242, 242, 1);
  9726. border:none;
  9727. border-radius:20px;
  9728. -moz-box-shadow:none;
  9729. -webkit-box-shadow:none;
  9730. box-shadow:none;
  9731. }
  9732. #u144962 {
  9733. border-width:0px;
  9734. position:absolute;
  9735. left:499px;
  9736. top:115px;
  9737. width:280px;
  9738. height:30px;
  9739. display:flex;
  9740. }
  9741. #u144962 .text {
  9742. position:absolute;
  9743. align-self:center;
  9744. padding:2px 2px 2px 2px;
  9745. box-sizing:border-box;
  9746. width:100%;
  9747. }
  9748. #u144962_text {
  9749. border-width:0px;
  9750. word-wrap:break-word;
  9751. text-transform:none;
  9752. visibility:hidden;
  9753. }
  9754. #u144963_input {
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:252px;
  9759. height:22px;
  9760. padding:2px 2px 2px 2px;
  9761. font-family:'ArialMT', 'Arial', sans-serif;
  9762. font-weight:400;
  9763. font-style:normal;
  9764. font-size:12px;
  9765. letter-spacing:normal;
  9766. color:#7F7F7F;
  9767. vertical-align:none;
  9768. text-align:left;
  9769. text-transform:none;
  9770. background-color:transparent;
  9771. border-color:transparent;
  9772. }
  9773. #u144963_input.disabled {
  9774. position:absolute;
  9775. left:0px;
  9776. top:0px;
  9777. width:252px;
  9778. height:22px;
  9779. padding:2px 2px 2px 2px;
  9780. font-family:'ArialMT', 'Arial', sans-serif;
  9781. font-weight:400;
  9782. font-style:normal;
  9783. font-size:12px;
  9784. letter-spacing:normal;
  9785. color:#7F7F7F;
  9786. vertical-align:none;
  9787. text-align:left;
  9788. text-transform:none;
  9789. background-color:transparent;
  9790. border-color:transparent;
  9791. }
  9792. #u144963_div {
  9793. border-width:0px;
  9794. position:absolute;
  9795. left:0px;
  9796. top:0px;
  9797. width:252px;
  9798. height:22px;
  9799. background:inherit;
  9800. background-color:rgba(255, 255, 255, 0);
  9801. border:none;
  9802. border-radius:0px;
  9803. -moz-box-shadow:none;
  9804. -webkit-box-shadow:none;
  9805. box-shadow:none;
  9806. font-size:12px;
  9807. color:#7F7F7F;
  9808. }
  9809. #u144963 {
  9810. border-width:0px;
  9811. position:absolute;
  9812. left:513px;
  9813. top:119px;
  9814. width:252px;
  9815. height:22px;
  9816. display:flex;
  9817. font-size:12px;
  9818. color:#7F7F7F;
  9819. }
  9820. #u144963 .text {
  9821. position:absolute;
  9822. align-self:flex-start;
  9823. padding:2px 2px 2px 2px;
  9824. box-sizing:border-box;
  9825. width:100%;
  9826. }
  9827. #u144963_div.disabled {
  9828. border-width:0px;
  9829. position:absolute;
  9830. left:0px;
  9831. top:0px;
  9832. width:252px;
  9833. height:22px;
  9834. background:inherit;
  9835. background-color:rgba(240, 240, 240, 1);
  9836. border:none;
  9837. border-radius:0px;
  9838. -moz-box-shadow:none;
  9839. -webkit-box-shadow:none;
  9840. box-shadow:none;
  9841. font-size:12px;
  9842. color:#7F7F7F;
  9843. }
  9844. #u144963.disabled {
  9845. }
  9846. .u144963_input_option {
  9847. font-size:12px;
  9848. }
  9849. #u144964_div {
  9850. border-width:0px;
  9851. position:absolute;
  9852. left:0px;
  9853. top:0px;
  9854. width:64px;
  9855. height:30px;
  9856. background:inherit;
  9857. background-color:rgba(255, 255, 255, 0);
  9858. border:none;
  9859. border-left:0px;
  9860. border-top:0px;
  9861. border-right:0px;
  9862. border-radius:0px;
  9863. border-bottom-right-radius:0px;
  9864. border-bottom-left-radius:0px;
  9865. -moz-box-shadow:none;
  9866. -webkit-box-shadow:none;
  9867. box-shadow:none;
  9868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9869. font-weight:400;
  9870. font-style:normal;
  9871. font-size:12px;
  9872. color:#1890FF;
  9873. line-height:30px;
  9874. }
  9875. #u144964 {
  9876. border-width:0px;
  9877. position:absolute;
  9878. left:789px;
  9879. top:115px;
  9880. width:64px;
  9881. height:30px;
  9882. display:flex;
  9883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9884. font-weight:400;
  9885. font-style:normal;
  9886. font-size:12px;
  9887. color:#1890FF;
  9888. line-height:30px;
  9889. }
  9890. #u144964 .text {
  9891. position:absolute;
  9892. align-self:flex-start;
  9893. padding:0px 0px 0px 0px;
  9894. box-sizing:border-box;
  9895. width:100%;
  9896. }
  9897. #u144964_text {
  9898. border-width:0px;
  9899. white-space:nowrap;
  9900. text-transform:none;
  9901. }
  9902. #u144965 {
  9903. border-width:0px;
  9904. position:absolute;
  9905. left:0px;
  9906. top:0px;
  9907. width:0px;
  9908. height:0px;
  9909. }
  9910. #u144966_div {
  9911. border-width:0px;
  9912. position:absolute;
  9913. left:0px;
  9914. top:0px;
  9915. width:375px;
  9916. height:41px;
  9917. background:inherit;
  9918. background-color:rgba(255, 255, 255, 1);
  9919. border:none;
  9920. border-radius:0px;
  9921. -moz-box-shadow:none;
  9922. -webkit-box-shadow:none;
  9923. box-shadow:none;
  9924. }
  9925. #u144966 {
  9926. border-width:0px;
  9927. position:absolute;
  9928. left:486px;
  9929. top:155px;
  9930. width:375px;
  9931. height:41px;
  9932. display:flex;
  9933. }
  9934. #u144966 .text {
  9935. position:absolute;
  9936. align-self:center;
  9937. padding:2px 2px 2px 2px;
  9938. box-sizing:border-box;
  9939. width:100%;
  9940. }
  9941. #u144966_text {
  9942. border-width:0px;
  9943. word-wrap:break-word;
  9944. text-transform:none;
  9945. visibility:hidden;
  9946. }
  9947. #u144967_div {
  9948. border-width:0px;
  9949. position:absolute;
  9950. left:0px;
  9951. top:0px;
  9952. width:37px;
  9953. height:40px;
  9954. background:inherit;
  9955. background-color:rgba(255, 255, 255, 0);
  9956. box-sizing:border-box;
  9957. border-width:2px;
  9958. border-style:solid;
  9959. border-color:rgba(41, 143, 255, 1);
  9960. border-left:0px;
  9961. border-top:0px;
  9962. border-right:0px;
  9963. border-radius:0px;
  9964. border-bottom-right-radius:0px;
  9965. border-bottom-left-radius:0px;
  9966. -moz-box-shadow:none;
  9967. -webkit-box-shadow:none;
  9968. box-shadow:none;
  9969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9970. font-weight:400;
  9971. font-style:normal;
  9972. font-size:12px;
  9973. color:#298FFF;
  9974. text-align:center;
  9975. }
  9976. #u144967 {
  9977. border-width:0px;
  9978. position:absolute;
  9979. left:567px;
  9980. top:155px;
  9981. width:37px;
  9982. height:40px;
  9983. display:flex;
  9984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9985. font-weight:400;
  9986. font-style:normal;
  9987. font-size:12px;
  9988. color:#298FFF;
  9989. text-align:center;
  9990. }
  9991. #u144967 .text {
  9992. position:absolute;
  9993. align-self:center;
  9994. padding:0px 0px 0px 0px;
  9995. box-sizing:border-box;
  9996. width:100%;
  9997. }
  9998. #u144967_text {
  9999. border-width:0px;
  10000. white-space:nowrap;
  10001. text-transform:none;
  10002. }
  10003. #u144968_div {
  10004. border-width:0px;
  10005. position:absolute;
  10006. left:0px;
  10007. top:0px;
  10008. width:37px;
  10009. height:40px;
  10010. background:inherit;
  10011. background-color:rgba(255, 255, 255, 0);
  10012. border:none;
  10013. border-left:0px;
  10014. border-top:0px;
  10015. border-right:0px;
  10016. border-radius:0px;
  10017. border-bottom-right-radius:0px;
  10018. border-bottom-left-radius:0px;
  10019. -moz-box-shadow:none;
  10020. -webkit-box-shadow:none;
  10021. box-shadow:none;
  10022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10023. font-weight:400;
  10024. font-style:normal;
  10025. font-size:12px;
  10026. color:#000000;
  10027. text-align:center;
  10028. }
  10029. #u144968 {
  10030. border-width:0px;
  10031. position:absolute;
  10032. left:633px;
  10033. top:155px;
  10034. width:37px;
  10035. height:40px;
  10036. display:flex;
  10037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10038. font-weight:400;
  10039. font-style:normal;
  10040. font-size:12px;
  10041. color:#000000;
  10042. text-align:center;
  10043. }
  10044. #u144968 .text {
  10045. position:absolute;
  10046. align-self:center;
  10047. padding:0px 0px 0px 0px;
  10048. box-sizing:border-box;
  10049. width:100%;
  10050. }
  10051. #u144968_text {
  10052. border-width:0px;
  10053. white-space:nowrap;
  10054. text-transform:none;
  10055. }
  10056. #u144969_div {
  10057. border-width:0px;
  10058. position:absolute;
  10059. left:0px;
  10060. top:0px;
  10061. width:37px;
  10062. height:40px;
  10063. background:inherit;
  10064. background-color:rgba(255, 255, 255, 0);
  10065. border:none;
  10066. border-left:0px;
  10067. border-top:0px;
  10068. border-right:0px;
  10069. border-radius:0px;
  10070. border-bottom-right-radius:0px;
  10071. border-bottom-left-radius:0px;
  10072. -moz-box-shadow:none;
  10073. -webkit-box-shadow:none;
  10074. box-shadow:none;
  10075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10076. font-weight:400;
  10077. font-style:normal;
  10078. font-size:12px;
  10079. color:#000000;
  10080. text-align:center;
  10081. }
  10082. #u144969 {
  10083. border-width:0px;
  10084. position:absolute;
  10085. left:698px;
  10086. top:155px;
  10087. width:37px;
  10088. height:40px;
  10089. display:flex;
  10090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10091. font-weight:400;
  10092. font-style:normal;
  10093. font-size:12px;
  10094. color:#000000;
  10095. text-align:center;
  10096. }
  10097. #u144969 .text {
  10098. position:absolute;
  10099. align-self:center;
  10100. padding:0px 0px 0px 0px;
  10101. box-sizing:border-box;
  10102. width:100%;
  10103. }
  10104. #u144969_text {
  10105. border-width:0px;
  10106. white-space:nowrap;
  10107. text-transform:none;
  10108. }
  10109. #u144970_div {
  10110. border-width:0px;
  10111. position:absolute;
  10112. left:0px;
  10113. top:0px;
  10114. width:37px;
  10115. height:40px;
  10116. background:inherit;
  10117. background-color:rgba(255, 255, 255, 0);
  10118. border:none;
  10119. border-left:0px;
  10120. border-top:0px;
  10121. border-right:0px;
  10122. border-radius:0px;
  10123. border-bottom-right-radius:0px;
  10124. border-bottom-left-radius:0px;
  10125. -moz-box-shadow:none;
  10126. -webkit-box-shadow:none;
  10127. box-shadow:none;
  10128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10129. font-weight:400;
  10130. font-style:normal;
  10131. font-size:12px;
  10132. text-align:center;
  10133. }
  10134. #u144970 {
  10135. border-width:0px;
  10136. position:absolute;
  10137. left:502px;
  10138. top:155px;
  10139. width:37px;
  10140. height:40px;
  10141. display:flex;
  10142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10143. font-weight:400;
  10144. font-style:normal;
  10145. font-size:12px;
  10146. text-align:center;
  10147. }
  10148. #u144970 .text {
  10149. position:absolute;
  10150. align-self:center;
  10151. padding:0px 0px 0px 0px;
  10152. box-sizing:border-box;
  10153. width:100%;
  10154. }
  10155. #u144970_text {
  10156. border-width:0px;
  10157. white-space:nowrap;
  10158. text-transform:none;
  10159. }
  10160. #u144971_div {
  10161. border-width:0px;
  10162. position:absolute;
  10163. left:0px;
  10164. top:0px;
  10165. width:11px;
  10166. height:11px;
  10167. background:inherit;
  10168. background-color:rgba(217, 0, 27, 1);
  10169. border:none;
  10170. border-radius:7px;
  10171. -moz-box-shadow:none;
  10172. -webkit-box-shadow:none;
  10173. box-shadow:none;
  10174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10175. font-weight:400;
  10176. font-style:normal;
  10177. font-size:8px;
  10178. color:#FFFFFF;
  10179. text-align:center;
  10180. }
  10181. #u144971 {
  10182. border-width:0px;
  10183. position:absolute;
  10184. left:536px;
  10185. top:159px;
  10186. width:11px;
  10187. height:11px;
  10188. display:flex;
  10189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10190. font-weight:400;
  10191. font-style:normal;
  10192. font-size:8px;
  10193. color:#FFFFFF;
  10194. text-align:center;
  10195. }
  10196. #u144971 .text {
  10197. position:absolute;
  10198. align-self:flex-start;
  10199. padding:0px 0px 0px 0px;
  10200. box-sizing:border-box;
  10201. width:100%;
  10202. }
  10203. #u144971_text {
  10204. border-width:0px;
  10205. word-wrap:break-word;
  10206. text-transform:none;
  10207. }
  10208. #u144972_div {
  10209. border-width:0px;
  10210. position:absolute;
  10211. left:0px;
  10212. top:0px;
  10213. width:37px;
  10214. height:40px;
  10215. background:inherit;
  10216. background-color:rgba(255, 255, 255, 0);
  10217. border:none;
  10218. border-left:0px;
  10219. border-top:0px;
  10220. border-right:0px;
  10221. border-radius:0px;
  10222. border-bottom-right-radius:0px;
  10223. border-bottom-left-radius:0px;
  10224. -moz-box-shadow:none;
  10225. -webkit-box-shadow:none;
  10226. box-shadow:none;
  10227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10228. font-weight:400;
  10229. font-style:normal;
  10230. font-size:12px;
  10231. color:#000000;
  10232. text-align:center;
  10233. }
  10234. #u144972 {
  10235. border-width:0px;
  10236. position:absolute;
  10237. left:765px;
  10238. top:155px;
  10239. width:37px;
  10240. height:40px;
  10241. display:flex;
  10242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10243. font-weight:400;
  10244. font-style:normal;
  10245. font-size:12px;
  10246. color:#000000;
  10247. text-align:center;
  10248. }
  10249. #u144972 .text {
  10250. position:absolute;
  10251. align-self:center;
  10252. padding:0px 0px 0px 0px;
  10253. box-sizing:border-box;
  10254. width:100%;
  10255. }
  10256. #u144972_text {
  10257. border-width:0px;
  10258. white-space:nowrap;
  10259. text-transform:none;
  10260. }
  10261. #u144973 {
  10262. border-width:0px;
  10263. position:absolute;
  10264. left:0px;
  10265. top:0px;
  10266. width:0px;
  10267. height:0px;
  10268. }
  10269. #u144974_div {
  10270. border-width:0px;
  10271. position:absolute;
  10272. left:0px;
  10273. top:0px;
  10274. width:375px;
  10275. height:50px;
  10276. background:inherit;
  10277. background-color:rgba(255, 255, 255, 1);
  10278. border:none;
  10279. border-radius:0px;
  10280. -moz-box-shadow:none;
  10281. -webkit-box-shadow:none;
  10282. box-shadow:none;
  10283. }
  10284. #u144974 {
  10285. border-width:0px;
  10286. position:absolute;
  10287. left:947px;
  10288. top:105px;
  10289. width:375px;
  10290. height:50px;
  10291. display:flex;
  10292. }
  10293. #u144974 .text {
  10294. position:absolute;
  10295. align-self:center;
  10296. padding:2px 2px 2px 2px;
  10297. box-sizing:border-box;
  10298. width:100%;
  10299. }
  10300. #u144974_text {
  10301. border-width:0px;
  10302. word-wrap:break-word;
  10303. text-transform:none;
  10304. visibility:hidden;
  10305. }
  10306. #u144975 {
  10307. border-width:0px;
  10308. position:absolute;
  10309. left:0px;
  10310. top:0px;
  10311. width:0px;
  10312. height:0px;
  10313. }
  10314. #u144976 {
  10315. border-width:0px;
  10316. position:absolute;
  10317. left:0px;
  10318. top:0px;
  10319. width:0px;
  10320. height:0px;
  10321. }
  10322. #u144977_div {
  10323. border-width:0px;
  10324. position:absolute;
  10325. left:0px;
  10326. top:0px;
  10327. width:280px;
  10328. height:30px;
  10329. background:inherit;
  10330. background-color:rgba(242, 242, 242, 1);
  10331. border:none;
  10332. border-radius:20px;
  10333. -moz-box-shadow:none;
  10334. -webkit-box-shadow:none;
  10335. box-shadow:none;
  10336. }
  10337. #u144977 {
  10338. border-width:0px;
  10339. position:absolute;
  10340. left:960px;
  10341. top:115px;
  10342. width:280px;
  10343. height:30px;
  10344. display:flex;
  10345. }
  10346. #u144977 .text {
  10347. position:absolute;
  10348. align-self:center;
  10349. padding:2px 2px 2px 2px;
  10350. box-sizing:border-box;
  10351. width:100%;
  10352. }
  10353. #u144977_text {
  10354. border-width:0px;
  10355. word-wrap:break-word;
  10356. text-transform:none;
  10357. visibility:hidden;
  10358. }
  10359. #u144978_input {
  10360. position:absolute;
  10361. left:0px;
  10362. top:0px;
  10363. width:252px;
  10364. height:22px;
  10365. padding:2px 2px 2px 2px;
  10366. font-family:'ArialMT', 'Arial', sans-serif;
  10367. font-weight:400;
  10368. font-style:normal;
  10369. font-size:12px;
  10370. letter-spacing:normal;
  10371. color:#7F7F7F;
  10372. vertical-align:none;
  10373. text-align:left;
  10374. text-transform:none;
  10375. background-color:transparent;
  10376. border-color:transparent;
  10377. }
  10378. #u144978_input.disabled {
  10379. position:absolute;
  10380. left:0px;
  10381. top:0px;
  10382. width:252px;
  10383. height:22px;
  10384. padding:2px 2px 2px 2px;
  10385. font-family:'ArialMT', 'Arial', sans-serif;
  10386. font-weight:400;
  10387. font-style:normal;
  10388. font-size:12px;
  10389. letter-spacing:normal;
  10390. color:#7F7F7F;
  10391. vertical-align:none;
  10392. text-align:left;
  10393. text-transform:none;
  10394. background-color:transparent;
  10395. border-color:transparent;
  10396. }
  10397. #u144978_div {
  10398. border-width:0px;
  10399. position:absolute;
  10400. left:0px;
  10401. top:0px;
  10402. width:252px;
  10403. height:22px;
  10404. background:inherit;
  10405. background-color:rgba(255, 255, 255, 0);
  10406. border:none;
  10407. border-radius:0px;
  10408. -moz-box-shadow:none;
  10409. -webkit-box-shadow:none;
  10410. box-shadow:none;
  10411. font-size:12px;
  10412. color:#7F7F7F;
  10413. }
  10414. #u144978 {
  10415. border-width:0px;
  10416. position:absolute;
  10417. left:974px;
  10418. top:119px;
  10419. width:252px;
  10420. height:22px;
  10421. display:flex;
  10422. font-size:12px;
  10423. color:#7F7F7F;
  10424. }
  10425. #u144978 .text {
  10426. position:absolute;
  10427. align-self:flex-start;
  10428. padding:2px 2px 2px 2px;
  10429. box-sizing:border-box;
  10430. width:100%;
  10431. }
  10432. #u144978_div.disabled {
  10433. border-width:0px;
  10434. position:absolute;
  10435. left:0px;
  10436. top:0px;
  10437. width:252px;
  10438. height:22px;
  10439. background:inherit;
  10440. background-color:rgba(240, 240, 240, 1);
  10441. border:none;
  10442. border-radius:0px;
  10443. -moz-box-shadow:none;
  10444. -webkit-box-shadow:none;
  10445. box-shadow:none;
  10446. font-size:12px;
  10447. color:#7F7F7F;
  10448. }
  10449. #u144978.disabled {
  10450. }
  10451. .u144978_input_option {
  10452. font-size:12px;
  10453. }
  10454. #u144979_div {
  10455. border-width:0px;
  10456. position:absolute;
  10457. left:0px;
  10458. top:0px;
  10459. width:64px;
  10460. height:30px;
  10461. background:inherit;
  10462. background-color:rgba(255, 255, 255, 0);
  10463. border:none;
  10464. border-left:0px;
  10465. border-top:0px;
  10466. border-right:0px;
  10467. border-radius:0px;
  10468. border-bottom-right-radius:0px;
  10469. border-bottom-left-radius:0px;
  10470. -moz-box-shadow:none;
  10471. -webkit-box-shadow:none;
  10472. box-shadow:none;
  10473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10474. font-weight:400;
  10475. font-style:normal;
  10476. font-size:12px;
  10477. color:#1890FF;
  10478. line-height:30px;
  10479. }
  10480. #u144979 {
  10481. border-width:0px;
  10482. position:absolute;
  10483. left:1250px;
  10484. top:115px;
  10485. width:64px;
  10486. height:30px;
  10487. display:flex;
  10488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10489. font-weight:400;
  10490. font-style:normal;
  10491. font-size:12px;
  10492. color:#1890FF;
  10493. line-height:30px;
  10494. }
  10495. #u144979 .text {
  10496. position:absolute;
  10497. align-self:flex-start;
  10498. padding:0px 0px 0px 0px;
  10499. box-sizing:border-box;
  10500. width:100%;
  10501. }
  10502. #u144979_text {
  10503. border-width:0px;
  10504. white-space:nowrap;
  10505. text-transform:none;
  10506. }
  10507. #u144980 {
  10508. border-width:0px;
  10509. position:absolute;
  10510. left:0px;
  10511. top:0px;
  10512. width:0px;
  10513. height:0px;
  10514. }
  10515. #u144981_div {
  10516. border-width:0px;
  10517. position:absolute;
  10518. left:0px;
  10519. top:0px;
  10520. width:375px;
  10521. height:41px;
  10522. background:inherit;
  10523. background-color:rgba(255, 255, 255, 1);
  10524. border:none;
  10525. border-radius:0px;
  10526. -moz-box-shadow:none;
  10527. -webkit-box-shadow:none;
  10528. box-shadow:none;
  10529. }
  10530. #u144981 {
  10531. border-width:0px;
  10532. position:absolute;
  10533. left:947px;
  10534. top:155px;
  10535. width:375px;
  10536. height:41px;
  10537. display:flex;
  10538. }
  10539. #u144981 .text {
  10540. position:absolute;
  10541. align-self:center;
  10542. padding:2px 2px 2px 2px;
  10543. box-sizing:border-box;
  10544. width:100%;
  10545. }
  10546. #u144981_text {
  10547. border-width:0px;
  10548. word-wrap:break-word;
  10549. text-transform:none;
  10550. visibility:hidden;
  10551. }
  10552. #u144982_div {
  10553. border-width:0px;
  10554. position:absolute;
  10555. left:0px;
  10556. top:0px;
  10557. width:37px;
  10558. height:40px;
  10559. background:inherit;
  10560. background-color:rgba(255, 255, 255, 0);
  10561. border:none;
  10562. border-left:0px;
  10563. border-top:0px;
  10564. border-right:0px;
  10565. border-radius:0px;
  10566. border-bottom-right-radius:0px;
  10567. border-bottom-left-radius:0px;
  10568. -moz-box-shadow:none;
  10569. -webkit-box-shadow:none;
  10570. box-shadow:none;
  10571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10572. font-weight:400;
  10573. font-style:normal;
  10574. font-size:12px;
  10575. text-align:center;
  10576. }
  10577. #u144982 {
  10578. border-width:0px;
  10579. position:absolute;
  10580. left:1028px;
  10581. top:155px;
  10582. width:37px;
  10583. height:40px;
  10584. display:flex;
  10585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10586. font-weight:400;
  10587. font-style:normal;
  10588. font-size:12px;
  10589. text-align:center;
  10590. }
  10591. #u144982 .text {
  10592. position:absolute;
  10593. align-self:center;
  10594. padding:0px 0px 0px 0px;
  10595. box-sizing:border-box;
  10596. width:100%;
  10597. }
  10598. #u144982_text {
  10599. border-width:0px;
  10600. white-space:nowrap;
  10601. text-transform:none;
  10602. }
  10603. #u144983_div {
  10604. border-width:0px;
  10605. position:absolute;
  10606. left:0px;
  10607. top:0px;
  10608. width:37px;
  10609. height:40px;
  10610. background:inherit;
  10611. background-color:rgba(255, 255, 255, 0);
  10612. box-sizing:border-box;
  10613. border-width:2px;
  10614. border-style:solid;
  10615. border-color:rgba(41, 143, 255, 1);
  10616. border-left:0px;
  10617. border-top:0px;
  10618. border-right:0px;
  10619. border-radius:0px;
  10620. border-bottom-right-radius:0px;
  10621. border-bottom-left-radius:0px;
  10622. -moz-box-shadow:none;
  10623. -webkit-box-shadow:none;
  10624. box-shadow:none;
  10625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10626. font-weight:400;
  10627. font-style:normal;
  10628. font-size:12px;
  10629. color:#298FFF;
  10630. text-align:center;
  10631. }
  10632. #u144983 {
  10633. border-width:0px;
  10634. position:absolute;
  10635. left:1094px;
  10636. top:155px;
  10637. width:37px;
  10638. height:40px;
  10639. display:flex;
  10640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10641. font-weight:400;
  10642. font-style:normal;
  10643. font-size:12px;
  10644. color:#298FFF;
  10645. text-align:center;
  10646. }
  10647. #u144983 .text {
  10648. position:absolute;
  10649. align-self:center;
  10650. padding:0px 0px 0px 0px;
  10651. box-sizing:border-box;
  10652. width:100%;
  10653. }
  10654. #u144983_text {
  10655. border-width:0px;
  10656. white-space:nowrap;
  10657. text-transform:none;
  10658. }
  10659. #u144984_div {
  10660. border-width:0px;
  10661. position:absolute;
  10662. left:0px;
  10663. top:0px;
  10664. width:37px;
  10665. height:40px;
  10666. background:inherit;
  10667. background-color:rgba(255, 255, 255, 0);
  10668. border:none;
  10669. border-left:0px;
  10670. border-top:0px;
  10671. border-right:0px;
  10672. border-radius:0px;
  10673. border-bottom-right-radius:0px;
  10674. border-bottom-left-radius:0px;
  10675. -moz-box-shadow:none;
  10676. -webkit-box-shadow:none;
  10677. box-shadow:none;
  10678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10679. font-weight:400;
  10680. font-style:normal;
  10681. font-size:12px;
  10682. color:#000000;
  10683. text-align:center;
  10684. }
  10685. #u144984 {
  10686. border-width:0px;
  10687. position:absolute;
  10688. left:1159px;
  10689. top:155px;
  10690. width:37px;
  10691. height:40px;
  10692. display:flex;
  10693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10694. font-weight:400;
  10695. font-style:normal;
  10696. font-size:12px;
  10697. color:#000000;
  10698. text-align:center;
  10699. }
  10700. #u144984 .text {
  10701. position:absolute;
  10702. align-self:center;
  10703. padding:0px 0px 0px 0px;
  10704. box-sizing:border-box;
  10705. width:100%;
  10706. }
  10707. #u144984_text {
  10708. border-width:0px;
  10709. white-space:nowrap;
  10710. text-transform:none;
  10711. }
  10712. #u144985_div {
  10713. border-width:0px;
  10714. position:absolute;
  10715. left:0px;
  10716. top:0px;
  10717. width:37px;
  10718. height:40px;
  10719. background:inherit;
  10720. background-color:rgba(255, 255, 255, 0);
  10721. border:none;
  10722. border-left:0px;
  10723. border-top:0px;
  10724. border-right:0px;
  10725. border-radius:0px;
  10726. border-bottom-right-radius:0px;
  10727. border-bottom-left-radius:0px;
  10728. -moz-box-shadow:none;
  10729. -webkit-box-shadow:none;
  10730. box-shadow:none;
  10731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10732. font-weight:400;
  10733. font-style:normal;
  10734. font-size:12px;
  10735. text-align:center;
  10736. }
  10737. #u144985 {
  10738. border-width:0px;
  10739. position:absolute;
  10740. left:963px;
  10741. top:155px;
  10742. width:37px;
  10743. height:40px;
  10744. display:flex;
  10745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10746. font-weight:400;
  10747. font-style:normal;
  10748. font-size:12px;
  10749. text-align:center;
  10750. }
  10751. #u144985 .text {
  10752. position:absolute;
  10753. align-self:center;
  10754. padding:0px 0px 0px 0px;
  10755. box-sizing:border-box;
  10756. width:100%;
  10757. }
  10758. #u144985_text {
  10759. border-width:0px;
  10760. white-space:nowrap;
  10761. text-transform:none;
  10762. }
  10763. #u144986_div {
  10764. border-width:0px;
  10765. position:absolute;
  10766. left:0px;
  10767. top:0px;
  10768. width:11px;
  10769. height:11px;
  10770. background:inherit;
  10771. background-color:rgba(217, 0, 27, 1);
  10772. border:none;
  10773. border-radius:7px;
  10774. -moz-box-shadow:none;
  10775. -webkit-box-shadow:none;
  10776. box-shadow:none;
  10777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10778. font-weight:400;
  10779. font-style:normal;
  10780. font-size:8px;
  10781. color:#FFFFFF;
  10782. text-align:center;
  10783. }
  10784. #u144986 {
  10785. border-width:0px;
  10786. position:absolute;
  10787. left:997px;
  10788. top:159px;
  10789. width:11px;
  10790. height:11px;
  10791. display:flex;
  10792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10793. font-weight:400;
  10794. font-style:normal;
  10795. font-size:8px;
  10796. color:#FFFFFF;
  10797. text-align:center;
  10798. }
  10799. #u144986 .text {
  10800. position:absolute;
  10801. align-self:flex-start;
  10802. padding:0px 0px 0px 0px;
  10803. box-sizing:border-box;
  10804. width:100%;
  10805. }
  10806. #u144986_text {
  10807. border-width:0px;
  10808. word-wrap:break-word;
  10809. text-transform:none;
  10810. }
  10811. #u144987_div {
  10812. border-width:0px;
  10813. position:absolute;
  10814. left:0px;
  10815. top:0px;
  10816. width:37px;
  10817. height:40px;
  10818. background:inherit;
  10819. background-color:rgba(255, 255, 255, 0);
  10820. border:none;
  10821. border-left:0px;
  10822. border-top:0px;
  10823. border-right:0px;
  10824. border-radius:0px;
  10825. border-bottom-right-radius:0px;
  10826. border-bottom-left-radius:0px;
  10827. -moz-box-shadow:none;
  10828. -webkit-box-shadow:none;
  10829. box-shadow:none;
  10830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10831. font-weight:400;
  10832. font-style:normal;
  10833. font-size:12px;
  10834. color:#000000;
  10835. text-align:center;
  10836. }
  10837. #u144987 {
  10838. border-width:0px;
  10839. position:absolute;
  10840. left:1226px;
  10841. top:155px;
  10842. width:37px;
  10843. height:40px;
  10844. display:flex;
  10845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10846. font-weight:400;
  10847. font-style:normal;
  10848. font-size:12px;
  10849. color:#000000;
  10850. text-align:center;
  10851. }
  10852. #u144987 .text {
  10853. position:absolute;
  10854. align-self:center;
  10855. padding:0px 0px 0px 0px;
  10856. box-sizing:border-box;
  10857. width:100%;
  10858. }
  10859. #u144987_text {
  10860. border-width:0px;
  10861. white-space:nowrap;
  10862. text-transform:none;
  10863. }
  10864. #u144988 {
  10865. border-width:0px;
  10866. position:absolute;
  10867. left:0px;
  10868. top:0px;
  10869. width:0px;
  10870. height:0px;
  10871. }
  10872. #u144989_div {
  10873. border-width:0px;
  10874. position:absolute;
  10875. left:0px;
  10876. top:0px;
  10877. width:375px;
  10878. height:50px;
  10879. background:inherit;
  10880. background-color:rgba(255, 255, 255, 1);
  10881. border:none;
  10882. border-radius:0px;
  10883. -moz-box-shadow:none;
  10884. -webkit-box-shadow:none;
  10885. box-shadow:none;
  10886. }
  10887. #u144989 {
  10888. border-width:0px;
  10889. position:absolute;
  10890. left:1405px;
  10891. top:105px;
  10892. width:375px;
  10893. height:50px;
  10894. display:flex;
  10895. }
  10896. #u144989 .text {
  10897. position:absolute;
  10898. align-self:center;
  10899. padding:2px 2px 2px 2px;
  10900. box-sizing:border-box;
  10901. width:100%;
  10902. }
  10903. #u144989_text {
  10904. border-width:0px;
  10905. word-wrap:break-word;
  10906. text-transform:none;
  10907. visibility:hidden;
  10908. }
  10909. #u144990 {
  10910. border-width:0px;
  10911. position:absolute;
  10912. left:0px;
  10913. top:0px;
  10914. width:0px;
  10915. height:0px;
  10916. }
  10917. #u144991 {
  10918. border-width:0px;
  10919. position:absolute;
  10920. left:0px;
  10921. top:0px;
  10922. width:0px;
  10923. height:0px;
  10924. }
  10925. #u144992_div {
  10926. border-width:0px;
  10927. position:absolute;
  10928. left:0px;
  10929. top:0px;
  10930. width:280px;
  10931. height:30px;
  10932. background:inherit;
  10933. background-color:rgba(242, 242, 242, 1);
  10934. border:none;
  10935. border-radius:20px;
  10936. -moz-box-shadow:none;
  10937. -webkit-box-shadow:none;
  10938. box-shadow:none;
  10939. }
  10940. #u144992 {
  10941. border-width:0px;
  10942. position:absolute;
  10943. left:1418px;
  10944. top:115px;
  10945. width:280px;
  10946. height:30px;
  10947. display:flex;
  10948. }
  10949. #u144992 .text {
  10950. position:absolute;
  10951. align-self:center;
  10952. padding:2px 2px 2px 2px;
  10953. box-sizing:border-box;
  10954. width:100%;
  10955. }
  10956. #u144992_text {
  10957. border-width:0px;
  10958. word-wrap:break-word;
  10959. text-transform:none;
  10960. visibility:hidden;
  10961. }
  10962. #u144993_input {
  10963. position:absolute;
  10964. left:0px;
  10965. top:0px;
  10966. width:252px;
  10967. height:22px;
  10968. padding:2px 2px 2px 2px;
  10969. font-family:'ArialMT', 'Arial', sans-serif;
  10970. font-weight:400;
  10971. font-style:normal;
  10972. font-size:12px;
  10973. letter-spacing:normal;
  10974. color:#7F7F7F;
  10975. vertical-align:none;
  10976. text-align:left;
  10977. text-transform:none;
  10978. background-color:transparent;
  10979. border-color:transparent;
  10980. }
  10981. #u144993_input.disabled {
  10982. position:absolute;
  10983. left:0px;
  10984. top:0px;
  10985. width:252px;
  10986. height:22px;
  10987. padding:2px 2px 2px 2px;
  10988. font-family:'ArialMT', 'Arial', sans-serif;
  10989. font-weight:400;
  10990. font-style:normal;
  10991. font-size:12px;
  10992. letter-spacing:normal;
  10993. color:#7F7F7F;
  10994. vertical-align:none;
  10995. text-align:left;
  10996. text-transform:none;
  10997. background-color:transparent;
  10998. border-color:transparent;
  10999. }
  11000. #u144993_div {
  11001. border-width:0px;
  11002. position:absolute;
  11003. left:0px;
  11004. top:0px;
  11005. width:252px;
  11006. height:22px;
  11007. background:inherit;
  11008. background-color:rgba(255, 255, 255, 0);
  11009. border:none;
  11010. border-radius:0px;
  11011. -moz-box-shadow:none;
  11012. -webkit-box-shadow:none;
  11013. box-shadow:none;
  11014. font-size:12px;
  11015. color:#7F7F7F;
  11016. }
  11017. #u144993 {
  11018. border-width:0px;
  11019. position:absolute;
  11020. left:1432px;
  11021. top:119px;
  11022. width:252px;
  11023. height:22px;
  11024. display:flex;
  11025. font-size:12px;
  11026. color:#7F7F7F;
  11027. }
  11028. #u144993 .text {
  11029. position:absolute;
  11030. align-self:flex-start;
  11031. padding:2px 2px 2px 2px;
  11032. box-sizing:border-box;
  11033. width:100%;
  11034. }
  11035. #u144993_div.disabled {
  11036. border-width:0px;
  11037. position:absolute;
  11038. left:0px;
  11039. top:0px;
  11040. width:252px;
  11041. height:22px;
  11042. background:inherit;
  11043. background-color:rgba(240, 240, 240, 1);
  11044. border:none;
  11045. border-radius:0px;
  11046. -moz-box-shadow:none;
  11047. -webkit-box-shadow:none;
  11048. box-shadow:none;
  11049. font-size:12px;
  11050. color:#7F7F7F;
  11051. }
  11052. #u144993.disabled {
  11053. }
  11054. .u144993_input_option {
  11055. font-size:12px;
  11056. }
  11057. #u144994_div {
  11058. border-width:0px;
  11059. position:absolute;
  11060. left:0px;
  11061. top:0px;
  11062. width:64px;
  11063. height:30px;
  11064. background:inherit;
  11065. background-color:rgba(255, 255, 255, 0);
  11066. border:none;
  11067. border-left:0px;
  11068. border-top:0px;
  11069. border-right:0px;
  11070. border-radius:0px;
  11071. border-bottom-right-radius:0px;
  11072. border-bottom-left-radius:0px;
  11073. -moz-box-shadow:none;
  11074. -webkit-box-shadow:none;
  11075. box-shadow:none;
  11076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11077. font-weight:400;
  11078. font-style:normal;
  11079. font-size:12px;
  11080. color:#1890FF;
  11081. line-height:30px;
  11082. }
  11083. #u144994 {
  11084. border-width:0px;
  11085. position:absolute;
  11086. left:1708px;
  11087. top:115px;
  11088. width:64px;
  11089. height:30px;
  11090. display:flex;
  11091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11092. font-weight:400;
  11093. font-style:normal;
  11094. font-size:12px;
  11095. color:#1890FF;
  11096. line-height:30px;
  11097. }
  11098. #u144994 .text {
  11099. position:absolute;
  11100. align-self:flex-start;
  11101. padding:0px 0px 0px 0px;
  11102. box-sizing:border-box;
  11103. width:100%;
  11104. }
  11105. #u144994_text {
  11106. border-width:0px;
  11107. white-space:nowrap;
  11108. text-transform:none;
  11109. }
  11110. #u144995 {
  11111. border-width:0px;
  11112. position:absolute;
  11113. left:0px;
  11114. top:0px;
  11115. width:0px;
  11116. height:0px;
  11117. }
  11118. #u144996_div {
  11119. border-width:0px;
  11120. position:absolute;
  11121. left:0px;
  11122. top:0px;
  11123. width:375px;
  11124. height:41px;
  11125. background:inherit;
  11126. background-color:rgba(255, 255, 255, 1);
  11127. border:none;
  11128. border-radius:0px;
  11129. -moz-box-shadow:none;
  11130. -webkit-box-shadow:none;
  11131. box-shadow:none;
  11132. }
  11133. #u144996 {
  11134. border-width:0px;
  11135. position:absolute;
  11136. left:1405px;
  11137. top:155px;
  11138. width:375px;
  11139. height:41px;
  11140. display:flex;
  11141. }
  11142. #u144996 .text {
  11143. position:absolute;
  11144. align-self:center;
  11145. padding:2px 2px 2px 2px;
  11146. box-sizing:border-box;
  11147. width:100%;
  11148. }
  11149. #u144996_text {
  11150. border-width:0px;
  11151. word-wrap:break-word;
  11152. text-transform:none;
  11153. visibility:hidden;
  11154. }
  11155. #u144997_div {
  11156. border-width:0px;
  11157. position:absolute;
  11158. left:0px;
  11159. top:0px;
  11160. width:37px;
  11161. height:40px;
  11162. background:inherit;
  11163. background-color:rgba(255, 255, 255, 0);
  11164. border:none;
  11165. border-left:0px;
  11166. border-top:0px;
  11167. border-right:0px;
  11168. border-radius:0px;
  11169. border-bottom-right-radius:0px;
  11170. border-bottom-left-radius:0px;
  11171. -moz-box-shadow:none;
  11172. -webkit-box-shadow:none;
  11173. box-shadow:none;
  11174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11175. font-weight:400;
  11176. font-style:normal;
  11177. font-size:12px;
  11178. text-align:center;
  11179. }
  11180. #u144997 {
  11181. border-width:0px;
  11182. position:absolute;
  11183. left:1486px;
  11184. top:155px;
  11185. width:37px;
  11186. height:40px;
  11187. display:flex;
  11188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11189. font-weight:400;
  11190. font-style:normal;
  11191. font-size:12px;
  11192. text-align:center;
  11193. }
  11194. #u144997 .text {
  11195. position:absolute;
  11196. align-self:center;
  11197. padding:0px 0px 0px 0px;
  11198. box-sizing:border-box;
  11199. width:100%;
  11200. }
  11201. #u144997_text {
  11202. border-width:0px;
  11203. white-space:nowrap;
  11204. text-transform:none;
  11205. }
  11206. #u144998_div {
  11207. border-width:0px;
  11208. position:absolute;
  11209. left:0px;
  11210. top:0px;
  11211. width:37px;
  11212. height:40px;
  11213. background:inherit;
  11214. background-color:rgba(255, 255, 255, 0);
  11215. border:none;
  11216. border-left:0px;
  11217. border-top:0px;
  11218. border-right:0px;
  11219. border-radius:0px;
  11220. border-bottom-right-radius:0px;
  11221. border-bottom-left-radius:0px;
  11222. -moz-box-shadow:none;
  11223. -webkit-box-shadow:none;
  11224. box-shadow:none;
  11225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11226. font-weight:400;
  11227. font-style:normal;
  11228. font-size:12px;
  11229. text-align:center;
  11230. }
  11231. #u144998 {
  11232. border-width:0px;
  11233. position:absolute;
  11234. left:1552px;
  11235. top:155px;
  11236. width:37px;
  11237. height:40px;
  11238. display:flex;
  11239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11240. font-weight:400;
  11241. font-style:normal;
  11242. font-size:12px;
  11243. text-align:center;
  11244. }
  11245. #u144998 .text {
  11246. position:absolute;
  11247. align-self:center;
  11248. padding:0px 0px 0px 0px;
  11249. box-sizing:border-box;
  11250. width:100%;
  11251. }
  11252. #u144998_text {
  11253. border-width:0px;
  11254. white-space:nowrap;
  11255. text-transform:none;
  11256. }
  11257. #u144999_div {
  11258. border-width:0px;
  11259. position:absolute;
  11260. left:0px;
  11261. top:0px;
  11262. width:37px;
  11263. height:40px;
  11264. background:inherit;
  11265. background-color:rgba(255, 255, 255, 0);
  11266. box-sizing:border-box;
  11267. border-width:2px;
  11268. border-style:solid;
  11269. border-color:rgba(41, 143, 255, 1);
  11270. border-left:0px;
  11271. border-top:0px;
  11272. border-right:0px;
  11273. border-radius:0px;
  11274. border-bottom-right-radius:0px;
  11275. border-bottom-left-radius:0px;
  11276. -moz-box-shadow:none;
  11277. -webkit-box-shadow:none;
  11278. box-shadow:none;
  11279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11280. font-weight:400;
  11281. font-style:normal;
  11282. font-size:12px;
  11283. color:#298FFF;
  11284. text-align:center;
  11285. }
  11286. #u144999 {
  11287. border-width:0px;
  11288. position:absolute;
  11289. left:1617px;
  11290. top:155px;
  11291. width:37px;
  11292. height:40px;
  11293. display:flex;
  11294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11295. font-weight:400;
  11296. font-style:normal;
  11297. font-size:12px;
  11298. color:#298FFF;
  11299. text-align:center;
  11300. }
  11301. #u144999 .text {
  11302. position:absolute;
  11303. align-self:center;
  11304. padding:0px 0px 0px 0px;
  11305. box-sizing:border-box;
  11306. width:100%;
  11307. }
  11308. #u144999_text {
  11309. border-width:0px;
  11310. white-space:nowrap;
  11311. text-transform:none;
  11312. }
  11313. #u145000_div {
  11314. border-width:0px;
  11315. position:absolute;
  11316. left:0px;
  11317. top:0px;
  11318. width:37px;
  11319. height:40px;
  11320. background:inherit;
  11321. background-color:rgba(255, 255, 255, 0);
  11322. border:none;
  11323. border-left:0px;
  11324. border-top:0px;
  11325. border-right:0px;
  11326. border-radius:0px;
  11327. border-bottom-right-radius:0px;
  11328. border-bottom-left-radius:0px;
  11329. -moz-box-shadow:none;
  11330. -webkit-box-shadow:none;
  11331. box-shadow:none;
  11332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11333. font-weight:400;
  11334. font-style:normal;
  11335. font-size:12px;
  11336. text-align:center;
  11337. }
  11338. #u145000 {
  11339. border-width:0px;
  11340. position:absolute;
  11341. left:1421px;
  11342. top:155px;
  11343. width:37px;
  11344. height:40px;
  11345. display:flex;
  11346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11347. font-weight:400;
  11348. font-style:normal;
  11349. font-size:12px;
  11350. text-align:center;
  11351. }
  11352. #u145000 .text {
  11353. position:absolute;
  11354. align-self:center;
  11355. padding:0px 0px 0px 0px;
  11356. box-sizing:border-box;
  11357. width:100%;
  11358. }
  11359. #u145000_text {
  11360. border-width:0px;
  11361. white-space:nowrap;
  11362. text-transform:none;
  11363. }
  11364. #u145001_div {
  11365. border-width:0px;
  11366. position:absolute;
  11367. left:0px;
  11368. top:0px;
  11369. width:11px;
  11370. height:11px;
  11371. background:inherit;
  11372. background-color:rgba(217, 0, 27, 1);
  11373. border:none;
  11374. border-radius:7px;
  11375. -moz-box-shadow:none;
  11376. -webkit-box-shadow:none;
  11377. box-shadow:none;
  11378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11379. font-weight:400;
  11380. font-style:normal;
  11381. font-size:8px;
  11382. color:#FFFFFF;
  11383. text-align:center;
  11384. }
  11385. #u145001 {
  11386. border-width:0px;
  11387. position:absolute;
  11388. left:1455px;
  11389. top:159px;
  11390. width:11px;
  11391. height:11px;
  11392. display:flex;
  11393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11394. font-weight:400;
  11395. font-style:normal;
  11396. font-size:8px;
  11397. color:#FFFFFF;
  11398. text-align:center;
  11399. }
  11400. #u145001 .text {
  11401. position:absolute;
  11402. align-self:flex-start;
  11403. padding:0px 0px 0px 0px;
  11404. box-sizing:border-box;
  11405. width:100%;
  11406. }
  11407. #u145001_text {
  11408. border-width:0px;
  11409. word-wrap:break-word;
  11410. text-transform:none;
  11411. }
  11412. #u145002_div {
  11413. border-width:0px;
  11414. position:absolute;
  11415. left:0px;
  11416. top:0px;
  11417. width:37px;
  11418. height:40px;
  11419. background:inherit;
  11420. background-color:rgba(255, 255, 255, 0);
  11421. border:none;
  11422. border-left:0px;
  11423. border-top:0px;
  11424. border-right:0px;
  11425. border-radius:0px;
  11426. border-bottom-right-radius:0px;
  11427. border-bottom-left-radius:0px;
  11428. -moz-box-shadow:none;
  11429. -webkit-box-shadow:none;
  11430. box-shadow:none;
  11431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11432. font-weight:400;
  11433. font-style:normal;
  11434. font-size:12px;
  11435. color:#000000;
  11436. text-align:center;
  11437. }
  11438. #u145002 {
  11439. border-width:0px;
  11440. position:absolute;
  11441. left:1684px;
  11442. top:155px;
  11443. width:37px;
  11444. height:40px;
  11445. display:flex;
  11446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11447. font-weight:400;
  11448. font-style:normal;
  11449. font-size:12px;
  11450. color:#000000;
  11451. text-align:center;
  11452. }
  11453. #u145002 .text {
  11454. position:absolute;
  11455. align-self:center;
  11456. padding:0px 0px 0px 0px;
  11457. box-sizing:border-box;
  11458. width:100%;
  11459. }
  11460. #u145002_text {
  11461. border-width:0px;
  11462. white-space:nowrap;
  11463. text-transform:none;
  11464. }
  11465. #u145003 {
  11466. border-width:0px;
  11467. position:absolute;
  11468. left:0px;
  11469. top:0px;
  11470. width:0px;
  11471. height:0px;
  11472. }
  11473. #u145004_div {
  11474. border-width:0px;
  11475. position:absolute;
  11476. left:0px;
  11477. top:0px;
  11478. width:375px;
  11479. height:50px;
  11480. background:inherit;
  11481. background-color:rgba(255, 255, 255, 1);
  11482. border:none;
  11483. border-radius:0px;
  11484. -moz-box-shadow:none;
  11485. -webkit-box-shadow:none;
  11486. box-shadow:none;
  11487. }
  11488. #u145004 {
  11489. border-width:0px;
  11490. position:absolute;
  11491. left:1870px;
  11492. top:105px;
  11493. width:375px;
  11494. height:50px;
  11495. display:flex;
  11496. }
  11497. #u145004 .text {
  11498. position:absolute;
  11499. align-self:center;
  11500. padding:2px 2px 2px 2px;
  11501. box-sizing:border-box;
  11502. width:100%;
  11503. }
  11504. #u145004_text {
  11505. border-width:0px;
  11506. word-wrap:break-word;
  11507. text-transform:none;
  11508. visibility:hidden;
  11509. }
  11510. #u145005 {
  11511. border-width:0px;
  11512. position:absolute;
  11513. left:0px;
  11514. top:0px;
  11515. width:0px;
  11516. height:0px;
  11517. }
  11518. #u145006 {
  11519. border-width:0px;
  11520. position:absolute;
  11521. left:0px;
  11522. top:0px;
  11523. width:0px;
  11524. height:0px;
  11525. }
  11526. #u145007_div {
  11527. border-width:0px;
  11528. position:absolute;
  11529. left:0px;
  11530. top:0px;
  11531. width:280px;
  11532. height:30px;
  11533. background:inherit;
  11534. background-color:rgba(242, 242, 242, 1);
  11535. border:none;
  11536. border-radius:20px;
  11537. -moz-box-shadow:none;
  11538. -webkit-box-shadow:none;
  11539. box-shadow:none;
  11540. }
  11541. #u145007 {
  11542. border-width:0px;
  11543. position:absolute;
  11544. left:1883px;
  11545. top:115px;
  11546. width:280px;
  11547. height:30px;
  11548. display:flex;
  11549. }
  11550. #u145007 .text {
  11551. position:absolute;
  11552. align-self:center;
  11553. padding:2px 2px 2px 2px;
  11554. box-sizing:border-box;
  11555. width:100%;
  11556. }
  11557. #u145007_text {
  11558. border-width:0px;
  11559. word-wrap:break-word;
  11560. text-transform:none;
  11561. visibility:hidden;
  11562. }
  11563. #u145008_input {
  11564. position:absolute;
  11565. left:0px;
  11566. top:0px;
  11567. width:252px;
  11568. height:22px;
  11569. padding:2px 2px 2px 2px;
  11570. font-family:'ArialMT', 'Arial', sans-serif;
  11571. font-weight:400;
  11572. font-style:normal;
  11573. font-size:12px;
  11574. letter-spacing:normal;
  11575. color:#7F7F7F;
  11576. vertical-align:none;
  11577. text-align:left;
  11578. text-transform:none;
  11579. background-color:transparent;
  11580. border-color:transparent;
  11581. }
  11582. #u145008_input.disabled {
  11583. position:absolute;
  11584. left:0px;
  11585. top:0px;
  11586. width:252px;
  11587. height:22px;
  11588. padding:2px 2px 2px 2px;
  11589. font-family:'ArialMT', 'Arial', sans-serif;
  11590. font-weight:400;
  11591. font-style:normal;
  11592. font-size:12px;
  11593. letter-spacing:normal;
  11594. color:#7F7F7F;
  11595. vertical-align:none;
  11596. text-align:left;
  11597. text-transform:none;
  11598. background-color:transparent;
  11599. border-color:transparent;
  11600. }
  11601. #u145008_div {
  11602. border-width:0px;
  11603. position:absolute;
  11604. left:0px;
  11605. top:0px;
  11606. width:252px;
  11607. height:22px;
  11608. background:inherit;
  11609. background-color:rgba(255, 255, 255, 0);
  11610. border:none;
  11611. border-radius:0px;
  11612. -moz-box-shadow:none;
  11613. -webkit-box-shadow:none;
  11614. box-shadow:none;
  11615. font-size:12px;
  11616. color:#7F7F7F;
  11617. }
  11618. #u145008 {
  11619. border-width:0px;
  11620. position:absolute;
  11621. left:1897px;
  11622. top:119px;
  11623. width:252px;
  11624. height:22px;
  11625. display:flex;
  11626. font-size:12px;
  11627. color:#7F7F7F;
  11628. }
  11629. #u145008 .text {
  11630. position:absolute;
  11631. align-self:flex-start;
  11632. padding:2px 2px 2px 2px;
  11633. box-sizing:border-box;
  11634. width:100%;
  11635. }
  11636. #u145008_div.disabled {
  11637. border-width:0px;
  11638. position:absolute;
  11639. left:0px;
  11640. top:0px;
  11641. width:252px;
  11642. height:22px;
  11643. background:inherit;
  11644. background-color:rgba(240, 240, 240, 1);
  11645. border:none;
  11646. border-radius:0px;
  11647. -moz-box-shadow:none;
  11648. -webkit-box-shadow:none;
  11649. box-shadow:none;
  11650. font-size:12px;
  11651. color:#7F7F7F;
  11652. }
  11653. #u145008.disabled {
  11654. }
  11655. .u145008_input_option {
  11656. font-size:12px;
  11657. }
  11658. #u145009_div {
  11659. border-width:0px;
  11660. position:absolute;
  11661. left:0px;
  11662. top:0px;
  11663. width:64px;
  11664. height:30px;
  11665. background:inherit;
  11666. background-color:rgba(255, 255, 255, 0);
  11667. border:none;
  11668. border-left:0px;
  11669. border-top:0px;
  11670. border-right:0px;
  11671. border-radius:0px;
  11672. border-bottom-right-radius:0px;
  11673. border-bottom-left-radius:0px;
  11674. -moz-box-shadow:none;
  11675. -webkit-box-shadow:none;
  11676. box-shadow:none;
  11677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11678. font-weight:400;
  11679. font-style:normal;
  11680. font-size:12px;
  11681. color:#1890FF;
  11682. line-height:30px;
  11683. }
  11684. #u145009 {
  11685. border-width:0px;
  11686. position:absolute;
  11687. left:2173px;
  11688. top:115px;
  11689. width:64px;
  11690. height:30px;
  11691. display:flex;
  11692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11693. font-weight:400;
  11694. font-style:normal;
  11695. font-size:12px;
  11696. color:#1890FF;
  11697. line-height:30px;
  11698. }
  11699. #u145009 .text {
  11700. position:absolute;
  11701. align-self:flex-start;
  11702. padding:0px 0px 0px 0px;
  11703. box-sizing:border-box;
  11704. width:100%;
  11705. }
  11706. #u145009_text {
  11707. border-width:0px;
  11708. white-space:nowrap;
  11709. text-transform:none;
  11710. }
  11711. #u145010 {
  11712. border-width:0px;
  11713. position:absolute;
  11714. left:0px;
  11715. top:0px;
  11716. width:0px;
  11717. height:0px;
  11718. }
  11719. #u145011_div {
  11720. border-width:0px;
  11721. position:absolute;
  11722. left:0px;
  11723. top:0px;
  11724. width:375px;
  11725. height:41px;
  11726. background:inherit;
  11727. background-color:rgba(255, 255, 255, 1);
  11728. border:none;
  11729. border-radius:0px;
  11730. -moz-box-shadow:none;
  11731. -webkit-box-shadow:none;
  11732. box-shadow:none;
  11733. }
  11734. #u145011 {
  11735. border-width:0px;
  11736. position:absolute;
  11737. left:1870px;
  11738. top:155px;
  11739. width:375px;
  11740. height:41px;
  11741. display:flex;
  11742. }
  11743. #u145011 .text {
  11744. position:absolute;
  11745. align-self:center;
  11746. padding:2px 2px 2px 2px;
  11747. box-sizing:border-box;
  11748. width:100%;
  11749. }
  11750. #u145011_text {
  11751. border-width:0px;
  11752. word-wrap:break-word;
  11753. text-transform:none;
  11754. visibility:hidden;
  11755. }
  11756. #u145012_div {
  11757. border-width:0px;
  11758. position:absolute;
  11759. left:0px;
  11760. top:0px;
  11761. width:37px;
  11762. height:40px;
  11763. background:inherit;
  11764. background-color:rgba(255, 255, 255, 0);
  11765. border:none;
  11766. border-left:0px;
  11767. border-top:0px;
  11768. border-right:0px;
  11769. border-radius:0px;
  11770. border-bottom-right-radius:0px;
  11771. border-bottom-left-radius:0px;
  11772. -moz-box-shadow:none;
  11773. -webkit-box-shadow:none;
  11774. box-shadow:none;
  11775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11776. font-weight:400;
  11777. font-style:normal;
  11778. font-size:12px;
  11779. text-align:center;
  11780. }
  11781. #u145012 {
  11782. border-width:0px;
  11783. position:absolute;
  11784. left:1951px;
  11785. top:155px;
  11786. width:37px;
  11787. height:40px;
  11788. display:flex;
  11789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11790. font-weight:400;
  11791. font-style:normal;
  11792. font-size:12px;
  11793. text-align:center;
  11794. }
  11795. #u145012 .text {
  11796. position:absolute;
  11797. align-self:center;
  11798. padding:0px 0px 0px 0px;
  11799. box-sizing:border-box;
  11800. width:100%;
  11801. }
  11802. #u145012_text {
  11803. border-width:0px;
  11804. white-space:nowrap;
  11805. text-transform:none;
  11806. }
  11807. #u145013_div {
  11808. border-width:0px;
  11809. position:absolute;
  11810. left:0px;
  11811. top:0px;
  11812. width:37px;
  11813. height:40px;
  11814. background:inherit;
  11815. background-color:rgba(255, 255, 255, 0);
  11816. border:none;
  11817. border-left:0px;
  11818. border-top:0px;
  11819. border-right:0px;
  11820. border-radius:0px;
  11821. border-bottom-right-radius:0px;
  11822. border-bottom-left-radius:0px;
  11823. -moz-box-shadow:none;
  11824. -webkit-box-shadow:none;
  11825. box-shadow:none;
  11826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11827. font-weight:400;
  11828. font-style:normal;
  11829. font-size:12px;
  11830. text-align:center;
  11831. }
  11832. #u145013 {
  11833. border-width:0px;
  11834. position:absolute;
  11835. left:2017px;
  11836. top:155px;
  11837. width:37px;
  11838. height:40px;
  11839. display:flex;
  11840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11841. font-weight:400;
  11842. font-style:normal;
  11843. font-size:12px;
  11844. text-align:center;
  11845. }
  11846. #u145013 .text {
  11847. position:absolute;
  11848. align-self:center;
  11849. padding:0px 0px 0px 0px;
  11850. box-sizing:border-box;
  11851. width:100%;
  11852. }
  11853. #u145013_text {
  11854. border-width:0px;
  11855. white-space:nowrap;
  11856. text-transform:none;
  11857. }
  11858. #u145014_div {
  11859. border-width:0px;
  11860. position:absolute;
  11861. left:0px;
  11862. top:0px;
  11863. width:37px;
  11864. height:40px;
  11865. background:inherit;
  11866. background-color:rgba(255, 255, 255, 0);
  11867. border:none;
  11868. border-left:0px;
  11869. border-top:0px;
  11870. border-right:0px;
  11871. border-radius:0px;
  11872. border-bottom-right-radius:0px;
  11873. border-bottom-left-radius:0px;
  11874. -moz-box-shadow:none;
  11875. -webkit-box-shadow:none;
  11876. box-shadow:none;
  11877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11878. font-weight:400;
  11879. font-style:normal;
  11880. font-size:12px;
  11881. text-align:center;
  11882. }
  11883. #u145014 {
  11884. border-width:0px;
  11885. position:absolute;
  11886. left:2082px;
  11887. top:155px;
  11888. width:37px;
  11889. height:40px;
  11890. display:flex;
  11891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11892. font-weight:400;
  11893. font-style:normal;
  11894. font-size:12px;
  11895. text-align:center;
  11896. }
  11897. #u145014 .text {
  11898. position:absolute;
  11899. align-self:center;
  11900. padding:0px 0px 0px 0px;
  11901. box-sizing:border-box;
  11902. width:100%;
  11903. }
  11904. #u145014_text {
  11905. border-width:0px;
  11906. white-space:nowrap;
  11907. text-transform:none;
  11908. }
  11909. #u145015_div {
  11910. border-width:0px;
  11911. position:absolute;
  11912. left:0px;
  11913. top:0px;
  11914. width:37px;
  11915. height:40px;
  11916. background:inherit;
  11917. background-color:rgba(255, 255, 255, 0);
  11918. border:none;
  11919. border-left:0px;
  11920. border-top:0px;
  11921. border-right:0px;
  11922. border-radius:0px;
  11923. border-bottom-right-radius:0px;
  11924. border-bottom-left-radius:0px;
  11925. -moz-box-shadow:none;
  11926. -webkit-box-shadow:none;
  11927. box-shadow:none;
  11928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11929. font-weight:400;
  11930. font-style:normal;
  11931. font-size:12px;
  11932. text-align:center;
  11933. }
  11934. #u145015 {
  11935. border-width:0px;
  11936. position:absolute;
  11937. left:1886px;
  11938. top:155px;
  11939. width:37px;
  11940. height:40px;
  11941. display:flex;
  11942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11943. font-weight:400;
  11944. font-style:normal;
  11945. font-size:12px;
  11946. text-align:center;
  11947. }
  11948. #u145015 .text {
  11949. position:absolute;
  11950. align-self:center;
  11951. padding:0px 0px 0px 0px;
  11952. box-sizing:border-box;
  11953. width:100%;
  11954. }
  11955. #u145015_text {
  11956. border-width:0px;
  11957. white-space:nowrap;
  11958. text-transform:none;
  11959. }
  11960. #u145016_div {
  11961. border-width:0px;
  11962. position:absolute;
  11963. left:0px;
  11964. top:0px;
  11965. width:11px;
  11966. height:11px;
  11967. background:inherit;
  11968. background-color:rgba(217, 0, 27, 1);
  11969. border:none;
  11970. border-radius:7px;
  11971. -moz-box-shadow:none;
  11972. -webkit-box-shadow:none;
  11973. box-shadow:none;
  11974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11975. font-weight:400;
  11976. font-style:normal;
  11977. font-size:8px;
  11978. color:#FFFFFF;
  11979. text-align:center;
  11980. }
  11981. #u145016 {
  11982. border-width:0px;
  11983. position:absolute;
  11984. left:1920px;
  11985. top:159px;
  11986. width:11px;
  11987. height:11px;
  11988. display:flex;
  11989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11990. font-weight:400;
  11991. font-style:normal;
  11992. font-size:8px;
  11993. color:#FFFFFF;
  11994. text-align:center;
  11995. }
  11996. #u145016 .text {
  11997. position:absolute;
  11998. align-self:flex-start;
  11999. padding:0px 0px 0px 0px;
  12000. box-sizing:border-box;
  12001. width:100%;
  12002. }
  12003. #u145016_text {
  12004. border-width:0px;
  12005. word-wrap:break-word;
  12006. text-transform:none;
  12007. }
  12008. #u145017_div {
  12009. border-width:0px;
  12010. position:absolute;
  12011. left:0px;
  12012. top:0px;
  12013. width:37px;
  12014. height:40px;
  12015. background:inherit;
  12016. background-color:rgba(255, 255, 255, 0);
  12017. box-sizing:border-box;
  12018. border-width:2px;
  12019. border-style:solid;
  12020. border-color:rgba(41, 143, 255, 1);
  12021. border-left:0px;
  12022. border-top:0px;
  12023. border-right:0px;
  12024. border-radius:0px;
  12025. border-bottom-right-radius:0px;
  12026. border-bottom-left-radius:0px;
  12027. -moz-box-shadow:none;
  12028. -webkit-box-shadow:none;
  12029. box-shadow:none;
  12030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12031. font-weight:400;
  12032. font-style:normal;
  12033. font-size:12px;
  12034. color:#298FFF;
  12035. text-align:center;
  12036. }
  12037. #u145017 {
  12038. border-width:0px;
  12039. position:absolute;
  12040. left:2149px;
  12041. top:155px;
  12042. width:37px;
  12043. height:40px;
  12044. display:flex;
  12045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12046. font-weight:400;
  12047. font-style:normal;
  12048. font-size:12px;
  12049. color:#298FFF;
  12050. text-align:center;
  12051. }
  12052. #u145017 .text {
  12053. position:absolute;
  12054. align-self:center;
  12055. padding:0px 0px 0px 0px;
  12056. box-sizing:border-box;
  12057. width:100%;
  12058. }
  12059. #u145017_text {
  12060. border-width:0px;
  12061. white-space:nowrap;
  12062. text-transform:none;
  12063. }