styles.css 126 KB

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