styles.css 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1792px;
  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. #u138087_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u138087 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u138087 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u138087_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u138088_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. #u138088 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u138088 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u138088_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u138089 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u138090_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. #u138090 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u138090 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u138090_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u138091 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u138092_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u138092 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u138092 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u138092_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u138093_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u138093 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u138093 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u138093_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u138094 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u138095_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u138095 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u138095 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u138095_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u138096_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u138096 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u138096 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u138096_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u138097_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u138097 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u138097 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u138097_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u138098_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u138098 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u138098 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u138098_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u138099_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u138099 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u138099 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u138099_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u138100_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. #u138100 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u138100 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u138100_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u138101 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u138102_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u138102 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u138102 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u138102_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u138103_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. #u138103 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u138103 .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. #u138103_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u138104 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u138105_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u138105 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u138105 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u138105_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u138106_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. #u138106 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u138106 .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. #u138106_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u138107_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. #u138107 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u138107 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u138107_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u138108 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u138109_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u138109 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u138109 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u138109_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u138110_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. #u138110 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u138110 .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. #u138110_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u138111 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u138112_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u138112 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u138112 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u138112_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u138113_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. #u138113 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u138113 .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. #u138113_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u138114_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u138114 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u138114 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u138114_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u138115 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u138116_img {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:11px;
  833. height:18px;
  834. }
  835. #u138116 {
  836. border-width:0px;
  837. position:absolute;
  838. left:46px;
  839. top:79px;
  840. width:11px;
  841. height:18px;
  842. display:flex;
  843. }
  844. #u138116 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u138116_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u138117 {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:0px;
  863. height:0px;
  864. }
  865. #u138118_div {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:312px;
  871. height:100px;
  872. background:inherit;
  873. background-color:rgba(242, 242, 242, 1);
  874. border:none;
  875. border-radius:9px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. }
  880. #u138118 {
  881. border-width:0px;
  882. position:absolute;
  883. left:55px;
  884. top:128px;
  885. width:312px;
  886. height:100px;
  887. display:flex;
  888. }
  889. #u138118 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u138118_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u138119_div {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:109px;
  908. height:30px;
  909. background:inherit;
  910. background-color:rgba(255, 255, 255, 0);
  911. border:none;
  912. border-left:0px;
  913. border-top:0px;
  914. border-right:0px;
  915. border-radius:0px;
  916. border-bottom-right-radius:0px;
  917. border-bottom-left-radius:0px;
  918. -moz-box-shadow:none;
  919. -webkit-box-shadow:none;
  920. box-shadow:none;
  921. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  922. font-weight:500;
  923. font-style:normal;
  924. font-size:18px;
  925. line-height:30px;
  926. }
  927. #u138119 {
  928. border-width:0px;
  929. position:absolute;
  930. left:76px;
  931. top:153px;
  932. width:109px;
  933. height:30px;
  934. display:flex;
  935. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  936. font-weight:500;
  937. font-style:normal;
  938. font-size:18px;
  939. line-height:30px;
  940. }
  941. #u138119 .text {
  942. position:absolute;
  943. align-self:flex-start;
  944. padding:0px 0px 0px 0px;
  945. box-sizing:border-box;
  946. width:100%;
  947. }
  948. #u138119_text {
  949. border-width:0px;
  950. white-space:nowrap;
  951. text-transform:none;
  952. }
  953. #u138120_div {
  954. border-width:0px;
  955. position:absolute;
  956. left:0px;
  957. top:0px;
  958. width:99px;
  959. height:20px;
  960. background:inherit;
  961. background-color:rgba(255, 255, 255, 0);
  962. border:none;
  963. border-left:0px;
  964. border-top:0px;
  965. border-right:0px;
  966. border-radius:0px;
  967. border-bottom-right-radius:0px;
  968. border-bottom-left-radius:0px;
  969. -moz-box-shadow:none;
  970. -webkit-box-shadow:none;
  971. box-shadow:none;
  972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  973. font-weight:400;
  974. font-style:normal;
  975. font-size:14px;
  976. color:#AAAAAA;
  977. }
  978. #u138120 {
  979. border-width:0px;
  980. position:absolute;
  981. left:76px;
  982. top:183px;
  983. width:99px;
  984. height:20px;
  985. display:flex;
  986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  987. font-weight:400;
  988. font-style:normal;
  989. font-size:14px;
  990. color:#AAAAAA;
  991. }
  992. #u138120 .text {
  993. position:absolute;
  994. align-self:flex-start;
  995. padding:0px 0px 0px 0px;
  996. box-sizing:border-box;
  997. width:100%;
  998. }
  999. #u138120_text {
  1000. border-width:0px;
  1001. white-space:nowrap;
  1002. text-transform:none;
  1003. }
  1004. #u138121_div {
  1005. border-width:0px;
  1006. position:absolute;
  1007. left:0px;
  1008. top:0px;
  1009. width:70px;
  1010. height:30px;
  1011. background:inherit;
  1012. background-color:rgba(255, 255, 255, 0);
  1013. border:none;
  1014. border-left:0px;
  1015. border-top:0px;
  1016. border-right:0px;
  1017. border-radius:0px;
  1018. border-bottom-right-radius:0px;
  1019. border-bottom-left-radius:0px;
  1020. -moz-box-shadow:none;
  1021. -webkit-box-shadow:none;
  1022. box-shadow:none;
  1023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1024. font-weight:400;
  1025. font-style:normal;
  1026. font-size:14px;
  1027. color:#7F7F7F;
  1028. line-height:30px;
  1029. }
  1030. #u138121 {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:281px;
  1034. top:168px;
  1035. width:70px;
  1036. height:30px;
  1037. display:flex;
  1038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1039. font-weight:400;
  1040. font-style:normal;
  1041. font-size:14px;
  1042. color:#7F7F7F;
  1043. line-height:30px;
  1044. }
  1045. #u138121 .text {
  1046. position:absolute;
  1047. align-self:flex-start;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u138121_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u138122_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:109px;
  1063. height:30px;
  1064. background:inherit;
  1065. background-color:rgba(255, 255, 255, 0);
  1066. border:none;
  1067. border-left:0px;
  1068. border-top:0px;
  1069. border-right:0px;
  1070. border-radius:0px;
  1071. border-bottom-right-radius:0px;
  1072. border-bottom-left-radius:0px;
  1073. -moz-box-shadow:none;
  1074. -webkit-box-shadow:none;
  1075. box-shadow:none;
  1076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1077. font-weight:400;
  1078. font-style:normal;
  1079. font-size:18px;
  1080. line-height:30px;
  1081. }
  1082. #u138122 {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:162px;
  1086. top:73px;
  1087. width:109px;
  1088. height:30px;
  1089. display:flex;
  1090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1091. font-weight:400;
  1092. font-style:normal;
  1093. font-size:18px;
  1094. line-height:30px;
  1095. }
  1096. #u138122 .text {
  1097. position:absolute;
  1098. align-self:flex-start;
  1099. padding:0px 0px 0px 0px;
  1100. box-sizing:border-box;
  1101. width:100%;
  1102. }
  1103. #u138122_text {
  1104. border-width:0px;
  1105. white-space:nowrap;
  1106. text-transform:none;
  1107. }
  1108. #u138123_img {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:14px;
  1114. height:14px;
  1115. }
  1116. #u138123 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:77px;
  1120. top:81px;
  1121. width:14px;
  1122. height:14px;
  1123. display:flex;
  1124. }
  1125. #u138123 .text {
  1126. position:absolute;
  1127. align-self:center;
  1128. padding:2px 2px 2px 2px;
  1129. box-sizing:border-box;
  1130. width:100%;
  1131. }
  1132. #u138123_text {
  1133. border-width:0px;
  1134. word-wrap:break-word;
  1135. text-transform:none;
  1136. visibility:hidden;
  1137. }
  1138. #u138124 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:0px;
  1142. top:0px;
  1143. width:0px;
  1144. height:0px;
  1145. }
  1146. #u138125_div {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:0px;
  1150. top:0px;
  1151. width:312px;
  1152. height:100px;
  1153. background:inherit;
  1154. background-color:rgba(242, 242, 242, 1);
  1155. border:none;
  1156. border-radius:9px;
  1157. -moz-box-shadow:none;
  1158. -webkit-box-shadow:none;
  1159. box-shadow:none;
  1160. }
  1161. #u138125 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:55px;
  1165. top:244px;
  1166. width:312px;
  1167. height:100px;
  1168. display:flex;
  1169. }
  1170. #u138125 .text {
  1171. position:absolute;
  1172. align-self:center;
  1173. padding:2px 2px 2px 2px;
  1174. box-sizing:border-box;
  1175. width:100%;
  1176. }
  1177. #u138125_text {
  1178. border-width:0px;
  1179. word-wrap:break-word;
  1180. text-transform:none;
  1181. visibility:hidden;
  1182. }
  1183. #u138126_div {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:109px;
  1189. height:30px;
  1190. background:inherit;
  1191. background-color:rgba(255, 255, 255, 0);
  1192. border:none;
  1193. border-left:0px;
  1194. border-top:0px;
  1195. border-right:0px;
  1196. border-radius:0px;
  1197. border-bottom-right-radius:0px;
  1198. border-bottom-left-radius:0px;
  1199. -moz-box-shadow:none;
  1200. -webkit-box-shadow:none;
  1201. box-shadow:none;
  1202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1203. font-weight:500;
  1204. font-style:normal;
  1205. font-size:18px;
  1206. line-height:30px;
  1207. }
  1208. #u138126 {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:76px;
  1212. top:269px;
  1213. width:109px;
  1214. height:30px;
  1215. display:flex;
  1216. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1217. font-weight:500;
  1218. font-style:normal;
  1219. font-size:18px;
  1220. line-height:30px;
  1221. }
  1222. #u138126 .text {
  1223. position:absolute;
  1224. align-self:flex-start;
  1225. padding:0px 0px 0px 0px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u138126_text {
  1230. border-width:0px;
  1231. white-space:nowrap;
  1232. text-transform:none;
  1233. }
  1234. #u138127_div {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:71px;
  1240. height:20px;
  1241. background:inherit;
  1242. background-color:rgba(255, 255, 255, 0);
  1243. border:none;
  1244. border-left:0px;
  1245. border-top:0px;
  1246. border-right:0px;
  1247. border-radius:0px;
  1248. border-bottom-right-radius:0px;
  1249. border-bottom-left-radius:0px;
  1250. -moz-box-shadow:none;
  1251. -webkit-box-shadow:none;
  1252. box-shadow:none;
  1253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1254. font-weight:400;
  1255. font-style:normal;
  1256. font-size:14px;
  1257. color:#AAAAAA;
  1258. }
  1259. #u138127 {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:76px;
  1263. top:299px;
  1264. width:71px;
  1265. height:20px;
  1266. display:flex;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:14px;
  1271. color:#AAAAAA;
  1272. }
  1273. #u138127 .text {
  1274. position:absolute;
  1275. align-self:flex-start;
  1276. padding:0px 0px 0px 0px;
  1277. box-sizing:border-box;
  1278. width:100%;
  1279. }
  1280. #u138127_text {
  1281. border-width:0px;
  1282. white-space:nowrap;
  1283. text-transform:none;
  1284. }
  1285. #u138128_div {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:0px;
  1289. top:0px;
  1290. width:70px;
  1291. height:30px;
  1292. background:inherit;
  1293. background-color:rgba(255, 255, 255, 0);
  1294. border:none;
  1295. border-left:0px;
  1296. border-top:0px;
  1297. border-right:0px;
  1298. border-radius:0px;
  1299. border-bottom-right-radius:0px;
  1300. border-bottom-left-radius:0px;
  1301. -moz-box-shadow:none;
  1302. -webkit-box-shadow:none;
  1303. box-shadow:none;
  1304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1305. font-weight:400;
  1306. font-style:normal;
  1307. font-size:14px;
  1308. color:#7F7F7F;
  1309. line-height:30px;
  1310. }
  1311. #u138128 {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:281px;
  1315. top:284px;
  1316. width:70px;
  1317. height:30px;
  1318. display:flex;
  1319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1320. font-weight:400;
  1321. font-style:normal;
  1322. font-size:14px;
  1323. color:#7F7F7F;
  1324. line-height:30px;
  1325. }
  1326. #u138128 .text {
  1327. position:absolute;
  1328. align-self:flex-start;
  1329. padding:0px 0px 0px 0px;
  1330. box-sizing:border-box;
  1331. width:100%;
  1332. }
  1333. #u138128_text {
  1334. border-width:0px;
  1335. white-space:nowrap;
  1336. text-transform:none;
  1337. }
  1338. #u138129_div {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:0px;
  1342. top:0px;
  1343. width:341px;
  1344. height:40px;
  1345. background:inherit;
  1346. background-color:rgba(24, 144, 255, 1);
  1347. border:none;
  1348. border-radius:45px;
  1349. -moz-box-shadow:none;
  1350. -webkit-box-shadow:none;
  1351. box-shadow:none;
  1352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1353. font-weight:400;
  1354. font-style:normal;
  1355. font-size:14px;
  1356. color:#FFFFFF;
  1357. }
  1358. #u138129 {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:40px;
  1362. top:765px;
  1363. width:341px;
  1364. height:40px;
  1365. display:flex;
  1366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1367. font-weight:400;
  1368. font-style:normal;
  1369. font-size:14px;
  1370. color:#FFFFFF;
  1371. }
  1372. #u138129 .text {
  1373. position:absolute;
  1374. align-self:center;
  1375. padding:2px 2px 2px 2px;
  1376. box-sizing:border-box;
  1377. width:100%;
  1378. }
  1379. #u138129_text {
  1380. border-width:0px;
  1381. word-wrap:break-word;
  1382. text-transform:none;
  1383. }
  1384. #u138130 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:0px;
  1390. height:0px;
  1391. }
  1392. #u138131_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:18px;
  1398. height:18px;
  1399. }
  1400. #u138131 {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:51px;
  1404. top:367px;
  1405. width:18px;
  1406. height:18px;
  1407. display:flex;
  1408. }
  1409. #u138131 .text {
  1410. position:absolute;
  1411. align-self:center;
  1412. padding:2px 2px 2px 2px;
  1413. box-sizing:border-box;
  1414. width:100%;
  1415. }
  1416. #u138131_text {
  1417. border-width:0px;
  1418. word-wrap:break-word;
  1419. text-transform:none;
  1420. visibility:hidden;
  1421. }
  1422. #u138132 label {
  1423. left:0px;
  1424. width:100%;
  1425. }
  1426. #u138132_img {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:3px;
  1431. width:12px;
  1432. height:12px;
  1433. }
  1434. #u138132 {
  1435. border-width:0px;
  1436. position:absolute;
  1437. left:53px;
  1438. top:368px;
  1439. width:321px;
  1440. height:17px;
  1441. display:flex;
  1442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1443. font-weight:400;
  1444. font-style:normal;
  1445. }
  1446. #u138132 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 2px 0px 2px;
  1450. box-sizing:border-box;
  1451. }
  1452. #u138132_img.selected {
  1453. }
  1454. #u138132.selected {
  1455. }
  1456. #u138132_img.disabled {
  1457. }
  1458. #u138132.disabled {
  1459. }
  1460. #u138132_img.selectedDisabled {
  1461. }
  1462. #u138132.selectedDisabled {
  1463. }
  1464. #u138132_text {
  1465. border-width:0px;
  1466. position:absolute;
  1467. left:14px;
  1468. top:0px;
  1469. width:305px;
  1470. word-wrap:break-word;
  1471. text-transform:none;
  1472. }
  1473. #u138132_input {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:0px;
  1479. height:0px;
  1480. opacity:0;
  1481. }
  1482. #u138133_div {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:113px;
  1488. height:20px;
  1489. background:inherit;
  1490. background-color:rgba(255, 255, 255, 0);
  1491. border:none;
  1492. border-left:0px;
  1493. border-top:0px;
  1494. border-right:0px;
  1495. border-radius:0px;
  1496. border-bottom-right-radius:0px;
  1497. border-bottom-left-radius:0px;
  1498. -moz-box-shadow:none;
  1499. -webkit-box-shadow:none;
  1500. box-shadow:none;
  1501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1502. font-weight:400;
  1503. font-style:normal;
  1504. font-size:14px;
  1505. text-decoration:underline ;
  1506. color:#0089FE;
  1507. }
  1508. #u138133 {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:154px;
  1512. top:716px;
  1513. width:113px;
  1514. height:20px;
  1515. display:flex;
  1516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1517. font-weight:400;
  1518. font-style:normal;
  1519. font-size:14px;
  1520. text-decoration:underline ;
  1521. color:#0089FE;
  1522. }
  1523. #u138133 .text {
  1524. position:absolute;
  1525. align-self:flex-start;
  1526. padding:0px 0px 0px 0px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u138133_text {
  1531. border-width:0px;
  1532. white-space:nowrap;
  1533. text-transform:none;
  1534. }
  1535. #u138135_img {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:433px;
  1541. height:865px;
  1542. }
  1543. #u138135 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:453px;
  1547. top:0px;
  1548. width:433px;
  1549. height:865px;
  1550. display:flex;
  1551. }
  1552. #u138135 .text {
  1553. position:absolute;
  1554. align-self:center;
  1555. padding:2px 2px 2px 2px;
  1556. box-sizing:border-box;
  1557. width:100%;
  1558. }
  1559. #u138135_text {
  1560. border-width:0px;
  1561. word-wrap:break-word;
  1562. text-transform:none;
  1563. visibility:hidden;
  1564. }
  1565. #u138136_div {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:0px;
  1569. top:0px;
  1570. width:375px;
  1571. height:40px;
  1572. background:inherit;
  1573. background-color:rgba(255, 255, 255, 1);
  1574. box-sizing:border-box;
  1575. border-width:1px;
  1576. border-style:solid;
  1577. border-color:rgba(215, 215, 215, 1);
  1578. border-left:0px;
  1579. border-top:0px;
  1580. border-right:0px;
  1581. border-radius:0px;
  1582. border-bottom-right-radius:0px;
  1583. border-bottom-left-radius:0px;
  1584. -moz-box-shadow:none;
  1585. -webkit-box-shadow:none;
  1586. box-shadow:none;
  1587. }
  1588. #u138136 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:482px;
  1592. top:67px;
  1593. width:375px;
  1594. height:40px;
  1595. display:flex;
  1596. }
  1597. #u138136 .text {
  1598. position:absolute;
  1599. align-self:center;
  1600. padding:2px 2px 2px 2px;
  1601. box-sizing:border-box;
  1602. width:100%;
  1603. }
  1604. #u138136_text {
  1605. border-width:0px;
  1606. word-wrap:break-word;
  1607. text-transform:none;
  1608. visibility:hidden;
  1609. }
  1610. #u138137 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:0px;
  1614. top:0px;
  1615. width:0px;
  1616. height:0px;
  1617. }
  1618. #u138138_div {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:88px;
  1624. height:32px;
  1625. background:inherit;
  1626. background-color:rgba(255, 255, 255, 1);
  1627. box-sizing:border-box;
  1628. border-width:1px;
  1629. border-style:solid;
  1630. border-color:rgba(242, 242, 242, 1);
  1631. border-radius:33px;
  1632. -moz-box-shadow:none;
  1633. -webkit-box-shadow:none;
  1634. box-shadow:none;
  1635. }
  1636. #u138138 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:762px;
  1640. top:71px;
  1641. width:88px;
  1642. height:32px;
  1643. display:flex;
  1644. }
  1645. #u138138 .text {
  1646. position:absolute;
  1647. align-self:center;
  1648. padding:2px 2px 2px 2px;
  1649. box-sizing:border-box;
  1650. width:100%;
  1651. }
  1652. #u138138_text {
  1653. border-width:0px;
  1654. word-wrap:break-word;
  1655. text-transform:none;
  1656. visibility:hidden;
  1657. }
  1658. #u138139 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:0px;
  1664. height:0px;
  1665. }
  1666. #u138140_img {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:18px;
  1672. height:18px;
  1673. }
  1674. #u138140 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:825px;
  1678. top:78px;
  1679. width:18px;
  1680. height:18px;
  1681. display:flex;
  1682. }
  1683. #u138140 .text {
  1684. position:absolute;
  1685. align-self:center;
  1686. padding:2px 2px 2px 2px;
  1687. box-sizing:border-box;
  1688. width:100%;
  1689. }
  1690. #u138140_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. visibility:hidden;
  1695. }
  1696. #u138141_img {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:6px;
  1702. height:6px;
  1703. }
  1704. #u138141 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:831px;
  1708. top:84px;
  1709. width:6px;
  1710. height:6px;
  1711. display:flex;
  1712. }
  1713. #u138141 .text {
  1714. position:absolute;
  1715. align-self:center;
  1716. padding:2px 2px 2px 2px;
  1717. box-sizing:border-box;
  1718. width:100%;
  1719. }
  1720. #u138141_text {
  1721. border-width:0px;
  1722. word-wrap:break-word;
  1723. text-transform:none;
  1724. visibility:hidden;
  1725. }
  1726. #u138142 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:0px;
  1732. height:0px;
  1733. }
  1734. #u138143_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:5px;
  1740. height:5px;
  1741. }
  1742. #u138143 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:776px;
  1746. top:85px;
  1747. width:5px;
  1748. height:5px;
  1749. display:flex;
  1750. }
  1751. #u138143 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 2px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u138143_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. visibility:hidden;
  1763. }
  1764. #u138144_img {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:5px;
  1770. height:5px;
  1771. }
  1772. #u138144 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:792px;
  1776. top:85px;
  1777. width:5px;
  1778. height:5px;
  1779. display:flex;
  1780. }
  1781. #u138144 .text {
  1782. position:absolute;
  1783. align-self:center;
  1784. padding:2px 2px 2px 2px;
  1785. box-sizing:border-box;
  1786. width:100%;
  1787. }
  1788. #u138144_text {
  1789. border-width:0px;
  1790. word-wrap:break-word;
  1791. text-transform:none;
  1792. visibility:hidden;
  1793. }
  1794. #u138145_img {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:7px;
  1800. height:7px;
  1801. }
  1802. #u138145 {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:783px;
  1806. top:84px;
  1807. width:7px;
  1808. height:7px;
  1809. display:flex;
  1810. }
  1811. #u138145 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 2px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u138145_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. visibility:hidden;
  1823. }
  1824. #u138146_img {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:19px;
  1830. height:2px;
  1831. }
  1832. #u138146 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:800px;
  1836. top:87px;
  1837. width:18px;
  1838. height:1px;
  1839. display:flex;
  1840. -webkit-transform:rotate(90deg);
  1841. -moz-transform:rotate(90deg);
  1842. -ms-transform:rotate(90deg);
  1843. transform:rotate(90deg);
  1844. }
  1845. #u138146 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 2px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u138146_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. visibility:hidden;
  1857. }
  1858. #u138147_img {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:375px;
  1864. height:44px;
  1865. }
  1866. #u138147 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:482px;
  1870. top:24px;
  1871. width:375px;
  1872. height:44px;
  1873. display:flex;
  1874. }
  1875. #u138147 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 2px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u138147_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. visibility:hidden;
  1887. }
  1888. #u138148_div {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:375px;
  1894. height:50px;
  1895. background:inherit;
  1896. background-color:rgba(255, 255, 255, 1);
  1897. box-sizing:border-box;
  1898. border-width:1px;
  1899. border-style:solid;
  1900. border-color:rgba(242, 242, 242, 1);
  1901. border-radius:26px;
  1902. border-top-left-radius:0px;
  1903. border-top-right-radius:0px;
  1904. -moz-box-shadow:none;
  1905. -webkit-box-shadow:none;
  1906. box-shadow:none;
  1907. }
  1908. #u138148 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:482px;
  1912. top:788px;
  1913. width:375px;
  1914. height:50px;
  1915. display:flex;
  1916. }
  1917. #u138148 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 2px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u138148_text {
  1925. border-width:0px;
  1926. word-wrap:break-word;
  1927. text-transform:none;
  1928. visibility:hidden;
  1929. }
  1930. #u138149 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:0px;
  1936. height:0px;
  1937. }
  1938. #u138150_img {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:24px;
  1944. height:24px;
  1945. }
  1946. #u138150 {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:522px;
  1950. top:792px;
  1951. width:24px;
  1952. height:24px;
  1953. display:flex;
  1954. font-size:8px;
  1955. }
  1956. #u138150 .text {
  1957. position:absolute;
  1958. align-self:center;
  1959. padding:2px 2px 2px 2px;
  1960. box-sizing:border-box;
  1961. width:100%;
  1962. }
  1963. #u138150_text {
  1964. border-width:0px;
  1965. word-wrap:break-word;
  1966. text-transform:none;
  1967. }
  1968. #u138151_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:25px;
  1974. height:17px;
  1975. background:inherit;
  1976. background-color:rgba(255, 255, 255, 0);
  1977. border:none;
  1978. border-radius:0px;
  1979. -moz-box-shadow:none;
  1980. -webkit-box-shadow:none;
  1981. box-shadow:none;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:12px;
  1986. }
  1987. #u138151 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:522px;
  1991. top:817px;
  1992. width:25px;
  1993. height:17px;
  1994. display:flex;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:12px;
  1999. }
  2000. #u138151 .text {
  2001. position:absolute;
  2002. align-self:flex-start;
  2003. padding:0px 0px 0px 0px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u138151_text {
  2008. border-width:0px;
  2009. white-space:nowrap;
  2010. text-transform:none;
  2011. }
  2012. #u138152 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:0px;
  2018. height:0px;
  2019. }
  2020. #u138153_img {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:24px;
  2026. height:24px;
  2027. }
  2028. #u138153 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:792px;
  2032. top:794px;
  2033. width:24px;
  2034. height:24px;
  2035. display:flex;
  2036. font-size:8px;
  2037. }
  2038. #u138153 .text {
  2039. position:absolute;
  2040. align-self:center;
  2041. padding:2px 2px 2px 2px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u138153_text {
  2046. border-width:0px;
  2047. word-wrap:break-word;
  2048. text-transform:none;
  2049. }
  2050. #u138154_div {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:25px;
  2056. height:17px;
  2057. background:inherit;
  2058. background-color:rgba(255, 255, 255, 0);
  2059. border:none;
  2060. border-radius:0px;
  2061. -moz-box-shadow:none;
  2062. -webkit-box-shadow:none;
  2063. box-shadow:none;
  2064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2065. font-weight:400;
  2066. font-style:normal;
  2067. font-size:12px;
  2068. }
  2069. #u138154 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:792px;
  2073. top:819px;
  2074. width:25px;
  2075. height:17px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. }
  2082. #u138154 .text {
  2083. position:absolute;
  2084. align-self:flex-start;
  2085. padding:0px 0px 0px 0px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u138154_text {
  2090. border-width:0px;
  2091. white-space:nowrap;
  2092. text-transform:none;
  2093. }
  2094. #u138155_div {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:375px;
  2100. height:681px;
  2101. background:inherit;
  2102. background-color:rgba(242, 242, 242, 0.462745098039216);
  2103. border:none;
  2104. border-radius:0px;
  2105. -moz-box-shadow:none;
  2106. -webkit-box-shadow:none;
  2107. box-shadow:none;
  2108. }
  2109. #u138155 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:482px;
  2113. top:107px;
  2114. width:375px;
  2115. height:681px;
  2116. display:flex;
  2117. }
  2118. #u138155 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 2px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u138155_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. visibility:hidden;
  2130. }
  2131. #u138156 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:0px;
  2137. height:0px;
  2138. }
  2139. #u138157_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:24px;
  2145. height:24px;
  2146. }
  2147. #u138157 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:704px;
  2151. top:792px;
  2152. width:24px;
  2153. height:24px;
  2154. display:flex;
  2155. font-size:8px;
  2156. }
  2157. #u138157 .text {
  2158. position:absolute;
  2159. align-self:center;
  2160. padding:2px 2px 2px 2px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u138157_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. }
  2169. #u138158_div {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:37px;
  2175. height:17px;
  2176. background:inherit;
  2177. background-color:rgba(255, 255, 255, 0);
  2178. border:none;
  2179. border-radius:0px;
  2180. -moz-box-shadow:none;
  2181. -webkit-box-shadow:none;
  2182. box-shadow:none;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:12px;
  2187. }
  2188. #u138158 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:698px;
  2192. top:817px;
  2193. width:37px;
  2194. height:17px;
  2195. display:flex;
  2196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2197. font-weight:400;
  2198. font-style:normal;
  2199. font-size:12px;
  2200. }
  2201. #u138158 .text {
  2202. position:absolute;
  2203. align-self:flex-start;
  2204. padding:0px 0px 0px 0px;
  2205. box-sizing:border-box;
  2206. width:100%;
  2207. }
  2208. #u138158_text {
  2209. border-width:0px;
  2210. white-space:nowrap;
  2211. text-transform:none;
  2212. }
  2213. #u138159 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:0px;
  2217. top:0px;
  2218. width:0px;
  2219. height:0px;
  2220. }
  2221. #u138160_img {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:24px;
  2227. height:24px;
  2228. }
  2229. #u138160 {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:610px;
  2233. top:792px;
  2234. width:24px;
  2235. height:24px;
  2236. display:flex;
  2237. font-size:8px;
  2238. }
  2239. #u138160 .text {
  2240. position:absolute;
  2241. align-self:center;
  2242. padding:2px 2px 2px 2px;
  2243. box-sizing:border-box;
  2244. width:100%;
  2245. }
  2246. #u138160_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. }
  2251. #u138161_div {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:37px;
  2257. height:17px;
  2258. background:inherit;
  2259. background-color:rgba(255, 255, 255, 0);
  2260. border:none;
  2261. border-radius:0px;
  2262. -moz-box-shadow:none;
  2263. -webkit-box-shadow:none;
  2264. box-shadow:none;
  2265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:12px;
  2269. }
  2270. #u138161 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:604px;
  2274. top:817px;
  2275. width:37px;
  2276. height:17px;
  2277. display:flex;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:12px;
  2282. }
  2283. #u138161 .text {
  2284. position:absolute;
  2285. align-self:flex-start;
  2286. padding:0px 0px 0px 0px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u138161_text {
  2291. border-width:0px;
  2292. white-space:nowrap;
  2293. text-transform:none;
  2294. }
  2295. #u138162_div {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:375px;
  2301. height:735px;
  2302. background:inherit;
  2303. background-color:rgba(242, 242, 242, 1);
  2304. border:none;
  2305. border-top:0px;
  2306. border-radius:25px;
  2307. border-top-left-radius:0px;
  2308. border-top-right-radius:0px;
  2309. -moz-box-shadow:none;
  2310. -webkit-box-shadow:none;
  2311. box-shadow:none;
  2312. }
  2313. #u138162 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:482px;
  2317. top:105px;
  2318. width:375px;
  2319. height:735px;
  2320. display:flex;
  2321. }
  2322. #u138162 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 2px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u138162_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. visibility:hidden;
  2334. }
  2335. #u138163 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:0px;
  2341. height:0px;
  2342. }
  2343. #u138164_img {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:11px;
  2349. height:18px;
  2350. }
  2351. #u138164 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:499px;
  2355. top:79px;
  2356. width:11px;
  2357. height:18px;
  2358. display:flex;
  2359. }
  2360. #u138164 .text {
  2361. position:absolute;
  2362. align-self:center;
  2363. padding:2px 2px 2px 2px;
  2364. box-sizing:border-box;
  2365. width:100%;
  2366. }
  2367. #u138164_text {
  2368. border-width:0px;
  2369. word-wrap:break-word;
  2370. text-transform:none;
  2371. visibility:hidden;
  2372. }
  2373. #u138165_div {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:109px;
  2379. height:30px;
  2380. background:inherit;
  2381. background-color:rgba(255, 255, 255, 0);
  2382. border:none;
  2383. border-left:0px;
  2384. border-top:0px;
  2385. border-right:0px;
  2386. border-radius:0px;
  2387. border-bottom-right-radius:0px;
  2388. border-bottom-left-radius:0px;
  2389. -moz-box-shadow:none;
  2390. -webkit-box-shadow:none;
  2391. box-shadow:none;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:18px;
  2396. line-height:30px;
  2397. }
  2398. #u138165 {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:615px;
  2402. top:73px;
  2403. width:109px;
  2404. height:30px;
  2405. display:flex;
  2406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:18px;
  2410. line-height:30px;
  2411. }
  2412. #u138165 .text {
  2413. position:absolute;
  2414. align-self:flex-start;
  2415. padding:0px 0px 0px 0px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u138165_text {
  2420. border-width:0px;
  2421. white-space:nowrap;
  2422. text-transform:none;
  2423. }
  2424. #u138166_img {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:0px;
  2428. top:0px;
  2429. width:14px;
  2430. height:14px;
  2431. }
  2432. #u138166 {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:530px;
  2436. top:81px;
  2437. width:14px;
  2438. height:14px;
  2439. display:flex;
  2440. }
  2441. #u138166 .text {
  2442. position:absolute;
  2443. align-self:center;
  2444. padding:2px 2px 2px 2px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u138166_text {
  2449. border-width:0px;
  2450. word-wrap:break-word;
  2451. text-transform:none;
  2452. visibility:hidden;
  2453. }
  2454. #u138167 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:0px;
  2460. height:0px;
  2461. }
  2462. #u138168_div {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:375px;
  2468. height:80px;
  2469. background:inherit;
  2470. background-color:rgba(255, 255, 255, 1);
  2471. border:none;
  2472. border-top:0px;
  2473. border-radius:0px;
  2474. border-top-left-radius:0px;
  2475. border-top-right-radius:0px;
  2476. -moz-box-shadow:none;
  2477. -webkit-box-shadow:none;
  2478. box-shadow:none;
  2479. }
  2480. #u138168 {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:482px;
  2484. top:105px;
  2485. width:375px;
  2486. height:80px;
  2487. display:flex;
  2488. }
  2489. #u138168 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:2px 2px 2px 2px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u138168_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. visibility:hidden;
  2501. }
  2502. #u138169_div {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:55px;
  2508. height:30px;
  2509. background:inherit;
  2510. background-color:rgba(255, 255, 255, 0);
  2511. border:none;
  2512. border-left:0px;
  2513. border-top:0px;
  2514. border-right:0px;
  2515. border-radius:0px;
  2516. border-bottom-right-radius:0px;
  2517. border-bottom-left-radius:0px;
  2518. -moz-box-shadow:none;
  2519. -webkit-box-shadow:none;
  2520. box-shadow:none;
  2521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:12px;
  2525. line-height:30px;
  2526. }
  2527. #u138169 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:499px;
  2531. top:115px;
  2532. width:55px;
  2533. height:30px;
  2534. display:flex;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:12px;
  2539. line-height:30px;
  2540. }
  2541. #u138169 .text {
  2542. position:absolute;
  2543. align-self:flex-start;
  2544. padding:0px 0px 0px 0px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u138169_text {
  2549. border-width:0px;
  2550. white-space:nowrap;
  2551. text-transform:none;
  2552. }
  2553. #u138170_div {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:55px;
  2559. height:30px;
  2560. background:inherit;
  2561. background-color:rgba(255, 255, 255, 0);
  2562. border:none;
  2563. border-left:0px;
  2564. border-top:0px;
  2565. border-right:0px;
  2566. border-radius:0px;
  2567. border-bottom-right-radius:0px;
  2568. border-bottom-left-radius:0px;
  2569. -moz-box-shadow:none;
  2570. -webkit-box-shadow:none;
  2571. box-shadow:none;
  2572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:18px;
  2576. line-height:30px;
  2577. }
  2578. #u138170 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:499px;
  2582. top:145px;
  2583. width:55px;
  2584. height:30px;
  2585. display:flex;
  2586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:18px;
  2590. line-height:30px;
  2591. }
  2592. #u138170 .text {
  2593. position:absolute;
  2594. align-self:flex-start;
  2595. padding:0px 0px 0px 0px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u138170_text {
  2600. border-width:0px;
  2601. white-space:nowrap;
  2602. text-transform:none;
  2603. }
  2604. #u138171 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:0px;
  2608. top:0px;
  2609. width:0px;
  2610. height:0px;
  2611. }
  2612. #u138172_div {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:375px;
  2618. height:80px;
  2619. background:inherit;
  2620. background-color:rgba(255, 255, 255, 1);
  2621. border:none;
  2622. border-top:0px;
  2623. border-radius:0px;
  2624. border-top-left-radius:0px;
  2625. border-top-right-radius:0px;
  2626. -moz-box-shadow:none;
  2627. -webkit-box-shadow:none;
  2628. box-shadow:none;
  2629. }
  2630. #u138172 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:482px;
  2634. top:186px;
  2635. width:375px;
  2636. height:80px;
  2637. display:flex;
  2638. }
  2639. #u138172 .text {
  2640. position:absolute;
  2641. align-self:center;
  2642. padding:2px 2px 2px 2px;
  2643. box-sizing:border-box;
  2644. width:100%;
  2645. }
  2646. #u138172_text {
  2647. border-width:0px;
  2648. word-wrap:break-word;
  2649. text-transform:none;
  2650. visibility:hidden;
  2651. }
  2652. #u138173_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:79px;
  2658. height:30px;
  2659. background:inherit;
  2660. background-color:rgba(255, 255, 255, 0);
  2661. border:none;
  2662. border-left:0px;
  2663. border-top:0px;
  2664. border-right:0px;
  2665. border-radius:0px;
  2666. border-bottom-right-radius:0px;
  2667. border-bottom-left-radius:0px;
  2668. -moz-box-shadow:none;
  2669. -webkit-box-shadow:none;
  2670. box-shadow:none;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:12px;
  2675. line-height:30px;
  2676. }
  2677. #u138173 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:499px;
  2681. top:196px;
  2682. width:79px;
  2683. height:30px;
  2684. display:flex;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:12px;
  2689. line-height:30px;
  2690. }
  2691. #u138173 .text {
  2692. position:absolute;
  2693. align-self:flex-start;
  2694. padding:0px 0px 0px 0px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u138173_text {
  2699. border-width:0px;
  2700. white-space:nowrap;
  2701. text-transform:none;
  2702. }
  2703. #u138174_div {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:55px;
  2709. height:30px;
  2710. background:inherit;
  2711. background-color:rgba(255, 255, 255, 0);
  2712. border:none;
  2713. border-left:0px;
  2714. border-top:0px;
  2715. border-right:0px;
  2716. border-radius:0px;
  2717. border-bottom-right-radius:0px;
  2718. border-bottom-left-radius:0px;
  2719. -moz-box-shadow:none;
  2720. -webkit-box-shadow:none;
  2721. box-shadow:none;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:18px;
  2726. line-height:30px;
  2727. }
  2728. #u138174 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:499px;
  2732. top:226px;
  2733. width:55px;
  2734. height:30px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:18px;
  2740. line-height:30px;
  2741. }
  2742. #u138174 .text {
  2743. position:absolute;
  2744. align-self:flex-start;
  2745. padding:0px 0px 0px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u138174_text {
  2750. border-width:0px;
  2751. white-space:nowrap;
  2752. text-transform:none;
  2753. }
  2754. #u138175 {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:0px;
  2760. height:0px;
  2761. }
  2762. #u138176_div {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:375px;
  2768. height:80px;
  2769. background:inherit;
  2770. background-color:rgba(255, 255, 255, 1);
  2771. border:none;
  2772. border-top:0px;
  2773. border-radius:0px;
  2774. border-top-left-radius:0px;
  2775. border-top-right-radius:0px;
  2776. -moz-box-shadow:none;
  2777. -webkit-box-shadow:none;
  2778. box-shadow:none;
  2779. }
  2780. #u138176 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:482px;
  2784. top:267px;
  2785. width:375px;
  2786. height:80px;
  2787. display:flex;
  2788. }
  2789. #u138176 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 2px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u138176_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. visibility:hidden;
  2801. }
  2802. #u138177_div {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:55px;
  2808. height:30px;
  2809. background:inherit;
  2810. background-color:rgba(255, 255, 255, 0);
  2811. border:none;
  2812. border-left:0px;
  2813. border-top:0px;
  2814. border-right:0px;
  2815. border-radius:0px;
  2816. border-bottom-right-radius:0px;
  2817. border-bottom-left-radius:0px;
  2818. -moz-box-shadow:none;
  2819. -webkit-box-shadow:none;
  2820. box-shadow:none;
  2821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:12px;
  2825. line-height:30px;
  2826. }
  2827. #u138177 {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:499px;
  2831. top:277px;
  2832. width:55px;
  2833. height:30px;
  2834. display:flex;
  2835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2836. font-weight:400;
  2837. font-style:normal;
  2838. font-size:12px;
  2839. line-height:30px;
  2840. }
  2841. #u138177 .text {
  2842. position:absolute;
  2843. align-self:flex-start;
  2844. padding:0px 0px 0px 0px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u138177_text {
  2849. border-width:0px;
  2850. white-space:nowrap;
  2851. text-transform:none;
  2852. }
  2853. #u138178_div {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:55px;
  2859. height:30px;
  2860. background:inherit;
  2861. background-color:rgba(255, 255, 255, 0);
  2862. border:none;
  2863. border-left:0px;
  2864. border-top:0px;
  2865. border-right:0px;
  2866. border-radius:0px;
  2867. border-bottom-right-radius:0px;
  2868. border-bottom-left-radius:0px;
  2869. -moz-box-shadow:none;
  2870. -webkit-box-shadow:none;
  2871. box-shadow:none;
  2872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:18px;
  2876. line-height:30px;
  2877. }
  2878. #u138178 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:499px;
  2882. top:307px;
  2883. width:55px;
  2884. height:30px;
  2885. display:flex;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:18px;
  2890. line-height:30px;
  2891. }
  2892. #u138178 .text {
  2893. position:absolute;
  2894. align-self:flex-start;
  2895. padding:0px 0px 0px 0px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u138178_text {
  2900. border-width:0px;
  2901. white-space:nowrap;
  2902. text-transform:none;
  2903. }
  2904. #u138179 {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:0px;
  2910. height:0px;
  2911. }
  2912. #u138180_div {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:375px;
  2918. height:80px;
  2919. background:inherit;
  2920. background-color:rgba(255, 255, 255, 1);
  2921. border:none;
  2922. border-top:0px;
  2923. border-radius:0px;
  2924. border-top-left-radius:0px;
  2925. border-top-right-radius:0px;
  2926. -moz-box-shadow:none;
  2927. -webkit-box-shadow:none;
  2928. box-shadow:none;
  2929. }
  2930. #u138180 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:482px;
  2934. top:348px;
  2935. width:375px;
  2936. height:80px;
  2937. display:flex;
  2938. }
  2939. #u138180 .text {
  2940. position:absolute;
  2941. align-self:center;
  2942. padding:2px 2px 2px 2px;
  2943. box-sizing:border-box;
  2944. width:100%;
  2945. }
  2946. #u138180_text {
  2947. border-width:0px;
  2948. word-wrap:break-word;
  2949. text-transform:none;
  2950. visibility:hidden;
  2951. }
  2952. #u138181_div {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:67px;
  2958. height:30px;
  2959. background:inherit;
  2960. background-color:rgba(255, 255, 255, 0);
  2961. border:none;
  2962. border-left:0px;
  2963. border-top:0px;
  2964. border-right:0px;
  2965. border-radius:0px;
  2966. border-bottom-right-radius:0px;
  2967. border-bottom-left-radius:0px;
  2968. -moz-box-shadow:none;
  2969. -webkit-box-shadow:none;
  2970. box-shadow:none;
  2971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2972. font-weight:400;
  2973. font-style:normal;
  2974. font-size:12px;
  2975. line-height:30px;
  2976. }
  2977. #u138181 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:499px;
  2981. top:358px;
  2982. width:67px;
  2983. height:30px;
  2984. display:flex;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:12px;
  2989. line-height:30px;
  2990. }
  2991. #u138181 .text {
  2992. position:absolute;
  2993. align-self:flex-start;
  2994. padding:0px 0px 0px 0px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u138181_text {
  2999. border-width:0px;
  3000. white-space:nowrap;
  3001. text-transform:none;
  3002. }
  3003. #u138182_div {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:55px;
  3009. height:30px;
  3010. background:inherit;
  3011. background-color:rgba(255, 255, 255, 0);
  3012. border:none;
  3013. border-left:0px;
  3014. border-top:0px;
  3015. border-right:0px;
  3016. border-radius:0px;
  3017. border-bottom-right-radius:0px;
  3018. border-bottom-left-radius:0px;
  3019. -moz-box-shadow:none;
  3020. -webkit-box-shadow:none;
  3021. box-shadow:none;
  3022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. font-size:18px;
  3026. line-height:30px;
  3027. }
  3028. #u138182 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:499px;
  3032. top:388px;
  3033. width:55px;
  3034. height:30px;
  3035. display:flex;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:18px;
  3040. line-height:30px;
  3041. }
  3042. #u138182 .text {
  3043. position:absolute;
  3044. align-self:flex-start;
  3045. padding:0px 0px 0px 0px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u138182_text {
  3050. border-width:0px;
  3051. white-space:nowrap;
  3052. text-transform:none;
  3053. }
  3054. #u138183 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:0px;
  3060. height:0px;
  3061. }
  3062. #u138184_div {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:375px;
  3068. height:80px;
  3069. background:inherit;
  3070. background-color:rgba(255, 255, 255, 1);
  3071. border:none;
  3072. border-top:0px;
  3073. border-radius:0px;
  3074. border-top-left-radius:0px;
  3075. border-top-right-radius:0px;
  3076. -moz-box-shadow:none;
  3077. -webkit-box-shadow:none;
  3078. box-shadow:none;
  3079. }
  3080. #u138184 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:482px;
  3084. top:429px;
  3085. width:375px;
  3086. height:80px;
  3087. display:flex;
  3088. }
  3089. #u138184 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 2px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u138184_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. visibility:hidden;
  3101. }
  3102. #u138185_div {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:79px;
  3108. height:30px;
  3109. background:inherit;
  3110. background-color:rgba(255, 255, 255, 0);
  3111. border:none;
  3112. border-left:0px;
  3113. border-top:0px;
  3114. border-right:0px;
  3115. border-radius:0px;
  3116. border-bottom-right-radius:0px;
  3117. border-bottom-left-radius:0px;
  3118. -moz-box-shadow:none;
  3119. -webkit-box-shadow:none;
  3120. box-shadow:none;
  3121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:12px;
  3125. line-height:30px;
  3126. }
  3127. #u138185 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:499px;
  3131. top:439px;
  3132. width:79px;
  3133. height:30px;
  3134. display:flex;
  3135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. font-size:12px;
  3139. line-height:30px;
  3140. }
  3141. #u138185 .text {
  3142. position:absolute;
  3143. align-self:flex-start;
  3144. padding:0px 0px 0px 0px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u138185_text {
  3149. border-width:0px;
  3150. white-space:nowrap;
  3151. text-transform:none;
  3152. }
  3153. #u138186_div {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:163px;
  3159. height:30px;
  3160. background:inherit;
  3161. background-color:rgba(255, 255, 255, 0);
  3162. border:none;
  3163. border-left:0px;
  3164. border-top:0px;
  3165. border-right:0px;
  3166. border-radius:0px;
  3167. border-bottom-right-radius:0px;
  3168. border-bottom-left-radius:0px;
  3169. -moz-box-shadow:none;
  3170. -webkit-box-shadow:none;
  3171. box-shadow:none;
  3172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:18px;
  3176. line-height:30px;
  3177. }
  3178. #u138186 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:499px;
  3182. top:469px;
  3183. width:163px;
  3184. height:30px;
  3185. display:flex;
  3186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:18px;
  3190. line-height:30px;
  3191. }
  3192. #u138186 .text {
  3193. position:absolute;
  3194. align-self:flex-start;
  3195. padding:0px 0px 0px 0px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u138186_text {
  3200. border-width:0px;
  3201. white-space:nowrap;
  3202. text-transform:none;
  3203. }
  3204. #u138187_div {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:0px;
  3208. top:0px;
  3209. width:375px;
  3210. height:99px;
  3211. background:inherit;
  3212. background-color:rgba(255, 255, 255, 1);
  3213. border:none;
  3214. border-top:0px;
  3215. border-radius:0px;
  3216. border-top-left-radius:0px;
  3217. border-top-right-radius:0px;
  3218. -moz-box-shadow:none;
  3219. -webkit-box-shadow:none;
  3220. box-shadow:none;
  3221. }
  3222. #u138187 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:482px;
  3226. top:510px;
  3227. width:375px;
  3228. height:99px;
  3229. display:flex;
  3230. }
  3231. #u138187 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 2px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u138187_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. visibility:hidden;
  3243. }
  3244. #u138188_div {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:145px;
  3250. height:30px;
  3251. background:inherit;
  3252. background-color:rgba(255, 255, 255, 0);
  3253. border:none;
  3254. border-left:0px;
  3255. border-top:0px;
  3256. border-right:0px;
  3257. border-radius:0px;
  3258. border-bottom-right-radius:0px;
  3259. border-bottom-left-radius:0px;
  3260. -moz-box-shadow:none;
  3261. -webkit-box-shadow:none;
  3262. box-shadow:none;
  3263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. font-size:18px;
  3267. line-height:30px;
  3268. }
  3269. #u138188 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:505px;
  3273. top:535px;
  3274. width:145px;
  3275. height:30px;
  3276. display:flex;
  3277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3278. font-weight:400;
  3279. font-style:normal;
  3280. font-size:18px;
  3281. line-height:30px;
  3282. }
  3283. #u138188 .text {
  3284. position:absolute;
  3285. align-self:flex-start;
  3286. padding:0px 0px 0px 0px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u138188_text {
  3291. border-width:0px;
  3292. white-space:nowrap;
  3293. text-transform:none;
  3294. }
  3295. #u138189_div {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:343px;
  3301. height:34px;
  3302. background:inherit;
  3303. background-color:rgba(255, 255, 255, 0);
  3304. border:none;
  3305. border-left:0px;
  3306. border-top:0px;
  3307. border-right:0px;
  3308. border-radius:0px;
  3309. border-bottom-right-radius:0px;
  3310. border-bottom-left-radius:0px;
  3311. -moz-box-shadow:none;
  3312. -webkit-box-shadow:none;
  3313. box-shadow:none;
  3314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. font-size:12px;
  3318. }
  3319. #u138189 {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:505px;
  3323. top:565px;
  3324. width:343px;
  3325. height:34px;
  3326. display:flex;
  3327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3328. font-weight:400;
  3329. font-style:normal;
  3330. font-size:12px;
  3331. }
  3332. #u138189 .text {
  3333. position:absolute;
  3334. align-self:flex-start;
  3335. padding:0px 0px 0px 0px;
  3336. box-sizing:border-box;
  3337. width:100%;
  3338. }
  3339. #u138189_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. }
  3344. #u138190 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:0px;
  3350. height:0px;
  3351. }
  3352. #u138191_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:375px;
  3358. height:80px;
  3359. background:inherit;
  3360. background-color:rgba(255, 255, 255, 1);
  3361. border:none;
  3362. border-top:0px;
  3363. border-radius:0px;
  3364. border-top-left-radius:0px;
  3365. border-top-right-radius:0px;
  3366. -moz-box-shadow:none;
  3367. -webkit-box-shadow:none;
  3368. box-shadow:none;
  3369. }
  3370. #u138191 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:482px;
  3374. top:609px;
  3375. width:375px;
  3376. height:80px;
  3377. display:flex;
  3378. }
  3379. #u138191 .text {
  3380. position:absolute;
  3381. align-self:center;
  3382. padding:2px 2px 2px 2px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u138191_text {
  3387. border-width:0px;
  3388. word-wrap:break-word;
  3389. text-transform:none;
  3390. visibility:hidden;
  3391. }
  3392. #u138192_div {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:0px;
  3397. width:49px;
  3398. height:30px;
  3399. background:inherit;
  3400. background-color:rgba(255, 255, 255, 0);
  3401. border:none;
  3402. border-left:0px;
  3403. border-top:0px;
  3404. border-right:0px;
  3405. border-radius:0px;
  3406. border-bottom-right-radius:0px;
  3407. border-bottom-left-radius:0px;
  3408. -moz-box-shadow:none;
  3409. -webkit-box-shadow:none;
  3410. box-shadow:none;
  3411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3412. font-weight:400;
  3413. font-style:normal;
  3414. font-size:12px;
  3415. line-height:30px;
  3416. }
  3417. #u138192 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:499px;
  3421. top:619px;
  3422. width:49px;
  3423. height:30px;
  3424. display:flex;
  3425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:12px;
  3429. line-height:30px;
  3430. }
  3431. #u138192 .text {
  3432. position:absolute;
  3433. align-self:flex-start;
  3434. padding:0px 0px 0px 0px;
  3435. box-sizing:border-box;
  3436. width:100%;
  3437. }
  3438. #u138192_text {
  3439. border-width:0px;
  3440. white-space:nowrap;
  3441. text-transform:none;
  3442. }
  3443. #u138193_div {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:55px;
  3449. height:30px;
  3450. background:inherit;
  3451. background-color:rgba(255, 255, 255, 0);
  3452. border:none;
  3453. border-left:0px;
  3454. border-top:0px;
  3455. border-right:0px;
  3456. border-radius:0px;
  3457. border-bottom-right-radius:0px;
  3458. border-bottom-left-radius:0px;
  3459. -moz-box-shadow:none;
  3460. -webkit-box-shadow:none;
  3461. box-shadow:none;
  3462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:18px;
  3466. line-height:30px;
  3467. }
  3468. #u138193 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:499px;
  3472. top:649px;
  3473. width:55px;
  3474. height:30px;
  3475. display:flex;
  3476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3477. font-weight:400;
  3478. font-style:normal;
  3479. font-size:18px;
  3480. line-height:30px;
  3481. }
  3482. #u138193 .text {
  3483. position:absolute;
  3484. align-self:flex-start;
  3485. padding:0px 0px 0px 0px;
  3486. box-sizing:border-box;
  3487. width:100%;
  3488. }
  3489. #u138193_text {
  3490. border-width:0px;
  3491. white-space:nowrap;
  3492. text-transform:none;
  3493. }
  3494. #u138194 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:0px;
  3500. height:0px;
  3501. }
  3502. #u138195_div {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:375px;
  3508. height:80px;
  3509. background:inherit;
  3510. background-color:rgba(255, 255, 255, 1);
  3511. border:none;
  3512. border-top:0px;
  3513. border-radius:0px;
  3514. border-top-left-radius:0px;
  3515. border-top-right-radius:0px;
  3516. -moz-box-shadow:none;
  3517. -webkit-box-shadow:none;
  3518. box-shadow:none;
  3519. }
  3520. #u138195 {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:482px;
  3524. top:690px;
  3525. width:375px;
  3526. height:80px;
  3527. display:flex;
  3528. }
  3529. #u138195 .text {
  3530. position:absolute;
  3531. align-self:center;
  3532. padding:2px 2px 2px 2px;
  3533. box-sizing:border-box;
  3534. width:100%;
  3535. }
  3536. #u138195_text {
  3537. border-width:0px;
  3538. word-wrap:break-word;
  3539. text-transform:none;
  3540. visibility:hidden;
  3541. }
  3542. #u138196_div {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:49px;
  3548. height:30px;
  3549. background:inherit;
  3550. background-color:rgba(255, 255, 255, 0);
  3551. border:none;
  3552. border-left:0px;
  3553. border-top:0px;
  3554. border-right:0px;
  3555. border-radius:0px;
  3556. border-bottom-right-radius:0px;
  3557. border-bottom-left-radius:0px;
  3558. -moz-box-shadow:none;
  3559. -webkit-box-shadow:none;
  3560. box-shadow:none;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:12px;
  3565. line-height:30px;
  3566. }
  3567. #u138196 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:499px;
  3571. top:700px;
  3572. width:49px;
  3573. height:30px;
  3574. display:flex;
  3575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:12px;
  3579. line-height:30px;
  3580. }
  3581. #u138196 .text {
  3582. position:absolute;
  3583. align-self:flex-start;
  3584. padding:0px 0px 0px 0px;
  3585. box-sizing:border-box;
  3586. width:100%;
  3587. }
  3588. #u138196_text {
  3589. border-width:0px;
  3590. white-space:nowrap;
  3591. text-transform:none;
  3592. }
  3593. #u138197_div {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:55px;
  3599. height:30px;
  3600. background:inherit;
  3601. background-color:rgba(255, 255, 255, 0);
  3602. border:none;
  3603. border-left:0px;
  3604. border-top:0px;
  3605. border-right:0px;
  3606. border-radius:0px;
  3607. border-bottom-right-radius:0px;
  3608. border-bottom-left-radius:0px;
  3609. -moz-box-shadow:none;
  3610. -webkit-box-shadow:none;
  3611. box-shadow:none;
  3612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3613. font-weight:400;
  3614. font-style:normal;
  3615. font-size:18px;
  3616. line-height:30px;
  3617. }
  3618. #u138197 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:499px;
  3622. top:730px;
  3623. width:55px;
  3624. height:30px;
  3625. display:flex;
  3626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3627. font-weight:400;
  3628. font-style:normal;
  3629. font-size:18px;
  3630. line-height:30px;
  3631. }
  3632. #u138197 .text {
  3633. position:absolute;
  3634. align-self:flex-start;
  3635. padding:0px 0px 0px 0px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u138197_text {
  3640. border-width:0px;
  3641. white-space:nowrap;
  3642. text-transform:none;
  3643. }
  3644. #u138198_div {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:375px;
  3650. height:170px;
  3651. background:inherit;
  3652. background-color:rgba(255, 255, 255, 1);
  3653. border:none;
  3654. border-top:0px;
  3655. border-radius:0px;
  3656. border-top-left-radius:0px;
  3657. border-top-right-radius:0px;
  3658. -moz-box-shadow:none;
  3659. -webkit-box-shadow:none;
  3660. box-shadow:none;
  3661. }
  3662. #u138198 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:482px;
  3666. top:771px;
  3667. width:375px;
  3668. height:170px;
  3669. display:flex;
  3670. }
  3671. #u138198 .text {
  3672. position:absolute;
  3673. align-self:center;
  3674. padding:2px 2px 2px 2px;
  3675. box-sizing:border-box;
  3676. width:100%;
  3677. }
  3678. #u138198_text {
  3679. border-width:0px;
  3680. word-wrap:break-word;
  3681. text-transform:none;
  3682. visibility:hidden;
  3683. }
  3684. #u138199_div {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:343px;
  3690. height:34px;
  3691. background:inherit;
  3692. background-color:rgba(255, 255, 255, 0);
  3693. border:none;
  3694. border-left:0px;
  3695. border-top:0px;
  3696. border-right:0px;
  3697. border-radius:0px;
  3698. border-bottom-right-radius:0px;
  3699. border-bottom-left-radius:0px;
  3700. -moz-box-shadow:none;
  3701. -webkit-box-shadow:none;
  3702. box-shadow:none;
  3703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3704. font-weight:400;
  3705. font-style:normal;
  3706. font-size:12px;
  3707. }
  3708. #u138199 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:499px;
  3712. top:787px;
  3713. width:343px;
  3714. height:34px;
  3715. display:flex;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:12px;
  3720. }
  3721. #u138199 .text {
  3722. position:absolute;
  3723. align-self:flex-start;
  3724. padding:0px 0px 0px 0px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u138199_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. }
  3733. #u138200_div {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:341px;
  3739. height:40px;
  3740. background:inherit;
  3741. background-color:rgba(24, 144, 255, 1);
  3742. border:none;
  3743. border-radius:45px;
  3744. -moz-box-shadow:none;
  3745. -webkit-box-shadow:none;
  3746. box-shadow:none;
  3747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3748. font-weight:400;
  3749. font-style:normal;
  3750. font-size:14px;
  3751. color:#FFFFFF;
  3752. }
  3753. #u138200 {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:499px;
  3757. top:836px;
  3758. width:341px;
  3759. height:40px;
  3760. display:flex;
  3761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3762. font-weight:400;
  3763. font-style:normal;
  3764. font-size:14px;
  3765. color:#FFFFFF;
  3766. }
  3767. #u138200 .text {
  3768. position:absolute;
  3769. align-self:center;
  3770. padding:2px 2px 2px 2px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u138200_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. }
  3779. #u138201_div {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:0px;
  3783. top:0px;
  3784. width:155px;
  3785. height:20px;
  3786. background:inherit;
  3787. background-color:rgba(255, 255, 255, 0);
  3788. border:none;
  3789. border-left:0px;
  3790. border-top:0px;
  3791. border-right:0px;
  3792. border-radius:0px;
  3793. border-bottom-right-radius:0px;
  3794. border-bottom-left-radius:0px;
  3795. -moz-box-shadow:none;
  3796. -webkit-box-shadow:none;
  3797. box-shadow:none;
  3798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:14px;
  3802. color:#0089FE;
  3803. }
  3804. #u138201 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:592px;
  3808. top:884px;
  3809. width:155px;
  3810. height:20px;
  3811. display:flex;
  3812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3813. font-weight:400;
  3814. font-style:normal;
  3815. font-size:14px;
  3816. color:#0089FE;
  3817. }
  3818. #u138201 .text {
  3819. position:absolute;
  3820. align-self:flex-start;
  3821. padding:0px 0px 0px 0px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u138201_text {
  3826. border-width:0px;
  3827. white-space:nowrap;
  3828. text-transform:none;
  3829. }
  3830. #u138203_img {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:433px;
  3836. height:865px;
  3837. }
  3838. #u138203 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:1359px;
  3842. top:0px;
  3843. width:433px;
  3844. height:865px;
  3845. display:flex;
  3846. }
  3847. #u138203 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 2px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u138203_text {
  3855. border-width:0px;
  3856. word-wrap:break-word;
  3857. text-transform:none;
  3858. visibility:hidden;
  3859. }
  3860. #u138204_div {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:375px;
  3866. height:40px;
  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(215, 215, 215, 1);
  3873. border-left:0px;
  3874. border-top:0px;
  3875. border-right:0px;
  3876. border-radius:0px;
  3877. border-bottom-right-radius:0px;
  3878. border-bottom-left-radius:0px;
  3879. -moz-box-shadow:none;
  3880. -webkit-box-shadow:none;
  3881. box-shadow:none;
  3882. }
  3883. #u138204 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:1388px;
  3887. top:67px;
  3888. width:375px;
  3889. height:40px;
  3890. display:flex;
  3891. }
  3892. #u138204 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 2px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u138204_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u138205 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:0px;
  3911. height:0px;
  3912. }
  3913. #u138206_div {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:88px;
  3919. height:32px;
  3920. background:inherit;
  3921. background-color:rgba(255, 255, 255, 1);
  3922. box-sizing:border-box;
  3923. border-width:1px;
  3924. border-style:solid;
  3925. border-color:rgba(242, 242, 242, 1);
  3926. border-radius:33px;
  3927. -moz-box-shadow:none;
  3928. -webkit-box-shadow:none;
  3929. box-shadow:none;
  3930. }
  3931. #u138206 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:1668px;
  3935. top:71px;
  3936. width:88px;
  3937. height:32px;
  3938. display:flex;
  3939. }
  3940. #u138206 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:2px 2px 2px 2px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u138206_text {
  3948. border-width:0px;
  3949. word-wrap:break-word;
  3950. text-transform:none;
  3951. visibility:hidden;
  3952. }
  3953. #u138207 {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:0px;
  3959. height:0px;
  3960. }
  3961. #u138208_img {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:18px;
  3967. height:18px;
  3968. }
  3969. #u138208 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:1731px;
  3973. top:78px;
  3974. width:18px;
  3975. height:18px;
  3976. display:flex;
  3977. }
  3978. #u138208 .text {
  3979. position:absolute;
  3980. align-self:center;
  3981. padding:2px 2px 2px 2px;
  3982. box-sizing:border-box;
  3983. width:100%;
  3984. }
  3985. #u138208_text {
  3986. border-width:0px;
  3987. word-wrap:break-word;
  3988. text-transform:none;
  3989. visibility:hidden;
  3990. }
  3991. #u138209_img {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:6px;
  3997. height:6px;
  3998. }
  3999. #u138209 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:1737px;
  4003. top:84px;
  4004. width:6px;
  4005. height:6px;
  4006. display:flex;
  4007. }
  4008. #u138209 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 2px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u138209_text {
  4016. border-width:0px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. visibility:hidden;
  4020. }
  4021. #u138210 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:0px;
  4027. height:0px;
  4028. }
  4029. #u138211_img {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:5px;
  4035. height:5px;
  4036. }
  4037. #u138211 {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:1682px;
  4041. top:85px;
  4042. width:5px;
  4043. height:5px;
  4044. display:flex;
  4045. }
  4046. #u138211 .text {
  4047. position:absolute;
  4048. align-self:center;
  4049. padding:2px 2px 2px 2px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u138211_text {
  4054. border-width:0px;
  4055. word-wrap:break-word;
  4056. text-transform:none;
  4057. visibility:hidden;
  4058. }
  4059. #u138212_img {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:5px;
  4065. height:5px;
  4066. }
  4067. #u138212 {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:1698px;
  4071. top:85px;
  4072. width:5px;
  4073. height:5px;
  4074. display:flex;
  4075. }
  4076. #u138212 .text {
  4077. position:absolute;
  4078. align-self:center;
  4079. padding:2px 2px 2px 2px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u138212_text {
  4084. border-width:0px;
  4085. word-wrap:break-word;
  4086. text-transform:none;
  4087. visibility:hidden;
  4088. }
  4089. #u138213_img {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:7px;
  4095. height:7px;
  4096. }
  4097. #u138213 {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:1689px;
  4101. top:84px;
  4102. width:7px;
  4103. height:7px;
  4104. display:flex;
  4105. }
  4106. #u138213 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 2px 2px 2px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u138213_text {
  4114. border-width:0px;
  4115. word-wrap:break-word;
  4116. text-transform:none;
  4117. visibility:hidden;
  4118. }
  4119. #u138214_img {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:19px;
  4125. height:2px;
  4126. }
  4127. #u138214 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:1706px;
  4131. top:87px;
  4132. width:18px;
  4133. height:1px;
  4134. display:flex;
  4135. -webkit-transform:rotate(90deg);
  4136. -moz-transform:rotate(90deg);
  4137. -ms-transform:rotate(90deg);
  4138. transform:rotate(90deg);
  4139. }
  4140. #u138214 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 2px 2px 2px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u138214_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. visibility:hidden;
  4152. }
  4153. #u138215_img {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:375px;
  4159. height:44px;
  4160. }
  4161. #u138215 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:1388px;
  4165. top:24px;
  4166. width:375px;
  4167. height:44px;
  4168. display:flex;
  4169. }
  4170. #u138215 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 2px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u138215_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. visibility:hidden;
  4182. }
  4183. #u138216_div {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:375px;
  4189. height:50px;
  4190. background:inherit;
  4191. background-color:rgba(255, 255, 255, 1);
  4192. box-sizing:border-box;
  4193. border-width:1px;
  4194. border-style:solid;
  4195. border-color:rgba(242, 242, 242, 1);
  4196. border-radius:26px;
  4197. border-top-left-radius:0px;
  4198. border-top-right-radius:0px;
  4199. -moz-box-shadow:none;
  4200. -webkit-box-shadow:none;
  4201. box-shadow:none;
  4202. }
  4203. #u138216 {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:1388px;
  4207. top:788px;
  4208. width:375px;
  4209. height:50px;
  4210. display:flex;
  4211. }
  4212. #u138216 .text {
  4213. position:absolute;
  4214. align-self:center;
  4215. padding:2px 2px 2px 2px;
  4216. box-sizing:border-box;
  4217. width:100%;
  4218. }
  4219. #u138216_text {
  4220. border-width:0px;
  4221. word-wrap:break-word;
  4222. text-transform:none;
  4223. visibility:hidden;
  4224. }
  4225. #u138217 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:0px;
  4231. height:0px;
  4232. }
  4233. #u138218_img {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:24px;
  4239. height:24px;
  4240. }
  4241. #u138218 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:1428px;
  4245. top:792px;
  4246. width:24px;
  4247. height:24px;
  4248. display:flex;
  4249. font-size:8px;
  4250. }
  4251. #u138218 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 2px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u138218_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. }
  4263. #u138219_div {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:25px;
  4269. height:17px;
  4270. background:inherit;
  4271. background-color:rgba(255, 255, 255, 0);
  4272. border:none;
  4273. border-radius:0px;
  4274. -moz-box-shadow:none;
  4275. -webkit-box-shadow:none;
  4276. box-shadow:none;
  4277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4278. font-weight:400;
  4279. font-style:normal;
  4280. font-size:12px;
  4281. }
  4282. #u138219 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:1428px;
  4286. top:817px;
  4287. width:25px;
  4288. height:17px;
  4289. display:flex;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:12px;
  4294. }
  4295. #u138219 .text {
  4296. position:absolute;
  4297. align-self:flex-start;
  4298. padding:0px 0px 0px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u138219_text {
  4303. border-width:0px;
  4304. white-space:nowrap;
  4305. text-transform:none;
  4306. }
  4307. #u138220 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:0px;
  4313. height:0px;
  4314. }
  4315. #u138221_img {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:24px;
  4321. height:24px;
  4322. }
  4323. #u138221 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:1698px;
  4327. top:794px;
  4328. width:24px;
  4329. height:24px;
  4330. display:flex;
  4331. font-size:8px;
  4332. }
  4333. #u138221 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 2px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u138221_text {
  4341. border-width:0px;
  4342. word-wrap:break-word;
  4343. text-transform:none;
  4344. }
  4345. #u138222_div {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:0px;
  4349. top:0px;
  4350. width:25px;
  4351. height:17px;
  4352. background:inherit;
  4353. background-color:rgba(255, 255, 255, 0);
  4354. border:none;
  4355. border-radius:0px;
  4356. -moz-box-shadow:none;
  4357. -webkit-box-shadow:none;
  4358. box-shadow:none;
  4359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:12px;
  4363. }
  4364. #u138222 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:1698px;
  4368. top:819px;
  4369. width:25px;
  4370. height:17px;
  4371. display:flex;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. font-size:12px;
  4376. }
  4377. #u138222 .text {
  4378. position:absolute;
  4379. align-self:flex-start;
  4380. padding:0px 0px 0px 0px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u138222_text {
  4385. border-width:0px;
  4386. white-space:nowrap;
  4387. text-transform:none;
  4388. }
  4389. #u138223_div {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:375px;
  4395. height:681px;
  4396. background:inherit;
  4397. background-color:rgba(242, 242, 242, 0.462745098039216);
  4398. border:none;
  4399. border-radius:0px;
  4400. -moz-box-shadow:none;
  4401. -webkit-box-shadow:none;
  4402. box-shadow:none;
  4403. }
  4404. #u138223 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:1388px;
  4408. top:107px;
  4409. width:375px;
  4410. height:681px;
  4411. display:flex;
  4412. }
  4413. #u138223 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 2px 2px 2px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u138223_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. visibility:hidden;
  4425. }
  4426. #u138224 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:0px;
  4432. height:0px;
  4433. }
  4434. #u138225_img {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:24px;
  4440. height:24px;
  4441. }
  4442. #u138225 {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:1610px;
  4446. top:792px;
  4447. width:24px;
  4448. height:24px;
  4449. display:flex;
  4450. font-size:8px;
  4451. }
  4452. #u138225 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 2px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u138225_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. }
  4464. #u138226_div {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:37px;
  4470. height:17px;
  4471. background:inherit;
  4472. background-color:rgba(255, 255, 255, 0);
  4473. border:none;
  4474. border-radius:0px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:12px;
  4482. }
  4483. #u138226 {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:1604px;
  4487. top:817px;
  4488. width:37px;
  4489. height:17px;
  4490. display:flex;
  4491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4492. font-weight:400;
  4493. font-style:normal;
  4494. font-size:12px;
  4495. }
  4496. #u138226 .text {
  4497. position:absolute;
  4498. align-self:flex-start;
  4499. padding:0px 0px 0px 0px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u138226_text {
  4504. border-width:0px;
  4505. white-space:nowrap;
  4506. text-transform:none;
  4507. }
  4508. #u138227 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:0px;
  4514. height:0px;
  4515. }
  4516. #u138228_img {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:24px;
  4522. height:24px;
  4523. }
  4524. #u138228 {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:1516px;
  4528. top:792px;
  4529. width:24px;
  4530. height:24px;
  4531. display:flex;
  4532. font-size:8px;
  4533. }
  4534. #u138228 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 2px 2px 2px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u138228_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. }
  4546. #u138229_div {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:37px;
  4552. height:17px;
  4553. background:inherit;
  4554. background-color:rgba(255, 255, 255, 0);
  4555. border:none;
  4556. border-radius:0px;
  4557. -moz-box-shadow:none;
  4558. -webkit-box-shadow:none;
  4559. box-shadow:none;
  4560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4561. font-weight:400;
  4562. font-style:normal;
  4563. font-size:12px;
  4564. }
  4565. #u138229 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:1510px;
  4569. top:817px;
  4570. width:37px;
  4571. height:17px;
  4572. display:flex;
  4573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:12px;
  4577. }
  4578. #u138229 .text {
  4579. position:absolute;
  4580. align-self:flex-start;
  4581. padding:0px 0px 0px 0px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u138229_text {
  4586. border-width:0px;
  4587. white-space:nowrap;
  4588. text-transform:none;
  4589. }
  4590. #u138230_div {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:375px;
  4596. height:735px;
  4597. background:inherit;
  4598. background-color:rgba(255, 255, 255, 1);
  4599. border:none;
  4600. border-top:0px;
  4601. border-radius:25px;
  4602. border-top-left-radius:0px;
  4603. border-top-right-radius:0px;
  4604. -moz-box-shadow:none;
  4605. -webkit-box-shadow:none;
  4606. box-shadow:none;
  4607. }
  4608. #u138230 {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:1388px;
  4612. top:105px;
  4613. width:375px;
  4614. height:735px;
  4615. display:flex;
  4616. }
  4617. #u138230 .text {
  4618. position:absolute;
  4619. align-self:center;
  4620. padding:2px 2px 2px 2px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u138230_text {
  4625. border-width:0px;
  4626. word-wrap:break-word;
  4627. text-transform:none;
  4628. visibility:hidden;
  4629. }
  4630. #u138231 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:0px;
  4636. height:0px;
  4637. }
  4638. #u138232_img {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:11px;
  4644. height:18px;
  4645. }
  4646. #u138232 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:1405px;
  4650. top:79px;
  4651. width:11px;
  4652. height:18px;
  4653. display:flex;
  4654. }
  4655. #u138232 .text {
  4656. position:absolute;
  4657. align-self:center;
  4658. padding:2px 2px 2px 2px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u138232_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. visibility:hidden;
  4667. }
  4668. #u138233_div {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:109px;
  4674. height:30px;
  4675. background:inherit;
  4676. background-color:rgba(255, 255, 255, 0);
  4677. border:none;
  4678. border-left:0px;
  4679. border-top:0px;
  4680. border-right:0px;
  4681. border-radius:0px;
  4682. border-bottom-right-radius:0px;
  4683. border-bottom-left-radius:0px;
  4684. -moz-box-shadow:none;
  4685. -webkit-box-shadow:none;
  4686. box-shadow:none;
  4687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:18px;
  4691. line-height:30px;
  4692. }
  4693. #u138233 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:1521px;
  4697. top:73px;
  4698. width:109px;
  4699. height:30px;
  4700. display:flex;
  4701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4702. font-weight:400;
  4703. font-style:normal;
  4704. font-size:18px;
  4705. line-height:30px;
  4706. }
  4707. #u138233 .text {
  4708. position:absolute;
  4709. align-self:flex-start;
  4710. padding:0px 0px 0px 0px;
  4711. box-sizing:border-box;
  4712. width:100%;
  4713. }
  4714. #u138233_text {
  4715. border-width:0px;
  4716. white-space:nowrap;
  4717. text-transform:none;
  4718. }
  4719. #u138234_img {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:14px;
  4725. height:14px;
  4726. }
  4727. #u138234 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:1436px;
  4731. top:81px;
  4732. width:14px;
  4733. height:14px;
  4734. display:flex;
  4735. }
  4736. #u138234 .text {
  4737. position:absolute;
  4738. align-self:center;
  4739. padding:2px 2px 2px 2px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u138234_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. visibility:hidden;
  4748. }
  4749. #u138235_div {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:0px;
  4753. top:0px;
  4754. width:341px;
  4755. height:40px;
  4756. background:inherit;
  4757. background-color:rgba(24, 144, 255, 1);
  4758. border:none;
  4759. border-radius:45px;
  4760. -moz-box-shadow:none;
  4761. -webkit-box-shadow:none;
  4762. box-shadow:none;
  4763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4764. font-weight:400;
  4765. font-style:normal;
  4766. font-size:14px;
  4767. color:#FFFFFF;
  4768. }
  4769. #u138235 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:1399px;
  4773. top:765px;
  4774. width:341px;
  4775. height:40px;
  4776. display:flex;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:14px;
  4781. color:#FFFFFF;
  4782. }
  4783. #u138235 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 2px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u138235_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. }
  4795. #u138236 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:0px;
  4801. height:0px;
  4802. }
  4803. #u138237_img {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:18px;
  4809. height:18px;
  4810. }
  4811. #u138237 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:1417px;
  4815. top:718px;
  4816. width:18px;
  4817. height:18px;
  4818. display:flex;
  4819. }
  4820. #u138237 .text {
  4821. position:absolute;
  4822. align-self:center;
  4823. padding:2px 2px 2px 2px;
  4824. box-sizing:border-box;
  4825. width:100%;
  4826. }
  4827. #u138237_text {
  4828. border-width:0px;
  4829. word-wrap:break-word;
  4830. text-transform:none;
  4831. visibility:hidden;
  4832. }
  4833. #u138238 label {
  4834. left:0px;
  4835. width:100%;
  4836. }
  4837. #u138238_img {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:3px;
  4842. width:12px;
  4843. height:12px;
  4844. }
  4845. #u138238 {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:1419px;
  4849. top:719px;
  4850. width:321px;
  4851. height:17px;
  4852. display:flex;
  4853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4854. font-weight:400;
  4855. font-style:normal;
  4856. }
  4857. #u138238 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:0px 2px 0px 2px;
  4861. box-sizing:border-box;
  4862. }
  4863. #u138238_img.selected {
  4864. }
  4865. #u138238.selected {
  4866. }
  4867. #u138238_img.disabled {
  4868. }
  4869. #u138238.disabled {
  4870. }
  4871. #u138238_img.selectedDisabled {
  4872. }
  4873. #u138238.selectedDisabled {
  4874. }
  4875. #u138238_text {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:14px;
  4879. top:0px;
  4880. width:305px;
  4881. word-wrap:break-word;
  4882. text-transform:none;
  4883. }
  4884. #u138238_input {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:0px;
  4890. height:0px;
  4891. opacity:0;
  4892. }
  4893. #u138239_div {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:134px;
  4899. height:30px;
  4900. background:inherit;
  4901. background-color:rgba(255, 255, 255, 0);
  4902. border:none;
  4903. border-left:0px;
  4904. border-top:0px;
  4905. border-right:0px;
  4906. border-radius:0px;
  4907. border-bottom-right-radius:0px;
  4908. border-bottom-left-radius:0px;
  4909. -moz-box-shadow:none;
  4910. -webkit-box-shadow:none;
  4911. box-shadow:none;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:18px;
  4916. line-height:30px;
  4917. }
  4918. #u138239 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:1412px;
  4922. top:130px;
  4923. width:134px;
  4924. height:30px;
  4925. display:flex;
  4926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:18px;
  4930. line-height:30px;
  4931. }
  4932. #u138239 .text {
  4933. position:absolute;
  4934. align-self:flex-start;
  4935. padding:0px 0px 0px 0px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u138239_text {
  4940. border-width:0px;
  4941. white-space:nowrap;
  4942. text-transform:none;
  4943. }
  4944. #u138240_div {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:315px;
  4950. height:51px;
  4951. background:inherit;
  4952. background-color:rgba(255, 255, 255, 0);
  4953. border:none;
  4954. border-left:0px;
  4955. border-top:0px;
  4956. border-right:0px;
  4957. border-radius:0px;
  4958. border-bottom-right-radius:0px;
  4959. border-bottom-left-radius:0px;
  4960. -moz-box-shadow:none;
  4961. -webkit-box-shadow:none;
  4962. box-shadow:none;
  4963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. font-size:12px;
  4967. }
  4968. #u138240 {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:1416px;
  4972. top:169px;
  4973. width:315px;
  4974. height:51px;
  4975. display:flex;
  4976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:12px;
  4980. }
  4981. #u138240 .text {
  4982. position:absolute;
  4983. align-self:flex-start;
  4984. padding:0px 0px 0px 0px;
  4985. box-sizing:border-box;
  4986. width:100%;
  4987. }
  4988. #u138240_text {
  4989. border-width:0px;
  4990. word-wrap:break-word;
  4991. text-transform:none;
  4992. }
  4993. #u138241_div {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:0px;
  4997. top:0px;
  4998. width:138px;
  4999. height:30px;
  5000. background:inherit;
  5001. background-color:rgba(255, 255, 255, 0);
  5002. border:none;
  5003. border-left:0px;
  5004. border-top:0px;
  5005. border-right:0px;
  5006. border-radius:0px;
  5007. border-bottom-right-radius:0px;
  5008. border-bottom-left-radius:0px;
  5009. -moz-box-shadow:none;
  5010. -webkit-box-shadow:none;
  5011. box-shadow:none;
  5012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. font-size:18px;
  5016. line-height:30px;
  5017. }
  5018. #u138241 {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:1412px;
  5022. top:301px;
  5023. width:138px;
  5024. height:30px;
  5025. display:flex;
  5026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5027. font-weight:400;
  5028. font-style:normal;
  5029. font-size:18px;
  5030. line-height:30px;
  5031. }
  5032. #u138241 .text {
  5033. position:absolute;
  5034. align-self:flex-start;
  5035. padding:0px 0px 0px 0px;
  5036. box-sizing:border-box;
  5037. width:100%;
  5038. }
  5039. #u138241_text {
  5040. border-width:0px;
  5041. white-space:nowrap;
  5042. text-transform:none;
  5043. }
  5044. #u138242_div {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:315px;
  5050. height:68px;
  5051. background:inherit;
  5052. background-color:rgba(255, 255, 255, 0);
  5053. border:none;
  5054. border-left:0px;
  5055. border-top:0px;
  5056. border-right:0px;
  5057. border-radius:0px;
  5058. border-bottom-right-radius:0px;
  5059. border-bottom-left-radius:0px;
  5060. -moz-box-shadow:none;
  5061. -webkit-box-shadow:none;
  5062. box-shadow:none;
  5063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. font-size:12px;
  5067. }
  5068. #u138242 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:1416px;
  5072. top:340px;
  5073. width:315px;
  5074. height:68px;
  5075. display:flex;
  5076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. font-size:12px;
  5080. }
  5081. #u138242 .text {
  5082. position:absolute;
  5083. align-self:flex-start;
  5084. padding:0px 0px 0px 0px;
  5085. box-sizing:border-box;
  5086. width:100%;
  5087. }
  5088. #u138242_text {
  5089. border-width:0px;
  5090. word-wrap:break-word;
  5091. text-transform:none;
  5092. }
  5093. #u138243_div {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:94px;
  5099. height:28px;
  5100. background:inherit;
  5101. background-color:rgba(2, 167, 240, 0);
  5102. box-sizing:border-box;
  5103. border-width:1px;
  5104. border-style:solid;
  5105. border-color:rgba(121, 121, 121, 1);
  5106. border-radius:4px;
  5107. -moz-box-shadow:none;
  5108. -webkit-box-shadow:none;
  5109. box-shadow:none;
  5110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5111. font-weight:400;
  5112. font-style:normal;
  5113. font-size:12px;
  5114. color:#555555;
  5115. }
  5116. #u138243 {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:1456px;
  5120. top:238px;
  5121. width:94px;
  5122. height:28px;
  5123. display:flex;
  5124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5125. font-weight:400;
  5126. font-style:normal;
  5127. font-size:12px;
  5128. color:#555555;
  5129. }
  5130. #u138243 .text {
  5131. position:absolute;
  5132. align-self:center;
  5133. padding:2px 2px 2px 2px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u138243_text {
  5138. border-width:0px;
  5139. word-wrap:break-word;
  5140. text-transform:none;
  5141. }
  5142. #u138244 {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:0px;
  5148. height:0px;
  5149. }
  5150. #u138245_div {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:94px;
  5156. height:90px;
  5157. background:inherit;
  5158. background-color:rgba(2, 167, 240, 0);
  5159. box-sizing:border-box;
  5160. border-width:1px;
  5161. border-style:solid;
  5162. border-color:rgba(121, 121, 121, 1);
  5163. border-radius:4px;
  5164. -moz-box-shadow:none;
  5165. -webkit-box-shadow:none;
  5166. box-shadow:none;
  5167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5168. font-weight:400;
  5169. font-style:normal;
  5170. font-size:12px;
  5171. color:#555555;
  5172. }
  5173. #u138245 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:1456px;
  5177. top:419px;
  5178. width:94px;
  5179. height:90px;
  5180. display:flex;
  5181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:12px;
  5185. color:#555555;
  5186. }
  5187. #u138245 .text {
  5188. position:absolute;
  5189. align-self:center;
  5190. padding:2px 2px 2px 2px;
  5191. box-sizing:border-box;
  5192. width:100%;
  5193. }
  5194. #u138245_text {
  5195. border-width:0px;
  5196. word-wrap:break-word;
  5197. text-transform:none;
  5198. visibility:hidden;
  5199. }
  5200. #u138246_div {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:0px;
  5204. top:0px;
  5205. width:16px;
  5206. height:30px;
  5207. background:inherit;
  5208. background-color:rgba(255, 255, 255, 0);
  5209. border:none;
  5210. border-left:0px;
  5211. border-top:0px;
  5212. border-right:0px;
  5213. border-radius:0px;
  5214. border-bottom-right-radius:0px;
  5215. border-bottom-left-radius:0px;
  5216. -moz-box-shadow:none;
  5217. -webkit-box-shadow:none;
  5218. box-shadow:none;
  5219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5220. font-weight:400;
  5221. font-style:normal;
  5222. line-height:30px;
  5223. }
  5224. #u138246 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:1495px;
  5228. top:433px;
  5229. width:16px;
  5230. height:30px;
  5231. display:flex;
  5232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. line-height:30px;
  5236. }
  5237. #u138246 .text {
  5238. position:absolute;
  5239. align-self:flex-start;
  5240. padding:0px 0px 0px 0px;
  5241. box-sizing:border-box;
  5242. width:100%;
  5243. }
  5244. #u138246_text {
  5245. border-width:0px;
  5246. white-space:nowrap;
  5247. text-transform:none;
  5248. }
  5249. #u138247_div {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:57px;
  5255. height:30px;
  5256. background:inherit;
  5257. background-color:rgba(255, 255, 255, 0);
  5258. border:none;
  5259. border-left:0px;
  5260. border-top:0px;
  5261. border-right:0px;
  5262. border-radius:0px;
  5263. border-bottom-right-radius:0px;
  5264. border-bottom-left-radius:0px;
  5265. -moz-box-shadow:none;
  5266. -webkit-box-shadow:none;
  5267. box-shadow:none;
  5268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5269. font-weight:400;
  5270. font-style:normal;
  5271. font-size:14px;
  5272. line-height:30px;
  5273. }
  5274. #u138247 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:1475px;
  5278. top:464px;
  5279. width:57px;
  5280. height:30px;
  5281. display:flex;
  5282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:14px;
  5286. line-height:30px;
  5287. }
  5288. #u138247 .text {
  5289. position:absolute;
  5290. align-self:flex-start;
  5291. padding:0px 0px 0px 0px;
  5292. box-sizing:border-box;
  5293. width:100%;
  5294. }
  5295. #u138247_text {
  5296. border-width:0px;
  5297. white-space:nowrap;
  5298. text-transform:none;
  5299. }
  5300. #u138248_div {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:94px;
  5306. height:28px;
  5307. background:inherit;
  5308. background-color:rgba(2, 167, 240, 0);
  5309. box-sizing:border-box;
  5310. border-width:1px;
  5311. border-style:solid;
  5312. border-color:rgba(121, 121, 121, 1);
  5313. border-radius:4px;
  5314. -moz-box-shadow:none;
  5315. -webkit-box-shadow:none;
  5316. box-shadow:none;
  5317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. font-size:12px;
  5321. color:#555555;
  5322. }
  5323. #u138248 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:1456px;
  5327. top:522px;
  5328. width:94px;
  5329. height:28px;
  5330. display:flex;
  5331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5332. font-weight:400;
  5333. font-style:normal;
  5334. font-size:12px;
  5335. color:#555555;
  5336. }
  5337. #u138248 .text {
  5338. position:absolute;
  5339. align-self:center;
  5340. padding:2px 2px 2px 2px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u138248_text {
  5345. border-width:0px;
  5346. word-wrap:break-word;
  5347. text-transform:none;
  5348. }
  5349. #u138250_img {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:433px;
  5355. height:865px;
  5356. }
  5357. #u138250 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:906px;
  5361. top:0px;
  5362. width:433px;
  5363. height:865px;
  5364. display:flex;
  5365. }
  5366. #u138250 .text {
  5367. position:absolute;
  5368. align-self:center;
  5369. padding:2px 2px 2px 2px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u138250_text {
  5374. border-width:0px;
  5375. word-wrap:break-word;
  5376. text-transform:none;
  5377. visibility:hidden;
  5378. }
  5379. #u138251_div {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:375px;
  5385. height:40px;
  5386. background:inherit;
  5387. background-color:rgba(255, 255, 255, 1);
  5388. box-sizing:border-box;
  5389. border-width:1px;
  5390. border-style:solid;
  5391. border-color:rgba(215, 215, 215, 1);
  5392. border-left:0px;
  5393. border-top:0px;
  5394. border-right:0px;
  5395. border-radius:0px;
  5396. border-bottom-right-radius:0px;
  5397. border-bottom-left-radius:0px;
  5398. -moz-box-shadow:none;
  5399. -webkit-box-shadow:none;
  5400. box-shadow:none;
  5401. }
  5402. #u138251 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:935px;
  5406. top:67px;
  5407. width:375px;
  5408. height:40px;
  5409. display:flex;
  5410. }
  5411. #u138251 .text {
  5412. position:absolute;
  5413. align-self:center;
  5414. padding:2px 2px 2px 2px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u138251_text {
  5419. border-width:0px;
  5420. word-wrap:break-word;
  5421. text-transform:none;
  5422. visibility:hidden;
  5423. }
  5424. #u138252 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:0px;
  5430. height:0px;
  5431. }
  5432. #u138253_div {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:88px;
  5438. height:32px;
  5439. background:inherit;
  5440. background-color:rgba(255, 255, 255, 1);
  5441. box-sizing:border-box;
  5442. border-width:1px;
  5443. border-style:solid;
  5444. border-color:rgba(242, 242, 242, 1);
  5445. border-radius:33px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. }
  5450. #u138253 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:1215px;
  5454. top:71px;
  5455. width:88px;
  5456. height:32px;
  5457. display:flex;
  5458. }
  5459. #u138253 .text {
  5460. position:absolute;
  5461. align-self:center;
  5462. padding:2px 2px 2px 2px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u138253_text {
  5467. border-width:0px;
  5468. word-wrap:break-word;
  5469. text-transform:none;
  5470. visibility:hidden;
  5471. }
  5472. #u138254 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:0px;
  5478. height:0px;
  5479. }
  5480. #u138255_img {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:18px;
  5486. height:18px;
  5487. }
  5488. #u138255 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:1278px;
  5492. top:78px;
  5493. width:18px;
  5494. height:18px;
  5495. display:flex;
  5496. }
  5497. #u138255 .text {
  5498. position:absolute;
  5499. align-self:center;
  5500. padding:2px 2px 2px 2px;
  5501. box-sizing:border-box;
  5502. width:100%;
  5503. }
  5504. #u138255_text {
  5505. border-width:0px;
  5506. word-wrap:break-word;
  5507. text-transform:none;
  5508. visibility:hidden;
  5509. }
  5510. #u138256_img {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:6px;
  5516. height:6px;
  5517. }
  5518. #u138256 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:1284px;
  5522. top:84px;
  5523. width:6px;
  5524. height:6px;
  5525. display:flex;
  5526. }
  5527. #u138256 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 2px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u138256_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u138257 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:0px;
  5546. height:0px;
  5547. }
  5548. #u138258_img {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:5px;
  5554. height:5px;
  5555. }
  5556. #u138258 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:1229px;
  5560. top:85px;
  5561. width:5px;
  5562. height:5px;
  5563. display:flex;
  5564. }
  5565. #u138258 .text {
  5566. position:absolute;
  5567. align-self:center;
  5568. padding:2px 2px 2px 2px;
  5569. box-sizing:border-box;
  5570. width:100%;
  5571. }
  5572. #u138258_text {
  5573. border-width:0px;
  5574. word-wrap:break-word;
  5575. text-transform:none;
  5576. visibility:hidden;
  5577. }
  5578. #u138259_img {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:5px;
  5584. height:5px;
  5585. }
  5586. #u138259 {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:1245px;
  5590. top:85px;
  5591. width:5px;
  5592. height:5px;
  5593. display:flex;
  5594. }
  5595. #u138259 .text {
  5596. position:absolute;
  5597. align-self:center;
  5598. padding:2px 2px 2px 2px;
  5599. box-sizing:border-box;
  5600. width:100%;
  5601. }
  5602. #u138259_text {
  5603. border-width:0px;
  5604. word-wrap:break-word;
  5605. text-transform:none;
  5606. visibility:hidden;
  5607. }
  5608. #u138260_img {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:7px;
  5614. height:7px;
  5615. }
  5616. #u138260 {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:1236px;
  5620. top:84px;
  5621. width:7px;
  5622. height:7px;
  5623. display:flex;
  5624. }
  5625. #u138260 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:2px 2px 2px 2px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u138260_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. visibility:hidden;
  5637. }
  5638. #u138261_img {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:19px;
  5644. height:2px;
  5645. }
  5646. #u138261 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:1253px;
  5650. top:87px;
  5651. width:18px;
  5652. height:1px;
  5653. display:flex;
  5654. -webkit-transform:rotate(90deg);
  5655. -moz-transform:rotate(90deg);
  5656. -ms-transform:rotate(90deg);
  5657. transform:rotate(90deg);
  5658. }
  5659. #u138261 .text {
  5660. position:absolute;
  5661. align-self:center;
  5662. padding:2px 2px 2px 2px;
  5663. box-sizing:border-box;
  5664. width:100%;
  5665. }
  5666. #u138261_text {
  5667. border-width:0px;
  5668. word-wrap:break-word;
  5669. text-transform:none;
  5670. visibility:hidden;
  5671. }
  5672. #u138262_img {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:375px;
  5678. height:44px;
  5679. }
  5680. #u138262 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:935px;
  5684. top:24px;
  5685. width:375px;
  5686. height:44px;
  5687. display:flex;
  5688. }
  5689. #u138262 .text {
  5690. position:absolute;
  5691. align-self:center;
  5692. padding:2px 2px 2px 2px;
  5693. box-sizing:border-box;
  5694. width:100%;
  5695. }
  5696. #u138262_text {
  5697. border-width:0px;
  5698. word-wrap:break-word;
  5699. text-transform:none;
  5700. visibility:hidden;
  5701. }
  5702. #u138263_div {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:375px;
  5708. height:50px;
  5709. background:inherit;
  5710. background-color:rgba(255, 255, 255, 1);
  5711. box-sizing:border-box;
  5712. border-width:1px;
  5713. border-style:solid;
  5714. border-color:rgba(242, 242, 242, 1);
  5715. border-radius:26px;
  5716. border-top-left-radius:0px;
  5717. border-top-right-radius:0px;
  5718. -moz-box-shadow:none;
  5719. -webkit-box-shadow:none;
  5720. box-shadow:none;
  5721. }
  5722. #u138263 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:935px;
  5726. top:788px;
  5727. width:375px;
  5728. height:50px;
  5729. display:flex;
  5730. }
  5731. #u138263 .text {
  5732. position:absolute;
  5733. align-self:center;
  5734. padding:2px 2px 2px 2px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u138263_text {
  5739. border-width:0px;
  5740. word-wrap:break-word;
  5741. text-transform:none;
  5742. visibility:hidden;
  5743. }
  5744. #u138264 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:0px;
  5750. height:0px;
  5751. }
  5752. #u138265_img {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:24px;
  5758. height:24px;
  5759. }
  5760. #u138265 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:975px;
  5764. top:792px;
  5765. width:24px;
  5766. height:24px;
  5767. display:flex;
  5768. font-size:8px;
  5769. }
  5770. #u138265 .text {
  5771. position:absolute;
  5772. align-self:center;
  5773. padding:2px 2px 2px 2px;
  5774. box-sizing:border-box;
  5775. width:100%;
  5776. }
  5777. #u138265_text {
  5778. border-width:0px;
  5779. word-wrap:break-word;
  5780. text-transform:none;
  5781. }
  5782. #u138266_div {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:25px;
  5788. height:17px;
  5789. background:inherit;
  5790. background-color:rgba(255, 255, 255, 0);
  5791. border:none;
  5792. border-radius:0px;
  5793. -moz-box-shadow:none;
  5794. -webkit-box-shadow:none;
  5795. box-shadow:none;
  5796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5797. font-weight:400;
  5798. font-style:normal;
  5799. font-size:12px;
  5800. }
  5801. #u138266 {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:975px;
  5805. top:817px;
  5806. width:25px;
  5807. height:17px;
  5808. display:flex;
  5809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5810. font-weight:400;
  5811. font-style:normal;
  5812. font-size:12px;
  5813. }
  5814. #u138266 .text {
  5815. position:absolute;
  5816. align-self:flex-start;
  5817. padding:0px 0px 0px 0px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u138266_text {
  5822. border-width:0px;
  5823. white-space:nowrap;
  5824. text-transform:none;
  5825. }
  5826. #u138267 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:0px;
  5832. height:0px;
  5833. }
  5834. #u138268_img {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:24px;
  5840. height:24px;
  5841. }
  5842. #u138268 {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:1245px;
  5846. top:794px;
  5847. width:24px;
  5848. height:24px;
  5849. display:flex;
  5850. font-size:8px;
  5851. }
  5852. #u138268 .text {
  5853. position:absolute;
  5854. align-self:center;
  5855. padding:2px 2px 2px 2px;
  5856. box-sizing:border-box;
  5857. width:100%;
  5858. }
  5859. #u138268_text {
  5860. border-width:0px;
  5861. word-wrap:break-word;
  5862. text-transform:none;
  5863. }
  5864. #u138269_div {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:0px;
  5868. top:0px;
  5869. width:25px;
  5870. height:17px;
  5871. background:inherit;
  5872. background-color:rgba(255, 255, 255, 0);
  5873. border:none;
  5874. border-radius:0px;
  5875. -moz-box-shadow:none;
  5876. -webkit-box-shadow:none;
  5877. box-shadow:none;
  5878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. font-size:12px;
  5882. }
  5883. #u138269 {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:1245px;
  5887. top:819px;
  5888. width:25px;
  5889. height:17px;
  5890. display:flex;
  5891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5892. font-weight:400;
  5893. font-style:normal;
  5894. font-size:12px;
  5895. }
  5896. #u138269 .text {
  5897. position:absolute;
  5898. align-self:flex-start;
  5899. padding:0px 0px 0px 0px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u138269_text {
  5904. border-width:0px;
  5905. white-space:nowrap;
  5906. text-transform:none;
  5907. }
  5908. #u138270_div {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:375px;
  5914. height:681px;
  5915. background:inherit;
  5916. background-color:rgba(242, 242, 242, 0.462745098039216);
  5917. border:none;
  5918. border-radius:0px;
  5919. -moz-box-shadow:none;
  5920. -webkit-box-shadow:none;
  5921. box-shadow:none;
  5922. }
  5923. #u138270 {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:935px;
  5927. top:107px;
  5928. width:375px;
  5929. height:681px;
  5930. display:flex;
  5931. }
  5932. #u138270 .text {
  5933. position:absolute;
  5934. align-self:center;
  5935. padding:2px 2px 2px 2px;
  5936. box-sizing:border-box;
  5937. width:100%;
  5938. }
  5939. #u138270_text {
  5940. border-width:0px;
  5941. word-wrap:break-word;
  5942. text-transform:none;
  5943. visibility:hidden;
  5944. }
  5945. #u138271 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:0px;
  5949. top:0px;
  5950. width:0px;
  5951. height:0px;
  5952. }
  5953. #u138272_img {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:24px;
  5959. height:24px;
  5960. }
  5961. #u138272 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:1157px;
  5965. top:792px;
  5966. width:24px;
  5967. height:24px;
  5968. display:flex;
  5969. font-size:8px;
  5970. }
  5971. #u138272 .text {
  5972. position:absolute;
  5973. align-self:center;
  5974. padding:2px 2px 2px 2px;
  5975. box-sizing:border-box;
  5976. width:100%;
  5977. }
  5978. #u138272_text {
  5979. border-width:0px;
  5980. word-wrap:break-word;
  5981. text-transform:none;
  5982. }
  5983. #u138273_div {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:37px;
  5989. height:17px;
  5990. background:inherit;
  5991. background-color:rgba(255, 255, 255, 0);
  5992. border:none;
  5993. border-radius:0px;
  5994. -moz-box-shadow:none;
  5995. -webkit-box-shadow:none;
  5996. box-shadow:none;
  5997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5998. font-weight:400;
  5999. font-style:normal;
  6000. font-size:12px;
  6001. }
  6002. #u138273 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:1151px;
  6006. top:817px;
  6007. width:37px;
  6008. height:17px;
  6009. display:flex;
  6010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:12px;
  6014. }
  6015. #u138273 .text {
  6016. position:absolute;
  6017. align-self:flex-start;
  6018. padding:0px 0px 0px 0px;
  6019. box-sizing:border-box;
  6020. width:100%;
  6021. }
  6022. #u138273_text {
  6023. border-width:0px;
  6024. white-space:nowrap;
  6025. text-transform:none;
  6026. }
  6027. #u138274 {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:0px;
  6031. top:0px;
  6032. width:0px;
  6033. height:0px;
  6034. }
  6035. #u138275_img {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:0px;
  6039. top:0px;
  6040. width:24px;
  6041. height:24px;
  6042. }
  6043. #u138275 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:1063px;
  6047. top:792px;
  6048. width:24px;
  6049. height:24px;
  6050. display:flex;
  6051. font-size:8px;
  6052. }
  6053. #u138275 .text {
  6054. position:absolute;
  6055. align-self:center;
  6056. padding:2px 2px 2px 2px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u138275_text {
  6061. border-width:0px;
  6062. word-wrap:break-word;
  6063. text-transform:none;
  6064. }
  6065. #u138276_div {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:37px;
  6071. height:17px;
  6072. background:inherit;
  6073. background-color:rgba(255, 255, 255, 0);
  6074. border:none;
  6075. border-radius:0px;
  6076. -moz-box-shadow:none;
  6077. -webkit-box-shadow:none;
  6078. box-shadow:none;
  6079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:12px;
  6083. }
  6084. #u138276 {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:1057px;
  6088. top:817px;
  6089. width:37px;
  6090. height:17px;
  6091. display:flex;
  6092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:12px;
  6096. }
  6097. #u138276 .text {
  6098. position:absolute;
  6099. align-self:flex-start;
  6100. padding:0px 0px 0px 0px;
  6101. box-sizing:border-box;
  6102. width:100%;
  6103. }
  6104. #u138276_text {
  6105. border-width:0px;
  6106. white-space:nowrap;
  6107. text-transform:none;
  6108. }
  6109. #u138277_div {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:0px;
  6113. top:0px;
  6114. width:375px;
  6115. height:735px;
  6116. background:inherit;
  6117. background-color:rgba(255, 255, 255, 1);
  6118. border:none;
  6119. border-top:0px;
  6120. border-radius:25px;
  6121. border-top-left-radius:0px;
  6122. border-top-right-radius:0px;
  6123. -moz-box-shadow:none;
  6124. -webkit-box-shadow:none;
  6125. box-shadow:none;
  6126. }
  6127. #u138277 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:935px;
  6131. top:105px;
  6132. width:375px;
  6133. height:735px;
  6134. display:flex;
  6135. }
  6136. #u138277 .text {
  6137. position:absolute;
  6138. align-self:center;
  6139. padding:2px 2px 2px 2px;
  6140. box-sizing:border-box;
  6141. width:100%;
  6142. }
  6143. #u138277_text {
  6144. border-width:0px;
  6145. word-wrap:break-word;
  6146. text-transform:none;
  6147. visibility:hidden;
  6148. }
  6149. #u138278 {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:0px;
  6153. top:0px;
  6154. width:0px;
  6155. height:0px;
  6156. }
  6157. #u138279_img {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:11px;
  6163. height:18px;
  6164. }
  6165. #u138279 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:952px;
  6169. top:79px;
  6170. width:11px;
  6171. height:18px;
  6172. display:flex;
  6173. }
  6174. #u138279 .text {
  6175. position:absolute;
  6176. align-self:center;
  6177. padding:2px 2px 2px 2px;
  6178. box-sizing:border-box;
  6179. width:100%;
  6180. }
  6181. #u138279_text {
  6182. border-width:0px;
  6183. word-wrap:break-word;
  6184. text-transform:none;
  6185. visibility:hidden;
  6186. }
  6187. #u138280 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:0px;
  6193. height:0px;
  6194. }
  6195. #u138281_div {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:0px;
  6199. top:0px;
  6200. width:312px;
  6201. height:100px;
  6202. background:inherit;
  6203. background-color:rgba(242, 242, 242, 1);
  6204. border:none;
  6205. border-radius:9px;
  6206. -moz-box-shadow:none;
  6207. -webkit-box-shadow:none;
  6208. box-shadow:none;
  6209. }
  6210. #u138281 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:961px;
  6214. top:128px;
  6215. width:312px;
  6216. height:100px;
  6217. display:flex;
  6218. }
  6219. #u138281 .text {
  6220. position:absolute;
  6221. align-self:center;
  6222. padding:2px 2px 2px 2px;
  6223. box-sizing:border-box;
  6224. width:100%;
  6225. }
  6226. #u138281_text {
  6227. border-width:0px;
  6228. word-wrap:break-word;
  6229. text-transform:none;
  6230. visibility:hidden;
  6231. }
  6232. #u138282_div {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:109px;
  6238. height:30px;
  6239. background:inherit;
  6240. background-color:rgba(255, 255, 255, 0);
  6241. border:none;
  6242. border-left:0px;
  6243. border-top:0px;
  6244. border-right:0px;
  6245. border-radius:0px;
  6246. border-bottom-right-radius:0px;
  6247. border-bottom-left-radius:0px;
  6248. -moz-box-shadow:none;
  6249. -webkit-box-shadow:none;
  6250. box-shadow:none;
  6251. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6252. font-weight:500;
  6253. font-style:normal;
  6254. font-size:18px;
  6255. line-height:30px;
  6256. }
  6257. #u138282 {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:982px;
  6261. top:153px;
  6262. width:109px;
  6263. height:30px;
  6264. display:flex;
  6265. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6266. font-weight:500;
  6267. font-style:normal;
  6268. font-size:18px;
  6269. line-height:30px;
  6270. }
  6271. #u138282 .text {
  6272. position:absolute;
  6273. align-self:flex-start;
  6274. padding:0px 0px 0px 0px;
  6275. box-sizing:border-box;
  6276. width:100%;
  6277. }
  6278. #u138282_text {
  6279. border-width:0px;
  6280. white-space:nowrap;
  6281. text-transform:none;
  6282. }
  6283. #u138283_div {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:43px;
  6289. height:20px;
  6290. background:inherit;
  6291. background-color:rgba(255, 255, 255, 0);
  6292. border:none;
  6293. border-left:0px;
  6294. border-top:0px;
  6295. border-right:0px;
  6296. border-radius:0px;
  6297. border-bottom-right-radius:0px;
  6298. border-bottom-left-radius:0px;
  6299. -moz-box-shadow:none;
  6300. -webkit-box-shadow:none;
  6301. box-shadow:none;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:14px;
  6306. color:#00BFBF;
  6307. }
  6308. #u138283 {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:982px;
  6312. top:183px;
  6313. width:43px;
  6314. height:20px;
  6315. display:flex;
  6316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:14px;
  6320. color:#00BFBF;
  6321. }
  6322. #u138283 .text {
  6323. position:absolute;
  6324. align-self:flex-start;
  6325. padding:0px 0px 0px 0px;
  6326. box-sizing:border-box;
  6327. width:100%;
  6328. }
  6329. #u138283_text {
  6330. border-width:0px;
  6331. white-space:nowrap;
  6332. text-transform:none;
  6333. }
  6334. #u138284_div {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:70px;
  6340. height:30px;
  6341. background:inherit;
  6342. background-color:rgba(255, 255, 255, 0);
  6343. border:none;
  6344. border-left:0px;
  6345. border-top:0px;
  6346. border-right:0px;
  6347. border-radius:0px;
  6348. border-bottom-right-radius:0px;
  6349. border-bottom-left-radius:0px;
  6350. -moz-box-shadow:none;
  6351. -webkit-box-shadow:none;
  6352. box-shadow:none;
  6353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6354. font-weight:400;
  6355. font-style:normal;
  6356. font-size:14px;
  6357. color:#7F7F7F;
  6358. line-height:30px;
  6359. }
  6360. #u138284 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:1187px;
  6364. top:168px;
  6365. width:70px;
  6366. height:30px;
  6367. display:flex;
  6368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6369. font-weight:400;
  6370. font-style:normal;
  6371. font-size:14px;
  6372. color:#7F7F7F;
  6373. line-height:30px;
  6374. }
  6375. #u138284 .text {
  6376. position:absolute;
  6377. align-self:flex-start;
  6378. padding:0px 0px 0px 0px;
  6379. box-sizing:border-box;
  6380. width:100%;
  6381. }
  6382. #u138284_text {
  6383. border-width:0px;
  6384. white-space:nowrap;
  6385. text-transform:none;
  6386. }
  6387. #u138285_div {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:109px;
  6393. height:30px;
  6394. background:inherit;
  6395. background-color:rgba(255, 255, 255, 0);
  6396. border:none;
  6397. border-left:0px;
  6398. border-top:0px;
  6399. border-right:0px;
  6400. border-radius:0px;
  6401. border-bottom-right-radius:0px;
  6402. border-bottom-left-radius:0px;
  6403. -moz-box-shadow:none;
  6404. -webkit-box-shadow:none;
  6405. box-shadow:none;
  6406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6407. font-weight:400;
  6408. font-style:normal;
  6409. font-size:18px;
  6410. line-height:30px;
  6411. }
  6412. #u138285 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:1068px;
  6416. top:73px;
  6417. width:109px;
  6418. height:30px;
  6419. display:flex;
  6420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:18px;
  6424. line-height:30px;
  6425. }
  6426. #u138285 .text {
  6427. position:absolute;
  6428. align-self:flex-start;
  6429. padding:0px 0px 0px 0px;
  6430. box-sizing:border-box;
  6431. width:100%;
  6432. }
  6433. #u138285_text {
  6434. border-width:0px;
  6435. white-space:nowrap;
  6436. text-transform:none;
  6437. }
  6438. #u138286_img {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:14px;
  6444. height:14px;
  6445. }
  6446. #u138286 {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:983px;
  6450. top:81px;
  6451. width:14px;
  6452. height:14px;
  6453. display:flex;
  6454. }
  6455. #u138286 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:2px 2px 2px 2px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u138286_text {
  6463. border-width:0px;
  6464. word-wrap:break-word;
  6465. text-transform:none;
  6466. visibility:hidden;
  6467. }
  6468. #u138287 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:0px;
  6474. height:0px;
  6475. }
  6476. #u138288_div {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:312px;
  6482. height:100px;
  6483. background:inherit;
  6484. background-color:rgba(242, 242, 242, 1);
  6485. border:none;
  6486. border-radius:9px;
  6487. -moz-box-shadow:none;
  6488. -webkit-box-shadow:none;
  6489. box-shadow:none;
  6490. }
  6491. #u138288 {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:961px;
  6495. top:244px;
  6496. width:312px;
  6497. height:100px;
  6498. display:flex;
  6499. }
  6500. #u138288 .text {
  6501. position:absolute;
  6502. align-self:center;
  6503. padding:2px 2px 2px 2px;
  6504. box-sizing:border-box;
  6505. width:100%;
  6506. }
  6507. #u138288_text {
  6508. border-width:0px;
  6509. word-wrap:break-word;
  6510. text-transform:none;
  6511. visibility:hidden;
  6512. }
  6513. #u138289_div {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:109px;
  6519. height:30px;
  6520. background:inherit;
  6521. background-color:rgba(255, 255, 255, 0);
  6522. border:none;
  6523. border-left:0px;
  6524. border-top:0px;
  6525. border-right:0px;
  6526. border-radius:0px;
  6527. border-bottom-right-radius:0px;
  6528. border-bottom-left-radius:0px;
  6529. -moz-box-shadow:none;
  6530. -webkit-box-shadow:none;
  6531. box-shadow:none;
  6532. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6533. font-weight:500;
  6534. font-style:normal;
  6535. font-size:18px;
  6536. line-height:30px;
  6537. }
  6538. #u138289 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:982px;
  6542. top:269px;
  6543. width:109px;
  6544. height:30px;
  6545. display:flex;
  6546. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6547. font-weight:500;
  6548. font-style:normal;
  6549. font-size:18px;
  6550. line-height:30px;
  6551. }
  6552. #u138289 .text {
  6553. position:absolute;
  6554. align-self:flex-start;
  6555. padding:0px 0px 0px 0px;
  6556. box-sizing:border-box;
  6557. width:100%;
  6558. }
  6559. #u138289_text {
  6560. border-width:0px;
  6561. white-space:nowrap;
  6562. text-transform:none;
  6563. }
  6564. #u138290_div {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:71px;
  6570. height:20px;
  6571. background:inherit;
  6572. background-color:rgba(255, 255, 255, 0);
  6573. border:none;
  6574. border-left:0px;
  6575. border-top:0px;
  6576. border-right:0px;
  6577. border-radius:0px;
  6578. border-bottom-right-radius:0px;
  6579. border-bottom-left-radius:0px;
  6580. -moz-box-shadow:none;
  6581. -webkit-box-shadow:none;
  6582. box-shadow:none;
  6583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6584. font-weight:400;
  6585. font-style:normal;
  6586. font-size:14px;
  6587. color:#AAAAAA;
  6588. }
  6589. #u138290 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:982px;
  6593. top:299px;
  6594. width:71px;
  6595. height:20px;
  6596. display:flex;
  6597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6598. font-weight:400;
  6599. font-style:normal;
  6600. font-size:14px;
  6601. color:#AAAAAA;
  6602. }
  6603. #u138290 .text {
  6604. position:absolute;
  6605. align-self:flex-start;
  6606. padding:0px 0px 0px 0px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u138290_text {
  6611. border-width:0px;
  6612. white-space:nowrap;
  6613. text-transform:none;
  6614. }
  6615. #u138291_div {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:0px;
  6619. top:0px;
  6620. width:70px;
  6621. height:30px;
  6622. background:inherit;
  6623. background-color:rgba(255, 255, 255, 0);
  6624. border:none;
  6625. border-left:0px;
  6626. border-top:0px;
  6627. border-right:0px;
  6628. border-radius:0px;
  6629. border-bottom-right-radius:0px;
  6630. border-bottom-left-radius:0px;
  6631. -moz-box-shadow:none;
  6632. -webkit-box-shadow:none;
  6633. box-shadow:none;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:14px;
  6638. color:#7F7F7F;
  6639. line-height:30px;
  6640. }
  6641. #u138291 {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:1187px;
  6645. top:284px;
  6646. width:70px;
  6647. height:30px;
  6648. display:flex;
  6649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6650. font-weight:400;
  6651. font-style:normal;
  6652. font-size:14px;
  6653. color:#7F7F7F;
  6654. line-height:30px;
  6655. }
  6656. #u138291 .text {
  6657. position:absolute;
  6658. align-self:flex-start;
  6659. padding:0px 0px 0px 0px;
  6660. box-sizing:border-box;
  6661. width:100%;
  6662. }
  6663. #u138291_text {
  6664. border-width:0px;
  6665. white-space:nowrap;
  6666. text-transform:none;
  6667. }
  6668. #u138292_div {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:341px;
  6674. height:40px;
  6675. background:inherit;
  6676. background-color:rgba(24, 144, 255, 1);
  6677. border:none;
  6678. border-radius:45px;
  6679. -moz-box-shadow:none;
  6680. -webkit-box-shadow:none;
  6681. box-shadow:none;
  6682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:14px;
  6686. color:#FFFFFF;
  6687. }
  6688. #u138292 {
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:946px;
  6692. top:765px;
  6693. width:341px;
  6694. height:40px;
  6695. display:flex;
  6696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6697. font-weight:400;
  6698. font-style:normal;
  6699. font-size:14px;
  6700. color:#FFFFFF;
  6701. }
  6702. #u138292 .text {
  6703. position:absolute;
  6704. align-self:center;
  6705. padding:2px 2px 2px 2px;
  6706. box-sizing:border-box;
  6707. width:100%;
  6708. }
  6709. #u138292_text {
  6710. border-width:0px;
  6711. word-wrap:break-word;
  6712. text-transform:none;
  6713. }
  6714. #u138293 {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:0px;
  6718. top:0px;
  6719. width:0px;
  6720. height:0px;
  6721. }
  6722. #u138294_img {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:0px;
  6726. top:0px;
  6727. width:18px;
  6728. height:18px;
  6729. }
  6730. #u138294 {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:957px;
  6734. top:367px;
  6735. width:18px;
  6736. height:18px;
  6737. display:flex;
  6738. }
  6739. #u138294 .text {
  6740. position:absolute;
  6741. align-self:center;
  6742. padding:2px 2px 2px 2px;
  6743. box-sizing:border-box;
  6744. width:100%;
  6745. }
  6746. #u138294_text {
  6747. border-width:0px;
  6748. word-wrap:break-word;
  6749. text-transform:none;
  6750. visibility:hidden;
  6751. }
  6752. #u138295 label {
  6753. left:0px;
  6754. width:100%;
  6755. }
  6756. #u138295_img {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:3px;
  6761. width:12px;
  6762. height:12px;
  6763. }
  6764. #u138295 {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:959px;
  6768. top:368px;
  6769. width:321px;
  6770. height:17px;
  6771. display:flex;
  6772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. }
  6776. #u138295 .text {
  6777. position:absolute;
  6778. align-self:center;
  6779. padding:0px 2px 0px 2px;
  6780. box-sizing:border-box;
  6781. }
  6782. #u138295_img.selected {
  6783. }
  6784. #u138295.selected {
  6785. }
  6786. #u138295_img.disabled {
  6787. }
  6788. #u138295.disabled {
  6789. }
  6790. #u138295_img.selectedDisabled {
  6791. }
  6792. #u138295.selectedDisabled {
  6793. }
  6794. #u138295_text {
  6795. border-width:0px;
  6796. position:absolute;
  6797. left:14px;
  6798. top:0px;
  6799. width:305px;
  6800. word-wrap:break-word;
  6801. text-transform:none;
  6802. }
  6803. #u138295_input {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:0px;
  6807. top:0px;
  6808. width:0px;
  6809. height:0px;
  6810. opacity:0;
  6811. }
  6812. #u138296_div {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:113px;
  6818. height:20px;
  6819. background:inherit;
  6820. background-color:rgba(255, 255, 255, 0);
  6821. border:none;
  6822. border-left:0px;
  6823. border-top:0px;
  6824. border-right:0px;
  6825. border-radius:0px;
  6826. border-bottom-right-radius:0px;
  6827. border-bottom-left-radius:0px;
  6828. -moz-box-shadow:none;
  6829. -webkit-box-shadow:none;
  6830. box-shadow:none;
  6831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6832. font-weight:400;
  6833. font-style:normal;
  6834. font-size:14px;
  6835. text-decoration:underline ;
  6836. color:#0089FE;
  6837. }
  6838. #u138296 {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:1060px;
  6842. top:716px;
  6843. width:113px;
  6844. height:20px;
  6845. display:flex;
  6846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:14px;
  6850. text-decoration:underline ;
  6851. color:#0089FE;
  6852. }
  6853. #u138296 .text {
  6854. position:absolute;
  6855. align-self:flex-start;
  6856. padding:0px 0px 0px 0px;
  6857. box-sizing:border-box;
  6858. width:100%;
  6859. }
  6860. #u138296_text {
  6861. border-width:0px;
  6862. white-space:nowrap;
  6863. text-transform:none;
  6864. }