styles.css 137 KB

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