styles.css 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-1px;
  6. width:1418px;
  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. #u141360_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u141360 {
  28. border-width:0px;
  29. position:absolute;
  30. left:1px;
  31. top:1px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u141360 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u141360_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u141361_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. #u141361 {
  73. border-width:0px;
  74. position:absolute;
  75. left:30px;
  76. top:68px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u141361 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u141361_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u141362 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u141363_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. #u141363 {
  121. border-width:0px;
  122. position:absolute;
  123. left:310px;
  124. top:72px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u141363 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u141363_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u141364 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u141365_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u141365 {
  159. border-width:0px;
  160. position:absolute;
  161. left:373px;
  162. top:79px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u141365 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u141365_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u141366_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u141366 {
  189. border-width:0px;
  190. position:absolute;
  191. left:379px;
  192. top:85px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u141366 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u141366_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u141367 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u141368_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u141368 {
  227. border-width:0px;
  228. position:absolute;
  229. left:324px;
  230. top:86px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u141368 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u141368_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u141369_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u141369 {
  257. border-width:0px;
  258. position:absolute;
  259. left:340px;
  260. top:86px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u141369 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u141369_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u141370_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u141370 {
  287. border-width:0px;
  288. position:absolute;
  289. left:331px;
  290. top:85px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u141370 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u141370_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u141371_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u141371 {
  317. border-width:0px;
  318. position:absolute;
  319. left:348px;
  320. top:88px;
  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. #u141371 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u141371_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u141372_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u141372 {
  351. border-width:0px;
  352. position:absolute;
  353. left:30px;
  354. top:25px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u141372 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u141372_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u141373_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. #u141373 {
  393. border-width:0px;
  394. position:absolute;
  395. left:30px;
  396. top:789px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u141373 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u141373_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u141374 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u141375_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u141375 {
  431. border-width:0px;
  432. position:absolute;
  433. left:70px;
  434. top:793px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u141375 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u141375_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u141376_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. #u141376 {
  472. border-width:0px;
  473. position:absolute;
  474. left:70px;
  475. top:818px;
  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. #u141376 .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. #u141376_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u141377 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u141378_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u141378 {
  513. border-width:0px;
  514. position:absolute;
  515. left:340px;
  516. top:795px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u141378 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u141378_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u141379_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. #u141379 {
  554. border-width:0px;
  555. position:absolute;
  556. left:340px;
  557. top:820px;
  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. #u141379 .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. #u141379_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u141380_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. #u141380 {
  594. border-width:0px;
  595. position:absolute;
  596. left:30px;
  597. top:108px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u141380 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u141380_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u141381 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u141382_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u141382 {
  632. border-width:0px;
  633. position:absolute;
  634. left:252px;
  635. top:793px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u141382 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u141382_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u141383_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. #u141383 {
  673. border-width:0px;
  674. position:absolute;
  675. left:246px;
  676. top:818px;
  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. #u141383 .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. #u141383_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u141384 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u141385_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u141385 {
  714. border-width:0px;
  715. position:absolute;
  716. left:158px;
  717. top:793px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u141385 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u141385_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u141386_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. #u141386 {
  755. border-width:0px;
  756. position:absolute;
  757. left:152px;
  758. top:818px;
  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. #u141386 .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. #u141386_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u141387_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:44px;
  786. }
  787. #u141387 {
  788. border-width:0px;
  789. position:absolute;
  790. left:30px;
  791. top:25px;
  792. width:375px;
  793. height:44px;
  794. display:flex;
  795. }
  796. #u141387 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u141387_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u141388 {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:0px;
  815. height:0px;
  816. }
  817. #u141389_div {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:88px;
  823. height:32px;
  824. background:inherit;
  825. background-color:rgba(255, 255, 255, 1);
  826. box-sizing:border-box;
  827. border-width:1px;
  828. border-style:solid;
  829. border-color:rgba(242, 242, 242, 1);
  830. border-radius:33px;
  831. -moz-box-shadow:none;
  832. -webkit-box-shadow:none;
  833. box-shadow:none;
  834. }
  835. #u141389 {
  836. border-width:0px;
  837. position:absolute;
  838. left:310px;
  839. top:72px;
  840. width:88px;
  841. height:32px;
  842. display:flex;
  843. }
  844. #u141389 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u141389_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u141390 {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:0px;
  863. height:0px;
  864. }
  865. #u141391_img {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:18px;
  871. height:18px;
  872. }
  873. #u141391 {
  874. border-width:0px;
  875. position:absolute;
  876. left:373px;
  877. top:79px;
  878. width:18px;
  879. height:18px;
  880. display:flex;
  881. }
  882. #u141391 .text {
  883. position:absolute;
  884. align-self:center;
  885. padding:2px 2px 2px 2px;
  886. box-sizing:border-box;
  887. width:100%;
  888. }
  889. #u141391_text {
  890. border-width:0px;
  891. word-wrap:break-word;
  892. text-transform:none;
  893. visibility:hidden;
  894. }
  895. #u141392_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:6px;
  901. height:6px;
  902. }
  903. #u141392 {
  904. border-width:0px;
  905. position:absolute;
  906. left:379px;
  907. top:85px;
  908. width:6px;
  909. height:6px;
  910. display:flex;
  911. }
  912. #u141392 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u141392_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u141393 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u141394_img {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:5px;
  939. height:5px;
  940. }
  941. #u141394 {
  942. border-width:0px;
  943. position:absolute;
  944. left:324px;
  945. top:86px;
  946. width:5px;
  947. height:5px;
  948. display:flex;
  949. }
  950. #u141394 .text {
  951. position:absolute;
  952. align-self:center;
  953. padding:2px 2px 2px 2px;
  954. box-sizing:border-box;
  955. width:100%;
  956. }
  957. #u141394_text {
  958. border-width:0px;
  959. word-wrap:break-word;
  960. text-transform:none;
  961. visibility:hidden;
  962. }
  963. #u141395_img {
  964. border-width:0px;
  965. position:absolute;
  966. left:0px;
  967. top:0px;
  968. width:5px;
  969. height:5px;
  970. }
  971. #u141395 {
  972. border-width:0px;
  973. position:absolute;
  974. left:340px;
  975. top:86px;
  976. width:5px;
  977. height:5px;
  978. display:flex;
  979. }
  980. #u141395 .text {
  981. position:absolute;
  982. align-self:center;
  983. padding:2px 2px 2px 2px;
  984. box-sizing:border-box;
  985. width:100%;
  986. }
  987. #u141395_text {
  988. border-width:0px;
  989. word-wrap:break-word;
  990. text-transform:none;
  991. visibility:hidden;
  992. }
  993. #u141396_img {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:7px;
  999. height:7px;
  1000. }
  1001. #u141396 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:331px;
  1005. top:85px;
  1006. width:7px;
  1007. height:7px;
  1008. display:flex;
  1009. }
  1010. #u141396 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u141396_text {
  1018. border-width:0px;
  1019. word-wrap:break-word;
  1020. text-transform:none;
  1021. visibility:hidden;
  1022. }
  1023. #u141397_img {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:19px;
  1029. height:2px;
  1030. }
  1031. #u141397 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:348px;
  1035. top:88px;
  1036. width:18px;
  1037. height:1px;
  1038. display:flex;
  1039. -webkit-transform:rotate(90deg);
  1040. -moz-transform:rotate(90deg);
  1041. -ms-transform:rotate(90deg);
  1042. transform:rotate(90deg);
  1043. }
  1044. #u141397 .text {
  1045. position:absolute;
  1046. align-self:center;
  1047. padding:2px 2px 2px 2px;
  1048. box-sizing:border-box;
  1049. width:100%;
  1050. }
  1051. #u141397_text {
  1052. border-width:0px;
  1053. word-wrap:break-word;
  1054. text-transform:none;
  1055. visibility:hidden;
  1056. }
  1057. #u141398_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:65px;
  1063. height:22px;
  1064. background:inherit;
  1065. background-color:rgba(255, 255, 255, 0);
  1066. border:none;
  1067. border-radius:0px;
  1068. -moz-box-shadow:none;
  1069. -webkit-box-shadow:none;
  1070. box-shadow:none;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. font-size:16px;
  1075. color:#000000;
  1076. }
  1077. #u141398 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:188px;
  1081. top:79px;
  1082. width:65px;
  1083. height:22px;
  1084. display:flex;
  1085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1086. font-weight:400;
  1087. font-style:normal;
  1088. font-size:16px;
  1089. color:#000000;
  1090. }
  1091. #u141398 .text {
  1092. position:absolute;
  1093. align-self:flex-start;
  1094. padding:0px 0px 0px 0px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u141398_text {
  1099. border-width:0px;
  1100. white-space:nowrap;
  1101. text-transform:none;
  1102. }
  1103. #u141399_div {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:375px;
  1109. height:683px;
  1110. background:inherit;
  1111. background-color:rgba(242, 242, 242, 0.996078431372549);
  1112. border:none;
  1113. border-radius:0px;
  1114. -moz-box-shadow:none;
  1115. -webkit-box-shadow:none;
  1116. box-shadow:none;
  1117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1118. font-weight:400;
  1119. font-style:normal;
  1120. }
  1121. #u141399 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:30px;
  1125. top:107px;
  1126. width:375px;
  1127. height:683px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. }
  1133. #u141399 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:2px 2px 2px 2px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u141399_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. }
  1145. #u141400_div {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:12px;
  1151. height:12px;
  1152. background:inherit;
  1153. background-color:rgba(255, 255, 255, 0);
  1154. box-sizing:border-box;
  1155. border-width:2px;
  1156. border-style:solid;
  1157. border-color:rgba(51, 51, 51, 1);
  1158. border-right:0px;
  1159. border-bottom:0px;
  1160. border-radius:0px;
  1161. border-top-right-radius:0px;
  1162. border-bottom-left-radius:0px;
  1163. -moz-box-shadow:none;
  1164. -webkit-box-shadow:none;
  1165. box-shadow:none;
  1166. }
  1167. #u141400 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:45px;
  1171. top:82px;
  1172. width:12px;
  1173. height:12px;
  1174. display:flex;
  1175. -webkit-transform:rotate(315deg);
  1176. -moz-transform:rotate(315deg);
  1177. -ms-transform:rotate(315deg);
  1178. transform:rotate(315deg);
  1179. }
  1180. #u141400 .text {
  1181. position:absolute;
  1182. align-self:center;
  1183. padding:2px 2px 2px 2px;
  1184. box-sizing:border-box;
  1185. width:100%;
  1186. }
  1187. #u141400_text {
  1188. border-width:0px;
  1189. word-wrap:break-word;
  1190. text-transform:none;
  1191. visibility:hidden;
  1192. }
  1193. #u141401_img {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:23px;
  1199. height:23px;
  1200. }
  1201. #u141401 {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:72px;
  1205. top:77px;
  1206. width:23px;
  1207. height:23px;
  1208. display:flex;
  1209. }
  1210. #u141401 .text {
  1211. position:absolute;
  1212. align-self:center;
  1213. padding:2px 2px 2px 2px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u141401_text {
  1218. border-width:0px;
  1219. word-wrap:break-word;
  1220. text-transform:none;
  1221. visibility:hidden;
  1222. }
  1223. #u141402 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:0px;
  1229. height:0px;
  1230. }
  1231. #u141403_div {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:375px;
  1237. height:50px;
  1238. background:inherit;
  1239. background-color:rgba(255, 255, 255, 1);
  1240. box-sizing:border-box;
  1241. border-width:1px;
  1242. border-style:solid;
  1243. border-color:rgba(242, 242, 242, 1);
  1244. border-radius:26px;
  1245. border-top-left-radius:0px;
  1246. border-top-right-radius:0px;
  1247. -moz-box-shadow:none;
  1248. -webkit-box-shadow:none;
  1249. box-shadow:none;
  1250. }
  1251. #u141403 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:29px;
  1255. top:791px;
  1256. width:375px;
  1257. height:50px;
  1258. display:flex;
  1259. }
  1260. #u141403 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:2px 2px 2px 2px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u141403_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. visibility:hidden;
  1272. }
  1273. #u141404 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:0px;
  1277. top:0px;
  1278. width:0px;
  1279. height:0px;
  1280. }
  1281. #u141405_img {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:24px;
  1287. height:24px;
  1288. }
  1289. #u141405 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:307px;
  1293. top:795px;
  1294. width:24px;
  1295. height:24px;
  1296. display:flex;
  1297. font-size:8px;
  1298. }
  1299. #u141405 .text {
  1300. position:absolute;
  1301. align-self:center;
  1302. padding:2px 2px 2px 2px;
  1303. box-sizing:border-box;
  1304. width:100%;
  1305. }
  1306. #u141405_text {
  1307. border-width:0px;
  1308. word-wrap:break-word;
  1309. text-transform:none;
  1310. }
  1311. #u141406_div {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:49px;
  1317. height:17px;
  1318. background:inherit;
  1319. background-color:rgba(255, 255, 255, 0);
  1320. border:none;
  1321. border-radius:0px;
  1322. -moz-box-shadow:none;
  1323. -webkit-box-shadow:none;
  1324. box-shadow:none;
  1325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1326. font-weight:400;
  1327. font-style:normal;
  1328. font-size:12px;
  1329. }
  1330. #u141406 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:295px;
  1334. top:820px;
  1335. width:49px;
  1336. height:17px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:12px;
  1342. }
  1343. #u141406 .text {
  1344. position:absolute;
  1345. align-self:flex-start;
  1346. padding:0px 0px 0px 0px;
  1347. box-sizing:border-box;
  1348. width:100%;
  1349. }
  1350. #u141406_text {
  1351. border-width:0px;
  1352. white-space:nowrap;
  1353. text-transform:none;
  1354. }
  1355. #u141407 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:0px;
  1361. height:0px;
  1362. }
  1363. #u141408_div {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:49px;
  1369. height:17px;
  1370. background:inherit;
  1371. background-color:rgba(255, 255, 255, 0);
  1372. border:none;
  1373. border-radius:0px;
  1374. -moz-box-shadow:none;
  1375. -webkit-box-shadow:none;
  1376. box-shadow:none;
  1377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1378. font-weight:400;
  1379. font-style:normal;
  1380. font-size:12px;
  1381. }
  1382. #u141408 {
  1383. border-width:0px;
  1384. position:absolute;
  1385. left:89px;
  1386. top:820px;
  1387. width:49px;
  1388. height:17px;
  1389. display:flex;
  1390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1391. font-weight:400;
  1392. font-style:normal;
  1393. font-size:12px;
  1394. }
  1395. #u141408 .text {
  1396. position:absolute;
  1397. align-self:flex-start;
  1398. padding:0px 0px 0px 0px;
  1399. box-sizing:border-box;
  1400. width:100%;
  1401. }
  1402. #u141408_text {
  1403. border-width:0px;
  1404. white-space:nowrap;
  1405. text-transform:none;
  1406. }
  1407. #u141409_img {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:0px;
  1411. top:0px;
  1412. width:24px;
  1413. height:24px;
  1414. }
  1415. #u141409 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:101px;
  1419. top:795px;
  1420. width:24px;
  1421. height:24px;
  1422. display:flex;
  1423. font-size:8px;
  1424. color:#FFFFFF;
  1425. }
  1426. #u141409 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:2px 2px 2px 2px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u141409_text {
  1434. border-width:0px;
  1435. word-wrap:break-word;
  1436. text-transform:none;
  1437. }
  1438. #u141410_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:33px;
  1445. }
  1446. #u141410 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:94px;
  1450. top:276px;
  1451. width:22px;
  1452. height:33px;
  1453. display:flex;
  1454. }
  1455. #u141410 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u141410_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u141411_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:22px;
  1474. height:33px;
  1475. }
  1476. #u141411 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:202px;
  1480. top:384px;
  1481. width:22px;
  1482. height:33px;
  1483. display:flex;
  1484. }
  1485. #u141411 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u141411_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u141412 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:0px;
  1504. height:0px;
  1505. }
  1506. #u141413_div {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:50px;
  1512. height:28px;
  1513. background:inherit;
  1514. background-color:rgba(255, 255, 255, 1);
  1515. box-sizing:border-box;
  1516. border-width:1px;
  1517. border-style:solid;
  1518. border-color:rgba(215, 215, 215, 1);
  1519. border-radius:4px;
  1520. -moz-box-shadow:none;
  1521. -webkit-box-shadow:none;
  1522. box-shadow:none;
  1523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1524. font-weight:400;
  1525. font-style:normal;
  1526. font-size:11px;
  1527. color:#7F7F7F;
  1528. text-align:left;
  1529. }
  1530. #u141413 {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:348px;
  1534. top:434px;
  1535. width:50px;
  1536. height:28px;
  1537. display:flex;
  1538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1539. font-weight:400;
  1540. font-style:normal;
  1541. font-size:11px;
  1542. color:#7F7F7F;
  1543. text-align:left;
  1544. }
  1545. #u141413 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 40px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u141413_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u141414 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u141415_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:12px;
  1572. height:25px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-left:0px;
  1577. border-top:0px;
  1578. border-right:0px;
  1579. border-radius:0px;
  1580. border-bottom-right-radius:0px;
  1581. border-bottom-left-radius:0px;
  1582. -moz-box-shadow:none;
  1583. -webkit-box-shadow:none;
  1584. box-shadow:none;
  1585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1586. font-weight:400;
  1587. font-style:normal;
  1588. font-size:18px;
  1589. color:#D9001B;
  1590. }
  1591. #u141415 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:379px;
  1595. top:436px;
  1596. width:12px;
  1597. height:25px;
  1598. display:flex;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:18px;
  1603. color:#D9001B;
  1604. }
  1605. #u141415 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:0px 0px 0px 0px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u141415_text {
  1613. border-width:0px;
  1614. white-space:nowrap;
  1615. text-transform:none;
  1616. }
  1617. #u141416_img {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:19px;
  1623. height:17px;
  1624. }
  1625. #u141416 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:355px;
  1629. top:439px;
  1630. width:19px;
  1631. height:17px;
  1632. display:flex;
  1633. }
  1634. #u141416 .text {
  1635. position:absolute;
  1636. align-self:center;
  1637. padding:2px 2px 2px 2px;
  1638. box-sizing:border-box;
  1639. width:100%;
  1640. }
  1641. #u141416_text {
  1642. border-width:0px;
  1643. word-wrap:break-word;
  1644. text-transform:none;
  1645. visibility:hidden;
  1646. }
  1647. #u141417_img {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:0px;
  1651. top:0px;
  1652. width:22px;
  1653. height:33px;
  1654. }
  1655. #u141417 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:96px;
  1659. top:437px;
  1660. width:22px;
  1661. height:33px;
  1662. display:flex;
  1663. }
  1664. #u141417 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u141417_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u141418_img {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:22px;
  1683. height:33px;
  1684. }
  1685. #u141418 {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:340px;
  1689. top:464px;
  1690. width:22px;
  1691. height:33px;
  1692. display:flex;
  1693. }
  1694. #u141418 .text {
  1695. position:absolute;
  1696. align-self:center;
  1697. padding:2px 2px 2px 2px;
  1698. box-sizing:border-box;
  1699. width:100%;
  1700. }
  1701. #u141418_text {
  1702. border-width:0px;
  1703. word-wrap:break-word;
  1704. text-transform:none;
  1705. visibility:hidden;
  1706. }
  1707. #u141419_img {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:22px;
  1713. height:33px;
  1714. }
  1715. #u141419 {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:179px;
  1719. top:582px;
  1720. width:22px;
  1721. height:33px;
  1722. display:flex;
  1723. }
  1724. #u141419 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:2px 2px 2px 2px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u141419_text {
  1732. border-width:0px;
  1733. word-wrap:break-word;
  1734. text-transform:none;
  1735. visibility:hidden;
  1736. }
  1737. #u141420_img {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:22px;
  1743. height:33px;
  1744. }
  1745. #u141420 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:249px;
  1749. top:632px;
  1750. width:22px;
  1751. height:33px;
  1752. display:flex;
  1753. }
  1754. #u141420 .text {
  1755. position:absolute;
  1756. align-self:center;
  1757. padding:2px 2px 2px 2px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u141420_text {
  1762. border-width:0px;
  1763. word-wrap:break-word;
  1764. text-transform:none;
  1765. visibility:hidden;
  1766. }
  1767. #u141421 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:0px;
  1773. height:0px;
  1774. }
  1775. #u141422_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:180px;
  1781. height:51px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 1);
  1784. box-sizing:border-box;
  1785. border-width:1px;
  1786. border-style:solid;
  1787. border-color:rgba(215, 215, 215, 1);
  1788. border-radius:4px;
  1789. -moz-box-shadow:none;
  1790. -webkit-box-shadow:none;
  1791. box-shadow:none;
  1792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1793. font-weight:400;
  1794. font-style:normal;
  1795. text-align:left;
  1796. }
  1797. #u141422 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:123px;
  1801. top:248px;
  1802. width:180px;
  1803. height:51px;
  1804. display:flex;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. text-align:left;
  1809. }
  1810. #u141422 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 55px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u141422_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. }
  1822. #u141423_img {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:45px;
  1828. height:45px;
  1829. }
  1830. #u141423 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:126px;
  1834. top:251px;
  1835. width:45px;
  1836. height:45px;
  1837. display:flex;
  1838. }
  1839. #u141423 .text {
  1840. position:absolute;
  1841. align-self:center;
  1842. padding:2px 2px 2px 2px;
  1843. box-sizing:border-box;
  1844. width:100%;
  1845. }
  1846. #u141423_text {
  1847. border-width:0px;
  1848. word-wrap:break-word;
  1849. text-transform:none;
  1850. visibility:hidden;
  1851. }
  1852. #u141424_img {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:21px;
  1858. height:14px;
  1859. }
  1860. #u141424 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:138px;
  1864. top:267px;
  1865. width:21px;
  1866. height:14px;
  1867. display:flex;
  1868. }
  1869. #u141424 .text {
  1870. position:absolute;
  1871. align-self:center;
  1872. padding:2px 2px 2px 2px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u141424_text {
  1877. border-width:0px;
  1878. word-wrap:break-word;
  1879. text-transform:none;
  1880. visibility:hidden;
  1881. }
  1882. #u141426_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:433px;
  1888. height:865px;
  1889. }
  1890. #u141426 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:486px;
  1894. top:1px;
  1895. width:433px;
  1896. height:865px;
  1897. display:flex;
  1898. }
  1899. #u141426 .text {
  1900. position:absolute;
  1901. align-self:center;
  1902. padding:2px 2px 2px 2px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u141426_text {
  1907. border-width:0px;
  1908. word-wrap:break-word;
  1909. text-transform:none;
  1910. visibility:hidden;
  1911. }
  1912. #u141427_div {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:375px;
  1918. height:40px;
  1919. background:inherit;
  1920. background-color:rgba(255, 255, 255, 1);
  1921. box-sizing:border-box;
  1922. border-width:1px;
  1923. border-style:solid;
  1924. border-color:rgba(215, 215, 215, 1);
  1925. border-left:0px;
  1926. border-top:0px;
  1927. border-right:0px;
  1928. border-radius:0px;
  1929. border-bottom-right-radius:0px;
  1930. border-bottom-left-radius:0px;
  1931. -moz-box-shadow:none;
  1932. -webkit-box-shadow:none;
  1933. box-shadow:none;
  1934. }
  1935. #u141427 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:515px;
  1939. top:68px;
  1940. width:375px;
  1941. height:40px;
  1942. display:flex;
  1943. }
  1944. #u141427 .text {
  1945. position:absolute;
  1946. align-self:center;
  1947. padding:2px 2px 2px 2px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u141427_text {
  1952. border-width:0px;
  1953. word-wrap:break-word;
  1954. text-transform:none;
  1955. visibility:hidden;
  1956. }
  1957. #u141428 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:0px;
  1963. height:0px;
  1964. }
  1965. #u141429_div {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:88px;
  1971. height:32px;
  1972. background:inherit;
  1973. background-color:rgba(255, 255, 255, 1);
  1974. box-sizing:border-box;
  1975. border-width:1px;
  1976. border-style:solid;
  1977. border-color:rgba(242, 242, 242, 1);
  1978. border-radius:33px;
  1979. -moz-box-shadow:none;
  1980. -webkit-box-shadow:none;
  1981. box-shadow:none;
  1982. }
  1983. #u141429 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:795px;
  1987. top:72px;
  1988. width:88px;
  1989. height:32px;
  1990. display:flex;
  1991. }
  1992. #u141429 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 2px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u141429_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. visibility:hidden;
  2004. }
  2005. #u141430 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:0px;
  2011. height:0px;
  2012. }
  2013. #u141431_img {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:18px;
  2019. height:18px;
  2020. }
  2021. #u141431 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:858px;
  2025. top:79px;
  2026. width:18px;
  2027. height:18px;
  2028. display:flex;
  2029. }
  2030. #u141431 .text {
  2031. position:absolute;
  2032. align-self:center;
  2033. padding:2px 2px 2px 2px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u141431_text {
  2038. border-width:0px;
  2039. word-wrap:break-word;
  2040. text-transform:none;
  2041. visibility:hidden;
  2042. }
  2043. #u141432_img {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:6px;
  2049. height:6px;
  2050. }
  2051. #u141432 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:864px;
  2055. top:85px;
  2056. width:6px;
  2057. height:6px;
  2058. display:flex;
  2059. }
  2060. #u141432 .text {
  2061. position:absolute;
  2062. align-self:center;
  2063. padding:2px 2px 2px 2px;
  2064. box-sizing:border-box;
  2065. width:100%;
  2066. }
  2067. #u141432_text {
  2068. border-width:0px;
  2069. word-wrap:break-word;
  2070. text-transform:none;
  2071. visibility:hidden;
  2072. }
  2073. #u141433 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:0px;
  2079. height:0px;
  2080. }
  2081. #u141434_img {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:5px;
  2087. height:5px;
  2088. }
  2089. #u141434 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:809px;
  2093. top:86px;
  2094. width:5px;
  2095. height:5px;
  2096. display:flex;
  2097. }
  2098. #u141434 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 2px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u141434_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u141435_img {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:5px;
  2117. height:5px;
  2118. }
  2119. #u141435 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:825px;
  2123. top:86px;
  2124. width:5px;
  2125. height:5px;
  2126. display:flex;
  2127. }
  2128. #u141435 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 2px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u141435_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u141436_img {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:7px;
  2147. height:7px;
  2148. }
  2149. #u141436 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:816px;
  2153. top:85px;
  2154. width:7px;
  2155. height:7px;
  2156. display:flex;
  2157. }
  2158. #u141436 .text {
  2159. position:absolute;
  2160. align-self:center;
  2161. padding:2px 2px 2px 2px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u141436_text {
  2166. border-width:0px;
  2167. word-wrap:break-word;
  2168. text-transform:none;
  2169. visibility:hidden;
  2170. }
  2171. #u141437_img {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:19px;
  2177. height:2px;
  2178. }
  2179. #u141437 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:833px;
  2183. top:88px;
  2184. width:18px;
  2185. height:1px;
  2186. display:flex;
  2187. -webkit-transform:rotate(90deg);
  2188. -moz-transform:rotate(90deg);
  2189. -ms-transform:rotate(90deg);
  2190. transform:rotate(90deg);
  2191. }
  2192. #u141437 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:2px 2px 2px 2px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u141437_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. visibility:hidden;
  2204. }
  2205. #u141438_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:375px;
  2211. height:44px;
  2212. }
  2213. #u141438 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:515px;
  2217. top:25px;
  2218. width:375px;
  2219. height:44px;
  2220. display:flex;
  2221. }
  2222. #u141438 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 2px 2px 2px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u141438_text {
  2230. border-width:0px;
  2231. word-wrap:break-word;
  2232. text-transform:none;
  2233. visibility:hidden;
  2234. }
  2235. #u141439_div {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:375px;
  2241. height:50px;
  2242. background:inherit;
  2243. background-color:rgba(255, 255, 255, 1);
  2244. box-sizing:border-box;
  2245. border-width:1px;
  2246. border-style:solid;
  2247. border-color:rgba(242, 242, 242, 1);
  2248. border-radius:26px;
  2249. border-top-left-radius:0px;
  2250. border-top-right-radius:0px;
  2251. -moz-box-shadow:none;
  2252. -webkit-box-shadow:none;
  2253. box-shadow:none;
  2254. }
  2255. #u141439 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:515px;
  2259. top:789px;
  2260. width:375px;
  2261. height:50px;
  2262. display:flex;
  2263. }
  2264. #u141439 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 2px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u141439_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u141440 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:0px;
  2283. height:0px;
  2284. }
  2285. #u141441_img {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:24px;
  2291. height:24px;
  2292. }
  2293. #u141441 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:555px;
  2297. top:793px;
  2298. width:24px;
  2299. height:24px;
  2300. display:flex;
  2301. font-size:8px;
  2302. }
  2303. #u141441 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 2px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u141441_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. }
  2315. #u141442_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:25px;
  2321. height:17px;
  2322. background:inherit;
  2323. background-color:rgba(255, 255, 255, 0);
  2324. border:none;
  2325. border-radius:0px;
  2326. -moz-box-shadow:none;
  2327. -webkit-box-shadow:none;
  2328. box-shadow:none;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. }
  2334. #u141442 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:555px;
  2338. top:818px;
  2339. width:25px;
  2340. height:17px;
  2341. display:flex;
  2342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2343. font-weight:400;
  2344. font-style:normal;
  2345. font-size:12px;
  2346. }
  2347. #u141442 .text {
  2348. position:absolute;
  2349. align-self:flex-start;
  2350. padding:0px 0px 0px 0px;
  2351. box-sizing:border-box;
  2352. width:100%;
  2353. }
  2354. #u141442_text {
  2355. border-width:0px;
  2356. white-space:nowrap;
  2357. text-transform:none;
  2358. }
  2359. #u141443 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:0px;
  2365. height:0px;
  2366. }
  2367. #u141444_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:24px;
  2373. height:24px;
  2374. }
  2375. #u141444 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:825px;
  2379. top:795px;
  2380. width:24px;
  2381. height:24px;
  2382. display:flex;
  2383. font-size:8px;
  2384. }
  2385. #u141444 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 2px 2px 2px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u141444_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. }
  2397. #u141445_div {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:25px;
  2403. height:17px;
  2404. background:inherit;
  2405. background-color:rgba(255, 255, 255, 0);
  2406. border:none;
  2407. border-radius:0px;
  2408. -moz-box-shadow:none;
  2409. -webkit-box-shadow:none;
  2410. box-shadow:none;
  2411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2412. font-weight:400;
  2413. font-style:normal;
  2414. font-size:12px;
  2415. }
  2416. #u141445 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:825px;
  2420. top:820px;
  2421. width:25px;
  2422. height:17px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:12px;
  2428. }
  2429. #u141445 .text {
  2430. position:absolute;
  2431. align-self:flex-start;
  2432. padding:0px 0px 0px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u141445_text {
  2437. border-width:0px;
  2438. white-space:nowrap;
  2439. text-transform:none;
  2440. }
  2441. #u141446_div {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:375px;
  2447. height:681px;
  2448. background:inherit;
  2449. background-color:rgba(242, 242, 242, 0.462745098039216);
  2450. border:none;
  2451. border-radius:0px;
  2452. -moz-box-shadow:none;
  2453. -webkit-box-shadow:none;
  2454. box-shadow:none;
  2455. }
  2456. #u141446 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:515px;
  2460. top:108px;
  2461. width:375px;
  2462. height:681px;
  2463. display:flex;
  2464. }
  2465. #u141446 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 2px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u141446_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. visibility:hidden;
  2477. }
  2478. #u141447 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:0px;
  2484. height:0px;
  2485. }
  2486. #u141448_img {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:24px;
  2492. height:24px;
  2493. }
  2494. #u141448 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:737px;
  2498. top:793px;
  2499. width:24px;
  2500. height:24px;
  2501. display:flex;
  2502. font-size:8px;
  2503. }
  2504. #u141448 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 2px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u141448_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. }
  2516. #u141449_div {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:37px;
  2522. height:17px;
  2523. background:inherit;
  2524. background-color:rgba(255, 255, 255, 0);
  2525. border:none;
  2526. border-radius:0px;
  2527. -moz-box-shadow:none;
  2528. -webkit-box-shadow:none;
  2529. box-shadow:none;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:12px;
  2534. }
  2535. #u141449 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:731px;
  2539. top:818px;
  2540. width:37px;
  2541. height:17px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:12px;
  2547. }
  2548. #u141449 .text {
  2549. position:absolute;
  2550. align-self:flex-start;
  2551. padding:0px 0px 0px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u141449_text {
  2556. border-width:0px;
  2557. white-space:nowrap;
  2558. text-transform:none;
  2559. }
  2560. #u141450 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:0px;
  2566. height:0px;
  2567. }
  2568. #u141451_img {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:24px;
  2574. height:24px;
  2575. }
  2576. #u141451 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:643px;
  2580. top:793px;
  2581. width:24px;
  2582. height:24px;
  2583. display:flex;
  2584. font-size:8px;
  2585. }
  2586. #u141451 .text {
  2587. position:absolute;
  2588. align-self:center;
  2589. padding:2px 2px 2px 2px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u141451_text {
  2594. border-width:0px;
  2595. word-wrap:break-word;
  2596. text-transform:none;
  2597. }
  2598. #u141452_div {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:37px;
  2604. height:17px;
  2605. background:inherit;
  2606. background-color:rgba(255, 255, 255, 0);
  2607. border:none;
  2608. border-radius:0px;
  2609. -moz-box-shadow:none;
  2610. -webkit-box-shadow:none;
  2611. box-shadow:none;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:12px;
  2616. }
  2617. #u141452 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:637px;
  2621. top:818px;
  2622. width:37px;
  2623. height:17px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:12px;
  2629. }
  2630. #u141452 .text {
  2631. position:absolute;
  2632. align-self:flex-start;
  2633. padding:0px 0px 0px 0px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u141452_text {
  2638. border-width:0px;
  2639. white-space:nowrap;
  2640. text-transform:none;
  2641. }
  2642. #u141453_img {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:375px;
  2648. height:44px;
  2649. }
  2650. #u141453 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:515px;
  2654. top:25px;
  2655. width:375px;
  2656. height:44px;
  2657. display:flex;
  2658. }
  2659. #u141453 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 2px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u141453_text {
  2667. border-width:0px;
  2668. word-wrap:break-word;
  2669. text-transform:none;
  2670. visibility:hidden;
  2671. }
  2672. #u141454 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:0px;
  2678. height:0px;
  2679. }
  2680. #u141455_div {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:88px;
  2686. height:32px;
  2687. background:inherit;
  2688. background-color:rgba(255, 255, 255, 1);
  2689. box-sizing:border-box;
  2690. border-width:1px;
  2691. border-style:solid;
  2692. border-color:rgba(242, 242, 242, 1);
  2693. border-radius:33px;
  2694. -moz-box-shadow:none;
  2695. -webkit-box-shadow:none;
  2696. box-shadow:none;
  2697. }
  2698. #u141455 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:795px;
  2702. top:72px;
  2703. width:88px;
  2704. height:32px;
  2705. display:flex;
  2706. }
  2707. #u141455 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 2px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u141455_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u141456 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:0px;
  2726. height:0px;
  2727. }
  2728. #u141457_img {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:18px;
  2734. height:18px;
  2735. }
  2736. #u141457 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:858px;
  2740. top:79px;
  2741. width:18px;
  2742. height:18px;
  2743. display:flex;
  2744. }
  2745. #u141457 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 2px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u141457_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u141458_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:6px;
  2764. height:6px;
  2765. }
  2766. #u141458 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:864px;
  2770. top:85px;
  2771. width:6px;
  2772. height:6px;
  2773. display:flex;
  2774. }
  2775. #u141458 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 2px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u141458_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u141459 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:0px;
  2794. height:0px;
  2795. }
  2796. #u141460_img {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:5px;
  2802. height:5px;
  2803. }
  2804. #u141460 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:809px;
  2808. top:86px;
  2809. width:5px;
  2810. height:5px;
  2811. display:flex;
  2812. }
  2813. #u141460 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 2px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u141460_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. visibility:hidden;
  2825. }
  2826. #u141461_img {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:5px;
  2832. height:5px;
  2833. }
  2834. #u141461 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:825px;
  2838. top:86px;
  2839. width:5px;
  2840. height:5px;
  2841. display:flex;
  2842. }
  2843. #u141461 .text {
  2844. position:absolute;
  2845. align-self:center;
  2846. padding:2px 2px 2px 2px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u141461_text {
  2851. border-width:0px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. visibility:hidden;
  2855. }
  2856. #u141462_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:7px;
  2862. height:7px;
  2863. }
  2864. #u141462 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:816px;
  2868. top:85px;
  2869. width:7px;
  2870. height:7px;
  2871. display:flex;
  2872. }
  2873. #u141462 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:2px 2px 2px 2px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u141462_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. visibility:hidden;
  2885. }
  2886. #u141463_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:19px;
  2892. height:2px;
  2893. }
  2894. #u141463 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:833px;
  2898. top:88px;
  2899. width:18px;
  2900. height:1px;
  2901. display:flex;
  2902. -webkit-transform:rotate(90deg);
  2903. -moz-transform:rotate(90deg);
  2904. -ms-transform:rotate(90deg);
  2905. transform:rotate(90deg);
  2906. }
  2907. #u141463 .text {
  2908. position:absolute;
  2909. align-self:center;
  2910. padding:2px 2px 2px 2px;
  2911. box-sizing:border-box;
  2912. width:100%;
  2913. }
  2914. #u141463_text {
  2915. border-width:0px;
  2916. word-wrap:break-word;
  2917. text-transform:none;
  2918. visibility:hidden;
  2919. }
  2920. #u141464_div {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:65px;
  2926. height:22px;
  2927. background:inherit;
  2928. background-color:rgba(255, 255, 255, 0);
  2929. border:none;
  2930. border-radius:0px;
  2931. -moz-box-shadow:none;
  2932. -webkit-box-shadow:none;
  2933. box-shadow:none;
  2934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2935. font-weight:400;
  2936. font-style:normal;
  2937. font-size:16px;
  2938. color:#000000;
  2939. }
  2940. #u141464 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:673px;
  2944. top:79px;
  2945. width:65px;
  2946. height:22px;
  2947. display:flex;
  2948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2949. font-weight:400;
  2950. font-style:normal;
  2951. font-size:16px;
  2952. color:#000000;
  2953. }
  2954. #u141464 .text {
  2955. position:absolute;
  2956. align-self:flex-start;
  2957. padding:0px 0px 0px 0px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u141464_text {
  2962. border-width:0px;
  2963. white-space:nowrap;
  2964. text-transform:none;
  2965. }
  2966. #u141465_div {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:375px;
  2972. height:683px;
  2973. background:inherit;
  2974. background-color:rgba(242, 242, 242, 0.996078431372549);
  2975. border:none;
  2976. border-radius:0px;
  2977. -moz-box-shadow:none;
  2978. -webkit-box-shadow:none;
  2979. box-shadow:none;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. }
  2984. #u141465 {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:515px;
  2988. top:107px;
  2989. width:375px;
  2990. height:683px;
  2991. display:flex;
  2992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2993. font-weight:400;
  2994. font-style:normal;
  2995. }
  2996. #u141465 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:2px 2px 2px 2px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u141465_text {
  3004. border-width:0px;
  3005. word-wrap:break-word;
  3006. text-transform:none;
  3007. visibility:hidden;
  3008. }
  3009. #u141466_div {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:12px;
  3015. height:12px;
  3016. background:inherit;
  3017. background-color:rgba(255, 255, 255, 0);
  3018. box-sizing:border-box;
  3019. border-width:2px;
  3020. border-style:solid;
  3021. border-color:rgba(51, 51, 51, 1);
  3022. border-right:0px;
  3023. border-bottom:0px;
  3024. border-radius:0px;
  3025. border-top-right-radius:0px;
  3026. border-bottom-left-radius:0px;
  3027. -moz-box-shadow:none;
  3028. -webkit-box-shadow:none;
  3029. box-shadow:none;
  3030. }
  3031. #u141466 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:530px;
  3035. top:82px;
  3036. width:12px;
  3037. height:12px;
  3038. display:flex;
  3039. -webkit-transform:rotate(315deg);
  3040. -moz-transform:rotate(315deg);
  3041. -ms-transform:rotate(315deg);
  3042. transform:rotate(315deg);
  3043. }
  3044. #u141466 .text {
  3045. position:absolute;
  3046. align-self:center;
  3047. padding:2px 2px 2px 2px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u141466_text {
  3052. border-width:0px;
  3053. word-wrap:break-word;
  3054. text-transform:none;
  3055. visibility:hidden;
  3056. }
  3057. #u141467_img {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:23px;
  3063. height:23px;
  3064. }
  3065. #u141467 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:557px;
  3069. top:77px;
  3070. width:23px;
  3071. height:23px;
  3072. display:flex;
  3073. }
  3074. #u141467 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 2px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u141467_text {
  3082. border-width:0px;
  3083. word-wrap:break-word;
  3084. text-transform:none;
  3085. visibility:hidden;
  3086. }
  3087. #u141468 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:0px;
  3093. height:0px;
  3094. }
  3095. #u141469_div {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:11px;
  3101. height:10px;
  3102. background:inherit;
  3103. background-color:rgba(242, 242, 242, 1);
  3104. border:none;
  3105. border-radius:0px;
  3106. -moz-box-shadow:none;
  3107. -webkit-box-shadow:none;
  3108. box-shadow:none;
  3109. }
  3110. #u141469 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:846px;
  3114. top:734px;
  3115. width:11px;
  3116. height:10px;
  3117. display:flex;
  3118. }
  3119. #u141469 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 2px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u141469_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u141470_div {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:11px;
  3138. height:10px;
  3139. background:inherit;
  3140. background-color:rgba(242, 242, 242, 1);
  3141. border:none;
  3142. border-radius:0px;
  3143. -moz-box-shadow:none;
  3144. -webkit-box-shadow:none;
  3145. box-shadow:none;
  3146. }
  3147. #u141470 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:859px;
  3151. top:734px;
  3152. width:11px;
  3153. height:10px;
  3154. display:flex;
  3155. }
  3156. #u141470 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 2px 2px 2px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u141470_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u141471_div {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:11px;
  3175. height:10px;
  3176. background:inherit;
  3177. background-color:rgba(242, 242, 242, 1);
  3178. border:none;
  3179. border-radius:0px;
  3180. -moz-box-shadow:none;
  3181. -webkit-box-shadow:none;
  3182. box-shadow:none;
  3183. }
  3184. #u141471 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:846px;
  3188. top:746px;
  3189. width:11px;
  3190. height:10px;
  3191. display:flex;
  3192. }
  3193. #u141471 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:2px 2px 2px 2px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u141471_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. visibility:hidden;
  3205. }
  3206. #u141472_div {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:11px;
  3212. height:10px;
  3213. background:inherit;
  3214. background-color:rgba(242, 242, 242, 1);
  3215. border:none;
  3216. border-radius:0px;
  3217. -moz-box-shadow:none;
  3218. -webkit-box-shadow:none;
  3219. box-shadow:none;
  3220. }
  3221. #u141472 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:859px;
  3225. top:746px;
  3226. width:11px;
  3227. height:10px;
  3228. display:flex;
  3229. }
  3230. #u141472 .text {
  3231. position:absolute;
  3232. align-self:center;
  3233. padding:2px 2px 2px 2px;
  3234. box-sizing:border-box;
  3235. width:100%;
  3236. }
  3237. #u141472_text {
  3238. border-width:0px;
  3239. word-wrap:break-word;
  3240. text-transform:none;
  3241. visibility:hidden;
  3242. }
  3243. #u141473_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:175px;
  3249. height:119px;
  3250. }
  3251. #u141473 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:523px;
  3255. top:168px;
  3256. width:175px;
  3257. height:119px;
  3258. display:flex;
  3259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. color:#FFFFFF;
  3263. }
  3264. #u141473 .text {
  3265. position:absolute;
  3266. align-self:center;
  3267. padding:2px 2px 2px 2px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u141473_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. }
  3276. #u141474_img {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:175px;
  3282. height:119px;
  3283. }
  3284. #u141474 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:708px;
  3288. top:168px;
  3289. width:175px;
  3290. height:119px;
  3291. display:flex;
  3292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. color:#FFFFFF;
  3296. }
  3297. #u141474 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:2px 2px 2px 2px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u141474_text {
  3305. border-width:0px;
  3306. word-wrap:break-word;
  3307. text-transform:none;
  3308. }
  3309. #u141475_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:175px;
  3315. height:119px;
  3316. }
  3317. #u141475 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:523px;
  3321. top:297px;
  3322. width:175px;
  3323. height:119px;
  3324. display:flex;
  3325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3326. font-weight:400;
  3327. font-style:normal;
  3328. color:#FFFFFF;
  3329. }
  3330. #u141475 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 2px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u141475_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. }
  3342. #u141476_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:175px;
  3348. height:119px;
  3349. }
  3350. #u141476 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:708px;
  3354. top:297px;
  3355. width:175px;
  3356. height:119px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. color:#FFFFFF;
  3362. }
  3363. #u141476 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:2px 2px 2px 2px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u141476_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. }
  3375. #u141477_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:175px;
  3381. height:119px;
  3382. }
  3383. #u141477 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:523px;
  3387. top:426px;
  3388. width:175px;
  3389. height:119px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. color:#FFFFFF;
  3395. }
  3396. #u141477 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 2px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u141477_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. }
  3408. #u141478_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:175px;
  3414. height:119px;
  3415. }
  3416. #u141478 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:708px;
  3420. top:426px;
  3421. width:175px;
  3422. height:119px;
  3423. display:flex;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. color:#FFFFFF;
  3428. }
  3429. #u141478 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 2px 2px 2px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u141478_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. }
  3441. #u141479_img {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:175px;
  3447. height:119px;
  3448. }
  3449. #u141479 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:523px;
  3453. top:555px;
  3454. width:175px;
  3455. height:119px;
  3456. display:flex;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. color:#FFFFFF;
  3461. }
  3462. #u141479 .text {
  3463. position:absolute;
  3464. align-self:center;
  3465. padding:2px 2px 2px 2px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u141479_text {
  3470. border-width:0px;
  3471. word-wrap:break-word;
  3472. text-transform:none;
  3473. }
  3474. #u141480_img {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:175px;
  3480. height:119px;
  3481. }
  3482. #u141480 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:708px;
  3486. top:555px;
  3487. width:175px;
  3488. height:119px;
  3489. display:flex;
  3490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. color:#FFFFFF;
  3494. }
  3495. #u141480 .text {
  3496. position:absolute;
  3497. align-self:center;
  3498. padding:2px 2px 2px 2px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u141480_text {
  3503. border-width:0px;
  3504. word-wrap:break-word;
  3505. text-transform:none;
  3506. }
  3507. #u141482_img {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:0px;
  3511. top:0px;
  3512. width:433px;
  3513. height:865px;
  3514. }
  3515. #u141482 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:986px;
  3519. top:1px;
  3520. width:433px;
  3521. height:865px;
  3522. display:flex;
  3523. }
  3524. #u141482 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 2px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u141482_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u141483_div {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:375px;
  3543. height:40px;
  3544. background:inherit;
  3545. background-color:rgba(255, 255, 255, 1);
  3546. box-sizing:border-box;
  3547. border-width:1px;
  3548. border-style:solid;
  3549. border-color:rgba(215, 215, 215, 1);
  3550. border-left:0px;
  3551. border-top:0px;
  3552. border-right:0px;
  3553. border-radius:0px;
  3554. border-bottom-right-radius:0px;
  3555. border-bottom-left-radius:0px;
  3556. -moz-box-shadow:none;
  3557. -webkit-box-shadow:none;
  3558. box-shadow:none;
  3559. }
  3560. #u141483 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:1015px;
  3564. top:68px;
  3565. width:375px;
  3566. height:40px;
  3567. display:flex;
  3568. }
  3569. #u141483 .text {
  3570. position:absolute;
  3571. align-self:center;
  3572. padding:2px 2px 2px 2px;
  3573. box-sizing:border-box;
  3574. width:100%;
  3575. }
  3576. #u141483_text {
  3577. border-width:0px;
  3578. word-wrap:break-word;
  3579. text-transform:none;
  3580. visibility:hidden;
  3581. }
  3582. #u141484 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:0px;
  3586. top:0px;
  3587. width:0px;
  3588. height:0px;
  3589. }
  3590. #u141485_div {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:88px;
  3596. height:32px;
  3597. background:inherit;
  3598. background-color:rgba(255, 255, 255, 1);
  3599. box-sizing:border-box;
  3600. border-width:1px;
  3601. border-style:solid;
  3602. border-color:rgba(242, 242, 242, 1);
  3603. border-radius:33px;
  3604. -moz-box-shadow:none;
  3605. -webkit-box-shadow:none;
  3606. box-shadow:none;
  3607. }
  3608. #u141485 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:1295px;
  3612. top:72px;
  3613. width:88px;
  3614. height:32px;
  3615. display:flex;
  3616. }
  3617. #u141485 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 2px 2px 2px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u141485_text {
  3625. border-width:0px;
  3626. word-wrap:break-word;
  3627. text-transform:none;
  3628. visibility:hidden;
  3629. }
  3630. #u141486 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:0px;
  3635. width:0px;
  3636. height:0px;
  3637. }
  3638. #u141487_img {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:18px;
  3644. height:18px;
  3645. }
  3646. #u141487 {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:1358px;
  3650. top:79px;
  3651. width:18px;
  3652. height:18px;
  3653. display:flex;
  3654. }
  3655. #u141487 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:2px 2px 2px 2px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u141487_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u141488_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:6px;
  3674. height:6px;
  3675. }
  3676. #u141488 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:1364px;
  3680. top:85px;
  3681. width:6px;
  3682. height:6px;
  3683. display:flex;
  3684. }
  3685. #u141488 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 2px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u141488_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. visibility:hidden;
  3697. }
  3698. #u141489 {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:0px;
  3704. height:0px;
  3705. }
  3706. #u141490_img {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:5px;
  3712. height:5px;
  3713. }
  3714. #u141490 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:1309px;
  3718. top:86px;
  3719. width:5px;
  3720. height:5px;
  3721. display:flex;
  3722. }
  3723. #u141490 .text {
  3724. position:absolute;
  3725. align-self:center;
  3726. padding:2px 2px 2px 2px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u141490_text {
  3731. border-width:0px;
  3732. word-wrap:break-word;
  3733. text-transform:none;
  3734. visibility:hidden;
  3735. }
  3736. #u141491_img {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:5px;
  3742. height:5px;
  3743. }
  3744. #u141491 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:1325px;
  3748. top:86px;
  3749. width:5px;
  3750. height:5px;
  3751. display:flex;
  3752. }
  3753. #u141491 .text {
  3754. position:absolute;
  3755. align-self:center;
  3756. padding:2px 2px 2px 2px;
  3757. box-sizing:border-box;
  3758. width:100%;
  3759. }
  3760. #u141491_text {
  3761. border-width:0px;
  3762. word-wrap:break-word;
  3763. text-transform:none;
  3764. visibility:hidden;
  3765. }
  3766. #u141492_img {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:7px;
  3772. height:7px;
  3773. }
  3774. #u141492 {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:1316px;
  3778. top:85px;
  3779. width:7px;
  3780. height:7px;
  3781. display:flex;
  3782. }
  3783. #u141492 .text {
  3784. position:absolute;
  3785. align-self:center;
  3786. padding:2px 2px 2px 2px;
  3787. box-sizing:border-box;
  3788. width:100%;
  3789. }
  3790. #u141492_text {
  3791. border-width:0px;
  3792. word-wrap:break-word;
  3793. text-transform:none;
  3794. visibility:hidden;
  3795. }
  3796. #u141493_img {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:19px;
  3802. height:2px;
  3803. }
  3804. #u141493 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:1333px;
  3808. top:88px;
  3809. width:18px;
  3810. height:1px;
  3811. display:flex;
  3812. -webkit-transform:rotate(90deg);
  3813. -moz-transform:rotate(90deg);
  3814. -ms-transform:rotate(90deg);
  3815. transform:rotate(90deg);
  3816. }
  3817. #u141493 .text {
  3818. position:absolute;
  3819. align-self:center;
  3820. padding:2px 2px 2px 2px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u141493_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. visibility:hidden;
  3829. }
  3830. #u141494_img {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:375px;
  3836. height:44px;
  3837. }
  3838. #u141494 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:1015px;
  3842. top:25px;
  3843. width:375px;
  3844. height:44px;
  3845. display:flex;
  3846. }
  3847. #u141494 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 2px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u141494_text {
  3855. border-width:0px;
  3856. word-wrap:break-word;
  3857. text-transform:none;
  3858. visibility:hidden;
  3859. }
  3860. #u141495_div {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:375px;
  3866. height:50px;
  3867. background:inherit;
  3868. background-color:rgba(255, 255, 255, 1);
  3869. box-sizing:border-box;
  3870. border-width:1px;
  3871. border-style:solid;
  3872. border-color:rgba(242, 242, 242, 1);
  3873. border-radius:26px;
  3874. border-top-left-radius:0px;
  3875. border-top-right-radius:0px;
  3876. -moz-box-shadow:none;
  3877. -webkit-box-shadow:none;
  3878. box-shadow:none;
  3879. }
  3880. #u141495 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:1015px;
  3884. top:789px;
  3885. width:375px;
  3886. height:50px;
  3887. display:flex;
  3888. }
  3889. #u141495 .text {
  3890. position:absolute;
  3891. align-self:center;
  3892. padding:2px 2px 2px 2px;
  3893. box-sizing:border-box;
  3894. width:100%;
  3895. }
  3896. #u141495_text {
  3897. border-width:0px;
  3898. word-wrap:break-word;
  3899. text-transform:none;
  3900. visibility:hidden;
  3901. }
  3902. #u141496 {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:0px;
  3906. top:0px;
  3907. width:0px;
  3908. height:0px;
  3909. }
  3910. #u141497_img {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:24px;
  3916. height:24px;
  3917. }
  3918. #u141497 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:1055px;
  3922. top:793px;
  3923. width:24px;
  3924. height:24px;
  3925. display:flex;
  3926. font-size:8px;
  3927. }
  3928. #u141497 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 2px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u141497_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. }
  3940. #u141498_div {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:25px;
  3946. height:17px;
  3947. background:inherit;
  3948. background-color:rgba(255, 255, 255, 0);
  3949. border:none;
  3950. border-radius:0px;
  3951. -moz-box-shadow:none;
  3952. -webkit-box-shadow:none;
  3953. box-shadow:none;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:12px;
  3958. }
  3959. #u141498 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:1055px;
  3963. top:818px;
  3964. width:25px;
  3965. height:17px;
  3966. display:flex;
  3967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3968. font-weight:400;
  3969. font-style:normal;
  3970. font-size:12px;
  3971. }
  3972. #u141498 .text {
  3973. position:absolute;
  3974. align-self:flex-start;
  3975. padding:0px 0px 0px 0px;
  3976. box-sizing:border-box;
  3977. width:100%;
  3978. }
  3979. #u141498_text {
  3980. border-width:0px;
  3981. white-space:nowrap;
  3982. text-transform:none;
  3983. }
  3984. #u141499 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:0px;
  3988. top:0px;
  3989. width:0px;
  3990. height:0px;
  3991. }
  3992. #u141500_img {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:24px;
  3998. height:24px;
  3999. }
  4000. #u141500 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:1325px;
  4004. top:795px;
  4005. width:24px;
  4006. height:24px;
  4007. display:flex;
  4008. font-size:8px;
  4009. }
  4010. #u141500 .text {
  4011. position:absolute;
  4012. align-self:center;
  4013. padding:2px 2px 2px 2px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u141500_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. }
  4022. #u141501_div {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:25px;
  4028. height:17px;
  4029. background:inherit;
  4030. background-color:rgba(255, 255, 255, 0);
  4031. border:none;
  4032. border-radius:0px;
  4033. -moz-box-shadow:none;
  4034. -webkit-box-shadow:none;
  4035. box-shadow:none;
  4036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:12px;
  4040. }
  4041. #u141501 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:1325px;
  4045. top:820px;
  4046. width:25px;
  4047. height:17px;
  4048. display:flex;
  4049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4050. font-weight:400;
  4051. font-style:normal;
  4052. font-size:12px;
  4053. }
  4054. #u141501 .text {
  4055. position:absolute;
  4056. align-self:flex-start;
  4057. padding:0px 0px 0px 0px;
  4058. box-sizing:border-box;
  4059. width:100%;
  4060. }
  4061. #u141501_text {
  4062. border-width:0px;
  4063. white-space:nowrap;
  4064. text-transform:none;
  4065. }
  4066. #u141502_div {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:375px;
  4072. height:681px;
  4073. background:inherit;
  4074. background-color:rgba(242, 242, 242, 0.462745098039216);
  4075. border:none;
  4076. border-radius:0px;
  4077. -moz-box-shadow:none;
  4078. -webkit-box-shadow:none;
  4079. box-shadow:none;
  4080. }
  4081. #u141502 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:1015px;
  4085. top:108px;
  4086. width:375px;
  4087. height:681px;
  4088. display:flex;
  4089. }
  4090. #u141502 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:2px 2px 2px 2px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u141502_text {
  4098. border-width:0px;
  4099. word-wrap:break-word;
  4100. text-transform:none;
  4101. visibility:hidden;
  4102. }
  4103. #u141503 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:0px;
  4109. height:0px;
  4110. }
  4111. #u141504_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:24px;
  4117. height:24px;
  4118. }
  4119. #u141504 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:1237px;
  4123. top:793px;
  4124. width:24px;
  4125. height:24px;
  4126. display:flex;
  4127. font-size:8px;
  4128. }
  4129. #u141504 .text {
  4130. position:absolute;
  4131. align-self:center;
  4132. padding:2px 2px 2px 2px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u141504_text {
  4137. border-width:0px;
  4138. word-wrap:break-word;
  4139. text-transform:none;
  4140. }
  4141. #u141505_div {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:37px;
  4147. height:17px;
  4148. background:inherit;
  4149. background-color:rgba(255, 255, 255, 0);
  4150. border:none;
  4151. border-radius:0px;
  4152. -moz-box-shadow:none;
  4153. -webkit-box-shadow:none;
  4154. box-shadow:none;
  4155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4156. font-weight:400;
  4157. font-style:normal;
  4158. font-size:12px;
  4159. }
  4160. #u141505 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:1231px;
  4164. top:818px;
  4165. width:37px;
  4166. height:17px;
  4167. display:flex;
  4168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4169. font-weight:400;
  4170. font-style:normal;
  4171. font-size:12px;
  4172. }
  4173. #u141505 .text {
  4174. position:absolute;
  4175. align-self:flex-start;
  4176. padding:0px 0px 0px 0px;
  4177. box-sizing:border-box;
  4178. width:100%;
  4179. }
  4180. #u141505_text {
  4181. border-width:0px;
  4182. white-space:nowrap;
  4183. text-transform:none;
  4184. }
  4185. #u141506 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:0px;
  4191. height:0px;
  4192. }
  4193. #u141507_img {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:24px;
  4199. height:24px;
  4200. }
  4201. #u141507 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:1143px;
  4205. top:793px;
  4206. width:24px;
  4207. height:24px;
  4208. display:flex;
  4209. font-size:8px;
  4210. }
  4211. #u141507 .text {
  4212. position:absolute;
  4213. align-self:center;
  4214. padding:2px 2px 2px 2px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u141507_text {
  4219. border-width:0px;
  4220. word-wrap:break-word;
  4221. text-transform:none;
  4222. }
  4223. #u141508_div {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:37px;
  4229. height:17px;
  4230. background:inherit;
  4231. background-color:rgba(255, 255, 255, 0);
  4232. border:none;
  4233. border-radius:0px;
  4234. -moz-box-shadow:none;
  4235. -webkit-box-shadow:none;
  4236. box-shadow:none;
  4237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:12px;
  4241. }
  4242. #u141508 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:1137px;
  4246. top:818px;
  4247. width:37px;
  4248. height:17px;
  4249. display:flex;
  4250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:12px;
  4254. }
  4255. #u141508 .text {
  4256. position:absolute;
  4257. align-self:flex-start;
  4258. padding:0px 0px 0px 0px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u141508_text {
  4263. border-width:0px;
  4264. white-space:nowrap;
  4265. text-transform:none;
  4266. }
  4267. #u141509_img {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:375px;
  4273. height:44px;
  4274. }
  4275. #u141509 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:1015px;
  4279. top:25px;
  4280. width:375px;
  4281. height:44px;
  4282. display:flex;
  4283. }
  4284. #u141509 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:2px 2px 2px 2px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u141509_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. visibility:hidden;
  4296. }
  4297. #u141510 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:0px;
  4303. height:0px;
  4304. }
  4305. #u141511_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:88px;
  4311. height:32px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 1);
  4314. box-sizing:border-box;
  4315. border-width:1px;
  4316. border-style:solid;
  4317. border-color:rgba(242, 242, 242, 1);
  4318. border-radius:33px;
  4319. -moz-box-shadow:none;
  4320. -webkit-box-shadow:none;
  4321. box-shadow:none;
  4322. }
  4323. #u141511 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:1295px;
  4327. top:72px;
  4328. width:88px;
  4329. height:32px;
  4330. display:flex;
  4331. }
  4332. #u141511 .text {
  4333. position:absolute;
  4334. align-self:center;
  4335. padding:2px 2px 2px 2px;
  4336. box-sizing:border-box;
  4337. width:100%;
  4338. }
  4339. #u141511_text {
  4340. border-width:0px;
  4341. word-wrap:break-word;
  4342. text-transform:none;
  4343. visibility:hidden;
  4344. }
  4345. #u141512 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:0px;
  4349. top:0px;
  4350. width:0px;
  4351. height:0px;
  4352. }
  4353. #u141513_img {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:18px;
  4359. height:18px;
  4360. }
  4361. #u141513 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:1358px;
  4365. top:79px;
  4366. width:18px;
  4367. height:18px;
  4368. display:flex;
  4369. }
  4370. #u141513 .text {
  4371. position:absolute;
  4372. align-self:center;
  4373. padding:2px 2px 2px 2px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u141513_text {
  4378. border-width:0px;
  4379. word-wrap:break-word;
  4380. text-transform:none;
  4381. visibility:hidden;
  4382. }
  4383. #u141514_img {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:0px;
  4388. width:6px;
  4389. height:6px;
  4390. }
  4391. #u141514 {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:1364px;
  4395. top:85px;
  4396. width:6px;
  4397. height:6px;
  4398. display:flex;
  4399. }
  4400. #u141514 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 2px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u141514_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. visibility:hidden;
  4412. }
  4413. #u141515 {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:0px;
  4419. height:0px;
  4420. }
  4421. #u141516_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:5px;
  4427. height:5px;
  4428. }
  4429. #u141516 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:1309px;
  4433. top:86px;
  4434. width:5px;
  4435. height:5px;
  4436. display:flex;
  4437. }
  4438. #u141516 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 2px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u141516_text {
  4446. border-width:0px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. visibility:hidden;
  4450. }
  4451. #u141517_img {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:5px;
  4457. height:5px;
  4458. }
  4459. #u141517 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:1325px;
  4463. top:86px;
  4464. width:5px;
  4465. height:5px;
  4466. display:flex;
  4467. }
  4468. #u141517 .text {
  4469. position:absolute;
  4470. align-self:center;
  4471. padding:2px 2px 2px 2px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u141517_text {
  4476. border-width:0px;
  4477. word-wrap:break-word;
  4478. text-transform:none;
  4479. visibility:hidden;
  4480. }
  4481. #u141518_img {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:7px;
  4487. height:7px;
  4488. }
  4489. #u141518 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:1316px;
  4493. top:85px;
  4494. width:7px;
  4495. height:7px;
  4496. display:flex;
  4497. }
  4498. #u141518 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 2px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u141518_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. visibility:hidden;
  4510. }
  4511. #u141519_img {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:19px;
  4517. height:2px;
  4518. }
  4519. #u141519 {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:1333px;
  4523. top:88px;
  4524. width:18px;
  4525. height:1px;
  4526. display:flex;
  4527. -webkit-transform:rotate(90deg);
  4528. -moz-transform:rotate(90deg);
  4529. -ms-transform:rotate(90deg);
  4530. transform:rotate(90deg);
  4531. }
  4532. #u141519 .text {
  4533. position:absolute;
  4534. align-self:center;
  4535. padding:2px 2px 2px 2px;
  4536. box-sizing:border-box;
  4537. width:100%;
  4538. }
  4539. #u141519_text {
  4540. border-width:0px;
  4541. word-wrap:break-word;
  4542. text-transform:none;
  4543. visibility:hidden;
  4544. }
  4545. #u141520_div {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:0px;
  4549. top:0px;
  4550. width:65px;
  4551. height:22px;
  4552. background:inherit;
  4553. background-color:rgba(255, 255, 255, 0);
  4554. border:none;
  4555. border-radius:0px;
  4556. -moz-box-shadow:none;
  4557. -webkit-box-shadow:none;
  4558. box-shadow:none;
  4559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:16px;
  4563. color:#000000;
  4564. }
  4565. #u141520 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:1173px;
  4569. top:79px;
  4570. width:65px;
  4571. height:22px;
  4572. display:flex;
  4573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:16px;
  4577. color:#000000;
  4578. }
  4579. #u141520 .text {
  4580. position:absolute;
  4581. align-self:flex-start;
  4582. padding:0px 0px 0px 0px;
  4583. box-sizing:border-box;
  4584. width:100%;
  4585. }
  4586. #u141520_text {
  4587. border-width:0px;
  4588. white-space:nowrap;
  4589. text-transform:none;
  4590. }
  4591. #u141521_div {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:375px;
  4597. height:683px;
  4598. background:inherit;
  4599. background-color:rgba(242, 242, 242, 0.996078431372549);
  4600. border:none;
  4601. border-radius:0px;
  4602. -moz-box-shadow:none;
  4603. -webkit-box-shadow:none;
  4604. box-shadow:none;
  4605. }
  4606. #u141521 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:1015px;
  4610. top:107px;
  4611. width:375px;
  4612. height:683px;
  4613. display:flex;
  4614. }
  4615. #u141521 .text {
  4616. position:absolute;
  4617. align-self:center;
  4618. padding:2px 2px 2px 2px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u141521_text {
  4623. border-width:0px;
  4624. word-wrap:break-word;
  4625. text-transform:none;
  4626. visibility:hidden;
  4627. }
  4628. #u141522_img {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:375px;
  4634. height:199px;
  4635. }
  4636. #u141522 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:1015px;
  4640. top:157px;
  4641. width:375px;
  4642. height:199px;
  4643. display:flex;
  4644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. color:#FFFFFF;
  4648. }
  4649. #u141522 .text {
  4650. position:absolute;
  4651. align-self:center;
  4652. padding:2px 2px 2px 2px;
  4653. box-sizing:border-box;
  4654. width:100%;
  4655. }
  4656. #u141522_text {
  4657. border-width:0px;
  4658. word-wrap:break-word;
  4659. text-transform:none;
  4660. }
  4661. #u141523 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:0px;
  4667. height:0px;
  4668. }
  4669. #u141524_div {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:0px;
  4673. top:0px;
  4674. width:375px;
  4675. height:50px;
  4676. background:inherit;
  4677. background-color:rgba(255, 255, 255, 1);
  4678. border:none;
  4679. border-radius:0px;
  4680. -moz-box-shadow:none;
  4681. -webkit-box-shadow:none;
  4682. box-shadow:none;
  4683. }
  4684. #u141524 {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:1015px;
  4688. top:406px;
  4689. width:375px;
  4690. height:50px;
  4691. display:flex;
  4692. }
  4693. #u141524 .text {
  4694. position:absolute;
  4695. align-self:center;
  4696. padding:2px 2px 2px 2px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u141524_text {
  4701. border-width:0px;
  4702. word-wrap:break-word;
  4703. text-transform:none;
  4704. visibility:hidden;
  4705. }
  4706. #u141525_div {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:33px;
  4712. height:22px;
  4713. background:inherit;
  4714. background-color:rgba(255, 255, 255, 0);
  4715. border:none;
  4716. border-radius:0px;
  4717. -moz-box-shadow:none;
  4718. -webkit-box-shadow:none;
  4719. box-shadow:none;
  4720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4721. font-weight:400;
  4722. font-style:normal;
  4723. font-size:16px;
  4724. }
  4725. #u141525 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:1055px;
  4729. top:420px;
  4730. width:33px;
  4731. height:22px;
  4732. display:flex;
  4733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:16px;
  4737. }
  4738. #u141525 .text {
  4739. position:absolute;
  4740. align-self:flex-start;
  4741. padding:0px 0px 0px 0px;
  4742. box-sizing:border-box;
  4743. width:100%;
  4744. }
  4745. #u141525_text {
  4746. border-width:0px;
  4747. white-space:nowrap;
  4748. text-transform:none;
  4749. }
  4750. #u141526_img {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:18px;
  4756. height:14px;
  4757. }
  4758. #u141526 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:1027px;
  4762. top:424px;
  4763. width:18px;
  4764. height:14px;
  4765. display:flex;
  4766. }
  4767. #u141526 .text {
  4768. position:absolute;
  4769. align-self:center;
  4770. padding:2px 2px 2px 2px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u141526_text {
  4775. border-width:0px;
  4776. word-wrap:break-word;
  4777. text-transform:none;
  4778. visibility:hidden;
  4779. }
  4780. #u141527_img {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:14px;
  4786. height:14px;
  4787. }
  4788. #u141527 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:1364px;
  4792. top:424px;
  4793. width:14px;
  4794. height:14px;
  4795. display:flex;
  4796. }
  4797. #u141527 .text {
  4798. position:absolute;
  4799. align-self:center;
  4800. padding:2px 2px 2px 2px;
  4801. box-sizing:border-box;
  4802. width:100%;
  4803. }
  4804. #u141527_text {
  4805. border-width:0px;
  4806. word-wrap:break-word;
  4807. text-transform:none;
  4808. visibility:hidden;
  4809. }
  4810. #u141528_div {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:376px;
  4816. height:50px;
  4817. background:inherit;
  4818. background-color:rgba(0, 0, 0, 1);
  4819. border:none;
  4820. border-radius:0px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. }
  4825. #u141528 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:1014px;
  4829. top:356px;
  4830. width:376px;
  4831. height:50px;
  4832. display:flex;
  4833. }
  4834. #u141528 .text {
  4835. position:absolute;
  4836. align-self:center;
  4837. padding:2px 2px 2px 2px;
  4838. box-sizing:border-box;
  4839. width:100%;
  4840. }
  4841. #u141528_text {
  4842. border-width:0px;
  4843. word-wrap:break-word;
  4844. text-transform:none;
  4845. visibility:hidden;
  4846. }
  4847. #u141529 {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:0px;
  4851. top:0px;
  4852. width:0px;
  4853. height:0px;
  4854. }
  4855. #u141530_div {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:11px;
  4861. height:10px;
  4862. background:inherit;
  4863. background-color:rgba(242, 242, 242, 1);
  4864. border:none;
  4865. border-radius:0px;
  4866. -moz-box-shadow:none;
  4867. -webkit-box-shadow:none;
  4868. box-shadow:none;
  4869. }
  4870. #u141530 {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:1185px;
  4874. top:370px;
  4875. width:11px;
  4876. height:10px;
  4877. display:flex;
  4878. }
  4879. #u141530 .text {
  4880. position:absolute;
  4881. align-self:center;
  4882. padding:2px 2px 2px 2px;
  4883. box-sizing:border-box;
  4884. width:100%;
  4885. }
  4886. #u141530_text {
  4887. border-width:0px;
  4888. word-wrap:break-word;
  4889. text-transform:none;
  4890. visibility:hidden;
  4891. }
  4892. #u141531_div {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:0px;
  4896. top:0px;
  4897. width:11px;
  4898. height:10px;
  4899. background:inherit;
  4900. background-color:rgba(242, 242, 242, 1);
  4901. border:none;
  4902. border-radius:0px;
  4903. -moz-box-shadow:none;
  4904. -webkit-box-shadow:none;
  4905. box-shadow:none;
  4906. }
  4907. #u141531 {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:1198px;
  4911. top:370px;
  4912. width:11px;
  4913. height:10px;
  4914. display:flex;
  4915. }
  4916. #u141531 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 2px 2px 2px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u141531_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. visibility:hidden;
  4928. }
  4929. #u141532_div {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:11px;
  4935. height:10px;
  4936. background:inherit;
  4937. background-color:rgba(242, 242, 242, 1);
  4938. border:none;
  4939. border-radius:0px;
  4940. -moz-box-shadow:none;
  4941. -webkit-box-shadow:none;
  4942. box-shadow:none;
  4943. }
  4944. #u141532 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:1185px;
  4948. top:382px;
  4949. width:11px;
  4950. height:10px;
  4951. display:flex;
  4952. }
  4953. #u141532 .text {
  4954. position:absolute;
  4955. align-self:center;
  4956. padding:2px 2px 2px 2px;
  4957. box-sizing:border-box;
  4958. width:100%;
  4959. }
  4960. #u141532_text {
  4961. border-width:0px;
  4962. word-wrap:break-word;
  4963. text-transform:none;
  4964. visibility:hidden;
  4965. }
  4966. #u141533_div {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:11px;
  4972. height:10px;
  4973. background:inherit;
  4974. background-color:rgba(242, 242, 242, 1);
  4975. border:none;
  4976. border-radius:0px;
  4977. -moz-box-shadow:none;
  4978. -webkit-box-shadow:none;
  4979. box-shadow:none;
  4980. }
  4981. #u141533 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:1198px;
  4985. top:382px;
  4986. width:11px;
  4987. height:10px;
  4988. display:flex;
  4989. }
  4990. #u141533 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:2px 2px 2px 2px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u141533_text {
  4998. border-width:0px;
  4999. word-wrap:break-word;
  5000. text-transform:none;
  5001. visibility:hidden;
  5002. }
  5003. #u141534 {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:0px;
  5009. height:0px;
  5010. }
  5011. #u141535_div {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:7px;
  5017. height:22px;
  5018. background:inherit;
  5019. background-color:rgba(242, 242, 242, 1);
  5020. border:none;
  5021. border-radius:0px;
  5022. -moz-box-shadow:none;
  5023. -webkit-box-shadow:none;
  5024. box-shadow:none;
  5025. }
  5026. #u141535 {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:1037px;
  5030. top:320px;
  5031. width:7px;
  5032. height:22px;
  5033. display:flex;
  5034. }
  5035. #u141535 .text {
  5036. position:absolute;
  5037. align-self:center;
  5038. padding:2px 2px 2px 2px;
  5039. box-sizing:border-box;
  5040. width:100%;
  5041. }
  5042. #u141535_text {
  5043. border-width:0px;
  5044. word-wrap:break-word;
  5045. text-transform:none;
  5046. visibility:hidden;
  5047. }
  5048. #u141536_div {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:7px;
  5054. height:22px;
  5055. background:inherit;
  5056. background-color:rgba(242, 242, 242, 1);
  5057. border:none;
  5058. border-radius:0px;
  5059. -moz-box-shadow:none;
  5060. -webkit-box-shadow:none;
  5061. box-shadow:none;
  5062. }
  5063. #u141536 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:1048px;
  5067. top:320px;
  5068. width:7px;
  5069. height:22px;
  5070. display:flex;
  5071. }
  5072. #u141536 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:2px 2px 2px 2px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u141536_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. visibility:hidden;
  5084. }
  5085. #u141537_div {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:40px;
  5091. height:24px;
  5092. background:inherit;
  5093. background-color:rgba(255, 255, 255, 0);
  5094. box-sizing:border-box;
  5095. border-width:1px;
  5096. border-style:solid;
  5097. border-color:rgba(255, 255, 255, 1);
  5098. border-radius:4px;
  5099. -moz-box-shadow:none;
  5100. -webkit-box-shadow:none;
  5101. box-shadow:none;
  5102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:12px;
  5106. color:#FFFFFF;
  5107. text-align:center;
  5108. }
  5109. #u141537 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:1100px;
  5113. top:370px;
  5114. width:40px;
  5115. height:24px;
  5116. display:flex;
  5117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:12px;
  5121. color:#FFFFFF;
  5122. text-align:center;
  5123. }
  5124. #u141537 .text {
  5125. position:absolute;
  5126. align-self:center;
  5127. padding:0px 0px 0px 0px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u141537_text {
  5132. border-width:0px;
  5133. word-wrap:break-word;
  5134. text-transform:none;
  5135. }
  5136. #u141538_img {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:44px;
  5142. height:33px;
  5143. }
  5144. #u141538 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:1253px;
  5148. top:365px;
  5149. width:44px;
  5150. height:33px;
  5151. display:flex;
  5152. }
  5153. #u141538 .text {
  5154. position:absolute;
  5155. align-self:center;
  5156. padding:2px 2px 2px 2px;
  5157. box-sizing:border-box;
  5158. width:100%;
  5159. }
  5160. #u141538_text {
  5161. border-width:0px;
  5162. word-wrap:break-word;
  5163. text-transform:none;
  5164. visibility:hidden;
  5165. }
  5166. #u141539_img {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:28px;
  5172. height:26px;
  5173. }
  5174. #u141539 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:1342px;
  5178. top:368px;
  5179. width:28px;
  5180. height:26px;
  5181. display:flex;
  5182. }
  5183. #u141539 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:2px 2px 2px 2px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u141539_text {
  5191. border-width:0px;
  5192. word-wrap:break-word;
  5193. text-transform:none;
  5194. visibility:hidden;
  5195. }
  5196. #u141540_div {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:12px;
  5202. height:12px;
  5203. background:inherit;
  5204. background-color:rgba(255, 255, 255, 0);
  5205. box-sizing:border-box;
  5206. border-width:2px;
  5207. border-style:solid;
  5208. border-color:rgba(51, 51, 51, 1);
  5209. border-right:0px;
  5210. border-bottom:0px;
  5211. border-radius:0px;
  5212. border-top-right-radius:0px;
  5213. border-bottom-left-radius:0px;
  5214. -moz-box-shadow:none;
  5215. -webkit-box-shadow:none;
  5216. box-shadow:none;
  5217. }
  5218. #u141540 {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:1030px;
  5222. top:82px;
  5223. width:12px;
  5224. height:12px;
  5225. display:flex;
  5226. -webkit-transform:rotate(315deg);
  5227. -moz-transform:rotate(315deg);
  5228. -ms-transform:rotate(315deg);
  5229. transform:rotate(315deg);
  5230. }
  5231. #u141540 .text {
  5232. position:absolute;
  5233. align-self:center;
  5234. padding:2px 2px 2px 2px;
  5235. box-sizing:border-box;
  5236. width:100%;
  5237. }
  5238. #u141540_text {
  5239. border-width:0px;
  5240. word-wrap:break-word;
  5241. text-transform:none;
  5242. visibility:hidden;
  5243. }
  5244. #u141541_img {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:23px;
  5250. height:23px;
  5251. }
  5252. #u141541 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:1057px;
  5256. top:77px;
  5257. width:23px;
  5258. height:23px;
  5259. display:flex;
  5260. }
  5261. #u141541 .text {
  5262. position:absolute;
  5263. align-self:center;
  5264. padding:2px 2px 2px 2px;
  5265. box-sizing:border-box;
  5266. width:100%;
  5267. }
  5268. #u141541_text {
  5269. border-width:0px;
  5270. word-wrap:break-word;
  5271. text-transform:none;
  5272. visibility:hidden;
  5273. }
  5274. #u141542_img {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:101px;
  5280. height:67px;
  5281. }
  5282. #u141542 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:1027px;
  5286. top:472px;
  5287. width:101px;
  5288. height:67px;
  5289. display:flex;
  5290. }
  5291. #u141542 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:2px 2px 2px 2px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u141542_text {
  5299. border-width:0px;
  5300. word-wrap:break-word;
  5301. text-transform:none;
  5302. visibility:hidden;
  5303. }
  5304. #u141543_img {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:0px;
  5308. top:0px;
  5309. width:101px;
  5310. height:67px;
  5311. }
  5312. #u141543 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:1145px;
  5316. top:472px;
  5317. width:101px;
  5318. height:67px;
  5319. display:flex;
  5320. }
  5321. #u141543 .text {
  5322. position:absolute;
  5323. align-self:center;
  5324. padding:2px 2px 2px 2px;
  5325. box-sizing:border-box;
  5326. width:100%;
  5327. }
  5328. #u141543_text {
  5329. border-width:0px;
  5330. word-wrap:break-word;
  5331. text-transform:none;
  5332. visibility:hidden;
  5333. }
  5334. #u141544_img {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:101px;
  5340. height:67px;
  5341. }
  5342. #u141544 {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:1263px;
  5346. top:472px;
  5347. width:101px;
  5348. height:67px;
  5349. display:flex;
  5350. }
  5351. #u141544 .text {
  5352. position:absolute;
  5353. align-self:center;
  5354. padding:2px 2px 2px 2px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u141544_text {
  5359. border-width:0px;
  5360. word-wrap:break-word;
  5361. text-transform:none;
  5362. visibility:hidden;
  5363. }
  5364. #u141545_img {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:101px;
  5370. height:67px;
  5371. }
  5372. #u141545 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:1027px;
  5376. top:565px;
  5377. width:101px;
  5378. height:67px;
  5379. display:flex;
  5380. }
  5381. #u141545 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 2px 2px 2px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u141545_text {
  5389. border-width:0px;
  5390. word-wrap:break-word;
  5391. text-transform:none;
  5392. visibility:hidden;
  5393. }
  5394. #u141546_img {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:101px;
  5400. height:67px;
  5401. }
  5402. #u141546 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:1145px;
  5406. top:565px;
  5407. width:101px;
  5408. height:67px;
  5409. display:flex;
  5410. }
  5411. #u141546 .text {
  5412. position:absolute;
  5413. align-self:center;
  5414. padding:2px 2px 2px 2px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u141546_text {
  5419. border-width:0px;
  5420. word-wrap:break-word;
  5421. text-transform:none;
  5422. visibility:hidden;
  5423. }
  5424. #u141547_img {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:101px;
  5430. height:67px;
  5431. }
  5432. #u141547 {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:1263px;
  5436. top:565px;
  5437. width:101px;
  5438. height:67px;
  5439. display:flex;
  5440. }
  5441. #u141547 .text {
  5442. position:absolute;
  5443. align-self:center;
  5444. padding:2px 2px 2px 2px;
  5445. box-sizing:border-box;
  5446. width:100%;
  5447. }
  5448. #u141547_text {
  5449. border-width:0px;
  5450. word-wrap:break-word;
  5451. text-transform:none;
  5452. visibility:hidden;
  5453. }
  5454. #u141548_div {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:54px;
  5460. height:17px;
  5461. background:inherit;
  5462. background-color:rgba(255, 255, 255, 0);
  5463. border:none;
  5464. border-radius:0px;
  5465. -moz-box-shadow:none;
  5466. -webkit-box-shadow:none;
  5467. box-shadow:none;
  5468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. font-size:12px;
  5472. color:#555555;
  5473. }
  5474. #u141548 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:1027px;
  5478. top:539px;
  5479. width:54px;
  5480. height:17px;
  5481. display:flex;
  5482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5483. font-weight:400;
  5484. font-style:normal;
  5485. font-size:12px;
  5486. color:#555555;
  5487. }
  5488. #u141548 .text {
  5489. position:absolute;
  5490. align-self:flex-start;
  5491. padding:0px 0px 0px 0px;
  5492. box-sizing:border-box;
  5493. width:100%;
  5494. }
  5495. #u141548_text {
  5496. border-width:0px;
  5497. white-space:nowrap;
  5498. text-transform:none;
  5499. }
  5500. #u141549_div {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:49px;
  5506. height:17px;
  5507. background:inherit;
  5508. background-color:rgba(255, 255, 255, 0);
  5509. border:none;
  5510. border-radius:0px;
  5511. -moz-box-shadow:none;
  5512. -webkit-box-shadow:none;
  5513. box-shadow:none;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:12px;
  5518. color:#555555;
  5519. }
  5520. #u141549 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:1145px;
  5524. top:539px;
  5525. width:49px;
  5526. height:17px;
  5527. display:flex;
  5528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:12px;
  5532. color:#555555;
  5533. }
  5534. #u141549 .text {
  5535. position:absolute;
  5536. align-self:flex-start;
  5537. padding:0px 0px 0px 0px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u141549_text {
  5542. border-width:0px;
  5543. white-space:nowrap;
  5544. text-transform:none;
  5545. }
  5546. #u141550_div {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:49px;
  5552. height:17px;
  5553. background:inherit;
  5554. background-color:rgba(255, 255, 255, 0);
  5555. border:none;
  5556. border-radius:0px;
  5557. -moz-box-shadow:none;
  5558. -webkit-box-shadow:none;
  5559. box-shadow:none;
  5560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5561. font-weight:400;
  5562. font-style:normal;
  5563. font-size:12px;
  5564. color:#555555;
  5565. }
  5566. #u141550 {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:1263px;
  5570. top:539px;
  5571. width:49px;
  5572. height:17px;
  5573. display:flex;
  5574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5575. font-weight:400;
  5576. font-style:normal;
  5577. font-size:12px;
  5578. color:#555555;
  5579. }
  5580. #u141550 .text {
  5581. position:absolute;
  5582. align-self:flex-start;
  5583. padding:0px 0px 0px 0px;
  5584. box-sizing:border-box;
  5585. width:100%;
  5586. }
  5587. #u141550_text {
  5588. border-width:0px;
  5589. white-space:nowrap;
  5590. text-transform:none;
  5591. }
  5592. #u141551_div {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:0px;
  5596. top:0px;
  5597. width:56px;
  5598. height:17px;
  5599. background:inherit;
  5600. background-color:rgba(255, 255, 255, 0);
  5601. border:none;
  5602. border-radius:0px;
  5603. -moz-box-shadow:none;
  5604. -webkit-box-shadow:none;
  5605. box-shadow:none;
  5606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5607. font-weight:400;
  5608. font-style:normal;
  5609. font-size:12px;
  5610. color:#555555;
  5611. }
  5612. #u141551 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:1027px;
  5616. top:632px;
  5617. width:56px;
  5618. height:17px;
  5619. display:flex;
  5620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. font-size:12px;
  5624. color:#555555;
  5625. }
  5626. #u141551 .text {
  5627. position:absolute;
  5628. align-self:flex-start;
  5629. padding:0px 0px 0px 0px;
  5630. box-sizing:border-box;
  5631. width:100%;
  5632. }
  5633. #u141551_text {
  5634. border-width:0px;
  5635. white-space:nowrap;
  5636. text-transform:none;
  5637. }
  5638. #u141552_div {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:49px;
  5644. height:17px;
  5645. background:inherit;
  5646. background-color:rgba(255, 255, 255, 0);
  5647. border:none;
  5648. border-radius:0px;
  5649. -moz-box-shadow:none;
  5650. -webkit-box-shadow:none;
  5651. box-shadow:none;
  5652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:12px;
  5656. color:#555555;
  5657. }
  5658. #u141552 {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:1145px;
  5662. top:632px;
  5663. width:49px;
  5664. height:17px;
  5665. display:flex;
  5666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5667. font-weight:400;
  5668. font-style:normal;
  5669. font-size:12px;
  5670. color:#555555;
  5671. }
  5672. #u141552 .text {
  5673. position:absolute;
  5674. align-self:flex-start;
  5675. padding:0px 0px 0px 0px;
  5676. box-sizing:border-box;
  5677. width:100%;
  5678. }
  5679. #u141552_text {
  5680. border-width:0px;
  5681. white-space:nowrap;
  5682. text-transform:none;
  5683. }
  5684. #u141553_div {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:49px;
  5690. height:17px;
  5691. background:inherit;
  5692. background-color:rgba(255, 255, 255, 0);
  5693. border:none;
  5694. border-radius:0px;
  5695. -moz-box-shadow:none;
  5696. -webkit-box-shadow:none;
  5697. box-shadow:none;
  5698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:12px;
  5702. color:#555555;
  5703. }
  5704. #u141553 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:1263px;
  5708. top:632px;
  5709. width:49px;
  5710. height:17px;
  5711. display:flex;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:12px;
  5716. color:#555555;
  5717. }
  5718. #u141553 .text {
  5719. position:absolute;
  5720. align-self:flex-start;
  5721. padding:0px 0px 0px 0px;
  5722. box-sizing:border-box;
  5723. width:100%;
  5724. }
  5725. #u141553_text {
  5726. border-width:0px;
  5727. white-space:nowrap;
  5728. text-transform:none;
  5729. }
  5730. #u141554 {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:0px;
  5736. height:0px;
  5737. }
  5738. #u141555_div {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:82px;
  5744. height:30px;
  5745. background:inherit;
  5746. background-color:rgba(24, 144, 255, 1);
  5747. border:none;
  5748. border-radius:3px;
  5749. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5750. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5751. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5753. font-weight:400;
  5754. font-style:normal;
  5755. font-size:12px;
  5756. color:#FFFFFF;
  5757. text-align:center;
  5758. }
  5759. #u141555 {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:1285px;
  5763. top:726px;
  5764. width:82px;
  5765. height:30px;
  5766. display:flex;
  5767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:12px;
  5771. color:#FFFFFF;
  5772. text-align:center;
  5773. }
  5774. #u141555 .text {
  5775. position:absolute;
  5776. align-self:center;
  5777. padding:0px 5px 0px 5px;
  5778. box-sizing:border-box;
  5779. width:100%;
  5780. }
  5781. #u141555_text {
  5782. border-width:0px;
  5783. word-wrap:break-word;
  5784. text-transform:none;
  5785. }
  5786. #u141556 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:0px;
  5790. top:0px;
  5791. width:0px;
  5792. height:0px;
  5793. }
  5794. #u141557_div {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:0px;
  5798. top:0px;
  5799. width:82px;
  5800. height:140px;
  5801. background:inherit;
  5802. background-color:rgba(255, 255, 255, 1);
  5803. border:none;
  5804. border-radius:3px;
  5805. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5806. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5807. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. font-size:12px;
  5812. color:#FFFFFF;
  5813. text-align:center;
  5814. }
  5815. #u141557 {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:1286px;
  5819. top:581px;
  5820. width:82px;
  5821. height:140px;
  5822. display:flex;
  5823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:12px;
  5827. color:#FFFFFF;
  5828. text-align:center;
  5829. }
  5830. #u141557 .text {
  5831. position:absolute;
  5832. align-self:center;
  5833. padding:0px 5px 0px 5px;
  5834. box-sizing:border-box;
  5835. width:100%;
  5836. }
  5837. #u141557_text {
  5838. border-width:0px;
  5839. word-wrap:break-word;
  5840. text-transform:none;
  5841. visibility:hidden;
  5842. }
  5843. #u141558_div {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:71px;
  5849. height:40px;
  5850. background:inherit;
  5851. background-color:rgba(255, 255, 255, 1);
  5852. box-sizing:border-box;
  5853. border-width:1px;
  5854. border-style:solid;
  5855. border-color:rgba(215, 215, 215, 1);
  5856. border-left:0px;
  5857. border-top:0px;
  5858. border-right:0px;
  5859. border-radius:3px;
  5860. border-bottom-right-radius:0px;
  5861. border-bottom-left-radius:0px;
  5862. -moz-box-shadow:none;
  5863. -webkit-box-shadow:none;
  5864. box-shadow:none;
  5865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. font-size:12px;
  5869. text-align:center;
  5870. }
  5871. #u141558 {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:1292px;
  5875. top:591px;
  5876. width:71px;
  5877. height:40px;
  5878. display:flex;
  5879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:12px;
  5883. text-align:center;
  5884. }
  5885. #u141558 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:0px 5px 0px 5px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u141558_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. }
  5897. #u141559_div {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:71px;
  5903. height:40px;
  5904. background:inherit;
  5905. background-color:rgba(255, 255, 255, 1);
  5906. box-sizing:border-box;
  5907. border-width:1px;
  5908. border-style:solid;
  5909. border-color:rgba(215, 215, 215, 1);
  5910. border-left:0px;
  5911. border-top:0px;
  5912. border-right:0px;
  5913. border-radius:3px;
  5914. border-bottom-right-radius:0px;
  5915. border-bottom-left-radius:0px;
  5916. -moz-box-shadow:none;
  5917. -webkit-box-shadow:none;
  5918. box-shadow:none;
  5919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5920. font-weight:400;
  5921. font-style:normal;
  5922. font-size:12px;
  5923. text-align:center;
  5924. }
  5925. #u141559 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:1292px;
  5929. top:631px;
  5930. width:71px;
  5931. height:40px;
  5932. display:flex;
  5933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5934. font-weight:400;
  5935. font-style:normal;
  5936. font-size:12px;
  5937. text-align:center;
  5938. }
  5939. #u141559 .text {
  5940. position:absolute;
  5941. align-self:center;
  5942. padding:0px 5px 0px 5px;
  5943. box-sizing:border-box;
  5944. width:100%;
  5945. }
  5946. #u141559_text {
  5947. border-width:0px;
  5948. word-wrap:break-word;
  5949. text-transform:none;
  5950. }
  5951. #u141560_div {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:71px;
  5957. height:40px;
  5958. background:inherit;
  5959. background-color:rgba(255, 255, 255, 1);
  5960. border:none;
  5961. border-left:0px;
  5962. border-top:0px;
  5963. border-right:0px;
  5964. border-radius:3px;
  5965. border-bottom-right-radius:0px;
  5966. border-bottom-left-radius:0px;
  5967. -moz-box-shadow:none;
  5968. -webkit-box-shadow:none;
  5969. box-shadow:none;
  5970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5971. font-weight:400;
  5972. font-style:normal;
  5973. font-size:12px;
  5974. text-align:center;
  5975. }
  5976. #u141560 {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:1292px;
  5980. top:671px;
  5981. width:71px;
  5982. height:40px;
  5983. display:flex;
  5984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:12px;
  5988. text-align:center;
  5989. }
  5990. #u141560 .text {
  5991. position:absolute;
  5992. align-self:center;
  5993. padding:0px 5px 0px 5px;
  5994. box-sizing:border-box;
  5995. width:100%;
  5996. }
  5997. #u141560_text {
  5998. border-width:0px;
  5999. word-wrap:break-word;
  6000. text-transform:none;
  6001. }
  6002. #u141561_div {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:0px;
  6006. top:0px;
  6007. width:62px;
  6008. height:30px;
  6009. background:inherit;
  6010. background-color:rgba(92, 122, 253, 1);
  6011. box-sizing:border-box;
  6012. border-width:1px;
  6013. border-style:solid;
  6014. border-color:rgba(121, 121, 121, 1);
  6015. border-right:0px;
  6016. border-radius:4px;
  6017. border-top-right-radius:0px;
  6018. border-bottom-right-radius:0px;
  6019. -moz-box-shadow:none;
  6020. -webkit-box-shadow:none;
  6021. box-shadow:none;
  6022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:12px;
  6026. color:#FFFFFF;
  6027. }
  6028. #u141561 {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:159px;
  6032. top:741px;
  6033. width:62px;
  6034. height:30px;
  6035. display:flex;
  6036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6037. font-weight:400;
  6038. font-style:normal;
  6039. font-size:12px;
  6040. color:#FFFFFF;
  6041. }
  6042. #u141561 .text {
  6043. position:absolute;
  6044. align-self:center;
  6045. padding:2px 2px 2px 2px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u141561_text {
  6050. border-width:0px;
  6051. word-wrap:break-word;
  6052. text-transform:none;
  6053. }
  6054. #u141562_div {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:62px;
  6060. height:30px;
  6061. background:inherit;
  6062. background-color:rgba(255, 255, 255, 1);
  6063. box-sizing:border-box;
  6064. border-width:1px;
  6065. border-style:solid;
  6066. border-color:rgba(121, 121, 121, 1);
  6067. border-radius:4px;
  6068. border-top-left-radius:0px;
  6069. border-bottom-left-radius:0px;
  6070. -moz-box-shadow:none;
  6071. -webkit-box-shadow:none;
  6072. box-shadow:none;
  6073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6074. font-weight:400;
  6075. font-style:normal;
  6076. font-size:12px;
  6077. }
  6078. #u141562 {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:220px;
  6082. top:741px;
  6083. width:62px;
  6084. height:30px;
  6085. display:flex;
  6086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6087. font-weight:400;
  6088. font-style:normal;
  6089. font-size:12px;
  6090. }
  6091. #u141562 .text {
  6092. position:absolute;
  6093. align-self:center;
  6094. padding:2px 2px 2px 2px;
  6095. box-sizing:border-box;
  6096. width:100%;
  6097. }
  6098. #u141562_text {
  6099. border-width:0px;
  6100. word-wrap:break-word;
  6101. text-transform:none;
  6102. }
  6103. #u141563_div {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:62px;
  6109. height:30px;
  6110. background:inherit;
  6111. background-color:rgba(255, 255, 255, 1);
  6112. box-sizing:border-box;
  6113. border-width:1px;
  6114. border-style:solid;
  6115. border-color:rgba(121, 121, 121, 1);
  6116. border-right:0px;
  6117. border-radius:4px;
  6118. border-top-right-radius:0px;
  6119. border-bottom-right-radius:0px;
  6120. -moz-box-shadow:none;
  6121. -webkit-box-shadow:none;
  6122. box-shadow:none;
  6123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. font-size:12px;
  6127. }
  6128. #u141563 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:640px;
  6132. top:721px;
  6133. width:62px;
  6134. height:30px;
  6135. display:flex;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:12px;
  6140. }
  6141. #u141563 .text {
  6142. position:absolute;
  6143. align-self:center;
  6144. padding:2px 2px 2px 2px;
  6145. box-sizing:border-box;
  6146. width:100%;
  6147. }
  6148. #u141563_text {
  6149. border-width:0px;
  6150. word-wrap:break-word;
  6151. text-transform:none;
  6152. }
  6153. #u141564_div {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:62px;
  6159. height:30px;
  6160. background:inherit;
  6161. background-color:rgba(92, 122, 253, 1);
  6162. box-sizing:border-box;
  6163. border-width:1px;
  6164. border-style:solid;
  6165. border-color:rgba(121, 121, 121, 1);
  6166. border-radius:4px;
  6167. border-top-left-radius:0px;
  6168. border-bottom-left-radius:0px;
  6169. -moz-box-shadow:none;
  6170. -webkit-box-shadow:none;
  6171. box-shadow:none;
  6172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6173. font-weight:400;
  6174. font-style:normal;
  6175. font-size:12px;
  6176. color:#FFFFFF;
  6177. }
  6178. #u141564 {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:701px;
  6182. top:721px;
  6183. width:62px;
  6184. height:30px;
  6185. display:flex;
  6186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6187. font-weight:400;
  6188. font-style:normal;
  6189. font-size:12px;
  6190. color:#FFFFFF;
  6191. }
  6192. #u141564 .text {
  6193. position:absolute;
  6194. align-self:center;
  6195. padding:2px 2px 2px 2px;
  6196. box-sizing:border-box;
  6197. width:100%;
  6198. }
  6199. #u141564_text {
  6200. border-width:0px;
  6201. word-wrap:break-word;
  6202. text-transform:none;
  6203. }
  6204. #u141565 {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:0px;
  6208. top:0px;
  6209. width:0px;
  6210. height:0px;
  6211. }
  6212. #u141566_div {
  6213. border-width:0px;
  6214. position:absolute;
  6215. left:0px;
  6216. top:0px;
  6217. width:375px;
  6218. height:50px;
  6219. background:inherit;
  6220. background-color:rgba(255, 255, 255, 1);
  6221. box-sizing:border-box;
  6222. border-width:1px;
  6223. border-style:solid;
  6224. border-color:rgba(242, 242, 242, 1);
  6225. border-radius:26px;
  6226. border-top-left-radius:0px;
  6227. border-top-right-radius:0px;
  6228. -moz-box-shadow:none;
  6229. -webkit-box-shadow:none;
  6230. box-shadow:none;
  6231. }
  6232. #u141566 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:515px;
  6236. top:790px;
  6237. width:375px;
  6238. height:50px;
  6239. display:flex;
  6240. }
  6241. #u141566 .text {
  6242. position:absolute;
  6243. align-self:center;
  6244. padding:2px 2px 2px 2px;
  6245. box-sizing:border-box;
  6246. width:100%;
  6247. }
  6248. #u141566_text {
  6249. border-width:0px;
  6250. word-wrap:break-word;
  6251. text-transform:none;
  6252. visibility:hidden;
  6253. }
  6254. #u141567 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:0px;
  6258. top:0px;
  6259. width:0px;
  6260. height:0px;
  6261. }
  6262. #u141568_img {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:24px;
  6268. height:24px;
  6269. }
  6270. #u141568 {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:793px;
  6274. top:794px;
  6275. width:24px;
  6276. height:24px;
  6277. display:flex;
  6278. font-size:8px;
  6279. }
  6280. #u141568 .text {
  6281. position:absolute;
  6282. align-self:center;
  6283. padding:2px 2px 2px 2px;
  6284. box-sizing:border-box;
  6285. width:100%;
  6286. }
  6287. #u141568_text {
  6288. border-width:0px;
  6289. word-wrap:break-word;
  6290. text-transform:none;
  6291. }
  6292. #u141569_div {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:49px;
  6298. height:17px;
  6299. background:inherit;
  6300. background-color:rgba(255, 255, 255, 0);
  6301. border:none;
  6302. border-radius:0px;
  6303. -moz-box-shadow:none;
  6304. -webkit-box-shadow:none;
  6305. box-shadow:none;
  6306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6307. font-weight:400;
  6308. font-style:normal;
  6309. font-size:12px;
  6310. }
  6311. #u141569 {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:781px;
  6315. top:819px;
  6316. width:49px;
  6317. height:17px;
  6318. display:flex;
  6319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:12px;
  6323. }
  6324. #u141569 .text {
  6325. position:absolute;
  6326. align-self:flex-start;
  6327. padding:0px 0px 0px 0px;
  6328. box-sizing:border-box;
  6329. width:100%;
  6330. }
  6331. #u141569_text {
  6332. border-width:0px;
  6333. white-space:nowrap;
  6334. text-transform:none;
  6335. }
  6336. #u141570 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:0px;
  6342. height:0px;
  6343. }
  6344. #u141571_div {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:49px;
  6350. height:17px;
  6351. background:inherit;
  6352. background-color:rgba(255, 255, 255, 0);
  6353. border:none;
  6354. border-radius:0px;
  6355. -moz-box-shadow:none;
  6356. -webkit-box-shadow:none;
  6357. box-shadow:none;
  6358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6359. font-weight:400;
  6360. font-style:normal;
  6361. font-size:12px;
  6362. }
  6363. #u141571 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:575px;
  6367. top:819px;
  6368. width:49px;
  6369. height:17px;
  6370. display:flex;
  6371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. font-size:12px;
  6375. }
  6376. #u141571 .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. #u141571_text {
  6384. border-width:0px;
  6385. white-space:nowrap;
  6386. text-transform:none;
  6387. }
  6388. #u141572_img {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:0px;
  6392. top:0px;
  6393. width:24px;
  6394. height:24px;
  6395. }
  6396. #u141572 {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:587px;
  6400. top:794px;
  6401. width:24px;
  6402. height:24px;
  6403. display:flex;
  6404. font-size:8px;
  6405. color:#FFFFFF;
  6406. }
  6407. #u141572 .text {
  6408. position:absolute;
  6409. align-self:center;
  6410. padding:2px 2px 2px 2px;
  6411. box-sizing:border-box;
  6412. width:100%;
  6413. }
  6414. #u141572_text {
  6415. border-width:0px;
  6416. word-wrap:break-word;
  6417. text-transform:none;
  6418. }
  6419. #u141573 {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:0px;
  6424. width:0px;
  6425. height:0px;
  6426. }
  6427. #u141574_div {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:375px;
  6433. height:50px;
  6434. background:inherit;
  6435. background-color:rgba(255, 255, 255, 1);
  6436. box-sizing:border-box;
  6437. border-width:1px;
  6438. border-style:solid;
  6439. border-color:rgba(242, 242, 242, 1);
  6440. border-radius:26px;
  6441. border-top-left-radius:0px;
  6442. border-top-right-radius:0px;
  6443. -moz-box-shadow:none;
  6444. -webkit-box-shadow:none;
  6445. box-shadow:none;
  6446. }
  6447. #u141574 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:1015px;
  6451. top:790px;
  6452. width:375px;
  6453. height:50px;
  6454. display:flex;
  6455. }
  6456. #u141574 .text {
  6457. position:absolute;
  6458. align-self:center;
  6459. padding:2px 2px 2px 2px;
  6460. box-sizing:border-box;
  6461. width:100%;
  6462. }
  6463. #u141574_text {
  6464. border-width:0px;
  6465. word-wrap:break-word;
  6466. text-transform:none;
  6467. visibility:hidden;
  6468. }
  6469. #u141575 {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:0px;
  6473. top:0px;
  6474. width:0px;
  6475. height:0px;
  6476. }
  6477. #u141576_img {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:24px;
  6483. height:24px;
  6484. }
  6485. #u141576 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:1293px;
  6489. top:794px;
  6490. width:24px;
  6491. height:24px;
  6492. display:flex;
  6493. font-size:8px;
  6494. }
  6495. #u141576 .text {
  6496. position:absolute;
  6497. align-self:center;
  6498. padding:2px 2px 2px 2px;
  6499. box-sizing:border-box;
  6500. width:100%;
  6501. }
  6502. #u141576_text {
  6503. border-width:0px;
  6504. word-wrap:break-word;
  6505. text-transform:none;
  6506. }
  6507. #u141577_div {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:0px;
  6511. top:0px;
  6512. width:49px;
  6513. height:17px;
  6514. background:inherit;
  6515. background-color:rgba(255, 255, 255, 0);
  6516. border:none;
  6517. border-radius:0px;
  6518. -moz-box-shadow:none;
  6519. -webkit-box-shadow:none;
  6520. box-shadow:none;
  6521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:12px;
  6525. }
  6526. #u141577 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:1281px;
  6530. top:819px;
  6531. width:49px;
  6532. height:17px;
  6533. display:flex;
  6534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6535. font-weight:400;
  6536. font-style:normal;
  6537. font-size:12px;
  6538. }
  6539. #u141577 .text {
  6540. position:absolute;
  6541. align-self:flex-start;
  6542. padding:0px 0px 0px 0px;
  6543. box-sizing:border-box;
  6544. width:100%;
  6545. }
  6546. #u141577_text {
  6547. border-width:0px;
  6548. white-space:nowrap;
  6549. text-transform:none;
  6550. }
  6551. #u141578 {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:0px;
  6557. height:0px;
  6558. }
  6559. #u141579_div {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:0px;
  6563. top:0px;
  6564. width:49px;
  6565. height:17px;
  6566. background:inherit;
  6567. background-color:rgba(255, 255, 255, 0);
  6568. border:none;
  6569. border-radius:0px;
  6570. -moz-box-shadow:none;
  6571. -webkit-box-shadow:none;
  6572. box-shadow:none;
  6573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6574. font-weight:400;
  6575. font-style:normal;
  6576. font-size:12px;
  6577. }
  6578. #u141579 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:1075px;
  6582. top:819px;
  6583. width:49px;
  6584. height:17px;
  6585. display:flex;
  6586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. font-size:12px;
  6590. }
  6591. #u141579 .text {
  6592. position:absolute;
  6593. align-self:flex-start;
  6594. padding:0px 0px 0px 0px;
  6595. box-sizing:border-box;
  6596. width:100%;
  6597. }
  6598. #u141579_text {
  6599. border-width:0px;
  6600. white-space:nowrap;
  6601. text-transform:none;
  6602. }
  6603. #u141580_img {
  6604. border-width:0px;
  6605. position:absolute;
  6606. left:0px;
  6607. top:0px;
  6608. width:24px;
  6609. height:24px;
  6610. }
  6611. #u141580 {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:1087px;
  6615. top:794px;
  6616. width:24px;
  6617. height:24px;
  6618. display:flex;
  6619. font-size:8px;
  6620. color:#FFFFFF;
  6621. }
  6622. #u141580 .text {
  6623. position:absolute;
  6624. align-self:center;
  6625. padding:2px 2px 2px 2px;
  6626. box-sizing:border-box;
  6627. width:100%;
  6628. }
  6629. #u141580_text {
  6630. border-width:0px;
  6631. word-wrap:break-word;
  6632. text-transform:none;
  6633. }
  6634. #u141581 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:0px;
  6638. top:0px;
  6639. width:0px;
  6640. height:0px;
  6641. }
  6642. #u141582_div {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:375px;
  6648. height:50px;
  6649. background:inherit;
  6650. background-color:rgba(255, 255, 255, 1);
  6651. border:none;
  6652. border-radius:0px;
  6653. -moz-box-shadow:none;
  6654. -webkit-box-shadow:none;
  6655. box-shadow:none;
  6656. }
  6657. #u141582 {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:30px;
  6661. top:106px;
  6662. width:375px;
  6663. height:50px;
  6664. display:flex;
  6665. }
  6666. #u141582 .text {
  6667. position:absolute;
  6668. align-self:center;
  6669. padding:2px 2px 2px 2px;
  6670. box-sizing:border-box;
  6671. width:100%;
  6672. }
  6673. #u141582_text {
  6674. border-width:0px;
  6675. word-wrap:break-word;
  6676. text-transform:none;
  6677. visibility:hidden;
  6678. }
  6679. #u141583 {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:0px;
  6685. height:0px;
  6686. }
  6687. #u141584 {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:0px;
  6691. top:0px;
  6692. width:0px;
  6693. height:0px;
  6694. }
  6695. #u141585_div {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:0px;
  6699. top:0px;
  6700. width:280px;
  6701. height:30px;
  6702. background:inherit;
  6703. background-color:rgba(242, 242, 242, 1);
  6704. border:none;
  6705. border-radius:20px;
  6706. -moz-box-shadow:none;
  6707. -webkit-box-shadow:none;
  6708. box-shadow:none;
  6709. }
  6710. #u141585 {
  6711. border-width:0px;
  6712. position:absolute;
  6713. left:43px;
  6714. top:116px;
  6715. width:280px;
  6716. height:30px;
  6717. display:flex;
  6718. }
  6719. #u141585 .text {
  6720. position:absolute;
  6721. align-self:center;
  6722. padding:2px 2px 2px 2px;
  6723. box-sizing:border-box;
  6724. width:100%;
  6725. }
  6726. #u141585_text {
  6727. border-width:0px;
  6728. word-wrap:break-word;
  6729. text-transform:none;
  6730. visibility:hidden;
  6731. }
  6732. #u141586_input {
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:252px;
  6737. height:22px;
  6738. padding:2px 2px 2px 2px;
  6739. font-family:'ArialMT', 'Arial', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:12px;
  6743. letter-spacing:normal;
  6744. color:#7F7F7F;
  6745. vertical-align:none;
  6746. text-align:left;
  6747. text-transform:none;
  6748. background-color:transparent;
  6749. border-color:transparent;
  6750. }
  6751. #u141586_input.disabled {
  6752. position:absolute;
  6753. left:0px;
  6754. top:0px;
  6755. width:252px;
  6756. height:22px;
  6757. padding:2px 2px 2px 2px;
  6758. font-family:'ArialMT', 'Arial', sans-serif;
  6759. font-weight:400;
  6760. font-style:normal;
  6761. font-size:12px;
  6762. letter-spacing:normal;
  6763. color:#7F7F7F;
  6764. vertical-align:none;
  6765. text-align:left;
  6766. text-transform:none;
  6767. background-color:transparent;
  6768. border-color:transparent;
  6769. }
  6770. #u141586_div {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:252px;
  6776. height:22px;
  6777. background:inherit;
  6778. background-color:rgba(255, 255, 255, 0);
  6779. border:none;
  6780. border-radius:0px;
  6781. -moz-box-shadow:none;
  6782. -webkit-box-shadow:none;
  6783. box-shadow:none;
  6784. font-size:12px;
  6785. color:#7F7F7F;
  6786. }
  6787. #u141586 {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:57px;
  6791. top:120px;
  6792. width:252px;
  6793. height:22px;
  6794. display:flex;
  6795. font-size:12px;
  6796. color:#7F7F7F;
  6797. }
  6798. #u141586 .text {
  6799. position:absolute;
  6800. align-self:flex-start;
  6801. padding:2px 2px 2px 2px;
  6802. box-sizing:border-box;
  6803. width:100%;
  6804. }
  6805. #u141586_div.disabled {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:0px;
  6809. top:0px;
  6810. width:252px;
  6811. height:22px;
  6812. background:inherit;
  6813. background-color:rgba(240, 240, 240, 1);
  6814. border:none;
  6815. border-radius:0px;
  6816. -moz-box-shadow:none;
  6817. -webkit-box-shadow:none;
  6818. box-shadow:none;
  6819. font-size:12px;
  6820. color:#7F7F7F;
  6821. }
  6822. #u141586.disabled {
  6823. }
  6824. .u141586_input_option {
  6825. font-size:12px;
  6826. }
  6827. #u141587_div {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:64px;
  6833. height:30px;
  6834. background:inherit;
  6835. background-color:rgba(255, 255, 255, 0);
  6836. border:none;
  6837. border-left:0px;
  6838. border-top:0px;
  6839. border-right:0px;
  6840. border-radius:0px;
  6841. border-bottom-right-radius:0px;
  6842. border-bottom-left-radius:0px;
  6843. -moz-box-shadow:none;
  6844. -webkit-box-shadow:none;
  6845. box-shadow:none;
  6846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:12px;
  6850. color:#1890FF;
  6851. line-height:30px;
  6852. }
  6853. #u141587 {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:333px;
  6857. top:116px;
  6858. width:64px;
  6859. height:30px;
  6860. display:flex;
  6861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6862. font-weight:400;
  6863. font-style:normal;
  6864. font-size:12px;
  6865. color:#1890FF;
  6866. line-height:30px;
  6867. }
  6868. #u141587 .text {
  6869. position:absolute;
  6870. align-self:flex-start;
  6871. padding:0px 0px 0px 0px;
  6872. box-sizing:border-box;
  6873. width:100%;
  6874. }
  6875. #u141587_text {
  6876. border-width:0px;
  6877. white-space:nowrap;
  6878. text-transform:none;
  6879. }
  6880. #u141588 {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:0px;
  6886. height:0px;
  6887. }
  6888. #u141589_div {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:0px;
  6892. top:0px;
  6893. width:375px;
  6894. height:50px;
  6895. background:inherit;
  6896. background-color:rgba(255, 255, 255, 1);
  6897. border:none;
  6898. border-radius:0px;
  6899. -moz-box-shadow:none;
  6900. -webkit-box-shadow:none;
  6901. box-shadow:none;
  6902. }
  6903. #u141589 {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:515px;
  6907. top:107px;
  6908. width:375px;
  6909. height:50px;
  6910. display:flex;
  6911. }
  6912. #u141589 .text {
  6913. position:absolute;
  6914. align-self:center;
  6915. padding:2px 2px 2px 2px;
  6916. box-sizing:border-box;
  6917. width:100%;
  6918. }
  6919. #u141589_text {
  6920. border-width:0px;
  6921. word-wrap:break-word;
  6922. text-transform:none;
  6923. visibility:hidden;
  6924. }
  6925. #u141590 {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:0px;
  6929. top:0px;
  6930. width:0px;
  6931. height:0px;
  6932. }
  6933. #u141591 {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:0px;
  6937. top:0px;
  6938. width:0px;
  6939. height:0px;
  6940. }
  6941. #u141592_div {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:0px;
  6945. top:0px;
  6946. width:280px;
  6947. height:30px;
  6948. background:inherit;
  6949. background-color:rgba(242, 242, 242, 1);
  6950. border:none;
  6951. border-radius:20px;
  6952. -moz-box-shadow:none;
  6953. -webkit-box-shadow:none;
  6954. box-shadow:none;
  6955. }
  6956. #u141592 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:528px;
  6960. top:117px;
  6961. width:280px;
  6962. height:30px;
  6963. display:flex;
  6964. }
  6965. #u141592 .text {
  6966. position:absolute;
  6967. align-self:center;
  6968. padding:2px 2px 2px 2px;
  6969. box-sizing:border-box;
  6970. width:100%;
  6971. }
  6972. #u141592_text {
  6973. border-width:0px;
  6974. word-wrap:break-word;
  6975. text-transform:none;
  6976. visibility:hidden;
  6977. }
  6978. #u141593_input {
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:252px;
  6983. height:22px;
  6984. padding:2px 2px 2px 2px;
  6985. font-family:'ArialMT', 'Arial', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:12px;
  6989. letter-spacing:normal;
  6990. color:#7F7F7F;
  6991. vertical-align:none;
  6992. text-align:left;
  6993. text-transform:none;
  6994. background-color:transparent;
  6995. border-color:transparent;
  6996. }
  6997. #u141593_input.disabled {
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:252px;
  7002. height:22px;
  7003. padding:2px 2px 2px 2px;
  7004. font-family:'ArialMT', 'Arial', sans-serif;
  7005. font-weight:400;
  7006. font-style:normal;
  7007. font-size:12px;
  7008. letter-spacing:normal;
  7009. color:#7F7F7F;
  7010. vertical-align:none;
  7011. text-align:left;
  7012. text-transform:none;
  7013. background-color:transparent;
  7014. border-color:transparent;
  7015. }
  7016. #u141593_div {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:252px;
  7022. height:22px;
  7023. background:inherit;
  7024. background-color:rgba(255, 255, 255, 0);
  7025. border:none;
  7026. border-radius:0px;
  7027. -moz-box-shadow:none;
  7028. -webkit-box-shadow:none;
  7029. box-shadow:none;
  7030. font-size:12px;
  7031. color:#7F7F7F;
  7032. }
  7033. #u141593 {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:542px;
  7037. top:121px;
  7038. width:252px;
  7039. height:22px;
  7040. display:flex;
  7041. font-size:12px;
  7042. color:#7F7F7F;
  7043. }
  7044. #u141593 .text {
  7045. position:absolute;
  7046. align-self:flex-start;
  7047. padding:2px 2px 2px 2px;
  7048. box-sizing:border-box;
  7049. width:100%;
  7050. }
  7051. #u141593_div.disabled {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:252px;
  7057. height:22px;
  7058. background:inherit;
  7059. background-color:rgba(240, 240, 240, 1);
  7060. border:none;
  7061. border-radius:0px;
  7062. -moz-box-shadow:none;
  7063. -webkit-box-shadow:none;
  7064. box-shadow:none;
  7065. font-size:12px;
  7066. color:#7F7F7F;
  7067. }
  7068. #u141593.disabled {
  7069. }
  7070. .u141593_input_option {
  7071. font-size:12px;
  7072. }
  7073. #u141594_div {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:0px;
  7077. top:0px;
  7078. width:64px;
  7079. height:30px;
  7080. background:inherit;
  7081. background-color:rgba(255, 255, 255, 0);
  7082. border:none;
  7083. border-left:0px;
  7084. border-top:0px;
  7085. border-right:0px;
  7086. border-radius:0px;
  7087. border-bottom-right-radius:0px;
  7088. border-bottom-left-radius:0px;
  7089. -moz-box-shadow:none;
  7090. -webkit-box-shadow:none;
  7091. box-shadow:none;
  7092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7093. font-weight:400;
  7094. font-style:normal;
  7095. font-size:12px;
  7096. color:#1890FF;
  7097. line-height:30px;
  7098. }
  7099. #u141594 {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:818px;
  7103. top:117px;
  7104. width:64px;
  7105. height:30px;
  7106. display:flex;
  7107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7108. font-weight:400;
  7109. font-style:normal;
  7110. font-size:12px;
  7111. color:#1890FF;
  7112. line-height:30px;
  7113. }
  7114. #u141594 .text {
  7115. position:absolute;
  7116. align-self:flex-start;
  7117. padding:0px 0px 0px 0px;
  7118. box-sizing:border-box;
  7119. width:100%;
  7120. }
  7121. #u141594_text {
  7122. border-width:0px;
  7123. white-space:nowrap;
  7124. text-transform:none;
  7125. }
  7126. #u141595 {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:0px;
  7130. top:0px;
  7131. width:0px;
  7132. height:0px;
  7133. }
  7134. #u141596_div {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:0px;
  7138. top:0px;
  7139. width:375px;
  7140. height:50px;
  7141. background:inherit;
  7142. background-color:rgba(255, 255, 255, 1);
  7143. border:none;
  7144. border-radius:0px;
  7145. -moz-box-shadow:none;
  7146. -webkit-box-shadow:none;
  7147. box-shadow:none;
  7148. }
  7149. #u141596 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:1015px;
  7153. top:107px;
  7154. width:375px;
  7155. height:50px;
  7156. display:flex;
  7157. }
  7158. #u141596 .text {
  7159. position:absolute;
  7160. align-self:center;
  7161. padding:2px 2px 2px 2px;
  7162. box-sizing:border-box;
  7163. width:100%;
  7164. }
  7165. #u141596_text {
  7166. border-width:0px;
  7167. word-wrap:break-word;
  7168. text-transform:none;
  7169. visibility:hidden;
  7170. }
  7171. #u141597 {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:0px;
  7177. height:0px;
  7178. }
  7179. #u141598 {
  7180. border-width:0px;
  7181. position:absolute;
  7182. left:0px;
  7183. top:0px;
  7184. width:0px;
  7185. height:0px;
  7186. }
  7187. #u141599_div {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:280px;
  7193. height:30px;
  7194. background:inherit;
  7195. background-color:rgba(242, 242, 242, 1);
  7196. border:none;
  7197. border-radius:20px;
  7198. -moz-box-shadow:none;
  7199. -webkit-box-shadow:none;
  7200. box-shadow:none;
  7201. }
  7202. #u141599 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:1028px;
  7206. top:117px;
  7207. width:280px;
  7208. height:30px;
  7209. display:flex;
  7210. }
  7211. #u141599 .text {
  7212. position:absolute;
  7213. align-self:center;
  7214. padding:2px 2px 2px 2px;
  7215. box-sizing:border-box;
  7216. width:100%;
  7217. }
  7218. #u141599_text {
  7219. border-width:0px;
  7220. word-wrap:break-word;
  7221. text-transform:none;
  7222. visibility:hidden;
  7223. }
  7224. #u141600_input {
  7225. position:absolute;
  7226. left:0px;
  7227. top:0px;
  7228. width:252px;
  7229. height:22px;
  7230. padding:2px 2px 2px 2px;
  7231. font-family:'ArialMT', 'Arial', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:12px;
  7235. letter-spacing:normal;
  7236. color:#7F7F7F;
  7237. vertical-align:none;
  7238. text-align:left;
  7239. text-transform:none;
  7240. background-color:transparent;
  7241. border-color:transparent;
  7242. }
  7243. #u141600_input.disabled {
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:252px;
  7248. height:22px;
  7249. padding:2px 2px 2px 2px;
  7250. font-family:'ArialMT', 'Arial', sans-serif;
  7251. font-weight:400;
  7252. font-style:normal;
  7253. font-size:12px;
  7254. letter-spacing:normal;
  7255. color:#7F7F7F;
  7256. vertical-align:none;
  7257. text-align:left;
  7258. text-transform:none;
  7259. background-color:transparent;
  7260. border-color:transparent;
  7261. }
  7262. #u141600_div {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:0px;
  7266. top:0px;
  7267. width:252px;
  7268. height:22px;
  7269. background:inherit;
  7270. background-color:rgba(255, 255, 255, 0);
  7271. border:none;
  7272. border-radius:0px;
  7273. -moz-box-shadow:none;
  7274. -webkit-box-shadow:none;
  7275. box-shadow:none;
  7276. font-size:12px;
  7277. color:#7F7F7F;
  7278. }
  7279. #u141600 {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:1042px;
  7283. top:121px;
  7284. width:252px;
  7285. height:22px;
  7286. display:flex;
  7287. font-size:12px;
  7288. color:#7F7F7F;
  7289. }
  7290. #u141600 .text {
  7291. position:absolute;
  7292. align-self:flex-start;
  7293. padding:2px 2px 2px 2px;
  7294. box-sizing:border-box;
  7295. width:100%;
  7296. }
  7297. #u141600_div.disabled {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:0px;
  7301. top:0px;
  7302. width:252px;
  7303. height:22px;
  7304. background:inherit;
  7305. background-color:rgba(240, 240, 240, 1);
  7306. border:none;
  7307. border-radius:0px;
  7308. -moz-box-shadow:none;
  7309. -webkit-box-shadow:none;
  7310. box-shadow:none;
  7311. font-size:12px;
  7312. color:#7F7F7F;
  7313. }
  7314. #u141600.disabled {
  7315. }
  7316. .u141600_input_option {
  7317. font-size:12px;
  7318. }
  7319. #u141601_div {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:0px;
  7323. top:0px;
  7324. width:64px;
  7325. height:30px;
  7326. background:inherit;
  7327. background-color:rgba(255, 255, 255, 0);
  7328. border:none;
  7329. border-left:0px;
  7330. border-top:0px;
  7331. border-right:0px;
  7332. border-radius:0px;
  7333. border-bottom-right-radius:0px;
  7334. border-bottom-left-radius:0px;
  7335. -moz-box-shadow:none;
  7336. -webkit-box-shadow:none;
  7337. box-shadow:none;
  7338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7339. font-weight:400;
  7340. font-style:normal;
  7341. font-size:12px;
  7342. color:#1890FF;
  7343. line-height:30px;
  7344. }
  7345. #u141601 {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:1318px;
  7349. top:117px;
  7350. width:64px;
  7351. height:30px;
  7352. display:flex;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:12px;
  7357. color:#1890FF;
  7358. line-height:30px;
  7359. }
  7360. #u141601 .text {
  7361. position:absolute;
  7362. align-self:flex-start;
  7363. padding:0px 0px 0px 0px;
  7364. box-sizing:border-box;
  7365. width:100%;
  7366. }
  7367. #u141601_text {
  7368. border-width:0px;
  7369. white-space:nowrap;
  7370. text-transform:none;
  7371. }