styles.css 197 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1792px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u131425_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u131425 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u131425 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u131425_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u131426_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. #u131426 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u131426 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u131426_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u131427 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u131428_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. #u131428 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u131428 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u131428_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u131429 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u131430_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u131430 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u131430 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u131430_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u131431_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u131431 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u131431 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u131431_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u131432 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u131433_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u131433 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u131433 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u131433_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u131434_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u131434 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u131434 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u131434_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u131435_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u131435 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u131435 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u131435_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u131436_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u131436 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u131436 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u131436_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u131437_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u131437 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u131437 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u131437_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u131438_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. #u131438 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u131438 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u131438_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u131439 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u131440_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u131440 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u131440 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u131440_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u131441_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. #u131441 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u131441 .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. #u131441_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u131442 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u131443_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u131443 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u131443 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u131443_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u131444_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. #u131444 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u131444 .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. #u131444_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u131445_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. #u131445 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u131445 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u131445_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u131446 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u131447_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u131447 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u131447 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u131447_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u131448_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. #u131448 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u131448 .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. #u131448_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u131449 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u131450_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u131450 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u131450 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u131450_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u131451_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. #u131451 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u131451 .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. #u131451_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u131452_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:739px;
  786. }
  787. #u131452 {
  788. border-width:0px;
  789. position:absolute;
  790. left:29px;
  791. top:106px;
  792. width:375px;
  793. height:739px;
  794. display:flex;
  795. }
  796. #u131452 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u131452_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u131453_img {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:11px;
  815. height:18px;
  816. }
  817. #u131453 {
  818. border-width:0px;
  819. position:absolute;
  820. left:40px;
  821. top:79px;
  822. width:11px;
  823. height:18px;
  824. display:flex;
  825. }
  826. #u131453 .text {
  827. position:absolute;
  828. align-self:center;
  829. padding:2px 2px 2px 2px;
  830. box-sizing:border-box;
  831. width:100%;
  832. }
  833. #u131453_text {
  834. border-width:0px;
  835. word-wrap:break-word;
  836. text-transform:none;
  837. visibility:hidden;
  838. }
  839. #u131454_div {
  840. border-width:0px;
  841. position:absolute;
  842. left:0px;
  843. top:0px;
  844. width:73px;
  845. height:25px;
  846. background:inherit;
  847. background-color:rgba(255, 255, 255, 0);
  848. border:none;
  849. border-radius:0px;
  850. -moz-box-shadow:none;
  851. -webkit-box-shadow:none;
  852. box-shadow:none;
  853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  854. font-weight:400;
  855. font-style:normal;
  856. font-size:18px;
  857. }
  858. #u131454 {
  859. border-width:0px;
  860. position:absolute;
  861. left:162px;
  862. top:75px;
  863. width:73px;
  864. height:25px;
  865. display:flex;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. font-size:18px;
  870. }
  871. #u131454 .text {
  872. position:absolute;
  873. align-self:flex-start;
  874. padding:0px 0px 0px 0px;
  875. box-sizing:border-box;
  876. width:100%;
  877. }
  878. #u131454_text {
  879. border-width:0px;
  880. white-space:nowrap;
  881. text-transform:none;
  882. }
  883. #u131455 {
  884. border-width:0px;
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:0px;
  889. height:0px;
  890. }
  891. #u131456_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:375px;
  897. height:50px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 1);
  900. border:none;
  901. border-left:0px;
  902. border-top:0px;
  903. border-right:0px;
  904. border-radius:0px;
  905. border-bottom-right-radius:0px;
  906. border-bottom-left-radius:0px;
  907. -moz-box-shadow:none;
  908. -webkit-box-shadow:none;
  909. box-shadow:none;
  910. }
  911. #u131456 {
  912. border-width:0px;
  913. position:absolute;
  914. left:29px;
  915. top:167px;
  916. width:375px;
  917. height:50px;
  918. display:flex;
  919. }
  920. #u131456 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:2px 2px 2px 2px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u131456_text {
  928. border-width:0px;
  929. word-wrap:break-word;
  930. text-transform:none;
  931. visibility:hidden;
  932. }
  933. #u131457_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:29px;
  939. height:30px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-left:0px;
  944. border-top:0px;
  945. border-right:0px;
  946. border-radius:0px;
  947. border-bottom-right-radius:0px;
  948. border-bottom-left-radius:0px;
  949. -moz-box-shadow:none;
  950. -webkit-box-shadow:none;
  951. box-shadow:none;
  952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  953. font-weight:400;
  954. font-style:normal;
  955. font-size:14px;
  956. line-height:30px;
  957. }
  958. #u131457 {
  959. border-width:0px;
  960. position:absolute;
  961. left:49px;
  962. top:177px;
  963. width:29px;
  964. height:30px;
  965. display:flex;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. font-size:14px;
  970. line-height:30px;
  971. }
  972. #u131457 .text {
  973. position:absolute;
  974. align-self:center;
  975. padding:0px 0px 0px 0px;
  976. box-sizing:border-box;
  977. width:100%;
  978. }
  979. #u131457_text {
  980. border-width:0px;
  981. white-space:nowrap;
  982. text-transform:none;
  983. }
  984. #u131458_div {
  985. border-width:0px;
  986. position:absolute;
  987. left:0px;
  988. top:0px;
  989. width:8px;
  990. height:8px;
  991. background:inherit;
  992. background-color:rgba(255, 255, 255, 0);
  993. box-sizing:border-box;
  994. border-width:1px;
  995. border-style:solid;
  996. border-color:rgba(127, 127, 127, 1);
  997. border-right:0px;
  998. border-bottom:0px;
  999. border-radius:0px;
  1000. border-top-right-radius:0px;
  1001. border-bottom-left-radius:0px;
  1002. -moz-box-shadow:none;
  1003. -webkit-box-shadow:none;
  1004. box-shadow:none;
  1005. }
  1006. #u131458 {
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:379px;
  1010. top:188px;
  1011. width:8px;
  1012. height:8px;
  1013. display:flex;
  1014. -webkit-transform:rotate(135deg);
  1015. -moz-transform:rotate(135deg);
  1016. -ms-transform:rotate(135deg);
  1017. transform:rotate(135deg);
  1018. }
  1019. #u131458 .text {
  1020. position:absolute;
  1021. align-self:center;
  1022. padding:2px 2px 2px 2px;
  1023. box-sizing:border-box;
  1024. width:100%;
  1025. }
  1026. #u131458_text {
  1027. border-width:0px;
  1028. word-wrap:break-word;
  1029. text-transform:none;
  1030. visibility:hidden;
  1031. }
  1032. #u131459_div {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:43px;
  1038. height:30px;
  1039. background:inherit;
  1040. background-color:rgba(255, 255, 255, 0);
  1041. border:none;
  1042. border-left:0px;
  1043. border-top:0px;
  1044. border-right:0px;
  1045. border-radius:0px;
  1046. border-bottom-right-radius:0px;
  1047. border-bottom-left-radius:0px;
  1048. -moz-box-shadow:none;
  1049. -webkit-box-shadow:none;
  1050. box-shadow:none;
  1051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1052. font-weight:400;
  1053. font-style:normal;
  1054. font-size:14px;
  1055. color:#AAAAAA;
  1056. text-align:right;
  1057. line-height:30px;
  1058. }
  1059. #u131459 {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:329px;
  1063. top:177px;
  1064. width:43px;
  1065. height:30px;
  1066. display:flex;
  1067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:14px;
  1071. color:#AAAAAA;
  1072. text-align:right;
  1073. line-height:30px;
  1074. }
  1075. #u131459 .text {
  1076. position:absolute;
  1077. align-self:center;
  1078. padding:0px 0px 0px 0px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u131459_text {
  1083. border-width:0px;
  1084. white-space:nowrap;
  1085. text-transform:none;
  1086. }
  1087. #u131460_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:344px;
  1093. height:40px;
  1094. background:inherit;
  1095. background-color:rgba(24, 144, 255, 1);
  1096. border:none;
  1097. border-radius:81px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. font-size:14px;
  1105. color:#FFFFFF;
  1106. }
  1107. #u131460 {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:49px;
  1111. top:237px;
  1112. width:344px;
  1113. height:40px;
  1114. display:flex;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:14px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u131460 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u131460_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. }
  1133. #u131461 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:0px;
  1137. top:0px;
  1138. width:0px;
  1139. height:0px;
  1140. }
  1141. #u131462_div {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:375px;
  1147. height:50px;
  1148. background:inherit;
  1149. background-color:rgba(255, 255, 255, 1);
  1150. border:none;
  1151. border-left:0px;
  1152. border-top:0px;
  1153. border-right:0px;
  1154. border-radius:0px;
  1155. border-bottom-right-radius:0px;
  1156. border-bottom-left-radius:0px;
  1157. -moz-box-shadow:none;
  1158. -webkit-box-shadow:none;
  1159. box-shadow:none;
  1160. }
  1161. #u131462 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:29px;
  1165. top:116px;
  1166. width:375px;
  1167. height:50px;
  1168. display:flex;
  1169. }
  1170. #u131462 .text {
  1171. position:absolute;
  1172. align-self:center;
  1173. padding:2px 2px 2px 2px;
  1174. box-sizing:border-box;
  1175. width:100%;
  1176. }
  1177. #u131462_text {
  1178. border-width:0px;
  1179. word-wrap:break-word;
  1180. text-transform:none;
  1181. visibility:hidden;
  1182. }
  1183. #u131463_div {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:29px;
  1189. height:30px;
  1190. background:inherit;
  1191. background-color:rgba(255, 255, 255, 0);
  1192. border:none;
  1193. border-left:0px;
  1194. border-top:0px;
  1195. border-right:0px;
  1196. border-radius:0px;
  1197. border-bottom-right-radius:0px;
  1198. border-bottom-left-radius:0px;
  1199. -moz-box-shadow:none;
  1200. -webkit-box-shadow:none;
  1201. box-shadow:none;
  1202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1203. font-weight:400;
  1204. font-style:normal;
  1205. font-size:14px;
  1206. line-height:30px;
  1207. }
  1208. #u131463 {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:49px;
  1212. top:126px;
  1213. width:29px;
  1214. height:30px;
  1215. display:flex;
  1216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1217. font-weight:400;
  1218. font-style:normal;
  1219. font-size:14px;
  1220. line-height:30px;
  1221. }
  1222. #u131463 .text {
  1223. position:absolute;
  1224. align-self:center;
  1225. padding:0px 0px 0px 0px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u131463_text {
  1230. border-width:0px;
  1231. white-space:nowrap;
  1232. text-transform:none;
  1233. }
  1234. #u131464 {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:0px;
  1240. height:0px;
  1241. }
  1242. #u131465_div {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:0px;
  1246. top:0px;
  1247. width:8px;
  1248. height:8px;
  1249. background:inherit;
  1250. background-color:rgba(255, 255, 255, 0);
  1251. box-sizing:border-box;
  1252. border-width:1px;
  1253. border-style:solid;
  1254. border-color:rgba(127, 127, 127, 1);
  1255. border-right:0px;
  1256. border-bottom:0px;
  1257. border-radius:0px;
  1258. border-top-right-radius:0px;
  1259. border-bottom-left-radius:0px;
  1260. -moz-box-shadow:none;
  1261. -webkit-box-shadow:none;
  1262. box-shadow:none;
  1263. }
  1264. #u131465 {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:379px;
  1268. top:137px;
  1269. width:8px;
  1270. height:8px;
  1271. display:flex;
  1272. -webkit-transform:rotate(135deg);
  1273. -moz-transform:rotate(135deg);
  1274. -ms-transform:rotate(135deg);
  1275. transform:rotate(135deg);
  1276. }
  1277. #u131465 .text {
  1278. position:absolute;
  1279. align-self:center;
  1280. padding:2px 2px 2px 2px;
  1281. box-sizing:border-box;
  1282. width:100%;
  1283. }
  1284. #u131465_text {
  1285. border-width:0px;
  1286. word-wrap:break-word;
  1287. text-transform:none;
  1288. visibility:hidden;
  1289. }
  1290. #u131466_div {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:0px;
  1294. top:0px;
  1295. width:85px;
  1296. height:30px;
  1297. background:inherit;
  1298. background-color:rgba(255, 255, 255, 0);
  1299. border:none;
  1300. border-left:0px;
  1301. border-top:0px;
  1302. border-right:0px;
  1303. border-radius:0px;
  1304. border-bottom-right-radius:0px;
  1305. border-bottom-left-radius:0px;
  1306. -moz-box-shadow:none;
  1307. -webkit-box-shadow:none;
  1308. box-shadow:none;
  1309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1310. font-weight:400;
  1311. font-style:normal;
  1312. font-size:14px;
  1313. text-align:right;
  1314. line-height:30px;
  1315. }
  1316. #u131466 {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:287px;
  1320. top:126px;
  1321. width:85px;
  1322. height:30px;
  1323. display:flex;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:14px;
  1328. text-align:right;
  1329. line-height:30px;
  1330. }
  1331. #u131466 .text {
  1332. position:absolute;
  1333. align-self:center;
  1334. padding:0px 0px 0px 0px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u131466_text {
  1339. border-width:0px;
  1340. white-space:nowrap;
  1341. text-transform:none;
  1342. }
  1343. #u131468_img {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:433px;
  1349. height:865px;
  1350. }
  1351. #u131468 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:453px;
  1355. top:0px;
  1356. width:433px;
  1357. height:865px;
  1358. display:flex;
  1359. }
  1360. #u131468 .text {
  1361. position:absolute;
  1362. align-self:center;
  1363. padding:2px 2px 2px 2px;
  1364. box-sizing:border-box;
  1365. width:100%;
  1366. }
  1367. #u131468_text {
  1368. border-width:0px;
  1369. word-wrap:break-word;
  1370. text-transform:none;
  1371. visibility:hidden;
  1372. }
  1373. #u131469_div {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:0px;
  1377. top:0px;
  1378. width:375px;
  1379. height:40px;
  1380. background:inherit;
  1381. background-color:rgba(255, 255, 255, 1);
  1382. box-sizing:border-box;
  1383. border-width:1px;
  1384. border-style:solid;
  1385. border-color:rgba(215, 215, 215, 1);
  1386. border-left:0px;
  1387. border-top:0px;
  1388. border-right:0px;
  1389. border-radius:0px;
  1390. border-bottom-right-radius:0px;
  1391. border-bottom-left-radius:0px;
  1392. -moz-box-shadow:none;
  1393. -webkit-box-shadow:none;
  1394. box-shadow:none;
  1395. }
  1396. #u131469 {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:482px;
  1400. top:67px;
  1401. width:375px;
  1402. height:40px;
  1403. display:flex;
  1404. }
  1405. #u131469 .text {
  1406. position:absolute;
  1407. align-self:center;
  1408. padding:2px 2px 2px 2px;
  1409. box-sizing:border-box;
  1410. width:100%;
  1411. }
  1412. #u131469_text {
  1413. border-width:0px;
  1414. word-wrap:break-word;
  1415. text-transform:none;
  1416. visibility:hidden;
  1417. }
  1418. #u131470 {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:0px;
  1422. top:0px;
  1423. width:0px;
  1424. height:0px;
  1425. }
  1426. #u131471_div {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:88px;
  1432. height:32px;
  1433. background:inherit;
  1434. background-color:rgba(255, 255, 255, 1);
  1435. box-sizing:border-box;
  1436. border-width:1px;
  1437. border-style:solid;
  1438. border-color:rgba(242, 242, 242, 1);
  1439. border-radius:33px;
  1440. -moz-box-shadow:none;
  1441. -webkit-box-shadow:none;
  1442. box-shadow:none;
  1443. }
  1444. #u131471 {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:762px;
  1448. top:71px;
  1449. width:88px;
  1450. height:32px;
  1451. display:flex;
  1452. }
  1453. #u131471 .text {
  1454. position:absolute;
  1455. align-self:center;
  1456. padding:2px 2px 2px 2px;
  1457. box-sizing:border-box;
  1458. width:100%;
  1459. }
  1460. #u131471_text {
  1461. border-width:0px;
  1462. word-wrap:break-word;
  1463. text-transform:none;
  1464. visibility:hidden;
  1465. }
  1466. #u131472 {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:0px;
  1472. height:0px;
  1473. }
  1474. #u131473_img {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:18px;
  1480. height:18px;
  1481. }
  1482. #u131473 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:825px;
  1486. top:78px;
  1487. width:18px;
  1488. height:18px;
  1489. display:flex;
  1490. }
  1491. #u131473 .text {
  1492. position:absolute;
  1493. align-self:center;
  1494. padding:2px 2px 2px 2px;
  1495. box-sizing:border-box;
  1496. width:100%;
  1497. }
  1498. #u131473_text {
  1499. border-width:0px;
  1500. word-wrap:break-word;
  1501. text-transform:none;
  1502. visibility:hidden;
  1503. }
  1504. #u131474_img {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:6px;
  1510. height:6px;
  1511. }
  1512. #u131474 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:831px;
  1516. top:84px;
  1517. width:6px;
  1518. height:6px;
  1519. display:flex;
  1520. }
  1521. #u131474 .text {
  1522. position:absolute;
  1523. align-self:center;
  1524. padding:2px 2px 2px 2px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u131474_text {
  1529. border-width:0px;
  1530. word-wrap:break-word;
  1531. text-transform:none;
  1532. visibility:hidden;
  1533. }
  1534. #u131475 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:0px;
  1540. height:0px;
  1541. }
  1542. #u131476_img {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:0px;
  1546. top:0px;
  1547. width:5px;
  1548. height:5px;
  1549. }
  1550. #u131476 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:776px;
  1554. top:85px;
  1555. width:5px;
  1556. height:5px;
  1557. display:flex;
  1558. }
  1559. #u131476 .text {
  1560. position:absolute;
  1561. align-self:center;
  1562. padding:2px 2px 2px 2px;
  1563. box-sizing:border-box;
  1564. width:100%;
  1565. }
  1566. #u131476_text {
  1567. border-width:0px;
  1568. word-wrap:break-word;
  1569. text-transform:none;
  1570. visibility:hidden;
  1571. }
  1572. #u131477_img {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:5px;
  1578. height:5px;
  1579. }
  1580. #u131477 {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:792px;
  1584. top:85px;
  1585. width:5px;
  1586. height:5px;
  1587. display:flex;
  1588. }
  1589. #u131477 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:2px 2px 2px 2px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u131477_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. visibility:hidden;
  1601. }
  1602. #u131478_img {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:0px;
  1606. top:0px;
  1607. width:7px;
  1608. height:7px;
  1609. }
  1610. #u131478 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:783px;
  1614. top:84px;
  1615. width:7px;
  1616. height:7px;
  1617. display:flex;
  1618. }
  1619. #u131478 .text {
  1620. position:absolute;
  1621. align-self:center;
  1622. padding:2px 2px 2px 2px;
  1623. box-sizing:border-box;
  1624. width:100%;
  1625. }
  1626. #u131478_text {
  1627. border-width:0px;
  1628. word-wrap:break-word;
  1629. text-transform:none;
  1630. visibility:hidden;
  1631. }
  1632. #u131479_img {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:0px;
  1636. top:0px;
  1637. width:19px;
  1638. height:2px;
  1639. }
  1640. #u131479 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:800px;
  1644. top:87px;
  1645. width:18px;
  1646. height:1px;
  1647. display:flex;
  1648. -webkit-transform:rotate(90deg);
  1649. -moz-transform:rotate(90deg);
  1650. -ms-transform:rotate(90deg);
  1651. transform:rotate(90deg);
  1652. }
  1653. #u131479 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:2px 2px 2px 2px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u131479_text {
  1661. border-width:0px;
  1662. word-wrap:break-word;
  1663. text-transform:none;
  1664. visibility:hidden;
  1665. }
  1666. #u131480_img {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:375px;
  1672. height:44px;
  1673. }
  1674. #u131480 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:482px;
  1678. top:24px;
  1679. width:375px;
  1680. height:44px;
  1681. display:flex;
  1682. }
  1683. #u131480 .text {
  1684. position:absolute;
  1685. align-self:center;
  1686. padding:2px 2px 2px 2px;
  1687. box-sizing:border-box;
  1688. width:100%;
  1689. }
  1690. #u131480_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. visibility:hidden;
  1695. }
  1696. #u131481_div {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:375px;
  1702. height:50px;
  1703. background:inherit;
  1704. background-color:rgba(255, 255, 255, 1);
  1705. box-sizing:border-box;
  1706. border-width:1px;
  1707. border-style:solid;
  1708. border-color:rgba(242, 242, 242, 1);
  1709. border-radius:26px;
  1710. border-top-left-radius:0px;
  1711. border-top-right-radius:0px;
  1712. -moz-box-shadow:none;
  1713. -webkit-box-shadow:none;
  1714. box-shadow:none;
  1715. }
  1716. #u131481 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:482px;
  1720. top:788px;
  1721. width:375px;
  1722. height:50px;
  1723. display:flex;
  1724. }
  1725. #u131481 .text {
  1726. position:absolute;
  1727. align-self:center;
  1728. padding:2px 2px 2px 2px;
  1729. box-sizing:border-box;
  1730. width:100%;
  1731. }
  1732. #u131481_text {
  1733. border-width:0px;
  1734. word-wrap:break-word;
  1735. text-transform:none;
  1736. visibility:hidden;
  1737. }
  1738. #u131482 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:0px;
  1744. height:0px;
  1745. }
  1746. #u131483_img {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:24px;
  1752. height:24px;
  1753. }
  1754. #u131483 {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:522px;
  1758. top:792px;
  1759. width:24px;
  1760. height:24px;
  1761. display:flex;
  1762. font-size:8px;
  1763. }
  1764. #u131483 .text {
  1765. position:absolute;
  1766. align-self:center;
  1767. padding:2px 2px 2px 2px;
  1768. box-sizing:border-box;
  1769. width:100%;
  1770. }
  1771. #u131483_text {
  1772. border-width:0px;
  1773. word-wrap:break-word;
  1774. text-transform:none;
  1775. }
  1776. #u131484_div {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:25px;
  1782. height:17px;
  1783. background:inherit;
  1784. background-color:rgba(255, 255, 255, 0);
  1785. border:none;
  1786. border-radius:0px;
  1787. -moz-box-shadow:none;
  1788. -webkit-box-shadow:none;
  1789. box-shadow:none;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:12px;
  1794. }
  1795. #u131484 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:522px;
  1799. top:817px;
  1800. width:25px;
  1801. height:17px;
  1802. display:flex;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:12px;
  1807. }
  1808. #u131484 .text {
  1809. position:absolute;
  1810. align-self:flex-start;
  1811. padding:0px 0px 0px 0px;
  1812. box-sizing:border-box;
  1813. width:100%;
  1814. }
  1815. #u131484_text {
  1816. border-width:0px;
  1817. white-space:nowrap;
  1818. text-transform:none;
  1819. }
  1820. #u131485 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:0px;
  1826. height:0px;
  1827. }
  1828. #u131486_img {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:24px;
  1834. height:24px;
  1835. }
  1836. #u131486 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:792px;
  1840. top:794px;
  1841. width:24px;
  1842. height:24px;
  1843. display:flex;
  1844. font-size:8px;
  1845. }
  1846. #u131486 .text {
  1847. position:absolute;
  1848. align-self:center;
  1849. padding:2px 2px 2px 2px;
  1850. box-sizing:border-box;
  1851. width:100%;
  1852. }
  1853. #u131486_text {
  1854. border-width:0px;
  1855. word-wrap:break-word;
  1856. text-transform:none;
  1857. }
  1858. #u131487_div {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:25px;
  1864. height:17px;
  1865. background:inherit;
  1866. background-color:rgba(255, 255, 255, 0);
  1867. border:none;
  1868. border-radius:0px;
  1869. -moz-box-shadow:none;
  1870. -webkit-box-shadow:none;
  1871. box-shadow:none;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:12px;
  1876. }
  1877. #u131487 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:792px;
  1881. top:819px;
  1882. width:25px;
  1883. height:17px;
  1884. display:flex;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:12px;
  1889. }
  1890. #u131487 .text {
  1891. position:absolute;
  1892. align-self:flex-start;
  1893. padding:0px 0px 0px 0px;
  1894. box-sizing:border-box;
  1895. width:100%;
  1896. }
  1897. #u131487_text {
  1898. border-width:0px;
  1899. white-space:nowrap;
  1900. text-transform:none;
  1901. }
  1902. #u131488_div {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:375px;
  1908. height:681px;
  1909. background:inherit;
  1910. background-color:rgba(242, 242, 242, 0.462745098039216);
  1911. border:none;
  1912. border-radius:0px;
  1913. -moz-box-shadow:none;
  1914. -webkit-box-shadow:none;
  1915. box-shadow:none;
  1916. }
  1917. #u131488 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:482px;
  1921. top:107px;
  1922. width:375px;
  1923. height:681px;
  1924. display:flex;
  1925. }
  1926. #u131488 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:2px 2px 2px 2px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u131488_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. visibility:hidden;
  1938. }
  1939. #u131489 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:0px;
  1945. height:0px;
  1946. }
  1947. #u131490_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:24px;
  1953. height:24px;
  1954. }
  1955. #u131490 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:704px;
  1959. top:792px;
  1960. width:24px;
  1961. height:24px;
  1962. display:flex;
  1963. font-size:8px;
  1964. }
  1965. #u131490 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 2px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u131490_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. }
  1977. #u131491_div {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:37px;
  1983. height:17px;
  1984. background:inherit;
  1985. background-color:rgba(255, 255, 255, 0);
  1986. border:none;
  1987. border-radius:0px;
  1988. -moz-box-shadow:none;
  1989. -webkit-box-shadow:none;
  1990. box-shadow:none;
  1991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1992. font-weight:400;
  1993. font-style:normal;
  1994. font-size:12px;
  1995. }
  1996. #u131491 {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:698px;
  2000. top:817px;
  2001. width:37px;
  2002. height:17px;
  2003. display:flex;
  2004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2005. font-weight:400;
  2006. font-style:normal;
  2007. font-size:12px;
  2008. }
  2009. #u131491 .text {
  2010. position:absolute;
  2011. align-self:flex-start;
  2012. padding:0px 0px 0px 0px;
  2013. box-sizing:border-box;
  2014. width:100%;
  2015. }
  2016. #u131491_text {
  2017. border-width:0px;
  2018. white-space:nowrap;
  2019. text-transform:none;
  2020. }
  2021. #u131492 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:0px;
  2027. height:0px;
  2028. }
  2029. #u131493_img {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:24px;
  2035. height:24px;
  2036. }
  2037. #u131493 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:610px;
  2041. top:792px;
  2042. width:24px;
  2043. height:24px;
  2044. display:flex;
  2045. font-size:8px;
  2046. }
  2047. #u131493 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 2px 2px 2px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u131493_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. }
  2059. #u131494_div {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:37px;
  2065. height:17px;
  2066. background:inherit;
  2067. background-color:rgba(255, 255, 255, 0);
  2068. border:none;
  2069. border-radius:0px;
  2070. -moz-box-shadow:none;
  2071. -webkit-box-shadow:none;
  2072. box-shadow:none;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:12px;
  2077. }
  2078. #u131494 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:604px;
  2082. top:817px;
  2083. width:37px;
  2084. height:17px;
  2085. display:flex;
  2086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2087. font-weight:400;
  2088. font-style:normal;
  2089. font-size:12px;
  2090. }
  2091. #u131494 .text {
  2092. position:absolute;
  2093. align-self:flex-start;
  2094. padding:0px 0px 0px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u131494_text {
  2099. border-width:0px;
  2100. white-space:nowrap;
  2101. text-transform:none;
  2102. }
  2103. #u131495_img {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:0px;
  2108. width:375px;
  2109. height:739px;
  2110. }
  2111. #u131495 {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:482px;
  2115. top:106px;
  2116. width:375px;
  2117. height:739px;
  2118. display:flex;
  2119. }
  2120. #u131495 .text {
  2121. position:absolute;
  2122. align-self:center;
  2123. padding:2px 2px 2px 2px;
  2124. box-sizing:border-box;
  2125. width:100%;
  2126. }
  2127. #u131495_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. visibility:hidden;
  2132. }
  2133. #u131496_img {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:11px;
  2139. height:18px;
  2140. }
  2141. #u131496 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:493px;
  2145. top:79px;
  2146. width:11px;
  2147. height:18px;
  2148. display:flex;
  2149. }
  2150. #u131496 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 2px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u131496_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. visibility:hidden;
  2162. }
  2163. #u131497_div {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:73px;
  2169. height:25px;
  2170. background:inherit;
  2171. background-color:rgba(255, 255, 255, 0);
  2172. border:none;
  2173. border-radius:0px;
  2174. -moz-box-shadow:none;
  2175. -webkit-box-shadow:none;
  2176. box-shadow:none;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:18px;
  2181. }
  2182. #u131497 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:635px;
  2186. top:75px;
  2187. width:73px;
  2188. height:25px;
  2189. display:flex;
  2190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2191. font-weight:400;
  2192. font-style:normal;
  2193. font-size:18px;
  2194. }
  2195. #u131497 .text {
  2196. position:absolute;
  2197. align-self:flex-start;
  2198. padding:0px 0px 0px 0px;
  2199. box-sizing:border-box;
  2200. width:100%;
  2201. }
  2202. #u131497_text {
  2203. border-width:0px;
  2204. white-space:nowrap;
  2205. text-transform:none;
  2206. }
  2207. #u131498 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:0px;
  2213. height:0px;
  2214. }
  2215. #u131499_div {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:0px;
  2219. top:0px;
  2220. width:375px;
  2221. height:50px;
  2222. background:inherit;
  2223. background-color:rgba(255, 255, 255, 1);
  2224. border:none;
  2225. border-left:0px;
  2226. border-top:0px;
  2227. border-right:0px;
  2228. border-radius:0px;
  2229. border-bottom-right-radius:0px;
  2230. border-bottom-left-radius:0px;
  2231. -moz-box-shadow:none;
  2232. -webkit-box-shadow:none;
  2233. box-shadow:none;
  2234. }
  2235. #u131499 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:482px;
  2239. top:269px;
  2240. width:375px;
  2241. height:50px;
  2242. display:flex;
  2243. }
  2244. #u131499 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 2px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u131499_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. visibility:hidden;
  2256. }
  2257. #u131500_div {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:71px;
  2263. height:30px;
  2264. background:inherit;
  2265. background-color:rgba(255, 255, 255, 0);
  2266. border:none;
  2267. border-left:0px;
  2268. border-top:0px;
  2269. border-right:0px;
  2270. border-radius:0px;
  2271. border-bottom-right-radius:0px;
  2272. border-bottom-left-radius:0px;
  2273. -moz-box-shadow:none;
  2274. -webkit-box-shadow:none;
  2275. box-shadow:none;
  2276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:14px;
  2280. line-height:30px;
  2281. }
  2282. #u131500 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:502px;
  2286. top:279px;
  2287. width:71px;
  2288. height:30px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:14px;
  2294. line-height:30px;
  2295. }
  2296. #u131500 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:0px 0px 0px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u131500_text {
  2304. border-width:0px;
  2305. white-space:nowrap;
  2306. text-transform:none;
  2307. }
  2308. #u131501_div {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:8px;
  2314. height:8px;
  2315. background:inherit;
  2316. background-color:rgba(255, 255, 255, 0);
  2317. box-sizing:border-box;
  2318. border-width:1px;
  2319. border-style:solid;
  2320. border-color:rgba(127, 127, 127, 1);
  2321. border-right:0px;
  2322. border-bottom:0px;
  2323. border-radius:0px;
  2324. border-top-right-radius:0px;
  2325. border-bottom-left-radius:0px;
  2326. -moz-box-shadow:none;
  2327. -webkit-box-shadow:none;
  2328. box-shadow:none;
  2329. }
  2330. #u131501 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:832px;
  2334. top:290px;
  2335. width:8px;
  2336. height:8px;
  2337. display:flex;
  2338. -webkit-transform:rotate(135deg);
  2339. -moz-transform:rotate(135deg);
  2340. -ms-transform:rotate(135deg);
  2341. transform:rotate(135deg);
  2342. }
  2343. #u131501 .text {
  2344. position:absolute;
  2345. align-self:center;
  2346. padding:2px 2px 2px 2px;
  2347. box-sizing:border-box;
  2348. width:100%;
  2349. }
  2350. #u131501_text {
  2351. border-width:0px;
  2352. word-wrap:break-word;
  2353. text-transform:none;
  2354. visibility:hidden;
  2355. }
  2356. #u131502 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:0px;
  2362. height:0px;
  2363. }
  2364. #u131503_div {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:375px;
  2370. height:50px;
  2371. background:inherit;
  2372. background-color:rgba(255, 255, 255, 1);
  2373. border:none;
  2374. border-left:0px;
  2375. border-top:0px;
  2376. border-right:0px;
  2377. border-radius:0px;
  2378. border-bottom-right-radius:0px;
  2379. border-bottom-left-radius:0px;
  2380. -moz-box-shadow:none;
  2381. -webkit-box-shadow:none;
  2382. box-shadow:none;
  2383. }
  2384. #u131503 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:482px;
  2388. top:116px;
  2389. width:375px;
  2390. height:50px;
  2391. display:flex;
  2392. }
  2393. #u131503 .text {
  2394. position:absolute;
  2395. align-self:center;
  2396. padding:2px 2px 2px 2px;
  2397. box-sizing:border-box;
  2398. width:100%;
  2399. }
  2400. #u131503_text {
  2401. border-width:0px;
  2402. word-wrap:break-word;
  2403. text-transform:none;
  2404. visibility:hidden;
  2405. }
  2406. #u131504_div {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:0px;
  2410. top:0px;
  2411. width:57px;
  2412. height:30px;
  2413. background:inherit;
  2414. background-color:rgba(255, 255, 255, 0);
  2415. border:none;
  2416. border-left:0px;
  2417. border-top:0px;
  2418. border-right:0px;
  2419. border-radius:0px;
  2420. border-bottom-right-radius:0px;
  2421. border-bottom-left-radius:0px;
  2422. -moz-box-shadow:none;
  2423. -webkit-box-shadow:none;
  2424. box-shadow:none;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:14px;
  2429. line-height:30px;
  2430. }
  2431. #u131504 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:502px;
  2435. top:126px;
  2436. width:57px;
  2437. height:30px;
  2438. display:flex;
  2439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2440. font-weight:400;
  2441. font-style:normal;
  2442. font-size:14px;
  2443. line-height:30px;
  2444. }
  2445. #u131504 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:0px 0px 0px 0px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u131504_text {
  2453. border-width:0px;
  2454. white-space:nowrap;
  2455. text-transform:none;
  2456. }
  2457. #u131505 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:0px;
  2461. top:0px;
  2462. width:0px;
  2463. height:0px;
  2464. }
  2465. #u131506_div {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:8px;
  2471. height:8px;
  2472. background:inherit;
  2473. background-color:rgba(255, 255, 255, 0);
  2474. box-sizing:border-box;
  2475. border-width:1px;
  2476. border-style:solid;
  2477. border-color:rgba(127, 127, 127, 1);
  2478. border-right:0px;
  2479. border-bottom:0px;
  2480. border-radius:0px;
  2481. border-top-right-radius:0px;
  2482. border-bottom-left-radius:0px;
  2483. -moz-box-shadow:none;
  2484. -webkit-box-shadow:none;
  2485. box-shadow:none;
  2486. }
  2487. #u131506 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:832px;
  2491. top:137px;
  2492. width:8px;
  2493. height:8px;
  2494. display:flex;
  2495. -webkit-transform:rotate(135deg);
  2496. -moz-transform:rotate(135deg);
  2497. -ms-transform:rotate(135deg);
  2498. transform:rotate(135deg);
  2499. }
  2500. #u131506 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:2px 2px 2px 2px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u131506_text {
  2508. border-width:0px;
  2509. word-wrap:break-word;
  2510. text-transform:none;
  2511. visibility:hidden;
  2512. }
  2513. #u131507 {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:0px;
  2518. width:0px;
  2519. height:0px;
  2520. }
  2521. #u131508_div {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:375px;
  2527. height:50px;
  2528. background:inherit;
  2529. background-color:rgba(255, 255, 255, 1);
  2530. border:none;
  2531. border-left:0px;
  2532. border-top:0px;
  2533. border-right:0px;
  2534. border-radius:0px;
  2535. border-bottom-right-radius:0px;
  2536. border-bottom-left-radius:0px;
  2537. -moz-box-shadow:none;
  2538. -webkit-box-shadow:none;
  2539. box-shadow:none;
  2540. }
  2541. #u131508 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:482px;
  2545. top:218px;
  2546. width:375px;
  2547. height:50px;
  2548. display:flex;
  2549. }
  2550. #u131508 .text {
  2551. position:absolute;
  2552. align-self:center;
  2553. padding:2px 2px 2px 2px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u131508_text {
  2558. border-width:0px;
  2559. word-wrap:break-word;
  2560. text-transform:none;
  2561. visibility:hidden;
  2562. }
  2563. #u131509_div {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:57px;
  2569. height:30px;
  2570. background:inherit;
  2571. background-color:rgba(255, 255, 255, 0);
  2572. border:none;
  2573. border-left:0px;
  2574. border-top:0px;
  2575. border-right:0px;
  2576. border-radius:0px;
  2577. border-bottom-right-radius:0px;
  2578. border-bottom-left-radius:0px;
  2579. -moz-box-shadow:none;
  2580. -webkit-box-shadow:none;
  2581. box-shadow:none;
  2582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2583. font-weight:400;
  2584. font-style:normal;
  2585. font-size:14px;
  2586. line-height:30px;
  2587. }
  2588. #u131509 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:502px;
  2592. top:228px;
  2593. width:57px;
  2594. height:30px;
  2595. display:flex;
  2596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:14px;
  2600. line-height:30px;
  2601. }
  2602. #u131509 .text {
  2603. position:absolute;
  2604. align-self:center;
  2605. padding:0px 0px 0px 0px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u131509_text {
  2610. border-width:0px;
  2611. white-space:nowrap;
  2612. text-transform:none;
  2613. }
  2614. #u131510_div {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:8px;
  2620. height:8px;
  2621. background:inherit;
  2622. background-color:rgba(255, 255, 255, 0);
  2623. box-sizing:border-box;
  2624. border-width:1px;
  2625. border-style:solid;
  2626. border-color:rgba(127, 127, 127, 1);
  2627. border-right:0px;
  2628. border-bottom:0px;
  2629. border-radius:0px;
  2630. border-top-right-radius:0px;
  2631. border-bottom-left-radius:0px;
  2632. -moz-box-shadow:none;
  2633. -webkit-box-shadow:none;
  2634. box-shadow:none;
  2635. }
  2636. #u131510 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:832px;
  2640. top:239px;
  2641. width:8px;
  2642. height:8px;
  2643. display:flex;
  2644. -webkit-transform:rotate(135deg);
  2645. -moz-transform:rotate(135deg);
  2646. -ms-transform:rotate(135deg);
  2647. transform:rotate(135deg);
  2648. }
  2649. #u131510 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:2px 2px 2px 2px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u131510_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. visibility:hidden;
  2661. }
  2662. #u131511 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:0px;
  2666. top:0px;
  2667. width:0px;
  2668. height:0px;
  2669. }
  2670. #u131512_div {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:375px;
  2676. height:50px;
  2677. background:inherit;
  2678. background-color:rgba(255, 255, 255, 1);
  2679. border:none;
  2680. border-left:0px;
  2681. border-top:0px;
  2682. border-right:0px;
  2683. border-radius:0px;
  2684. border-bottom-right-radius:0px;
  2685. border-bottom-left-radius:0px;
  2686. -moz-box-shadow:none;
  2687. -webkit-box-shadow:none;
  2688. box-shadow:none;
  2689. }
  2690. #u131512 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:482px;
  2694. top:167px;
  2695. width:375px;
  2696. height:50px;
  2697. display:flex;
  2698. }
  2699. #u131512 .text {
  2700. position:absolute;
  2701. align-self:center;
  2702. padding:2px 2px 2px 2px;
  2703. box-sizing:border-box;
  2704. width:100%;
  2705. }
  2706. #u131512_text {
  2707. border-width:0px;
  2708. word-wrap:break-word;
  2709. text-transform:none;
  2710. visibility:hidden;
  2711. }
  2712. #u131513_div {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:71px;
  2718. height:30px;
  2719. background:inherit;
  2720. background-color:rgba(255, 255, 255, 0);
  2721. border:none;
  2722. border-left:0px;
  2723. border-top:0px;
  2724. border-right:0px;
  2725. border-radius:0px;
  2726. border-bottom-right-radius:0px;
  2727. border-bottom-left-radius:0px;
  2728. -moz-box-shadow:none;
  2729. -webkit-box-shadow:none;
  2730. box-shadow:none;
  2731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:14px;
  2735. line-height:30px;
  2736. }
  2737. #u131513 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:502px;
  2741. top:177px;
  2742. width:71px;
  2743. height:30px;
  2744. display:flex;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:14px;
  2749. line-height:30px;
  2750. }
  2751. #u131513 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:0px 0px 0px 0px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u131513_text {
  2759. border-width:0px;
  2760. white-space:nowrap;
  2761. text-transform:none;
  2762. }
  2763. #u131514_div {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:8px;
  2769. height:8px;
  2770. background:inherit;
  2771. background-color:rgba(255, 255, 255, 0);
  2772. box-sizing:border-box;
  2773. border-width:1px;
  2774. border-style:solid;
  2775. border-color:rgba(127, 127, 127, 1);
  2776. border-right:0px;
  2777. border-bottom:0px;
  2778. border-radius:0px;
  2779. border-top-right-radius:0px;
  2780. border-bottom-left-radius:0px;
  2781. -moz-box-shadow:none;
  2782. -webkit-box-shadow:none;
  2783. box-shadow:none;
  2784. }
  2785. #u131514 {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:832px;
  2789. top:188px;
  2790. width:8px;
  2791. height:8px;
  2792. display:flex;
  2793. -webkit-transform:rotate(135deg);
  2794. -moz-transform:rotate(135deg);
  2795. -ms-transform:rotate(135deg);
  2796. transform:rotate(135deg);
  2797. }
  2798. #u131514 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 2px 2px 2px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u131514_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. visibility:hidden;
  2810. }
  2811. #u131515 {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:0px;
  2817. height:0px;
  2818. }
  2819. #u131516_div {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:375px;
  2825. height:50px;
  2826. background:inherit;
  2827. background-color:rgba(255, 255, 255, 1);
  2828. border:none;
  2829. border-left:0px;
  2830. border-top:0px;
  2831. border-right:0px;
  2832. border-radius:0px;
  2833. border-bottom-right-radius:0px;
  2834. border-bottom-left-radius:0px;
  2835. -moz-box-shadow:none;
  2836. -webkit-box-shadow:none;
  2837. box-shadow:none;
  2838. }
  2839. #u131516 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:482px;
  2843. top:320px;
  2844. width:375px;
  2845. height:50px;
  2846. display:flex;
  2847. }
  2848. #u131516 .text {
  2849. position:absolute;
  2850. align-self:center;
  2851. padding:2px 2px 2px 2px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u131516_text {
  2856. border-width:0px;
  2857. word-wrap:break-word;
  2858. text-transform:none;
  2859. visibility:hidden;
  2860. }
  2861. #u131517_div {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:85px;
  2867. height:30px;
  2868. background:inherit;
  2869. background-color:rgba(255, 255, 255, 0);
  2870. border:none;
  2871. border-left:0px;
  2872. border-top:0px;
  2873. border-right:0px;
  2874. border-radius:0px;
  2875. border-bottom-right-radius:0px;
  2876. border-bottom-left-radius:0px;
  2877. -moz-box-shadow:none;
  2878. -webkit-box-shadow:none;
  2879. box-shadow:none;
  2880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:14px;
  2884. line-height:30px;
  2885. }
  2886. #u131517 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:502px;
  2890. top:330px;
  2891. width:85px;
  2892. height:30px;
  2893. display:flex;
  2894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:14px;
  2898. line-height:30px;
  2899. }
  2900. #u131517 .text {
  2901. position:absolute;
  2902. align-self:center;
  2903. padding:0px 0px 0px 0px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u131517_text {
  2908. border-width:0px;
  2909. white-space:nowrap;
  2910. text-transform:none;
  2911. }
  2912. #u131518_div {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:8px;
  2918. height:8px;
  2919. background:inherit;
  2920. background-color:rgba(255, 255, 255, 0);
  2921. box-sizing:border-box;
  2922. border-width:1px;
  2923. border-style:solid;
  2924. border-color:rgba(127, 127, 127, 1);
  2925. border-right:0px;
  2926. border-bottom:0px;
  2927. border-radius:0px;
  2928. border-top-right-radius:0px;
  2929. border-bottom-left-radius:0px;
  2930. -moz-box-shadow:none;
  2931. -webkit-box-shadow:none;
  2932. box-shadow:none;
  2933. }
  2934. #u131518 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:832px;
  2938. top:341px;
  2939. width:8px;
  2940. height:8px;
  2941. display:flex;
  2942. -webkit-transform:rotate(135deg);
  2943. -moz-transform:rotate(135deg);
  2944. -ms-transform:rotate(135deg);
  2945. transform:rotate(135deg);
  2946. }
  2947. #u131518 .text {
  2948. position:absolute;
  2949. align-self:center;
  2950. padding:2px 2px 2px 2px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u131518_text {
  2955. border-width:0px;
  2956. word-wrap:break-word;
  2957. text-transform:none;
  2958. visibility:hidden;
  2959. }
  2960. #u131520_img {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:433px;
  2966. height:865px;
  2967. }
  2968. #u131520 {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:906px;
  2972. top:0px;
  2973. width:433px;
  2974. height:865px;
  2975. display:flex;
  2976. }
  2977. #u131520 .text {
  2978. position:absolute;
  2979. align-self:center;
  2980. padding:2px 2px 2px 2px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u131520_text {
  2985. border-width:0px;
  2986. word-wrap:break-word;
  2987. text-transform:none;
  2988. visibility:hidden;
  2989. }
  2990. #u131521_div {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:375px;
  2996. height:40px;
  2997. background:inherit;
  2998. background-color:rgba(255, 255, 255, 1);
  2999. box-sizing:border-box;
  3000. border-width:1px;
  3001. border-style:solid;
  3002. border-color:rgba(215, 215, 215, 1);
  3003. border-left:0px;
  3004. border-top:0px;
  3005. border-right:0px;
  3006. border-radius:0px;
  3007. border-bottom-right-radius:0px;
  3008. border-bottom-left-radius:0px;
  3009. -moz-box-shadow:none;
  3010. -webkit-box-shadow:none;
  3011. box-shadow:none;
  3012. }
  3013. #u131521 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:935px;
  3017. top:67px;
  3018. width:375px;
  3019. height:40px;
  3020. display:flex;
  3021. }
  3022. #u131521 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 2px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u131521_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u131522 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:0px;
  3041. height:0px;
  3042. }
  3043. #u131523_div {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:88px;
  3049. height:32px;
  3050. background:inherit;
  3051. background-color:rgba(255, 255, 255, 1);
  3052. box-sizing:border-box;
  3053. border-width:1px;
  3054. border-style:solid;
  3055. border-color:rgba(242, 242, 242, 1);
  3056. border-radius:33px;
  3057. -moz-box-shadow:none;
  3058. -webkit-box-shadow:none;
  3059. box-shadow:none;
  3060. }
  3061. #u131523 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:1215px;
  3065. top:71px;
  3066. width:88px;
  3067. height:32px;
  3068. display:flex;
  3069. }
  3070. #u131523 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 2px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u131523_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. visibility:hidden;
  3082. }
  3083. #u131524 {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:0px;
  3089. height:0px;
  3090. }
  3091. #u131525_img {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:18px;
  3097. height:18px;
  3098. }
  3099. #u131525 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:1278px;
  3103. top:78px;
  3104. width:18px;
  3105. height:18px;
  3106. display:flex;
  3107. }
  3108. #u131525 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:2px 2px 2px 2px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u131525_text {
  3116. border-width:0px;
  3117. word-wrap:break-word;
  3118. text-transform:none;
  3119. visibility:hidden;
  3120. }
  3121. #u131526_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:6px;
  3127. height:6px;
  3128. }
  3129. #u131526 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:1284px;
  3133. top:84px;
  3134. width:6px;
  3135. height:6px;
  3136. display:flex;
  3137. }
  3138. #u131526 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 2px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u131526_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u131527 {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:0px;
  3157. height:0px;
  3158. }
  3159. #u131528_img {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:5px;
  3165. height:5px;
  3166. }
  3167. #u131528 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:1229px;
  3171. top:85px;
  3172. width:5px;
  3173. height:5px;
  3174. display:flex;
  3175. }
  3176. #u131528 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:2px 2px 2px 2px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u131528_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. visibility:hidden;
  3188. }
  3189. #u131529_img {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:5px;
  3195. height:5px;
  3196. }
  3197. #u131529 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:1245px;
  3201. top:85px;
  3202. width:5px;
  3203. height:5px;
  3204. display:flex;
  3205. }
  3206. #u131529 .text {
  3207. position:absolute;
  3208. align-self:center;
  3209. padding:2px 2px 2px 2px;
  3210. box-sizing:border-box;
  3211. width:100%;
  3212. }
  3213. #u131529_text {
  3214. border-width:0px;
  3215. word-wrap:break-word;
  3216. text-transform:none;
  3217. visibility:hidden;
  3218. }
  3219. #u131530_img {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:7px;
  3225. height:7px;
  3226. }
  3227. #u131530 {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:1236px;
  3231. top:84px;
  3232. width:7px;
  3233. height:7px;
  3234. display:flex;
  3235. }
  3236. #u131530 .text {
  3237. position:absolute;
  3238. align-self:center;
  3239. padding:2px 2px 2px 2px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u131530_text {
  3244. border-width:0px;
  3245. word-wrap:break-word;
  3246. text-transform:none;
  3247. visibility:hidden;
  3248. }
  3249. #u131531_img {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:19px;
  3255. height:2px;
  3256. }
  3257. #u131531 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:1253px;
  3261. top:87px;
  3262. width:18px;
  3263. height:1px;
  3264. display:flex;
  3265. -webkit-transform:rotate(90deg);
  3266. -moz-transform:rotate(90deg);
  3267. -ms-transform:rotate(90deg);
  3268. transform:rotate(90deg);
  3269. }
  3270. #u131531 .text {
  3271. position:absolute;
  3272. align-self:center;
  3273. padding:2px 2px 2px 2px;
  3274. box-sizing:border-box;
  3275. width:100%;
  3276. }
  3277. #u131531_text {
  3278. border-width:0px;
  3279. word-wrap:break-word;
  3280. text-transform:none;
  3281. visibility:hidden;
  3282. }
  3283. #u131532_img {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:0px;
  3287. top:0px;
  3288. width:375px;
  3289. height:44px;
  3290. }
  3291. #u131532 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:935px;
  3295. top:24px;
  3296. width:375px;
  3297. height:44px;
  3298. display:flex;
  3299. }
  3300. #u131532 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 2px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u131532_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. visibility:hidden;
  3312. }
  3313. #u131533_div {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:375px;
  3319. height:50px;
  3320. background:inherit;
  3321. background-color:rgba(255, 255, 255, 1);
  3322. box-sizing:border-box;
  3323. border-width:1px;
  3324. border-style:solid;
  3325. border-color:rgba(242, 242, 242, 1);
  3326. border-radius:26px;
  3327. border-top-left-radius:0px;
  3328. border-top-right-radius:0px;
  3329. -moz-box-shadow:none;
  3330. -webkit-box-shadow:none;
  3331. box-shadow:none;
  3332. }
  3333. #u131533 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:935px;
  3337. top:788px;
  3338. width:375px;
  3339. height:50px;
  3340. display:flex;
  3341. }
  3342. #u131533 .text {
  3343. position:absolute;
  3344. align-self:center;
  3345. padding:2px 2px 2px 2px;
  3346. box-sizing:border-box;
  3347. width:100%;
  3348. }
  3349. #u131533_text {
  3350. border-width:0px;
  3351. word-wrap:break-word;
  3352. text-transform:none;
  3353. visibility:hidden;
  3354. }
  3355. #u131534 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:0px;
  3361. height:0px;
  3362. }
  3363. #u131535_img {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:24px;
  3369. height:24px;
  3370. }
  3371. #u131535 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:975px;
  3375. top:792px;
  3376. width:24px;
  3377. height:24px;
  3378. display:flex;
  3379. font-size:8px;
  3380. }
  3381. #u131535 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 2px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u131535_text {
  3389. border-width:0px;
  3390. word-wrap:break-word;
  3391. text-transform:none;
  3392. }
  3393. #u131536_div {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:25px;
  3399. height:17px;
  3400. background:inherit;
  3401. background-color:rgba(255, 255, 255, 0);
  3402. border:none;
  3403. border-radius:0px;
  3404. -moz-box-shadow:none;
  3405. -webkit-box-shadow:none;
  3406. box-shadow:none;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:12px;
  3411. }
  3412. #u131536 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:975px;
  3416. top:817px;
  3417. width:25px;
  3418. height:17px;
  3419. display:flex;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:12px;
  3424. }
  3425. #u131536 .text {
  3426. position:absolute;
  3427. align-self:flex-start;
  3428. padding:0px 0px 0px 0px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u131536_text {
  3433. border-width:0px;
  3434. white-space:nowrap;
  3435. text-transform:none;
  3436. }
  3437. #u131537 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:0px;
  3443. height:0px;
  3444. }
  3445. #u131538_img {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:24px;
  3451. height:24px;
  3452. }
  3453. #u131538 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:1245px;
  3457. top:794px;
  3458. width:24px;
  3459. height:24px;
  3460. display:flex;
  3461. font-size:8px;
  3462. }
  3463. #u131538 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 2px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u131538_text {
  3471. border-width:0px;
  3472. word-wrap:break-word;
  3473. text-transform:none;
  3474. }
  3475. #u131539_div {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:25px;
  3481. height:17px;
  3482. background:inherit;
  3483. background-color:rgba(255, 255, 255, 0);
  3484. border:none;
  3485. border-radius:0px;
  3486. -moz-box-shadow:none;
  3487. -webkit-box-shadow:none;
  3488. box-shadow:none;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:12px;
  3493. }
  3494. #u131539 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:1245px;
  3498. top:819px;
  3499. width:25px;
  3500. height:17px;
  3501. display:flex;
  3502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:12px;
  3506. }
  3507. #u131539 .text {
  3508. position:absolute;
  3509. align-self:flex-start;
  3510. padding:0px 0px 0px 0px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. #u131539_text {
  3515. border-width:0px;
  3516. white-space:nowrap;
  3517. text-transform:none;
  3518. }
  3519. #u131540_div {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:375px;
  3525. height:681px;
  3526. background:inherit;
  3527. background-color:rgba(242, 242, 242, 0.462745098039216);
  3528. border:none;
  3529. border-radius:0px;
  3530. -moz-box-shadow:none;
  3531. -webkit-box-shadow:none;
  3532. box-shadow:none;
  3533. }
  3534. #u131540 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:935px;
  3538. top:107px;
  3539. width:375px;
  3540. height:681px;
  3541. display:flex;
  3542. }
  3543. #u131540 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 2px 2px 2px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u131540_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. visibility:hidden;
  3555. }
  3556. #u131541 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:0px;
  3562. height:0px;
  3563. }
  3564. #u131542_img {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:24px;
  3570. height:24px;
  3571. }
  3572. #u131542 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:1157px;
  3576. top:792px;
  3577. width:24px;
  3578. height:24px;
  3579. display:flex;
  3580. font-size:8px;
  3581. }
  3582. #u131542 .text {
  3583. position:absolute;
  3584. align-self:center;
  3585. padding:2px 2px 2px 2px;
  3586. box-sizing:border-box;
  3587. width:100%;
  3588. }
  3589. #u131542_text {
  3590. border-width:0px;
  3591. word-wrap:break-word;
  3592. text-transform:none;
  3593. }
  3594. #u131543_div {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:37px;
  3600. height:17px;
  3601. background:inherit;
  3602. background-color:rgba(255, 255, 255, 0);
  3603. border:none;
  3604. border-radius:0px;
  3605. -moz-box-shadow:none;
  3606. -webkit-box-shadow:none;
  3607. box-shadow:none;
  3608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:12px;
  3612. }
  3613. #u131543 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:1151px;
  3617. top:817px;
  3618. width:37px;
  3619. height:17px;
  3620. display:flex;
  3621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3622. font-weight:400;
  3623. font-style:normal;
  3624. font-size:12px;
  3625. }
  3626. #u131543 .text {
  3627. position:absolute;
  3628. align-self:flex-start;
  3629. padding:0px 0px 0px 0px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u131543_text {
  3634. border-width:0px;
  3635. white-space:nowrap;
  3636. text-transform:none;
  3637. }
  3638. #u131544 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:0px;
  3644. height:0px;
  3645. }
  3646. #u131545_img {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:24px;
  3652. height:24px;
  3653. }
  3654. #u131545 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:1063px;
  3658. top:792px;
  3659. width:24px;
  3660. height:24px;
  3661. display:flex;
  3662. font-size:8px;
  3663. }
  3664. #u131545 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 2px 2px 2px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u131545_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. }
  3676. #u131546_div {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:0px;
  3680. top:0px;
  3681. width:37px;
  3682. height:17px;
  3683. background:inherit;
  3684. background-color:rgba(255, 255, 255, 0);
  3685. border:none;
  3686. border-radius:0px;
  3687. -moz-box-shadow:none;
  3688. -webkit-box-shadow:none;
  3689. box-shadow:none;
  3690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3691. font-weight:400;
  3692. font-style:normal;
  3693. font-size:12px;
  3694. }
  3695. #u131546 {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:1057px;
  3699. top:817px;
  3700. width:37px;
  3701. height:17px;
  3702. display:flex;
  3703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3704. font-weight:400;
  3705. font-style:normal;
  3706. font-size:12px;
  3707. }
  3708. #u131546 .text {
  3709. position:absolute;
  3710. align-self:flex-start;
  3711. padding:0px 0px 0px 0px;
  3712. box-sizing:border-box;
  3713. width:100%;
  3714. }
  3715. #u131546_text {
  3716. border-width:0px;
  3717. white-space:nowrap;
  3718. text-transform:none;
  3719. }
  3720. #u131547_img {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:375px;
  3726. height:739px;
  3727. }
  3728. #u131547 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:935px;
  3732. top:106px;
  3733. width:375px;
  3734. height:739px;
  3735. display:flex;
  3736. }
  3737. #u131547 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 2px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u131547_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. visibility:hidden;
  3749. }
  3750. #u131548_img {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:11px;
  3756. height:18px;
  3757. }
  3758. #u131548 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:946px;
  3762. top:79px;
  3763. width:11px;
  3764. height:18px;
  3765. display:flex;
  3766. }
  3767. #u131548 .text {
  3768. position:absolute;
  3769. align-self:center;
  3770. padding:2px 2px 2px 2px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u131548_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. visibility:hidden;
  3779. }
  3780. #u131549_div {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:73px;
  3786. height:25px;
  3787. background:inherit;
  3788. background-color:rgba(255, 255, 255, 0);
  3789. border:none;
  3790. border-radius:0px;
  3791. -moz-box-shadow:none;
  3792. -webkit-box-shadow:none;
  3793. box-shadow:none;
  3794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3795. font-weight:400;
  3796. font-style:normal;
  3797. font-size:18px;
  3798. }
  3799. #u131549 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:1088px;
  3803. top:75px;
  3804. width:73px;
  3805. height:25px;
  3806. display:flex;
  3807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:18px;
  3811. }
  3812. #u131549 .text {
  3813. position:absolute;
  3814. align-self:flex-start;
  3815. padding:0px 0px 0px 0px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u131549_text {
  3820. border-width:0px;
  3821. white-space:nowrap;
  3822. text-transform:none;
  3823. }
  3824. #u131550 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:0px;
  3830. height:0px;
  3831. }
  3832. #u131551_div {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:0px;
  3836. top:0px;
  3837. width:342px;
  3838. height:40px;
  3839. background:inherit;
  3840. background-color:rgba(255, 255, 255, 0.8);
  3841. border:none;
  3842. border-radius:19px;
  3843. -moz-box-shadow:none;
  3844. -webkit-box-shadow:none;
  3845. box-shadow:none;
  3846. font-family:'Microsoft YaHei', sans-serif;
  3847. font-weight:400;
  3848. font-style:normal;
  3849. font-size:14px;
  3850. color:#CCCCCC;
  3851. text-align:left;
  3852. }
  3853. #u131551 {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:953px;
  3857. top:156px;
  3858. width:342px;
  3859. height:40px;
  3860. display:flex;
  3861. font-family:'Microsoft YaHei', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:14px;
  3865. color:#CCCCCC;
  3866. text-align:left;
  3867. }
  3868. #u131551 .text {
  3869. position:absolute;
  3870. align-self:center;
  3871. padding:2px 8px 2px 8px;
  3872. box-sizing:border-box;
  3873. width:100%;
  3874. }
  3875. #u131551_text {
  3876. border-width:0px;
  3877. word-wrap:break-word;
  3878. text-transform:none;
  3879. visibility:hidden;
  3880. }
  3881. #u131552_input {
  3882. position:absolute;
  3883. left:0px;
  3884. top:0px;
  3885. width:297px;
  3886. height:40px;
  3887. padding:2px 2px 2px 2px;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:14px;
  3892. letter-spacing:normal;
  3893. color:#000000;
  3894. vertical-align:none;
  3895. text-align:left;
  3896. text-transform:none;
  3897. background-color:transparent;
  3898. border-color:transparent;
  3899. }
  3900. #u131552_input.disabled {
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:297px;
  3905. height:40px;
  3906. padding:2px 2px 2px 2px;
  3907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3908. font-weight:400;
  3909. font-style:normal;
  3910. font-size:14px;
  3911. letter-spacing:normal;
  3912. color:#000000;
  3913. vertical-align:none;
  3914. text-align:left;
  3915. text-transform:none;
  3916. background-color:transparent;
  3917. border-color:transparent;
  3918. }
  3919. #u131552_div {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:297px;
  3925. height:40px;
  3926. background:inherit;
  3927. background-color:rgba(255, 255, 255, 0);
  3928. border:none;
  3929. border-radius:0px;
  3930. -moz-box-shadow:none;
  3931. -webkit-box-shadow:none;
  3932. box-shadow:none;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:14px;
  3937. }
  3938. #u131552 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:983px;
  3942. top:157px;
  3943. width:297px;
  3944. height:40px;
  3945. display:flex;
  3946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:14px;
  3950. }
  3951. #u131552 .text {
  3952. position:absolute;
  3953. align-self:center;
  3954. padding:2px 2px 2px 2px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u131552_div.disabled {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:297px;
  3964. height:40px;
  3965. background:inherit;
  3966. background-color:rgba(240, 240, 240, 1);
  3967. border:none;
  3968. border-radius:0px;
  3969. -moz-box-shadow:none;
  3970. -webkit-box-shadow:none;
  3971. box-shadow:none;
  3972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3973. font-weight:400;
  3974. font-style:normal;
  3975. font-size:14px;
  3976. }
  3977. #u131552.disabled {
  3978. }
  3979. #u131553_img {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:14px;
  3985. height:14px;
  3986. }
  3987. #u131553 {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:963px;
  3991. top:169px;
  3992. width:14px;
  3993. height:14px;
  3994. display:flex;
  3995. }
  3996. #u131553 .text {
  3997. position:absolute;
  3998. align-self:center;
  3999. padding:2px 2px 2px 2px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u131553_text {
  4004. border-width:0px;
  4005. word-wrap:break-word;
  4006. text-transform:none;
  4007. visibility:hidden;
  4008. }
  4009. #u131554_div {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:375px;
  4015. height:40px;
  4016. background:inherit;
  4017. background-color:rgba(255, 255, 255, 1);
  4018. border:none;
  4019. border-left:0px;
  4020. border-top:0px;
  4021. border-right:0px;
  4022. border-radius:0px;
  4023. border-bottom-right-radius:0px;
  4024. border-bottom-left-radius:0px;
  4025. -moz-box-shadow:none;
  4026. -webkit-box-shadow:none;
  4027. box-shadow:none;
  4028. }
  4029. #u131554 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:935px;
  4033. top:106px;
  4034. width:375px;
  4035. height:40px;
  4036. display:flex;
  4037. }
  4038. #u131554 .text {
  4039. position:absolute;
  4040. align-self:center;
  4041. padding:2px 2px 2px 2px;
  4042. box-sizing:border-box;
  4043. width:100%;
  4044. }
  4045. #u131554_text {
  4046. border-width:0px;
  4047. word-wrap:break-word;
  4048. text-transform:none;
  4049. visibility:hidden;
  4050. }
  4051. #u131555_div {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:43px;
  4057. height:40px;
  4058. background:inherit;
  4059. background-color:rgba(255, 255, 255, 0);
  4060. box-sizing:border-box;
  4061. border-width:3px;
  4062. border-style:solid;
  4063. border-color:rgba(51, 51, 51, 1);
  4064. border-left:0px;
  4065. border-top:0px;
  4066. border-right:0px;
  4067. border-radius:0px;
  4068. border-bottom-right-radius:0px;
  4069. border-bottom-left-radius:0px;
  4070. -moz-box-shadow:none;
  4071. -webkit-box-shadow:none;
  4072. box-shadow:none;
  4073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4074. font-weight:400;
  4075. font-style:normal;
  4076. font-size:14px;
  4077. line-height:30px;
  4078. }
  4079. #u131555 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:1042px;
  4083. top:106px;
  4084. width:43px;
  4085. height:40px;
  4086. display:flex;
  4087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4088. font-weight:400;
  4089. font-style:normal;
  4090. font-size:14px;
  4091. line-height:30px;
  4092. }
  4093. #u131555 .text {
  4094. position:absolute;
  4095. align-self:center;
  4096. padding:0px 0px 0px 0px;
  4097. box-sizing:border-box;
  4098. width:100%;
  4099. }
  4100. #u131555_text {
  4101. border-width:0px;
  4102. white-space:nowrap;
  4103. text-transform:none;
  4104. }
  4105. #u131556_div {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:0px;
  4109. top:0px;
  4110. width:43px;
  4111. height:40px;
  4112. background:inherit;
  4113. background-color:rgba(255, 255, 255, 0);
  4114. border:none;
  4115. border-left:0px;
  4116. border-top:0px;
  4117. border-right:0px;
  4118. border-radius:0px;
  4119. border-bottom-right-radius:0px;
  4120. border-bottom-left-radius:0px;
  4121. -moz-box-shadow:none;
  4122. -webkit-box-shadow:none;
  4123. box-shadow:none;
  4124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. font-size:14px;
  4128. line-height:30px;
  4129. }
  4130. #u131556 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:1161px;
  4134. top:106px;
  4135. width:43px;
  4136. height:40px;
  4137. display:flex;
  4138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4139. font-weight:400;
  4140. font-style:normal;
  4141. font-size:14px;
  4142. line-height:30px;
  4143. }
  4144. #u131556 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:0px 0px 0px 0px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u131556_text {
  4152. border-width:0px;
  4153. white-space:nowrap;
  4154. text-transform:none;
  4155. }
  4156. #u131557 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:0px;
  4160. top:0px;
  4161. width:0px;
  4162. height:0px;
  4163. }
  4164. #u131558_div {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:375px;
  4170. height:50px;
  4171. background:inherit;
  4172. background-color:rgba(255, 255, 255, 1);
  4173. border:none;
  4174. border-left:0px;
  4175. border-top:0px;
  4176. border-right:0px;
  4177. border-radius:0px;
  4178. border-bottom-right-radius:0px;
  4179. border-bottom-left-radius:0px;
  4180. -moz-box-shadow:none;
  4181. -webkit-box-shadow:none;
  4182. box-shadow:none;
  4183. }
  4184. #u131558 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:935px;
  4188. top:207px;
  4189. width:375px;
  4190. height:50px;
  4191. display:flex;
  4192. }
  4193. #u131558 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 2px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u131558_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u131559_div {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:37px;
  4212. height:30px;
  4213. background:inherit;
  4214. background-color:rgba(255, 255, 255, 0);
  4215. border:none;
  4216. border-left:0px;
  4217. border-top:0px;
  4218. border-right:0px;
  4219. border-radius:0px;
  4220. border-bottom-right-radius:0px;
  4221. border-bottom-left-radius:0px;
  4222. -moz-box-shadow:none;
  4223. -webkit-box-shadow:none;
  4224. box-shadow:none;
  4225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4226. font-weight:400;
  4227. font-style:normal;
  4228. font-size:14px;
  4229. line-height:30px;
  4230. }
  4231. #u131559 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:955px;
  4235. top:217px;
  4236. width:37px;
  4237. height:30px;
  4238. display:flex;
  4239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4240. font-weight:400;
  4241. font-style:normal;
  4242. font-size:14px;
  4243. line-height:30px;
  4244. }
  4245. #u131559 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:0px 0px 0px 0px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u131559_text {
  4253. border-width:0px;
  4254. white-space:nowrap;
  4255. text-transform:none;
  4256. }
  4257. #u131560_div {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:8px;
  4263. height:8px;
  4264. background:inherit;
  4265. background-color:rgba(255, 255, 255, 0);
  4266. box-sizing:border-box;
  4267. border-width:1px;
  4268. border-style:solid;
  4269. border-color:rgba(127, 127, 127, 1);
  4270. border-right:0px;
  4271. border-bottom:0px;
  4272. border-radius:0px;
  4273. border-top-right-radius:0px;
  4274. border-bottom-left-radius:0px;
  4275. -moz-box-shadow:none;
  4276. -webkit-box-shadow:none;
  4277. box-shadow:none;
  4278. }
  4279. #u131560 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:1285px;
  4283. top:228px;
  4284. width:8px;
  4285. height:8px;
  4286. display:flex;
  4287. -webkit-transform:rotate(135deg);
  4288. -moz-transform:rotate(135deg);
  4289. -ms-transform:rotate(135deg);
  4290. transform:rotate(135deg);
  4291. }
  4292. #u131560 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:2px 2px 2px 2px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u131560_text {
  4300. border-width:0px;
  4301. word-wrap:break-word;
  4302. text-transform:none;
  4303. visibility:hidden;
  4304. }
  4305. #u131561_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:29px;
  4311. height:30px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 0);
  4314. border:none;
  4315. border-left:0px;
  4316. border-top:0px;
  4317. border-right:0px;
  4318. border-radius:0px;
  4319. border-bottom-right-radius:0px;
  4320. border-bottom-left-radius:0px;
  4321. -moz-box-shadow:none;
  4322. -webkit-box-shadow:none;
  4323. box-shadow:none;
  4324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:14px;
  4328. color:#00BFBF;
  4329. text-align:right;
  4330. line-height:30px;
  4331. }
  4332. #u131561 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:1249px;
  4336. top:217px;
  4337. width:29px;
  4338. height:30px;
  4339. display:flex;
  4340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:14px;
  4344. color:#00BFBF;
  4345. text-align:right;
  4346. line-height:30px;
  4347. }
  4348. #u131561 .text {
  4349. position:absolute;
  4350. align-self:center;
  4351. padding:0px 0px 0px 0px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u131561_text {
  4356. border-width:0px;
  4357. white-space:nowrap;
  4358. text-transform:none;
  4359. }
  4360. #u131562 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:0px;
  4366. height:0px;
  4367. }
  4368. #u131563_div {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:375px;
  4374. height:50px;
  4375. background:inherit;
  4376. background-color:rgba(255, 255, 255, 1);
  4377. border:none;
  4378. border-left:0px;
  4379. border-top:0px;
  4380. border-right:0px;
  4381. border-radius:0px;
  4382. border-bottom-right-radius:0px;
  4383. border-bottom-left-radius:0px;
  4384. -moz-box-shadow:none;
  4385. -webkit-box-shadow:none;
  4386. box-shadow:none;
  4387. }
  4388. #u131563 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:935px;
  4392. top:258px;
  4393. width:375px;
  4394. height:50px;
  4395. display:flex;
  4396. }
  4397. #u131563 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 2px 2px 2px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u131563_text {
  4405. border-width:0px;
  4406. word-wrap:break-word;
  4407. text-transform:none;
  4408. visibility:hidden;
  4409. }
  4410. #u131564_div {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:40px;
  4416. height:30px;
  4417. background:inherit;
  4418. background-color:rgba(255, 255, 255, 0);
  4419. border:none;
  4420. border-left:0px;
  4421. border-top:0px;
  4422. border-right:0px;
  4423. border-radius:0px;
  4424. border-bottom-right-radius:0px;
  4425. border-bottom-left-radius:0px;
  4426. -moz-box-shadow:none;
  4427. -webkit-box-shadow:none;
  4428. box-shadow:none;
  4429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:14px;
  4433. line-height:30px;
  4434. }
  4435. #u131564 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:955px;
  4439. top:268px;
  4440. width:40px;
  4441. height:30px;
  4442. display:flex;
  4443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. font-size:14px;
  4447. line-height:30px;
  4448. }
  4449. #u131564 .text {
  4450. position:absolute;
  4451. align-self:center;
  4452. padding:0px 0px 0px 0px;
  4453. box-sizing:border-box;
  4454. width:100%;
  4455. }
  4456. #u131564_text {
  4457. border-width:0px;
  4458. white-space:nowrap;
  4459. text-transform:none;
  4460. }
  4461. #u131565_div {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:8px;
  4467. height:8px;
  4468. background:inherit;
  4469. background-color:rgba(255, 255, 255, 0);
  4470. box-sizing:border-box;
  4471. border-width:1px;
  4472. border-style:solid;
  4473. border-color:rgba(127, 127, 127, 1);
  4474. border-right:0px;
  4475. border-bottom:0px;
  4476. border-radius:0px;
  4477. border-top-right-radius:0px;
  4478. border-bottom-left-radius:0px;
  4479. -moz-box-shadow:none;
  4480. -webkit-box-shadow:none;
  4481. box-shadow:none;
  4482. }
  4483. #u131565 {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:1285px;
  4487. top:279px;
  4488. width:8px;
  4489. height:8px;
  4490. display:flex;
  4491. -webkit-transform:rotate(135deg);
  4492. -moz-transform:rotate(135deg);
  4493. -ms-transform:rotate(135deg);
  4494. transform:rotate(135deg);
  4495. }
  4496. #u131565 .text {
  4497. position:absolute;
  4498. align-self:center;
  4499. padding:2px 2px 2px 2px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u131565_text {
  4504. border-width:0px;
  4505. word-wrap:break-word;
  4506. text-transform:none;
  4507. visibility:hidden;
  4508. }
  4509. #u131566_div {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:29px;
  4515. height:30px;
  4516. background:inherit;
  4517. background-color:rgba(255, 255, 255, 0);
  4518. border:none;
  4519. border-left:0px;
  4520. border-top:0px;
  4521. border-right:0px;
  4522. border-radius:0px;
  4523. border-bottom-right-radius:0px;
  4524. border-bottom-left-radius:0px;
  4525. -moz-box-shadow:none;
  4526. -webkit-box-shadow:none;
  4527. box-shadow:none;
  4528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4529. font-weight:400;
  4530. font-style:normal;
  4531. font-size:14px;
  4532. color:#00BFBF;
  4533. text-align:right;
  4534. line-height:30px;
  4535. }
  4536. #u131566 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:1249px;
  4540. top:268px;
  4541. width:29px;
  4542. height:30px;
  4543. display:flex;
  4544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:14px;
  4548. color:#00BFBF;
  4549. text-align:right;
  4550. line-height:30px;
  4551. }
  4552. #u131566 .text {
  4553. position:absolute;
  4554. align-self:center;
  4555. padding:0px 0px 0px 0px;
  4556. box-sizing:border-box;
  4557. width:100%;
  4558. }
  4559. #u131566_text {
  4560. border-width:0px;
  4561. white-space:nowrap;
  4562. text-transform:none;
  4563. }
  4564. #u131567 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:0px;
  4570. height:0px;
  4571. }
  4572. #u131568_div {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:0px;
  4576. top:0px;
  4577. width:375px;
  4578. height:50px;
  4579. background:inherit;
  4580. background-color:rgba(255, 255, 255, 1);
  4581. border:none;
  4582. border-left:0px;
  4583. border-top:0px;
  4584. border-right:0px;
  4585. border-radius:0px;
  4586. border-bottom-right-radius:0px;
  4587. border-bottom-left-radius:0px;
  4588. -moz-box-shadow:none;
  4589. -webkit-box-shadow:none;
  4590. box-shadow:none;
  4591. }
  4592. #u131568 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:935px;
  4596. top:309px;
  4597. width:375px;
  4598. height:50px;
  4599. display:flex;
  4600. }
  4601. #u131568 .text {
  4602. position:absolute;
  4603. align-self:center;
  4604. padding:2px 2px 2px 2px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u131568_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. visibility:hidden;
  4613. }
  4614. #u131569_div {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:40px;
  4620. height:30px;
  4621. background:inherit;
  4622. background-color:rgba(255, 255, 255, 0);
  4623. border:none;
  4624. border-left:0px;
  4625. border-top:0px;
  4626. border-right:0px;
  4627. border-radius:0px;
  4628. border-bottom-right-radius:0px;
  4629. border-bottom-left-radius:0px;
  4630. -moz-box-shadow:none;
  4631. -webkit-box-shadow:none;
  4632. box-shadow:none;
  4633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:14px;
  4637. line-height:30px;
  4638. }
  4639. #u131569 {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:955px;
  4643. top:319px;
  4644. width:40px;
  4645. height:30px;
  4646. display:flex;
  4647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4648. font-weight:400;
  4649. font-style:normal;
  4650. font-size:14px;
  4651. line-height:30px;
  4652. }
  4653. #u131569 .text {
  4654. position:absolute;
  4655. align-self:center;
  4656. padding:0px 0px 0px 0px;
  4657. box-sizing:border-box;
  4658. width:100%;
  4659. }
  4660. #u131569_text {
  4661. border-width:0px;
  4662. white-space:nowrap;
  4663. text-transform:none;
  4664. }
  4665. #u131570_div {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:8px;
  4671. height:8px;
  4672. background:inherit;
  4673. background-color:rgba(255, 255, 255, 0);
  4674. box-sizing:border-box;
  4675. border-width:1px;
  4676. border-style:solid;
  4677. border-color:rgba(127, 127, 127, 1);
  4678. border-right:0px;
  4679. border-bottom:0px;
  4680. border-radius:0px;
  4681. border-top-right-radius:0px;
  4682. border-bottom-left-radius:0px;
  4683. -moz-box-shadow:none;
  4684. -webkit-box-shadow:none;
  4685. box-shadow:none;
  4686. }
  4687. #u131570 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:1285px;
  4691. top:330px;
  4692. width:8px;
  4693. height:8px;
  4694. display:flex;
  4695. -webkit-transform:rotate(135deg);
  4696. -moz-transform:rotate(135deg);
  4697. -ms-transform:rotate(135deg);
  4698. transform:rotate(135deg);
  4699. }
  4700. #u131570 .text {
  4701. position:absolute;
  4702. align-self:center;
  4703. padding:2px 2px 2px 2px;
  4704. box-sizing:border-box;
  4705. width:100%;
  4706. }
  4707. #u131570_text {
  4708. border-width:0px;
  4709. word-wrap:break-word;
  4710. text-transform:none;
  4711. visibility:hidden;
  4712. }
  4713. #u131571_div {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:29px;
  4719. height:30px;
  4720. background:inherit;
  4721. background-color:rgba(255, 255, 255, 0);
  4722. border:none;
  4723. border-left:0px;
  4724. border-top:0px;
  4725. border-right:0px;
  4726. border-radius:0px;
  4727. border-bottom-right-radius:0px;
  4728. border-bottom-left-radius:0px;
  4729. -moz-box-shadow:none;
  4730. -webkit-box-shadow:none;
  4731. box-shadow:none;
  4732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4733. font-weight:400;
  4734. font-style:normal;
  4735. font-size:14px;
  4736. color:#00BFBF;
  4737. text-align:right;
  4738. line-height:30px;
  4739. }
  4740. #u131571 {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:1249px;
  4744. top:319px;
  4745. width:29px;
  4746. height:30px;
  4747. display:flex;
  4748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. font-size:14px;
  4752. color:#00BFBF;
  4753. text-align:right;
  4754. line-height:30px;
  4755. }
  4756. #u131571 .text {
  4757. position:absolute;
  4758. align-self:center;
  4759. padding:0px 0px 0px 0px;
  4760. box-sizing:border-box;
  4761. width:100%;
  4762. }
  4763. #u131571_text {
  4764. border-width:0px;
  4765. white-space:nowrap;
  4766. text-transform:none;
  4767. }
  4768. #u131572 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:0px;
  4774. height:0px;
  4775. }
  4776. #u131573_div {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:375px;
  4782. height:50px;
  4783. background:inherit;
  4784. background-color:rgba(255, 255, 255, 1);
  4785. border:none;
  4786. border-left:0px;
  4787. border-top:0px;
  4788. border-right:0px;
  4789. border-radius:0px;
  4790. border-bottom-right-radius:0px;
  4791. border-bottom-left-radius:0px;
  4792. -moz-box-shadow:none;
  4793. -webkit-box-shadow:none;
  4794. box-shadow:none;
  4795. }
  4796. #u131573 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:935px;
  4800. top:360px;
  4801. width:375px;
  4802. height:50px;
  4803. display:flex;
  4804. }
  4805. #u131573 .text {
  4806. position:absolute;
  4807. align-self:center;
  4808. padding:2px 2px 2px 2px;
  4809. box-sizing:border-box;
  4810. width:100%;
  4811. }
  4812. #u131573_text {
  4813. border-width:0px;
  4814. word-wrap:break-word;
  4815. text-transform:none;
  4816. visibility:hidden;
  4817. }
  4818. #u131574_div {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:0px;
  4822. top:0px;
  4823. width:40px;
  4824. height:30px;
  4825. background:inherit;
  4826. background-color:rgba(255, 255, 255, 0);
  4827. border:none;
  4828. border-left:0px;
  4829. border-top:0px;
  4830. border-right:0px;
  4831. border-radius:0px;
  4832. border-bottom-right-radius:0px;
  4833. border-bottom-left-radius:0px;
  4834. -moz-box-shadow:none;
  4835. -webkit-box-shadow:none;
  4836. box-shadow:none;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:14px;
  4841. line-height:30px;
  4842. }
  4843. #u131574 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:955px;
  4847. top:370px;
  4848. width:40px;
  4849. height:30px;
  4850. display:flex;
  4851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4852. font-weight:400;
  4853. font-style:normal;
  4854. font-size:14px;
  4855. line-height:30px;
  4856. }
  4857. #u131574 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:0px 0px 0px 0px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u131574_text {
  4865. border-width:0px;
  4866. white-space:nowrap;
  4867. text-transform:none;
  4868. }
  4869. #u131575_div {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:0px;
  4873. top:0px;
  4874. width:8px;
  4875. height:8px;
  4876. background:inherit;
  4877. background-color:rgba(255, 255, 255, 0);
  4878. box-sizing:border-box;
  4879. border-width:1px;
  4880. border-style:solid;
  4881. border-color:rgba(127, 127, 127, 1);
  4882. border-right:0px;
  4883. border-bottom:0px;
  4884. border-radius:0px;
  4885. border-top-right-radius:0px;
  4886. border-bottom-left-radius:0px;
  4887. -moz-box-shadow:none;
  4888. -webkit-box-shadow:none;
  4889. box-shadow:none;
  4890. }
  4891. #u131575 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:1285px;
  4895. top:381px;
  4896. width:8px;
  4897. height:8px;
  4898. display:flex;
  4899. -webkit-transform:rotate(135deg);
  4900. -moz-transform:rotate(135deg);
  4901. -ms-transform:rotate(135deg);
  4902. transform:rotate(135deg);
  4903. }
  4904. #u131575 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:2px 2px 2px 2px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u131575_text {
  4912. border-width:0px;
  4913. word-wrap:break-word;
  4914. text-transform:none;
  4915. visibility:hidden;
  4916. }
  4917. #u131576_div {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:0px;
  4921. top:0px;
  4922. width:29px;
  4923. height:30px;
  4924. background:inherit;
  4925. background-color:rgba(255, 255, 255, 0);
  4926. border:none;
  4927. border-left:0px;
  4928. border-top:0px;
  4929. border-right:0px;
  4930. border-radius:0px;
  4931. border-bottom-right-radius:0px;
  4932. border-bottom-left-radius:0px;
  4933. -moz-box-shadow:none;
  4934. -webkit-box-shadow:none;
  4935. box-shadow:none;
  4936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:14px;
  4940. color:#00BFBF;
  4941. text-align:right;
  4942. line-height:30px;
  4943. }
  4944. #u131576 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:1249px;
  4948. top:370px;
  4949. width:29px;
  4950. height:30px;
  4951. display:flex;
  4952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4953. font-weight:400;
  4954. font-style:normal;
  4955. font-size:14px;
  4956. color:#00BFBF;
  4957. text-align:right;
  4958. line-height:30px;
  4959. }
  4960. #u131576 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:0px 0px 0px 0px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u131576_text {
  4968. border-width:0px;
  4969. white-space:nowrap;
  4970. text-transform:none;
  4971. }
  4972. #u131578_img {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:433px;
  4978. height:865px;
  4979. }
  4980. #u131578 {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:1359px;
  4984. top:0px;
  4985. width:433px;
  4986. height:865px;
  4987. display:flex;
  4988. }
  4989. #u131578 .text {
  4990. position:absolute;
  4991. align-self:center;
  4992. padding:2px 2px 2px 2px;
  4993. box-sizing:border-box;
  4994. width:100%;
  4995. }
  4996. #u131578_text {
  4997. border-width:0px;
  4998. word-wrap:break-word;
  4999. text-transform:none;
  5000. visibility:hidden;
  5001. }
  5002. #u131579_div {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:375px;
  5008. height:40px;
  5009. background:inherit;
  5010. background-color:rgba(255, 255, 255, 1);
  5011. box-sizing:border-box;
  5012. border-width:1px;
  5013. border-style:solid;
  5014. border-color:rgba(215, 215, 215, 1);
  5015. border-left:0px;
  5016. border-top:0px;
  5017. border-right:0px;
  5018. border-radius:0px;
  5019. border-bottom-right-radius:0px;
  5020. border-bottom-left-radius:0px;
  5021. -moz-box-shadow:none;
  5022. -webkit-box-shadow:none;
  5023. box-shadow:none;
  5024. }
  5025. #u131579 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:1388px;
  5029. top:67px;
  5030. width:375px;
  5031. height:40px;
  5032. display:flex;
  5033. }
  5034. #u131579 .text {
  5035. position:absolute;
  5036. align-self:center;
  5037. padding:2px 2px 2px 2px;
  5038. box-sizing:border-box;
  5039. width:100%;
  5040. }
  5041. #u131579_text {
  5042. border-width:0px;
  5043. word-wrap:break-word;
  5044. text-transform:none;
  5045. visibility:hidden;
  5046. }
  5047. #u131580 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:0px;
  5053. height:0px;
  5054. }
  5055. #u131581_div {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:88px;
  5061. height:32px;
  5062. background:inherit;
  5063. background-color:rgba(255, 255, 255, 1);
  5064. box-sizing:border-box;
  5065. border-width:1px;
  5066. border-style:solid;
  5067. border-color:rgba(242, 242, 242, 1);
  5068. border-radius:33px;
  5069. -moz-box-shadow:none;
  5070. -webkit-box-shadow:none;
  5071. box-shadow:none;
  5072. }
  5073. #u131581 {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:1668px;
  5077. top:71px;
  5078. width:88px;
  5079. height:32px;
  5080. display:flex;
  5081. }
  5082. #u131581 .text {
  5083. position:absolute;
  5084. align-self:center;
  5085. padding:2px 2px 2px 2px;
  5086. box-sizing:border-box;
  5087. width:100%;
  5088. }
  5089. #u131581_text {
  5090. border-width:0px;
  5091. word-wrap:break-word;
  5092. text-transform:none;
  5093. visibility:hidden;
  5094. }
  5095. #u131582 {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:0px;
  5101. height:0px;
  5102. }
  5103. #u131583_img {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:18px;
  5109. height:18px;
  5110. }
  5111. #u131583 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:1731px;
  5115. top:78px;
  5116. width:18px;
  5117. height:18px;
  5118. display:flex;
  5119. }
  5120. #u131583 .text {
  5121. position:absolute;
  5122. align-self:center;
  5123. padding:2px 2px 2px 2px;
  5124. box-sizing:border-box;
  5125. width:100%;
  5126. }
  5127. #u131583_text {
  5128. border-width:0px;
  5129. word-wrap:break-word;
  5130. text-transform:none;
  5131. visibility:hidden;
  5132. }
  5133. #u131584_img {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:6px;
  5139. height:6px;
  5140. }
  5141. #u131584 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:1737px;
  5145. top:84px;
  5146. width:6px;
  5147. height:6px;
  5148. display:flex;
  5149. }
  5150. #u131584 .text {
  5151. position:absolute;
  5152. align-self:center;
  5153. padding:2px 2px 2px 2px;
  5154. box-sizing:border-box;
  5155. width:100%;
  5156. }
  5157. #u131584_text {
  5158. border-width:0px;
  5159. word-wrap:break-word;
  5160. text-transform:none;
  5161. visibility:hidden;
  5162. }
  5163. #u131585 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:0px;
  5169. height:0px;
  5170. }
  5171. #u131586_img {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:5px;
  5177. height:5px;
  5178. }
  5179. #u131586 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:1682px;
  5183. top:85px;
  5184. width:5px;
  5185. height:5px;
  5186. display:flex;
  5187. }
  5188. #u131586 .text {
  5189. position:absolute;
  5190. align-self:center;
  5191. padding:2px 2px 2px 2px;
  5192. box-sizing:border-box;
  5193. width:100%;
  5194. }
  5195. #u131586_text {
  5196. border-width:0px;
  5197. word-wrap:break-word;
  5198. text-transform:none;
  5199. visibility:hidden;
  5200. }
  5201. #u131587_img {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:5px;
  5207. height:5px;
  5208. }
  5209. #u131587 {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:1698px;
  5213. top:85px;
  5214. width:5px;
  5215. height:5px;
  5216. display:flex;
  5217. }
  5218. #u131587 .text {
  5219. position:absolute;
  5220. align-self:center;
  5221. padding:2px 2px 2px 2px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u131587_text {
  5226. border-width:0px;
  5227. word-wrap:break-word;
  5228. text-transform:none;
  5229. visibility:hidden;
  5230. }
  5231. #u131588_img {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:7px;
  5237. height:7px;
  5238. }
  5239. #u131588 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:1689px;
  5243. top:84px;
  5244. width:7px;
  5245. height:7px;
  5246. display:flex;
  5247. }
  5248. #u131588 .text {
  5249. position:absolute;
  5250. align-self:center;
  5251. padding:2px 2px 2px 2px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u131588_text {
  5256. border-width:0px;
  5257. word-wrap:break-word;
  5258. text-transform:none;
  5259. visibility:hidden;
  5260. }
  5261. #u131589_img {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:0px;
  5266. width:19px;
  5267. height:2px;
  5268. }
  5269. #u131589 {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:1706px;
  5273. top:87px;
  5274. width:18px;
  5275. height:1px;
  5276. display:flex;
  5277. -webkit-transform:rotate(90deg);
  5278. -moz-transform:rotate(90deg);
  5279. -ms-transform:rotate(90deg);
  5280. transform:rotate(90deg);
  5281. }
  5282. #u131589 .text {
  5283. position:absolute;
  5284. align-self:center;
  5285. padding:2px 2px 2px 2px;
  5286. box-sizing:border-box;
  5287. width:100%;
  5288. }
  5289. #u131589_text {
  5290. border-width:0px;
  5291. word-wrap:break-word;
  5292. text-transform:none;
  5293. visibility:hidden;
  5294. }
  5295. #u131590_img {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:375px;
  5301. height:44px;
  5302. }
  5303. #u131590 {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:1388px;
  5307. top:24px;
  5308. width:375px;
  5309. height:44px;
  5310. display:flex;
  5311. }
  5312. #u131590 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:2px 2px 2px 2px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u131590_text {
  5320. border-width:0px;
  5321. word-wrap:break-word;
  5322. text-transform:none;
  5323. visibility:hidden;
  5324. }
  5325. #u131591_div {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:375px;
  5331. height:50px;
  5332. background:inherit;
  5333. background-color:rgba(255, 255, 255, 1);
  5334. box-sizing:border-box;
  5335. border-width:1px;
  5336. border-style:solid;
  5337. border-color:rgba(242, 242, 242, 1);
  5338. border-radius:26px;
  5339. border-top-left-radius:0px;
  5340. border-top-right-radius:0px;
  5341. -moz-box-shadow:none;
  5342. -webkit-box-shadow:none;
  5343. box-shadow:none;
  5344. }
  5345. #u131591 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:1388px;
  5349. top:788px;
  5350. width:375px;
  5351. height:50px;
  5352. display:flex;
  5353. }
  5354. #u131591 .text {
  5355. position:absolute;
  5356. align-self:center;
  5357. padding:2px 2px 2px 2px;
  5358. box-sizing:border-box;
  5359. width:100%;
  5360. }
  5361. #u131591_text {
  5362. border-width:0px;
  5363. word-wrap:break-word;
  5364. text-transform:none;
  5365. visibility:hidden;
  5366. }
  5367. #u131592 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:0px;
  5373. height:0px;
  5374. }
  5375. #u131593_img {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:24px;
  5381. height:24px;
  5382. }
  5383. #u131593 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:1428px;
  5387. top:792px;
  5388. width:24px;
  5389. height:24px;
  5390. display:flex;
  5391. font-size:8px;
  5392. }
  5393. #u131593 .text {
  5394. position:absolute;
  5395. align-self:center;
  5396. padding:2px 2px 2px 2px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u131593_text {
  5401. border-width:0px;
  5402. word-wrap:break-word;
  5403. text-transform:none;
  5404. }
  5405. #u131594_div {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:25px;
  5411. height:17px;
  5412. background:inherit;
  5413. background-color:rgba(255, 255, 255, 0);
  5414. border:none;
  5415. border-radius:0px;
  5416. -moz-box-shadow:none;
  5417. -webkit-box-shadow:none;
  5418. box-shadow:none;
  5419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:12px;
  5423. }
  5424. #u131594 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:1428px;
  5428. top:817px;
  5429. width:25px;
  5430. height:17px;
  5431. display:flex;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:12px;
  5436. }
  5437. #u131594 .text {
  5438. position:absolute;
  5439. align-self:flex-start;
  5440. padding:0px 0px 0px 0px;
  5441. box-sizing:border-box;
  5442. width:100%;
  5443. }
  5444. #u131594_text {
  5445. border-width:0px;
  5446. white-space:nowrap;
  5447. text-transform:none;
  5448. }
  5449. #u131595 {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:0px;
  5455. height:0px;
  5456. }
  5457. #u131596_img {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:24px;
  5463. height:24px;
  5464. }
  5465. #u131596 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:1698px;
  5469. top:794px;
  5470. width:24px;
  5471. height:24px;
  5472. display:flex;
  5473. font-size:8px;
  5474. }
  5475. #u131596 .text {
  5476. position:absolute;
  5477. align-self:center;
  5478. padding:2px 2px 2px 2px;
  5479. box-sizing:border-box;
  5480. width:100%;
  5481. }
  5482. #u131596_text {
  5483. border-width:0px;
  5484. word-wrap:break-word;
  5485. text-transform:none;
  5486. }
  5487. #u131597_div {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:25px;
  5493. height:17px;
  5494. background:inherit;
  5495. background-color:rgba(255, 255, 255, 0);
  5496. border:none;
  5497. border-radius:0px;
  5498. -moz-box-shadow:none;
  5499. -webkit-box-shadow:none;
  5500. box-shadow:none;
  5501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5502. font-weight:400;
  5503. font-style:normal;
  5504. font-size:12px;
  5505. }
  5506. #u131597 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:1698px;
  5510. top:819px;
  5511. width:25px;
  5512. height:17px;
  5513. display:flex;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:12px;
  5518. }
  5519. #u131597 .text {
  5520. position:absolute;
  5521. align-self:flex-start;
  5522. padding:0px 0px 0px 0px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u131597_text {
  5527. border-width:0px;
  5528. white-space:nowrap;
  5529. text-transform:none;
  5530. }
  5531. #u131598_div {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:375px;
  5537. height:681px;
  5538. background:inherit;
  5539. background-color:rgba(242, 242, 242, 0.462745098039216);
  5540. border:none;
  5541. border-radius:0px;
  5542. -moz-box-shadow:none;
  5543. -webkit-box-shadow:none;
  5544. box-shadow:none;
  5545. }
  5546. #u131598 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:1388px;
  5550. top:107px;
  5551. width:375px;
  5552. height:681px;
  5553. display:flex;
  5554. }
  5555. #u131598 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 2px 2px 2px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u131598_text {
  5563. border-width:0px;
  5564. word-wrap:break-word;
  5565. text-transform:none;
  5566. visibility:hidden;
  5567. }
  5568. #u131599 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:0px;
  5574. height:0px;
  5575. }
  5576. #u131600_img {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:24px;
  5582. height:24px;
  5583. }
  5584. #u131600 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:1610px;
  5588. top:792px;
  5589. width:24px;
  5590. height:24px;
  5591. display:flex;
  5592. font-size:8px;
  5593. }
  5594. #u131600 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 2px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u131600_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. }
  5606. #u131601_div {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:0px;
  5611. width:37px;
  5612. height:17px;
  5613. background:inherit;
  5614. background-color:rgba(255, 255, 255, 0);
  5615. border:none;
  5616. border-radius:0px;
  5617. -moz-box-shadow:none;
  5618. -webkit-box-shadow:none;
  5619. box-shadow:none;
  5620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. font-size:12px;
  5624. }
  5625. #u131601 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:1604px;
  5629. top:817px;
  5630. width:37px;
  5631. height:17px;
  5632. display:flex;
  5633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:12px;
  5637. }
  5638. #u131601 .text {
  5639. position:absolute;
  5640. align-self:flex-start;
  5641. padding:0px 0px 0px 0px;
  5642. box-sizing:border-box;
  5643. width:100%;
  5644. }
  5645. #u131601_text {
  5646. border-width:0px;
  5647. white-space:nowrap;
  5648. text-transform:none;
  5649. }
  5650. #u131602 {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:0px;
  5654. top:0px;
  5655. width:0px;
  5656. height:0px;
  5657. }
  5658. #u131603_img {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:24px;
  5664. height:24px;
  5665. }
  5666. #u131603 {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:1516px;
  5670. top:792px;
  5671. width:24px;
  5672. height:24px;
  5673. display:flex;
  5674. font-size:8px;
  5675. }
  5676. #u131603 .text {
  5677. position:absolute;
  5678. align-self:center;
  5679. padding:2px 2px 2px 2px;
  5680. box-sizing:border-box;
  5681. width:100%;
  5682. }
  5683. #u131603_text {
  5684. border-width:0px;
  5685. word-wrap:break-word;
  5686. text-transform:none;
  5687. }
  5688. #u131604_div {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:0px;
  5692. top:0px;
  5693. width:37px;
  5694. height:17px;
  5695. background:inherit;
  5696. background-color:rgba(255, 255, 255, 0);
  5697. border:none;
  5698. border-radius:0px;
  5699. -moz-box-shadow:none;
  5700. -webkit-box-shadow:none;
  5701. box-shadow:none;
  5702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:12px;
  5706. }
  5707. #u131604 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:1510px;
  5711. top:817px;
  5712. width:37px;
  5713. height:17px;
  5714. display:flex;
  5715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. font-size:12px;
  5719. }
  5720. #u131604 .text {
  5721. position:absolute;
  5722. align-self:flex-start;
  5723. padding:0px 0px 0px 0px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u131604_text {
  5728. border-width:0px;
  5729. white-space:nowrap;
  5730. text-transform:none;
  5731. }
  5732. #u131605_img {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:375px;
  5738. height:739px;
  5739. }
  5740. #u131605 {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:1388px;
  5744. top:106px;
  5745. width:375px;
  5746. height:739px;
  5747. display:flex;
  5748. }
  5749. #u131605 .text {
  5750. position:absolute;
  5751. align-self:center;
  5752. padding:2px 2px 2px 2px;
  5753. box-sizing:border-box;
  5754. width:100%;
  5755. }
  5756. #u131605_text {
  5757. border-width:0px;
  5758. word-wrap:break-word;
  5759. text-transform:none;
  5760. visibility:hidden;
  5761. }
  5762. #u131606_img {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:11px;
  5768. height:18px;
  5769. }
  5770. #u131606 {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:1399px;
  5774. top:79px;
  5775. width:11px;
  5776. height:18px;
  5777. display:flex;
  5778. }
  5779. #u131606 .text {
  5780. position:absolute;
  5781. align-self:center;
  5782. padding:2px 2px 2px 2px;
  5783. box-sizing:border-box;
  5784. width:100%;
  5785. }
  5786. #u131606_text {
  5787. border-width:0px;
  5788. word-wrap:break-word;
  5789. text-transform:none;
  5790. visibility:hidden;
  5791. }
  5792. #u131607_div {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:0px;
  5796. top:0px;
  5797. width:37px;
  5798. height:25px;
  5799. background:inherit;
  5800. background-color:rgba(255, 255, 255, 0);
  5801. border:none;
  5802. border-radius:0px;
  5803. -moz-box-shadow:none;
  5804. -webkit-box-shadow:none;
  5805. box-shadow:none;
  5806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5807. font-weight:400;
  5808. font-style:normal;
  5809. font-size:18px;
  5810. }
  5811. #u131607 {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:1541px;
  5815. top:75px;
  5816. width:37px;
  5817. height:25px;
  5818. display:flex;
  5819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5820. font-weight:400;
  5821. font-style:normal;
  5822. font-size:18px;
  5823. }
  5824. #u131607 .text {
  5825. position:absolute;
  5826. align-self:flex-start;
  5827. padding:0px 0px 0px 0px;
  5828. box-sizing:border-box;
  5829. width:100%;
  5830. }
  5831. #u131607_text {
  5832. border-width:0px;
  5833. white-space:nowrap;
  5834. text-transform:none;
  5835. }
  5836. #u131608 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:0px;
  5842. height:0px;
  5843. }
  5844. #u131609_div {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:375px;
  5850. height:50px;
  5851. background:inherit;
  5852. background-color:rgba(255, 255, 255, 1);
  5853. border:none;
  5854. border-left:0px;
  5855. border-top:0px;
  5856. border-right:0px;
  5857. border-radius:0px;
  5858. border-bottom-right-radius:0px;
  5859. border-bottom-left-radius:0px;
  5860. -moz-box-shadow:none;
  5861. -webkit-box-shadow:none;
  5862. box-shadow:none;
  5863. }
  5864. #u131609 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:1388px;
  5868. top:106px;
  5869. width:375px;
  5870. height:50px;
  5871. display:flex;
  5872. }
  5873. #u131609 .text {
  5874. position:absolute;
  5875. align-self:center;
  5876. padding:2px 2px 2px 2px;
  5877. box-sizing:border-box;
  5878. width:100%;
  5879. }
  5880. #u131609_text {
  5881. border-width:0px;
  5882. word-wrap:break-word;
  5883. text-transform:none;
  5884. visibility:hidden;
  5885. }
  5886. #u131610_div {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:57px;
  5892. height:30px;
  5893. background:inherit;
  5894. background-color:rgba(255, 255, 255, 0);
  5895. border:none;
  5896. border-left:0px;
  5897. border-top:0px;
  5898. border-right:0px;
  5899. border-radius:0px;
  5900. border-bottom-right-radius:0px;
  5901. border-bottom-left-radius:0px;
  5902. -moz-box-shadow:none;
  5903. -webkit-box-shadow:none;
  5904. box-shadow:none;
  5905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5906. font-weight:400;
  5907. font-style:normal;
  5908. font-size:14px;
  5909. line-height:30px;
  5910. }
  5911. #u131610 {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:1408px;
  5915. top:116px;
  5916. width:57px;
  5917. height:30px;
  5918. display:flex;
  5919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5920. font-weight:400;
  5921. font-style:normal;
  5922. font-size:14px;
  5923. line-height:30px;
  5924. }
  5925. #u131610 .text {
  5926. position:absolute;
  5927. align-self:center;
  5928. padding:0px 0px 0px 0px;
  5929. box-sizing:border-box;
  5930. width:100%;
  5931. }
  5932. #u131610_text {
  5933. border-width:0px;
  5934. white-space:nowrap;
  5935. text-transform:none;
  5936. }
  5937. #u131611_div {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:0px;
  5941. top:0px;
  5942. width:29px;
  5943. height:30px;
  5944. background:inherit;
  5945. background-color:rgba(255, 255, 255, 0);
  5946. border:none;
  5947. border-left:0px;
  5948. border-top:0px;
  5949. border-right:0px;
  5950. border-radius:0px;
  5951. border-bottom-right-radius:0px;
  5952. border-bottom-left-radius:0px;
  5953. -moz-box-shadow:none;
  5954. -webkit-box-shadow:none;
  5955. box-shadow:none;
  5956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5957. font-weight:400;
  5958. font-style:normal;
  5959. font-size:14px;
  5960. line-height:30px;
  5961. }
  5962. #u131611 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:1505px;
  5966. top:116px;
  5967. width:29px;
  5968. height:30px;
  5969. display:flex;
  5970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5971. font-weight:400;
  5972. font-style:normal;
  5973. font-size:14px;
  5974. line-height:30px;
  5975. }
  5976. #u131611 .text {
  5977. position:absolute;
  5978. align-self:center;
  5979. padding:0px 0px 0px 0px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u131611_text {
  5984. border-width:0px;
  5985. white-space:nowrap;
  5986. text-transform:none;
  5987. }
  5988. #u131612 {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:0px;
  5994. height:0px;
  5995. }
  5996. #u131613_div {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:0px;
  6000. top:0px;
  6001. width:375px;
  6002. height:50px;
  6003. background:inherit;
  6004. background-color:rgba(255, 255, 255, 1);
  6005. border:none;
  6006. border-left:0px;
  6007. border-top:0px;
  6008. border-right:0px;
  6009. border-radius:0px;
  6010. border-bottom-right-radius:0px;
  6011. border-bottom-left-radius:0px;
  6012. -moz-box-shadow:none;
  6013. -webkit-box-shadow:none;
  6014. box-shadow:none;
  6015. }
  6016. #u131613 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:1388px;
  6020. top:157px;
  6021. width:375px;
  6022. height:50px;
  6023. display:flex;
  6024. }
  6025. #u131613 .text {
  6026. position:absolute;
  6027. align-self:center;
  6028. padding:2px 2px 2px 2px;
  6029. box-sizing:border-box;
  6030. width:100%;
  6031. }
  6032. #u131613_text {
  6033. border-width:0px;
  6034. word-wrap:break-word;
  6035. text-transform:none;
  6036. visibility:hidden;
  6037. }
  6038. #u131614_div {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:57px;
  6044. height:30px;
  6045. background:inherit;
  6046. background-color:rgba(255, 255, 255, 0);
  6047. border:none;
  6048. border-left:0px;
  6049. border-top:0px;
  6050. border-right:0px;
  6051. border-radius:0px;
  6052. border-bottom-right-radius:0px;
  6053. border-bottom-left-radius:0px;
  6054. -moz-box-shadow:none;
  6055. -webkit-box-shadow:none;
  6056. box-shadow:none;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:14px;
  6061. line-height:30px;
  6062. }
  6063. #u131614 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:1408px;
  6067. top:167px;
  6068. width:57px;
  6069. height:30px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:14px;
  6075. line-height:30px;
  6076. }
  6077. #u131614 .text {
  6078. position:absolute;
  6079. align-self:center;
  6080. padding:0px 0px 0px 0px;
  6081. box-sizing:border-box;
  6082. width:100%;
  6083. }
  6084. #u131614_text {
  6085. border-width:0px;
  6086. white-space:nowrap;
  6087. text-transform:none;
  6088. }
  6089. #u131615_div {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:37px;
  6095. height:30px;
  6096. background:inherit;
  6097. background-color:rgba(255, 255, 255, 0);
  6098. border:none;
  6099. border-left:0px;
  6100. border-top:0px;
  6101. border-right:0px;
  6102. border-radius:0px;
  6103. border-bottom-right-radius:0px;
  6104. border-bottom-left-radius:0px;
  6105. -moz-box-shadow:none;
  6106. -webkit-box-shadow:none;
  6107. box-shadow:none;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:14px;
  6112. line-height:30px;
  6113. }
  6114. #u131615 {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:1505px;
  6118. top:167px;
  6119. width:37px;
  6120. height:30px;
  6121. display:flex;
  6122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6123. font-weight:400;
  6124. font-style:normal;
  6125. font-size:14px;
  6126. line-height:30px;
  6127. }
  6128. #u131615 .text {
  6129. position:absolute;
  6130. align-self:center;
  6131. padding:0px 0px 0px 0px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u131615_text {
  6136. border-width:0px;
  6137. white-space:nowrap;
  6138. text-transform:none;
  6139. }
  6140. #u131616 {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:0px;
  6144. top:0px;
  6145. width:0px;
  6146. height:0px;
  6147. }
  6148. #u131617_div {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:0px;
  6152. top:0px;
  6153. width:375px;
  6154. height:50px;
  6155. background:inherit;
  6156. background-color:rgba(255, 255, 255, 1);
  6157. border:none;
  6158. border-left:0px;
  6159. border-top:0px;
  6160. border-right:0px;
  6161. border-radius:0px;
  6162. border-bottom-right-radius:0px;
  6163. border-bottom-left-radius:0px;
  6164. -moz-box-shadow:none;
  6165. -webkit-box-shadow:none;
  6166. box-shadow:none;
  6167. }
  6168. #u131617 {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:1388px;
  6172. top:208px;
  6173. width:375px;
  6174. height:50px;
  6175. display:flex;
  6176. }
  6177. #u131617 .text {
  6178. position:absolute;
  6179. align-self:center;
  6180. padding:2px 2px 2px 2px;
  6181. box-sizing:border-box;
  6182. width:100%;
  6183. }
  6184. #u131617_text {
  6185. border-width:0px;
  6186. word-wrap:break-word;
  6187. text-transform:none;
  6188. visibility:hidden;
  6189. }
  6190. #u131618_div {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:57px;
  6196. height:30px;
  6197. background:inherit;
  6198. background-color:rgba(255, 255, 255, 0);
  6199. border:none;
  6200. border-left:0px;
  6201. border-top:0px;
  6202. border-right:0px;
  6203. border-radius:0px;
  6204. border-bottom-right-radius:0px;
  6205. border-bottom-left-radius:0px;
  6206. -moz-box-shadow:none;
  6207. -webkit-box-shadow:none;
  6208. box-shadow:none;
  6209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6210. font-weight:400;
  6211. font-style:normal;
  6212. font-size:14px;
  6213. line-height:30px;
  6214. }
  6215. #u131618 {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:1408px;
  6219. top:218px;
  6220. width:57px;
  6221. height:30px;
  6222. display:flex;
  6223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:14px;
  6227. line-height:30px;
  6228. }
  6229. #u131618 .text {
  6230. position:absolute;
  6231. align-self:center;
  6232. padding:0px 0px 0px 0px;
  6233. box-sizing:border-box;
  6234. width:100%;
  6235. }
  6236. #u131618_text {
  6237. border-width:0px;
  6238. white-space:nowrap;
  6239. text-transform:none;
  6240. }
  6241. #u131619_div {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:29px;
  6247. height:30px;
  6248. background:inherit;
  6249. background-color:rgba(255, 255, 255, 0);
  6250. border:none;
  6251. border-left:0px;
  6252. border-top:0px;
  6253. border-right:0px;
  6254. border-radius:0px;
  6255. border-bottom-right-radius:0px;
  6256. border-bottom-left-radius:0px;
  6257. -moz-box-shadow:none;
  6258. -webkit-box-shadow:none;
  6259. box-shadow:none;
  6260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:14px;
  6264. line-height:30px;
  6265. }
  6266. #u131619 {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:1505px;
  6270. top:218px;
  6271. width:29px;
  6272. height:30px;
  6273. display:flex;
  6274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6275. font-weight:400;
  6276. font-style:normal;
  6277. font-size:14px;
  6278. line-height:30px;
  6279. }
  6280. #u131619 .text {
  6281. position:absolute;
  6282. align-self:center;
  6283. padding:0px 0px 0px 0px;
  6284. box-sizing:border-box;
  6285. width:100%;
  6286. }
  6287. #u131619_text {
  6288. border-width:0px;
  6289. white-space:nowrap;
  6290. text-transform:none;
  6291. }
  6292. #u131620 {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:0px;
  6298. height:0px;
  6299. }
  6300. #u131621_div {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:0px;
  6304. top:0px;
  6305. width:375px;
  6306. height:50px;
  6307. background:inherit;
  6308. background-color:rgba(255, 255, 255, 1);
  6309. border:none;
  6310. border-left:0px;
  6311. border-top:0px;
  6312. border-right:0px;
  6313. border-radius:0px;
  6314. border-bottom-right-radius:0px;
  6315. border-bottom-left-radius:0px;
  6316. -moz-box-shadow:none;
  6317. -webkit-box-shadow:none;
  6318. box-shadow:none;
  6319. }
  6320. #u131621 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:1388px;
  6324. top:259px;
  6325. width:375px;
  6326. height:50px;
  6327. display:flex;
  6328. }
  6329. #u131621 .text {
  6330. position:absolute;
  6331. align-self:center;
  6332. padding:2px 2px 2px 2px;
  6333. box-sizing:border-box;
  6334. width:100%;
  6335. }
  6336. #u131621_text {
  6337. border-width:0px;
  6338. word-wrap:break-word;
  6339. text-transform:none;
  6340. visibility:hidden;
  6341. }
  6342. #u131622_div {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:85px;
  6348. height:30px;
  6349. background:inherit;
  6350. background-color:rgba(255, 255, 255, 0);
  6351. border:none;
  6352. border-left:0px;
  6353. border-top:0px;
  6354. border-right:0px;
  6355. border-radius:0px;
  6356. border-bottom-right-radius:0px;
  6357. border-bottom-left-radius:0px;
  6358. -moz-box-shadow:none;
  6359. -webkit-box-shadow:none;
  6360. box-shadow:none;
  6361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6362. font-weight:400;
  6363. font-style:normal;
  6364. font-size:14px;
  6365. line-height:30px;
  6366. }
  6367. #u131622 {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:1408px;
  6371. top:269px;
  6372. width:85px;
  6373. height:30px;
  6374. display:flex;
  6375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6376. font-weight:400;
  6377. font-style:normal;
  6378. font-size:14px;
  6379. line-height:30px;
  6380. }
  6381. #u131622 .text {
  6382. position:absolute;
  6383. align-self:center;
  6384. padding:0px 0px 0px 0px;
  6385. box-sizing:border-box;
  6386. width:100%;
  6387. }
  6388. #u131622_text {
  6389. border-width:0px;
  6390. white-space:nowrap;
  6391. text-transform:none;
  6392. }
  6393. #u131623_div {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:79px;
  6399. height:30px;
  6400. background:inherit;
  6401. background-color:rgba(255, 255, 255, 0);
  6402. border:none;
  6403. border-left:0px;
  6404. border-top:0px;
  6405. border-right:0px;
  6406. border-radius:0px;
  6407. border-bottom-right-radius:0px;
  6408. border-bottom-left-radius:0px;
  6409. -moz-box-shadow:none;
  6410. -webkit-box-shadow:none;
  6411. box-shadow:none;
  6412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6413. font-weight:400;
  6414. font-style:normal;
  6415. font-size:14px;
  6416. line-height:30px;
  6417. }
  6418. #u131623 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:1505px;
  6422. top:269px;
  6423. width:79px;
  6424. height:30px;
  6425. display:flex;
  6426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:14px;
  6430. line-height:30px;
  6431. }
  6432. #u131623 .text {
  6433. position:absolute;
  6434. align-self:center;
  6435. padding:0px 0px 0px 0px;
  6436. box-sizing:border-box;
  6437. width:100%;
  6438. }
  6439. #u131623_text {
  6440. border-width:0px;
  6441. white-space:nowrap;
  6442. text-transform:none;
  6443. }
  6444. #u131624 {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:0px;
  6448. top:0px;
  6449. width:0px;
  6450. height:0px;
  6451. }
  6452. #u131625_div {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:375px;
  6458. height:50px;
  6459. background:inherit;
  6460. background-color:rgba(255, 255, 255, 1);
  6461. border:none;
  6462. border-left:0px;
  6463. border-top:0px;
  6464. border-right:0px;
  6465. border-radius:0px;
  6466. border-bottom-right-radius:0px;
  6467. border-bottom-left-radius:0px;
  6468. -moz-box-shadow:none;
  6469. -webkit-box-shadow:none;
  6470. box-shadow:none;
  6471. }
  6472. #u131625 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:1388px;
  6476. top:310px;
  6477. width:375px;
  6478. height:50px;
  6479. display:flex;
  6480. }
  6481. #u131625 .text {
  6482. position:absolute;
  6483. align-self:center;
  6484. padding:2px 2px 2px 2px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u131625_text {
  6489. border-width:0px;
  6490. word-wrap:break-word;
  6491. text-transform:none;
  6492. visibility:hidden;
  6493. }
  6494. #u131626_div {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:57px;
  6500. height:30px;
  6501. background:inherit;
  6502. background-color:rgba(255, 255, 255, 0);
  6503. border:none;
  6504. border-left:0px;
  6505. border-top:0px;
  6506. border-right:0px;
  6507. border-radius:0px;
  6508. border-bottom-right-radius:0px;
  6509. border-bottom-left-radius:0px;
  6510. -moz-box-shadow:none;
  6511. -webkit-box-shadow:none;
  6512. box-shadow:none;
  6513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6514. font-weight:400;
  6515. font-style:normal;
  6516. font-size:14px;
  6517. line-height:30px;
  6518. }
  6519. #u131626 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:1408px;
  6523. top:320px;
  6524. width:57px;
  6525. height:30px;
  6526. display:flex;
  6527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:14px;
  6531. line-height:30px;
  6532. }
  6533. #u131626 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:0px 0px 0px 0px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u131626_text {
  6541. border-width:0px;
  6542. white-space:nowrap;
  6543. text-transform:none;
  6544. }
  6545. #u131627_div {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:0px;
  6549. top:0px;
  6550. width:55px;
  6551. height:30px;
  6552. background:inherit;
  6553. background-color:rgba(255, 255, 255, 0);
  6554. border:none;
  6555. border-left:0px;
  6556. border-top:0px;
  6557. border-right:0px;
  6558. border-radius:0px;
  6559. border-bottom-right-radius:0px;
  6560. border-bottom-left-radius:0px;
  6561. -moz-box-shadow:none;
  6562. -webkit-box-shadow:none;
  6563. box-shadow:none;
  6564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6565. font-weight:400;
  6566. font-style:normal;
  6567. font-size:14px;
  6568. line-height:30px;
  6569. }
  6570. #u131627 {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:1505px;
  6574. top:320px;
  6575. width:55px;
  6576. height:30px;
  6577. display:flex;
  6578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6579. font-weight:400;
  6580. font-style:normal;
  6581. font-size:14px;
  6582. line-height:30px;
  6583. }
  6584. #u131627 .text {
  6585. position:absolute;
  6586. align-self:center;
  6587. padding:0px 0px 0px 0px;
  6588. box-sizing:border-box;
  6589. width:100%;
  6590. }
  6591. #u131627_text {
  6592. border-width:0px;
  6593. white-space:nowrap;
  6594. text-transform:none;
  6595. }
  6596. #u131628 {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:0px;
  6602. height:0px;
  6603. }
  6604. #u131629_div {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:375px;
  6610. height:50px;
  6611. background:inherit;
  6612. background-color:rgba(255, 255, 255, 1);
  6613. border:none;
  6614. border-left:0px;
  6615. border-top:0px;
  6616. border-right:0px;
  6617. border-radius:0px;
  6618. border-bottom-right-radius:0px;
  6619. border-bottom-left-radius:0px;
  6620. -moz-box-shadow:none;
  6621. -webkit-box-shadow:none;
  6622. box-shadow:none;
  6623. }
  6624. #u131629 {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:1388px;
  6628. top:361px;
  6629. width:375px;
  6630. height:50px;
  6631. display:flex;
  6632. }
  6633. #u131629 .text {
  6634. position:absolute;
  6635. align-self:center;
  6636. padding:2px 2px 2px 2px;
  6637. box-sizing:border-box;
  6638. width:100%;
  6639. }
  6640. #u131629_text {
  6641. border-width:0px;
  6642. word-wrap:break-word;
  6643. text-transform:none;
  6644. visibility:hidden;
  6645. }
  6646. #u131630_div {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:57px;
  6652. height:30px;
  6653. background:inherit;
  6654. background-color:rgba(255, 255, 255, 0);
  6655. border:none;
  6656. border-left:0px;
  6657. border-top:0px;
  6658. border-right:0px;
  6659. border-radius:0px;
  6660. border-bottom-right-radius:0px;
  6661. border-bottom-left-radius:0px;
  6662. -moz-box-shadow:none;
  6663. -webkit-box-shadow:none;
  6664. box-shadow:none;
  6665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6666. font-weight:400;
  6667. font-style:normal;
  6668. font-size:14px;
  6669. line-height:30px;
  6670. }
  6671. #u131630 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:1408px;
  6675. top:371px;
  6676. width:57px;
  6677. height:30px;
  6678. display:flex;
  6679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6680. font-weight:400;
  6681. font-style:normal;
  6682. font-size:14px;
  6683. line-height:30px;
  6684. }
  6685. #u131630 .text {
  6686. position:absolute;
  6687. align-self:center;
  6688. padding:0px 0px 0px 0px;
  6689. box-sizing:border-box;
  6690. width:100%;
  6691. }
  6692. #u131630_text {
  6693. border-width:0px;
  6694. white-space:nowrap;
  6695. text-transform:none;
  6696. }
  6697. #u131631_div {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:77px;
  6703. height:30px;
  6704. background:inherit;
  6705. background-color:rgba(255, 255, 255, 0);
  6706. border:none;
  6707. border-left:0px;
  6708. border-top:0px;
  6709. border-right:0px;
  6710. border-radius:0px;
  6711. border-bottom-right-radius:0px;
  6712. border-bottom-left-radius:0px;
  6713. -moz-box-shadow:none;
  6714. -webkit-box-shadow:none;
  6715. box-shadow:none;
  6716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6717. font-weight:400;
  6718. font-style:normal;
  6719. font-size:14px;
  6720. line-height:30px;
  6721. }
  6722. #u131631 {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:1505px;
  6726. top:371px;
  6727. width:77px;
  6728. height:30px;
  6729. display:flex;
  6730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6731. font-weight:400;
  6732. font-style:normal;
  6733. font-size:14px;
  6734. line-height:30px;
  6735. }
  6736. #u131631 .text {
  6737. position:absolute;
  6738. align-self:center;
  6739. padding:0px 0px 0px 0px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u131631_text {
  6744. border-width:0px;
  6745. white-space:nowrap;
  6746. text-transform:none;
  6747. }
  6748. #u131632 {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:0px;
  6754. height:0px;
  6755. }
  6756. #u131633_div {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:375px;
  6762. height:50px;
  6763. background:inherit;
  6764. background-color:rgba(255, 255, 255, 1);
  6765. border:none;
  6766. border-left:0px;
  6767. border-top:0px;
  6768. border-right:0px;
  6769. border-radius:0px;
  6770. border-bottom-right-radius:0px;
  6771. border-bottom-left-radius:0px;
  6772. -moz-box-shadow:none;
  6773. -webkit-box-shadow:none;
  6774. box-shadow:none;
  6775. }
  6776. #u131633 {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:1388px;
  6780. top:412px;
  6781. width:375px;
  6782. height:50px;
  6783. display:flex;
  6784. }
  6785. #u131633 .text {
  6786. position:absolute;
  6787. align-self:center;
  6788. padding:2px 2px 2px 2px;
  6789. box-sizing:border-box;
  6790. width:100%;
  6791. }
  6792. #u131633_text {
  6793. border-width:0px;
  6794. word-wrap:break-word;
  6795. text-transform:none;
  6796. visibility:hidden;
  6797. }
  6798. #u131634_div {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:0px;
  6802. top:0px;
  6803. width:57px;
  6804. height:30px;
  6805. background:inherit;
  6806. background-color:rgba(255, 255, 255, 0);
  6807. border:none;
  6808. border-left:0px;
  6809. border-top:0px;
  6810. border-right:0px;
  6811. border-radius:0px;
  6812. border-bottom-right-radius:0px;
  6813. border-bottom-left-radius:0px;
  6814. -moz-box-shadow:none;
  6815. -webkit-box-shadow:none;
  6816. box-shadow:none;
  6817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6818. font-weight:400;
  6819. font-style:normal;
  6820. font-size:14px;
  6821. line-height:30px;
  6822. }
  6823. #u131634 {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:1408px;
  6827. top:422px;
  6828. width:57px;
  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:14px;
  6835. line-height:30px;
  6836. }
  6837. #u131634 .text {
  6838. position:absolute;
  6839. align-self:center;
  6840. padding:0px 0px 0px 0px;
  6841. box-sizing:border-box;
  6842. width:100%;
  6843. }
  6844. #u131634_text {
  6845. border-width:0px;
  6846. white-space:nowrap;
  6847. text-transform:none;
  6848. }
  6849. #u131635_div {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:0px;
  6853. top:0px;
  6854. width:55px;
  6855. height:30px;
  6856. background:inherit;
  6857. background-color:rgba(255, 255, 255, 0);
  6858. border:none;
  6859. border-left:0px;
  6860. border-top:0px;
  6861. border-right:0px;
  6862. border-radius:0px;
  6863. border-bottom-right-radius:0px;
  6864. border-bottom-left-radius:0px;
  6865. -moz-box-shadow:none;
  6866. -webkit-box-shadow:none;
  6867. box-shadow:none;
  6868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6869. font-weight:400;
  6870. font-style:normal;
  6871. font-size:14px;
  6872. line-height:30px;
  6873. }
  6874. #u131635 {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:1505px;
  6878. top:422px;
  6879. width:55px;
  6880. height:30px;
  6881. display:flex;
  6882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:14px;
  6886. line-height:30px;
  6887. }
  6888. #u131635 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:0px 0px 0px 0px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u131635_text {
  6896. border-width:0px;
  6897. white-space:nowrap;
  6898. text-transform:none;
  6899. }
  6900. #u131636_div {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:344px;
  6906. height:40px;
  6907. background:inherit;
  6908. background-color:rgba(24, 144, 255, 1);
  6909. border:none;
  6910. border-radius:81px;
  6911. -moz-box-shadow:none;
  6912. -webkit-box-shadow:none;
  6913. box-shadow:none;
  6914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6915. font-weight:400;
  6916. font-style:normal;
  6917. font-size:14px;
  6918. color:#FFFFFF;
  6919. }
  6920. #u131636 {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:1404px;
  6924. top:592px;
  6925. width:344px;
  6926. height:40px;
  6927. display:flex;
  6928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:14px;
  6932. color:#FFFFFF;
  6933. }
  6934. #u131636 .text {
  6935. position:absolute;
  6936. align-self:center;
  6937. padding:2px 2px 2px 2px;
  6938. box-sizing:border-box;
  6939. width:100%;
  6940. }
  6941. #u131636_text {
  6942. border-width:0px;
  6943. word-wrap:break-word;
  6944. text-transform:none;
  6945. }
  6946. #u131637_div {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:344px;
  6952. height:40px;
  6953. background:inherit;
  6954. background-color:rgba(24, 144, 255, 1);
  6955. border:none;
  6956. border-radius:81px;
  6957. -moz-box-shadow:none;
  6958. -webkit-box-shadow:none;
  6959. box-shadow:none;
  6960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6961. font-weight:400;
  6962. font-style:normal;
  6963. font-size:14px;
  6964. color:#FFFFFF;
  6965. }
  6966. #u131637 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:1404px;
  6970. top:492px;
  6971. width:344px;
  6972. height:40px;
  6973. display:flex;
  6974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6975. font-weight:400;
  6976. font-style:normal;
  6977. font-size:14px;
  6978. color:#FFFFFF;
  6979. }
  6980. #u131637 .text {
  6981. position:absolute;
  6982. align-self:center;
  6983. padding:2px 2px 2px 2px;
  6984. box-sizing:border-box;
  6985. width:100%;
  6986. }
  6987. #u131637_text {
  6988. border-width:0px;
  6989. word-wrap:break-word;
  6990. text-transform:none;
  6991. }
  6992. #u131638_div {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:0px;
  6996. top:0px;
  6997. width:344px;
  6998. height:40px;
  6999. background:inherit;
  7000. background-color:rgba(24, 144, 255, 1);
  7001. border:none;
  7002. border-radius:81px;
  7003. -moz-box-shadow:none;
  7004. -webkit-box-shadow:none;
  7005. box-shadow:none;
  7006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7007. font-weight:400;
  7008. font-style:normal;
  7009. font-size:14px;
  7010. color:#FFFFFF;
  7011. }
  7012. #u131638 {
  7013. border-width:0px;
  7014. position:absolute;
  7015. left:1404px;
  7016. top:542px;
  7017. width:344px;
  7018. height:40px;
  7019. display:flex;
  7020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7021. font-weight:400;
  7022. font-style:normal;
  7023. font-size:14px;
  7024. color:#FFFFFF;
  7025. }
  7026. #u131638 .text {
  7027. position:absolute;
  7028. align-self:center;
  7029. padding:2px 2px 2px 2px;
  7030. box-sizing:border-box;
  7031. width:100%;
  7032. }
  7033. #u131638_text {
  7034. border-width:0px;
  7035. word-wrap:break-word;
  7036. text-transform:none;
  7037. }
  7038. #u131640_img {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:433px;
  7044. height:865px;
  7045. }
  7046. #u131640 {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:906px;
  7050. top:894px;
  7051. width:433px;
  7052. height:865px;
  7053. display:flex;
  7054. }
  7055. #u131640 .text {
  7056. position:absolute;
  7057. align-self:center;
  7058. padding:2px 2px 2px 2px;
  7059. box-sizing:border-box;
  7060. width:100%;
  7061. }
  7062. #u131640_text {
  7063. border-width:0px;
  7064. word-wrap:break-word;
  7065. text-transform:none;
  7066. visibility:hidden;
  7067. }
  7068. #u131641_div {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:0px;
  7072. top:0px;
  7073. width:375px;
  7074. height:40px;
  7075. background:inherit;
  7076. background-color:rgba(255, 255, 255, 1);
  7077. box-sizing:border-box;
  7078. border-width:1px;
  7079. border-style:solid;
  7080. border-color:rgba(215, 215, 215, 1);
  7081. border-left:0px;
  7082. border-top:0px;
  7083. border-right:0px;
  7084. border-radius:0px;
  7085. border-bottom-right-radius:0px;
  7086. border-bottom-left-radius:0px;
  7087. -moz-box-shadow:none;
  7088. -webkit-box-shadow:none;
  7089. box-shadow:none;
  7090. }
  7091. #u131641 {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:935px;
  7095. top:961px;
  7096. width:375px;
  7097. height:40px;
  7098. display:flex;
  7099. }
  7100. #u131641 .text {
  7101. position:absolute;
  7102. align-self:center;
  7103. padding:2px 2px 2px 2px;
  7104. box-sizing:border-box;
  7105. width:100%;
  7106. }
  7107. #u131641_text {
  7108. border-width:0px;
  7109. word-wrap:break-word;
  7110. text-transform:none;
  7111. visibility:hidden;
  7112. }
  7113. #u131642 {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:0px;
  7117. top:0px;
  7118. width:0px;
  7119. height:0px;
  7120. }
  7121. #u131643_div {
  7122. border-width:0px;
  7123. position:absolute;
  7124. left:0px;
  7125. top:0px;
  7126. width:88px;
  7127. height:32px;
  7128. background:inherit;
  7129. background-color:rgba(255, 255, 255, 1);
  7130. box-sizing:border-box;
  7131. border-width:1px;
  7132. border-style:solid;
  7133. border-color:rgba(242, 242, 242, 1);
  7134. border-radius:33px;
  7135. -moz-box-shadow:none;
  7136. -webkit-box-shadow:none;
  7137. box-shadow:none;
  7138. }
  7139. #u131643 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:1215px;
  7143. top:965px;
  7144. width:88px;
  7145. height:32px;
  7146. display:flex;
  7147. }
  7148. #u131643 .text {
  7149. position:absolute;
  7150. align-self:center;
  7151. padding:2px 2px 2px 2px;
  7152. box-sizing:border-box;
  7153. width:100%;
  7154. }
  7155. #u131643_text {
  7156. border-width:0px;
  7157. word-wrap:break-word;
  7158. text-transform:none;
  7159. visibility:hidden;
  7160. }
  7161. #u131644 {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:0px;
  7167. height:0px;
  7168. }
  7169. #u131645_img {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:0px;
  7173. top:0px;
  7174. width:18px;
  7175. height:18px;
  7176. }
  7177. #u131645 {
  7178. border-width:0px;
  7179. position:absolute;
  7180. left:1278px;
  7181. top:972px;
  7182. width:18px;
  7183. height:18px;
  7184. display:flex;
  7185. }
  7186. #u131645 .text {
  7187. position:absolute;
  7188. align-self:center;
  7189. padding:2px 2px 2px 2px;
  7190. box-sizing:border-box;
  7191. width:100%;
  7192. }
  7193. #u131645_text {
  7194. border-width:0px;
  7195. word-wrap:break-word;
  7196. text-transform:none;
  7197. visibility:hidden;
  7198. }
  7199. #u131646_img {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:0px;
  7203. top:0px;
  7204. width:6px;
  7205. height:6px;
  7206. }
  7207. #u131646 {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:1284px;
  7211. top:978px;
  7212. width:6px;
  7213. height:6px;
  7214. display:flex;
  7215. }
  7216. #u131646 .text {
  7217. position:absolute;
  7218. align-self:center;
  7219. padding:2px 2px 2px 2px;
  7220. box-sizing:border-box;
  7221. width:100%;
  7222. }
  7223. #u131646_text {
  7224. border-width:0px;
  7225. word-wrap:break-word;
  7226. text-transform:none;
  7227. visibility:hidden;
  7228. }
  7229. #u131647 {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:0px;
  7233. top:0px;
  7234. width:0px;
  7235. height:0px;
  7236. }
  7237. #u131648_img {
  7238. border-width:0px;
  7239. position:absolute;
  7240. left:0px;
  7241. top:0px;
  7242. width:5px;
  7243. height:5px;
  7244. }
  7245. #u131648 {
  7246. border-width:0px;
  7247. position:absolute;
  7248. left:1229px;
  7249. top:979px;
  7250. width:5px;
  7251. height:5px;
  7252. display:flex;
  7253. }
  7254. #u131648 .text {
  7255. position:absolute;
  7256. align-self:center;
  7257. padding:2px 2px 2px 2px;
  7258. box-sizing:border-box;
  7259. width:100%;
  7260. }
  7261. #u131648_text {
  7262. border-width:0px;
  7263. word-wrap:break-word;
  7264. text-transform:none;
  7265. visibility:hidden;
  7266. }
  7267. #u131649_img {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:5px;
  7273. height:5px;
  7274. }
  7275. #u131649 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:1245px;
  7279. top:979px;
  7280. width:5px;
  7281. height:5px;
  7282. display:flex;
  7283. }
  7284. #u131649 .text {
  7285. position:absolute;
  7286. align-self:center;
  7287. padding:2px 2px 2px 2px;
  7288. box-sizing:border-box;
  7289. width:100%;
  7290. }
  7291. #u131649_text {
  7292. border-width:0px;
  7293. word-wrap:break-word;
  7294. text-transform:none;
  7295. visibility:hidden;
  7296. }
  7297. #u131650_img {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:0px;
  7301. top:0px;
  7302. width:7px;
  7303. height:7px;
  7304. }
  7305. #u131650 {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:1236px;
  7309. top:978px;
  7310. width:7px;
  7311. height:7px;
  7312. display:flex;
  7313. }
  7314. #u131650 .text {
  7315. position:absolute;
  7316. align-self:center;
  7317. padding:2px 2px 2px 2px;
  7318. box-sizing:border-box;
  7319. width:100%;
  7320. }
  7321. #u131650_text {
  7322. border-width:0px;
  7323. word-wrap:break-word;
  7324. text-transform:none;
  7325. visibility:hidden;
  7326. }
  7327. #u131651_img {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:0px;
  7331. top:0px;
  7332. width:19px;
  7333. height:2px;
  7334. }
  7335. #u131651 {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:1253px;
  7339. top:981px;
  7340. width:18px;
  7341. height:1px;
  7342. display:flex;
  7343. -webkit-transform:rotate(90deg);
  7344. -moz-transform:rotate(90deg);
  7345. -ms-transform:rotate(90deg);
  7346. transform:rotate(90deg);
  7347. }
  7348. #u131651 .text {
  7349. position:absolute;
  7350. align-self:center;
  7351. padding:2px 2px 2px 2px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u131651_text {
  7356. border-width:0px;
  7357. word-wrap:break-word;
  7358. text-transform:none;
  7359. visibility:hidden;
  7360. }
  7361. #u131652_img {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:0px;
  7365. top:0px;
  7366. width:375px;
  7367. height:44px;
  7368. }
  7369. #u131652 {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:935px;
  7373. top:918px;
  7374. width:375px;
  7375. height:44px;
  7376. display:flex;
  7377. }
  7378. #u131652 .text {
  7379. position:absolute;
  7380. align-self:center;
  7381. padding:2px 2px 2px 2px;
  7382. box-sizing:border-box;
  7383. width:100%;
  7384. }
  7385. #u131652_text {
  7386. border-width:0px;
  7387. word-wrap:break-word;
  7388. text-transform:none;
  7389. visibility:hidden;
  7390. }
  7391. #u131653_div {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:375px;
  7397. height:50px;
  7398. background:inherit;
  7399. background-color:rgba(255, 255, 255, 1);
  7400. box-sizing:border-box;
  7401. border-width:1px;
  7402. border-style:solid;
  7403. border-color:rgba(242, 242, 242, 1);
  7404. border-radius:26px;
  7405. border-top-left-radius:0px;
  7406. border-top-right-radius:0px;
  7407. -moz-box-shadow:none;
  7408. -webkit-box-shadow:none;
  7409. box-shadow:none;
  7410. }
  7411. #u131653 {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:935px;
  7415. top:1682px;
  7416. width:375px;
  7417. height:50px;
  7418. display:flex;
  7419. }
  7420. #u131653 .text {
  7421. position:absolute;
  7422. align-self:center;
  7423. padding:2px 2px 2px 2px;
  7424. box-sizing:border-box;
  7425. width:100%;
  7426. }
  7427. #u131653_text {
  7428. border-width:0px;
  7429. word-wrap:break-word;
  7430. text-transform:none;
  7431. visibility:hidden;
  7432. }
  7433. #u131654 {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:0px;
  7437. top:0px;
  7438. width:0px;
  7439. height:0px;
  7440. }
  7441. #u131655_img {
  7442. border-width:0px;
  7443. position:absolute;
  7444. left:0px;
  7445. top:0px;
  7446. width:24px;
  7447. height:24px;
  7448. }
  7449. #u131655 {
  7450. border-width:0px;
  7451. position:absolute;
  7452. left:975px;
  7453. top:1686px;
  7454. width:24px;
  7455. height:24px;
  7456. display:flex;
  7457. font-size:8px;
  7458. }
  7459. #u131655 .text {
  7460. position:absolute;
  7461. align-self:center;
  7462. padding:2px 2px 2px 2px;
  7463. box-sizing:border-box;
  7464. width:100%;
  7465. }
  7466. #u131655_text {
  7467. border-width:0px;
  7468. word-wrap:break-word;
  7469. text-transform:none;
  7470. }
  7471. #u131656_div {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:0px;
  7475. top:0px;
  7476. width:25px;
  7477. height:17px;
  7478. background:inherit;
  7479. background-color:rgba(255, 255, 255, 0);
  7480. border:none;
  7481. border-radius:0px;
  7482. -moz-box-shadow:none;
  7483. -webkit-box-shadow:none;
  7484. box-shadow:none;
  7485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:12px;
  7489. }
  7490. #u131656 {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:975px;
  7494. top:1711px;
  7495. width:25px;
  7496. height:17px;
  7497. display:flex;
  7498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7499. font-weight:400;
  7500. font-style:normal;
  7501. font-size:12px;
  7502. }
  7503. #u131656 .text {
  7504. position:absolute;
  7505. align-self:flex-start;
  7506. padding:0px 0px 0px 0px;
  7507. box-sizing:border-box;
  7508. width:100%;
  7509. }
  7510. #u131656_text {
  7511. border-width:0px;
  7512. white-space:nowrap;
  7513. text-transform:none;
  7514. }
  7515. #u131657 {
  7516. border-width:0px;
  7517. position:absolute;
  7518. left:0px;
  7519. top:0px;
  7520. width:0px;
  7521. height:0px;
  7522. }
  7523. #u131658_img {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:0px;
  7527. top:0px;
  7528. width:24px;
  7529. height:24px;
  7530. }
  7531. #u131658 {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:1245px;
  7535. top:1688px;
  7536. width:24px;
  7537. height:24px;
  7538. display:flex;
  7539. font-size:8px;
  7540. }
  7541. #u131658 .text {
  7542. position:absolute;
  7543. align-self:center;
  7544. padding:2px 2px 2px 2px;
  7545. box-sizing:border-box;
  7546. width:100%;
  7547. }
  7548. #u131658_text {
  7549. border-width:0px;
  7550. word-wrap:break-word;
  7551. text-transform:none;
  7552. }
  7553. #u131659_div {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:0px;
  7557. top:0px;
  7558. width:25px;
  7559. height:17px;
  7560. background:inherit;
  7561. background-color:rgba(255, 255, 255, 0);
  7562. border:none;
  7563. border-radius:0px;
  7564. -moz-box-shadow:none;
  7565. -webkit-box-shadow:none;
  7566. box-shadow:none;
  7567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7568. font-weight:400;
  7569. font-style:normal;
  7570. font-size:12px;
  7571. }
  7572. #u131659 {
  7573. border-width:0px;
  7574. position:absolute;
  7575. left:1245px;
  7576. top:1713px;
  7577. width:25px;
  7578. height:17px;
  7579. display:flex;
  7580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7581. font-weight:400;
  7582. font-style:normal;
  7583. font-size:12px;
  7584. }
  7585. #u131659 .text {
  7586. position:absolute;
  7587. align-self:flex-start;
  7588. padding:0px 0px 0px 0px;
  7589. box-sizing:border-box;
  7590. width:100%;
  7591. }
  7592. #u131659_text {
  7593. border-width:0px;
  7594. white-space:nowrap;
  7595. text-transform:none;
  7596. }
  7597. #u131660_div {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:0px;
  7601. top:0px;
  7602. width:375px;
  7603. height:681px;
  7604. background:inherit;
  7605. background-color:rgba(242, 242, 242, 0.462745098039216);
  7606. border:none;
  7607. border-radius:0px;
  7608. -moz-box-shadow:none;
  7609. -webkit-box-shadow:none;
  7610. box-shadow:none;
  7611. }
  7612. #u131660 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:935px;
  7616. top:1001px;
  7617. width:375px;
  7618. height:681px;
  7619. display:flex;
  7620. }
  7621. #u131660 .text {
  7622. position:absolute;
  7623. align-self:center;
  7624. padding:2px 2px 2px 2px;
  7625. box-sizing:border-box;
  7626. width:100%;
  7627. }
  7628. #u131660_text {
  7629. border-width:0px;
  7630. word-wrap:break-word;
  7631. text-transform:none;
  7632. visibility:hidden;
  7633. }
  7634. #u131661 {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:0px;
  7638. top:0px;
  7639. width:0px;
  7640. height:0px;
  7641. }
  7642. #u131662_img {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:0px;
  7646. top:0px;
  7647. width:24px;
  7648. height:24px;
  7649. }
  7650. #u131662 {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:1157px;
  7654. top:1686px;
  7655. width:24px;
  7656. height:24px;
  7657. display:flex;
  7658. font-size:8px;
  7659. }
  7660. #u131662 .text {
  7661. position:absolute;
  7662. align-self:center;
  7663. padding:2px 2px 2px 2px;
  7664. box-sizing:border-box;
  7665. width:100%;
  7666. }
  7667. #u131662_text {
  7668. border-width:0px;
  7669. word-wrap:break-word;
  7670. text-transform:none;
  7671. }
  7672. #u131663_div {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:0px;
  7676. top:0px;
  7677. width:37px;
  7678. height:17px;
  7679. background:inherit;
  7680. background-color:rgba(255, 255, 255, 0);
  7681. border:none;
  7682. border-radius:0px;
  7683. -moz-box-shadow:none;
  7684. -webkit-box-shadow:none;
  7685. box-shadow:none;
  7686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:12px;
  7690. }
  7691. #u131663 {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:1151px;
  7695. top:1711px;
  7696. width:37px;
  7697. height:17px;
  7698. display:flex;
  7699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:12px;
  7703. }
  7704. #u131663 .text {
  7705. position:absolute;
  7706. align-self:flex-start;
  7707. padding:0px 0px 0px 0px;
  7708. box-sizing:border-box;
  7709. width:100%;
  7710. }
  7711. #u131663_text {
  7712. border-width:0px;
  7713. white-space:nowrap;
  7714. text-transform:none;
  7715. }
  7716. #u131664 {
  7717. border-width:0px;
  7718. position:absolute;
  7719. left:0px;
  7720. top:0px;
  7721. width:0px;
  7722. height:0px;
  7723. }
  7724. #u131665_img {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:0px;
  7728. top:0px;
  7729. width:24px;
  7730. height:24px;
  7731. }
  7732. #u131665 {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:1063px;
  7736. top:1686px;
  7737. width:24px;
  7738. height:24px;
  7739. display:flex;
  7740. font-size:8px;
  7741. }
  7742. #u131665 .text {
  7743. position:absolute;
  7744. align-self:center;
  7745. padding:2px 2px 2px 2px;
  7746. box-sizing:border-box;
  7747. width:100%;
  7748. }
  7749. #u131665_text {
  7750. border-width:0px;
  7751. word-wrap:break-word;
  7752. text-transform:none;
  7753. }
  7754. #u131666_div {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:37px;
  7760. height:17px;
  7761. background:inherit;
  7762. background-color:rgba(255, 255, 255, 0);
  7763. border:none;
  7764. border-radius:0px;
  7765. -moz-box-shadow:none;
  7766. -webkit-box-shadow:none;
  7767. box-shadow:none;
  7768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7769. font-weight:400;
  7770. font-style:normal;
  7771. font-size:12px;
  7772. }
  7773. #u131666 {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:1057px;
  7777. top:1711px;
  7778. width:37px;
  7779. height:17px;
  7780. display:flex;
  7781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7782. font-weight:400;
  7783. font-style:normal;
  7784. font-size:12px;
  7785. }
  7786. #u131666 .text {
  7787. position:absolute;
  7788. align-self:flex-start;
  7789. padding:0px 0px 0px 0px;
  7790. box-sizing:border-box;
  7791. width:100%;
  7792. }
  7793. #u131666_text {
  7794. border-width:0px;
  7795. white-space:nowrap;
  7796. text-transform:none;
  7797. }
  7798. #u131667_img {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:0px;
  7802. top:0px;
  7803. width:375px;
  7804. height:739px;
  7805. }
  7806. #u131667 {
  7807. border-width:0px;
  7808. position:absolute;
  7809. left:935px;
  7810. top:1000px;
  7811. width:375px;
  7812. height:739px;
  7813. display:flex;
  7814. }
  7815. #u131667 .text {
  7816. position:absolute;
  7817. align-self:center;
  7818. padding:2px 2px 2px 2px;
  7819. box-sizing:border-box;
  7820. width:100%;
  7821. }
  7822. #u131667_text {
  7823. border-width:0px;
  7824. word-wrap:break-word;
  7825. text-transform:none;
  7826. visibility:hidden;
  7827. }
  7828. #u131668_img {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:0px;
  7832. top:0px;
  7833. width:11px;
  7834. height:18px;
  7835. }
  7836. #u131668 {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:946px;
  7840. top:973px;
  7841. width:11px;
  7842. height:18px;
  7843. display:flex;
  7844. }
  7845. #u131668 .text {
  7846. position:absolute;
  7847. align-self:center;
  7848. padding:2px 2px 2px 2px;
  7849. box-sizing:border-box;
  7850. width:100%;
  7851. }
  7852. #u131668_text {
  7853. border-width:0px;
  7854. word-wrap:break-word;
  7855. text-transform:none;
  7856. visibility:hidden;
  7857. }
  7858. #u131669_div {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:0px;
  7862. top:0px;
  7863. width:73px;
  7864. height:25px;
  7865. background:inherit;
  7866. background-color:rgba(255, 255, 255, 0);
  7867. border:none;
  7868. border-radius:0px;
  7869. -moz-box-shadow:none;
  7870. -webkit-box-shadow:none;
  7871. box-shadow:none;
  7872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7873. font-weight:400;
  7874. font-style:normal;
  7875. font-size:18px;
  7876. }
  7877. #u131669 {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:1088px;
  7881. top:969px;
  7882. width:73px;
  7883. height:25px;
  7884. display:flex;
  7885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7886. font-weight:400;
  7887. font-style:normal;
  7888. font-size:18px;
  7889. }
  7890. #u131669 .text {
  7891. position:absolute;
  7892. align-self:flex-start;
  7893. padding:0px 0px 0px 0px;
  7894. box-sizing:border-box;
  7895. width:100%;
  7896. }
  7897. #u131669_text {
  7898. border-width:0px;
  7899. white-space:nowrap;
  7900. text-transform:none;
  7901. }
  7902. #u131670 {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:0px;
  7906. top:0px;
  7907. width:0px;
  7908. height:0px;
  7909. }
  7910. #u131671_div {
  7911. border-width:0px;
  7912. position:absolute;
  7913. left:0px;
  7914. top:0px;
  7915. width:342px;
  7916. height:40px;
  7917. background:inherit;
  7918. background-color:rgba(255, 255, 255, 0.8);
  7919. border:none;
  7920. border-radius:19px;
  7921. -moz-box-shadow:none;
  7922. -webkit-box-shadow:none;
  7923. box-shadow:none;
  7924. font-family:'Microsoft YaHei', sans-serif;
  7925. font-weight:400;
  7926. font-style:normal;
  7927. font-size:14px;
  7928. color:#CCCCCC;
  7929. text-align:left;
  7930. }
  7931. #u131671 {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:953px;
  7935. top:1050px;
  7936. width:342px;
  7937. height:40px;
  7938. display:flex;
  7939. font-family:'Microsoft YaHei', sans-serif;
  7940. font-weight:400;
  7941. font-style:normal;
  7942. font-size:14px;
  7943. color:#CCCCCC;
  7944. text-align:left;
  7945. }
  7946. #u131671 .text {
  7947. position:absolute;
  7948. align-self:center;
  7949. padding:2px 8px 2px 8px;
  7950. box-sizing:border-box;
  7951. width:100%;
  7952. }
  7953. #u131671_text {
  7954. border-width:0px;
  7955. word-wrap:break-word;
  7956. text-transform:none;
  7957. visibility:hidden;
  7958. }
  7959. #u131672_input {
  7960. position:absolute;
  7961. left:0px;
  7962. top:0px;
  7963. width:297px;
  7964. height:40px;
  7965. padding:2px 2px 2px 2px;
  7966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7967. font-weight:400;
  7968. font-style:normal;
  7969. font-size:14px;
  7970. letter-spacing:normal;
  7971. color:#000000;
  7972. vertical-align:none;
  7973. text-align:left;
  7974. text-transform:none;
  7975. background-color:transparent;
  7976. border-color:transparent;
  7977. }
  7978. #u131672_input.disabled {
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:297px;
  7983. height:40px;
  7984. padding:2px 2px 2px 2px;
  7985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:14px;
  7989. letter-spacing:normal;
  7990. color:#000000;
  7991. vertical-align:none;
  7992. text-align:left;
  7993. text-transform:none;
  7994. background-color:transparent;
  7995. border-color:transparent;
  7996. }
  7997. #u131672_div {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:0px;
  8001. top:0px;
  8002. width:297px;
  8003. height:40px;
  8004. background:inherit;
  8005. background-color:rgba(255, 255, 255, 0);
  8006. border:none;
  8007. border-radius:0px;
  8008. -moz-box-shadow:none;
  8009. -webkit-box-shadow:none;
  8010. box-shadow:none;
  8011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8012. font-weight:400;
  8013. font-style:normal;
  8014. font-size:14px;
  8015. }
  8016. #u131672 {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:983px;
  8020. top:1051px;
  8021. width:297px;
  8022. height:40px;
  8023. display:flex;
  8024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8025. font-weight:400;
  8026. font-style:normal;
  8027. font-size:14px;
  8028. }
  8029. #u131672 .text {
  8030. position:absolute;
  8031. align-self:center;
  8032. padding:2px 2px 2px 2px;
  8033. box-sizing:border-box;
  8034. width:100%;
  8035. }
  8036. #u131672_div.disabled {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:0px;
  8040. top:0px;
  8041. width:297px;
  8042. height:40px;
  8043. background:inherit;
  8044. background-color:rgba(240, 240, 240, 1);
  8045. border:none;
  8046. border-radius:0px;
  8047. -moz-box-shadow:none;
  8048. -webkit-box-shadow:none;
  8049. box-shadow:none;
  8050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8051. font-weight:400;
  8052. font-style:normal;
  8053. font-size:14px;
  8054. }
  8055. #u131672.disabled {
  8056. }
  8057. #u131673_img {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:14px;
  8063. height:14px;
  8064. }
  8065. #u131673 {
  8066. border-width:0px;
  8067. position:absolute;
  8068. left:963px;
  8069. top:1063px;
  8070. width:14px;
  8071. height:14px;
  8072. display:flex;
  8073. }
  8074. #u131673 .text {
  8075. position:absolute;
  8076. align-self:center;
  8077. padding:2px 2px 2px 2px;
  8078. box-sizing:border-box;
  8079. width:100%;
  8080. }
  8081. #u131673_text {
  8082. border-width:0px;
  8083. word-wrap:break-word;
  8084. text-transform:none;
  8085. visibility:hidden;
  8086. }
  8087. #u131674_div {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:0px;
  8091. top:0px;
  8092. width:375px;
  8093. height:40px;
  8094. background:inherit;
  8095. background-color:rgba(255, 255, 255, 1);
  8096. border:none;
  8097. border-left:0px;
  8098. border-top:0px;
  8099. border-right:0px;
  8100. border-radius:0px;
  8101. border-bottom-right-radius:0px;
  8102. border-bottom-left-radius:0px;
  8103. -moz-box-shadow:none;
  8104. -webkit-box-shadow:none;
  8105. box-shadow:none;
  8106. }
  8107. #u131674 {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:935px;
  8111. top:1000px;
  8112. width:375px;
  8113. height:40px;
  8114. display:flex;
  8115. }
  8116. #u131674 .text {
  8117. position:absolute;
  8118. align-self:center;
  8119. padding:2px 2px 2px 2px;
  8120. box-sizing:border-box;
  8121. width:100%;
  8122. }
  8123. #u131674_text {
  8124. border-width:0px;
  8125. word-wrap:break-word;
  8126. text-transform:none;
  8127. visibility:hidden;
  8128. }
  8129. #u131675_div {
  8130. border-width:0px;
  8131. position:absolute;
  8132. left:0px;
  8133. top:0px;
  8134. width:43px;
  8135. height:40px;
  8136. background:inherit;
  8137. background-color:rgba(255, 255, 255, 0);
  8138. box-sizing:border-box;
  8139. border-width:3px;
  8140. border-style:solid;
  8141. border-color:rgba(51, 51, 51, 1);
  8142. border-left:0px;
  8143. border-top:0px;
  8144. border-right:0px;
  8145. border-radius:0px;
  8146. border-bottom-right-radius:0px;
  8147. border-bottom-left-radius:0px;
  8148. -moz-box-shadow:none;
  8149. -webkit-box-shadow:none;
  8150. box-shadow:none;
  8151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8152. font-weight:400;
  8153. font-style:normal;
  8154. font-size:14px;
  8155. line-height:30px;
  8156. }
  8157. #u131675 {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:1042px;
  8161. top:1000px;
  8162. width:43px;
  8163. height:40px;
  8164. display:flex;
  8165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8166. font-weight:400;
  8167. font-style:normal;
  8168. font-size:14px;
  8169. line-height:30px;
  8170. }
  8171. #u131675 .text {
  8172. position:absolute;
  8173. align-self:center;
  8174. padding:0px 0px 0px 0px;
  8175. box-sizing:border-box;
  8176. width:100%;
  8177. }
  8178. #u131675_text {
  8179. border-width:0px;
  8180. white-space:nowrap;
  8181. text-transform:none;
  8182. }
  8183. #u131676_div {
  8184. border-width:0px;
  8185. position:absolute;
  8186. left:0px;
  8187. top:0px;
  8188. width:43px;
  8189. height:40px;
  8190. background:inherit;
  8191. background-color:rgba(255, 255, 255, 0);
  8192. border:none;
  8193. border-left:0px;
  8194. border-top:0px;
  8195. border-right:0px;
  8196. border-radius:0px;
  8197. border-bottom-right-radius:0px;
  8198. border-bottom-left-radius:0px;
  8199. -moz-box-shadow:none;
  8200. -webkit-box-shadow:none;
  8201. box-shadow:none;
  8202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8203. font-weight:400;
  8204. font-style:normal;
  8205. font-size:14px;
  8206. line-height:30px;
  8207. }
  8208. #u131676 {
  8209. border-width:0px;
  8210. position:absolute;
  8211. left:1161px;
  8212. top:1000px;
  8213. width:43px;
  8214. height:40px;
  8215. display:flex;
  8216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8217. font-weight:400;
  8218. font-style:normal;
  8219. font-size:14px;
  8220. line-height:30px;
  8221. }
  8222. #u131676 .text {
  8223. position:absolute;
  8224. align-self:center;
  8225. padding:0px 0px 0px 0px;
  8226. box-sizing:border-box;
  8227. width:100%;
  8228. }
  8229. #u131676_text {
  8230. border-width:0px;
  8231. white-space:nowrap;
  8232. text-transform:none;
  8233. }
  8234. #u131677 {
  8235. border-width:0px;
  8236. position:absolute;
  8237. left:0px;
  8238. top:0px;
  8239. width:0px;
  8240. height:0px;
  8241. }
  8242. #u131678_div {
  8243. border-width:0px;
  8244. position:absolute;
  8245. left:0px;
  8246. top:0px;
  8247. width:375px;
  8248. height:50px;
  8249. background:inherit;
  8250. background-color:rgba(255, 255, 255, 1);
  8251. border:none;
  8252. border-left:0px;
  8253. border-top:0px;
  8254. border-right:0px;
  8255. border-radius:0px;
  8256. border-bottom-right-radius:0px;
  8257. border-bottom-left-radius:0px;
  8258. -moz-box-shadow:none;
  8259. -webkit-box-shadow:none;
  8260. box-shadow:none;
  8261. }
  8262. #u131678 {
  8263. border-width:0px;
  8264. position:absolute;
  8265. left:935px;
  8266. top:1101px;
  8267. width:375px;
  8268. height:50px;
  8269. display:flex;
  8270. }
  8271. #u131678 .text {
  8272. position:absolute;
  8273. align-self:center;
  8274. padding:2px 2px 2px 2px;
  8275. box-sizing:border-box;
  8276. width:100%;
  8277. }
  8278. #u131678_text {
  8279. border-width:0px;
  8280. word-wrap:break-word;
  8281. text-transform:none;
  8282. visibility:hidden;
  8283. }
  8284. #u131679_div {
  8285. border-width:0px;
  8286. position:absolute;
  8287. left:0px;
  8288. top:0px;
  8289. width:85px;
  8290. height:30px;
  8291. background:inherit;
  8292. background-color:rgba(255, 255, 255, 0);
  8293. border:none;
  8294. border-left:0px;
  8295. border-top:0px;
  8296. border-right:0px;
  8297. border-radius:0px;
  8298. border-bottom-right-radius:0px;
  8299. border-bottom-left-radius:0px;
  8300. -moz-box-shadow:none;
  8301. -webkit-box-shadow:none;
  8302. box-shadow:none;
  8303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8304. font-weight:400;
  8305. font-style:normal;
  8306. font-size:14px;
  8307. line-height:30px;
  8308. }
  8309. #u131679 {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:955px;
  8313. top:1111px;
  8314. width:85px;
  8315. height:30px;
  8316. display:flex;
  8317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8318. font-weight:400;
  8319. font-style:normal;
  8320. font-size:14px;
  8321. line-height:30px;
  8322. }
  8323. #u131679 .text {
  8324. position:absolute;
  8325. align-self:center;
  8326. padding:0px 0px 0px 0px;
  8327. box-sizing:border-box;
  8328. width:100%;
  8329. }
  8330. #u131679_text {
  8331. border-width:0px;
  8332. white-space:nowrap;
  8333. text-transform:none;
  8334. }
  8335. #u131680_div {
  8336. border-width:0px;
  8337. position:absolute;
  8338. left:0px;
  8339. top:0px;
  8340. width:8px;
  8341. height:8px;
  8342. background:inherit;
  8343. background-color:rgba(255, 255, 255, 0);
  8344. box-sizing:border-box;
  8345. border-width:1px;
  8346. border-style:solid;
  8347. border-color:rgba(127, 127, 127, 1);
  8348. border-right:0px;
  8349. border-bottom:0px;
  8350. border-radius:0px;
  8351. border-top-right-radius:0px;
  8352. border-bottom-left-radius:0px;
  8353. -moz-box-shadow:none;
  8354. -webkit-box-shadow:none;
  8355. box-shadow:none;
  8356. }
  8357. #u131680 {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:1285px;
  8361. top:1122px;
  8362. width:8px;
  8363. height:8px;
  8364. display:flex;
  8365. -webkit-transform:rotate(135deg);
  8366. -moz-transform:rotate(135deg);
  8367. -ms-transform:rotate(135deg);
  8368. transform:rotate(135deg);
  8369. }
  8370. #u131680 .text {
  8371. position:absolute;
  8372. align-self:center;
  8373. padding:2px 2px 2px 2px;
  8374. box-sizing:border-box;
  8375. width:100%;
  8376. }
  8377. #u131680_text {
  8378. border-width:0px;
  8379. word-wrap:break-word;
  8380. text-transform:none;
  8381. visibility:hidden;
  8382. }
  8383. #u131681_div {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:0px;
  8387. top:0px;
  8388. width:29px;
  8389. height:30px;
  8390. background:inherit;
  8391. background-color:rgba(255, 255, 255, 0);
  8392. border:none;
  8393. border-left:0px;
  8394. border-top:0px;
  8395. border-right:0px;
  8396. border-radius:0px;
  8397. border-bottom-right-radius:0px;
  8398. border-bottom-left-radius:0px;
  8399. -moz-box-shadow:none;
  8400. -webkit-box-shadow:none;
  8401. box-shadow:none;
  8402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8403. font-weight:400;
  8404. font-style:normal;
  8405. font-size:14px;
  8406. color:#00BFBF;
  8407. text-align:right;
  8408. line-height:30px;
  8409. }
  8410. #u131681 {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:1249px;
  8414. top:1111px;
  8415. width:29px;
  8416. height:30px;
  8417. display:flex;
  8418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8419. font-weight:400;
  8420. font-style:normal;
  8421. font-size:14px;
  8422. color:#00BFBF;
  8423. text-align:right;
  8424. line-height:30px;
  8425. }
  8426. #u131681 .text {
  8427. position:absolute;
  8428. align-self:center;
  8429. padding:0px 0px 0px 0px;
  8430. box-sizing:border-box;
  8431. width:100%;
  8432. }
  8433. #u131681_text {
  8434. border-width:0px;
  8435. white-space:nowrap;
  8436. text-transform:none;
  8437. }
  8438. #u131682 {
  8439. border-width:0px;
  8440. position:absolute;
  8441. left:0px;
  8442. top:0px;
  8443. width:0px;
  8444. height:0px;
  8445. }
  8446. #u131683_div {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:375px;
  8452. height:50px;
  8453. background:inherit;
  8454. background-color:rgba(255, 255, 255, 1);
  8455. border:none;
  8456. border-left:0px;
  8457. border-top:0px;
  8458. border-right:0px;
  8459. border-radius:0px;
  8460. border-bottom-right-radius:0px;
  8461. border-bottom-left-radius:0px;
  8462. -moz-box-shadow:none;
  8463. -webkit-box-shadow:none;
  8464. box-shadow:none;
  8465. }
  8466. #u131683 {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:935px;
  8470. top:1152px;
  8471. width:375px;
  8472. height:50px;
  8473. display:flex;
  8474. }
  8475. #u131683 .text {
  8476. position:absolute;
  8477. align-self:center;
  8478. padding:2px 2px 2px 2px;
  8479. box-sizing:border-box;
  8480. width:100%;
  8481. }
  8482. #u131683_text {
  8483. border-width:0px;
  8484. word-wrap:break-word;
  8485. text-transform:none;
  8486. visibility:hidden;
  8487. }
  8488. #u131684_div {
  8489. border-width:0px;
  8490. position:absolute;
  8491. left:0px;
  8492. top:0px;
  8493. width:85px;
  8494. height:30px;
  8495. background:inherit;
  8496. background-color:rgba(255, 255, 255, 0);
  8497. border:none;
  8498. border-left:0px;
  8499. border-top:0px;
  8500. border-right:0px;
  8501. border-radius:0px;
  8502. border-bottom-right-radius:0px;
  8503. border-bottom-left-radius:0px;
  8504. -moz-box-shadow:none;
  8505. -webkit-box-shadow:none;
  8506. box-shadow:none;
  8507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8508. font-weight:400;
  8509. font-style:normal;
  8510. font-size:14px;
  8511. line-height:30px;
  8512. }
  8513. #u131684 {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:955px;
  8517. top:1162px;
  8518. width:85px;
  8519. height:30px;
  8520. display:flex;
  8521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8522. font-weight:400;
  8523. font-style:normal;
  8524. font-size:14px;
  8525. line-height:30px;
  8526. }
  8527. #u131684 .text {
  8528. position:absolute;
  8529. align-self:center;
  8530. padding:0px 0px 0px 0px;
  8531. box-sizing:border-box;
  8532. width:100%;
  8533. }
  8534. #u131684_text {
  8535. border-width:0px;
  8536. white-space:nowrap;
  8537. text-transform:none;
  8538. }
  8539. #u131685_div {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:0px;
  8543. top:0px;
  8544. width:8px;
  8545. height:8px;
  8546. background:inherit;
  8547. background-color:rgba(255, 255, 255, 0);
  8548. box-sizing:border-box;
  8549. border-width:1px;
  8550. border-style:solid;
  8551. border-color:rgba(127, 127, 127, 1);
  8552. border-right:0px;
  8553. border-bottom:0px;
  8554. border-radius:0px;
  8555. border-top-right-radius:0px;
  8556. border-bottom-left-radius:0px;
  8557. -moz-box-shadow:none;
  8558. -webkit-box-shadow:none;
  8559. box-shadow:none;
  8560. }
  8561. #u131685 {
  8562. border-width:0px;
  8563. position:absolute;
  8564. left:1285px;
  8565. top:1173px;
  8566. width:8px;
  8567. height:8px;
  8568. display:flex;
  8569. -webkit-transform:rotate(135deg);
  8570. -moz-transform:rotate(135deg);
  8571. -ms-transform:rotate(135deg);
  8572. transform:rotate(135deg);
  8573. }
  8574. #u131685 .text {
  8575. position:absolute;
  8576. align-self:center;
  8577. padding:2px 2px 2px 2px;
  8578. box-sizing:border-box;
  8579. width:100%;
  8580. }
  8581. #u131685_text {
  8582. border-width:0px;
  8583. word-wrap:break-word;
  8584. text-transform:none;
  8585. visibility:hidden;
  8586. }
  8587. #u131686_div {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:0px;
  8591. top:0px;
  8592. width:29px;
  8593. height:30px;
  8594. background:inherit;
  8595. background-color:rgba(255, 255, 255, 0);
  8596. border:none;
  8597. border-left:0px;
  8598. border-top:0px;
  8599. border-right:0px;
  8600. border-radius:0px;
  8601. border-bottom-right-radius:0px;
  8602. border-bottom-left-radius:0px;
  8603. -moz-box-shadow:none;
  8604. -webkit-box-shadow:none;
  8605. box-shadow:none;
  8606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8607. font-weight:400;
  8608. font-style:normal;
  8609. font-size:14px;
  8610. color:#00BFBF;
  8611. text-align:right;
  8612. line-height:30px;
  8613. }
  8614. #u131686 {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:1249px;
  8618. top:1162px;
  8619. width:29px;
  8620. height:30px;
  8621. display:flex;
  8622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8623. font-weight:400;
  8624. font-style:normal;
  8625. font-size:14px;
  8626. color:#00BFBF;
  8627. text-align:right;
  8628. line-height:30px;
  8629. }
  8630. #u131686 .text {
  8631. position:absolute;
  8632. align-self:center;
  8633. padding:0px 0px 0px 0px;
  8634. box-sizing:border-box;
  8635. width:100%;
  8636. }
  8637. #u131686_text {
  8638. border-width:0px;
  8639. white-space:nowrap;
  8640. text-transform:none;
  8641. }
  8642. #u131687 {
  8643. border-width:0px;
  8644. position:absolute;
  8645. left:0px;
  8646. top:0px;
  8647. width:0px;
  8648. height:0px;
  8649. }
  8650. #u131688_div {
  8651. border-width:0px;
  8652. position:absolute;
  8653. left:0px;
  8654. top:0px;
  8655. width:375px;
  8656. height:50px;
  8657. background:inherit;
  8658. background-color:rgba(255, 255, 255, 1);
  8659. border:none;
  8660. border-left:0px;
  8661. border-top:0px;
  8662. border-right:0px;
  8663. border-radius:0px;
  8664. border-bottom-right-radius:0px;
  8665. border-bottom-left-radius:0px;
  8666. -moz-box-shadow:none;
  8667. -webkit-box-shadow:none;
  8668. box-shadow:none;
  8669. }
  8670. #u131688 {
  8671. border-width:0px;
  8672. position:absolute;
  8673. left:935px;
  8674. top:1203px;
  8675. width:375px;
  8676. height:50px;
  8677. display:flex;
  8678. }
  8679. #u131688 .text {
  8680. position:absolute;
  8681. align-self:center;
  8682. padding:2px 2px 2px 2px;
  8683. box-sizing:border-box;
  8684. width:100%;
  8685. }
  8686. #u131688_text {
  8687. border-width:0px;
  8688. word-wrap:break-word;
  8689. text-transform:none;
  8690. visibility:hidden;
  8691. }
  8692. #u131689_div {
  8693. border-width:0px;
  8694. position:absolute;
  8695. left:0px;
  8696. top:0px;
  8697. width:85px;
  8698. height:30px;
  8699. background:inherit;
  8700. background-color:rgba(255, 255, 255, 0);
  8701. border:none;
  8702. border-left:0px;
  8703. border-top:0px;
  8704. border-right:0px;
  8705. border-radius:0px;
  8706. border-bottom-right-radius:0px;
  8707. border-bottom-left-radius:0px;
  8708. -moz-box-shadow:none;
  8709. -webkit-box-shadow:none;
  8710. box-shadow:none;
  8711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8712. font-weight:400;
  8713. font-style:normal;
  8714. font-size:14px;
  8715. line-height:30px;
  8716. }
  8717. #u131689 {
  8718. border-width:0px;
  8719. position:absolute;
  8720. left:955px;
  8721. top:1213px;
  8722. width:85px;
  8723. height:30px;
  8724. display:flex;
  8725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8726. font-weight:400;
  8727. font-style:normal;
  8728. font-size:14px;
  8729. line-height:30px;
  8730. }
  8731. #u131689 .text {
  8732. position:absolute;
  8733. align-self:center;
  8734. padding:0px 0px 0px 0px;
  8735. box-sizing:border-box;
  8736. width:100%;
  8737. }
  8738. #u131689_text {
  8739. border-width:0px;
  8740. white-space:nowrap;
  8741. text-transform:none;
  8742. }
  8743. #u131690_div {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:0px;
  8747. top:0px;
  8748. width:8px;
  8749. height:8px;
  8750. background:inherit;
  8751. background-color:rgba(255, 255, 255, 0);
  8752. box-sizing:border-box;
  8753. border-width:1px;
  8754. border-style:solid;
  8755. border-color:rgba(127, 127, 127, 1);
  8756. border-right:0px;
  8757. border-bottom:0px;
  8758. border-radius:0px;
  8759. border-top-right-radius:0px;
  8760. border-bottom-left-radius:0px;
  8761. -moz-box-shadow:none;
  8762. -webkit-box-shadow:none;
  8763. box-shadow:none;
  8764. }
  8765. #u131690 {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:1285px;
  8769. top:1224px;
  8770. width:8px;
  8771. height:8px;
  8772. display:flex;
  8773. -webkit-transform:rotate(135deg);
  8774. -moz-transform:rotate(135deg);
  8775. -ms-transform:rotate(135deg);
  8776. transform:rotate(135deg);
  8777. }
  8778. #u131690 .text {
  8779. position:absolute;
  8780. align-self:center;
  8781. padding:2px 2px 2px 2px;
  8782. box-sizing:border-box;
  8783. width:100%;
  8784. }
  8785. #u131690_text {
  8786. border-width:0px;
  8787. word-wrap:break-word;
  8788. text-transform:none;
  8789. visibility:hidden;
  8790. }
  8791. #u131691_div {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:0px;
  8795. top:0px;
  8796. width:29px;
  8797. height:30px;
  8798. background:inherit;
  8799. background-color:rgba(255, 255, 255, 0);
  8800. border:none;
  8801. border-left:0px;
  8802. border-top:0px;
  8803. border-right:0px;
  8804. border-radius:0px;
  8805. border-bottom-right-radius:0px;
  8806. border-bottom-left-radius:0px;
  8807. -moz-box-shadow:none;
  8808. -webkit-box-shadow:none;
  8809. box-shadow:none;
  8810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8811. font-weight:400;
  8812. font-style:normal;
  8813. font-size:14px;
  8814. color:#00BFBF;
  8815. text-align:right;
  8816. line-height:30px;
  8817. }
  8818. #u131691 {
  8819. border-width:0px;
  8820. position:absolute;
  8821. left:1249px;
  8822. top:1213px;
  8823. width:29px;
  8824. height:30px;
  8825. display:flex;
  8826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8827. font-weight:400;
  8828. font-style:normal;
  8829. font-size:14px;
  8830. color:#00BFBF;
  8831. text-align:right;
  8832. line-height:30px;
  8833. }
  8834. #u131691 .text {
  8835. position:absolute;
  8836. align-self:center;
  8837. padding:0px 0px 0px 0px;
  8838. box-sizing:border-box;
  8839. width:100%;
  8840. }
  8841. #u131691_text {
  8842. border-width:0px;
  8843. white-space:nowrap;
  8844. text-transform:none;
  8845. }
  8846. #u131692 {
  8847. border-width:0px;
  8848. position:absolute;
  8849. left:0px;
  8850. top:0px;
  8851. width:0px;
  8852. height:0px;
  8853. }
  8854. #u131693_div {
  8855. border-width:0px;
  8856. position:absolute;
  8857. left:0px;
  8858. top:0px;
  8859. width:375px;
  8860. height:50px;
  8861. background:inherit;
  8862. background-color:rgba(255, 255, 255, 1);
  8863. border:none;
  8864. border-left:0px;
  8865. border-top:0px;
  8866. border-right:0px;
  8867. border-radius:0px;
  8868. border-bottom-right-radius:0px;
  8869. border-bottom-left-radius:0px;
  8870. -moz-box-shadow:none;
  8871. -webkit-box-shadow:none;
  8872. box-shadow:none;
  8873. }
  8874. #u131693 {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:935px;
  8878. top:1254px;
  8879. width:375px;
  8880. height:50px;
  8881. display:flex;
  8882. }
  8883. #u131693 .text {
  8884. position:absolute;
  8885. align-self:center;
  8886. padding:2px 2px 2px 2px;
  8887. box-sizing:border-box;
  8888. width:100%;
  8889. }
  8890. #u131693_text {
  8891. border-width:0px;
  8892. word-wrap:break-word;
  8893. text-transform:none;
  8894. visibility:hidden;
  8895. }
  8896. #u131694_div {
  8897. border-width:0px;
  8898. position:absolute;
  8899. left:0px;
  8900. top:0px;
  8901. width:85px;
  8902. height:30px;
  8903. background:inherit;
  8904. background-color:rgba(255, 255, 255, 0);
  8905. border:none;
  8906. border-left:0px;
  8907. border-top:0px;
  8908. border-right:0px;
  8909. border-radius:0px;
  8910. border-bottom-right-radius:0px;
  8911. border-bottom-left-radius:0px;
  8912. -moz-box-shadow:none;
  8913. -webkit-box-shadow:none;
  8914. box-shadow:none;
  8915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8916. font-weight:400;
  8917. font-style:normal;
  8918. font-size:14px;
  8919. line-height:30px;
  8920. }
  8921. #u131694 {
  8922. border-width:0px;
  8923. position:absolute;
  8924. left:955px;
  8925. top:1264px;
  8926. width:85px;
  8927. height:30px;
  8928. display:flex;
  8929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8930. font-weight:400;
  8931. font-style:normal;
  8932. font-size:14px;
  8933. line-height:30px;
  8934. }
  8935. #u131694 .text {
  8936. position:absolute;
  8937. align-self:center;
  8938. padding:0px 0px 0px 0px;
  8939. box-sizing:border-box;
  8940. width:100%;
  8941. }
  8942. #u131694_text {
  8943. border-width:0px;
  8944. white-space:nowrap;
  8945. text-transform:none;
  8946. }
  8947. #u131695_div {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:0px;
  8951. top:0px;
  8952. width:8px;
  8953. height:8px;
  8954. background:inherit;
  8955. background-color:rgba(255, 255, 255, 0);
  8956. box-sizing:border-box;
  8957. border-width:1px;
  8958. border-style:solid;
  8959. border-color:rgba(127, 127, 127, 1);
  8960. border-right:0px;
  8961. border-bottom:0px;
  8962. border-radius:0px;
  8963. border-top-right-radius:0px;
  8964. border-bottom-left-radius:0px;
  8965. -moz-box-shadow:none;
  8966. -webkit-box-shadow:none;
  8967. box-shadow:none;
  8968. }
  8969. #u131695 {
  8970. border-width:0px;
  8971. position:absolute;
  8972. left:1285px;
  8973. top:1275px;
  8974. width:8px;
  8975. height:8px;
  8976. display:flex;
  8977. -webkit-transform:rotate(135deg);
  8978. -moz-transform:rotate(135deg);
  8979. -ms-transform:rotate(135deg);
  8980. transform:rotate(135deg);
  8981. }
  8982. #u131695 .text {
  8983. position:absolute;
  8984. align-self:center;
  8985. padding:2px 2px 2px 2px;
  8986. box-sizing:border-box;
  8987. width:100%;
  8988. }
  8989. #u131695_text {
  8990. border-width:0px;
  8991. word-wrap:break-word;
  8992. text-transform:none;
  8993. visibility:hidden;
  8994. }
  8995. #u131696_div {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:0px;
  8999. top:0px;
  9000. width:29px;
  9001. height:30px;
  9002. background:inherit;
  9003. background-color:rgba(255, 255, 255, 0);
  9004. border:none;
  9005. border-left:0px;
  9006. border-top:0px;
  9007. border-right:0px;
  9008. border-radius:0px;
  9009. border-bottom-right-radius:0px;
  9010. border-bottom-left-radius:0px;
  9011. -moz-box-shadow:none;
  9012. -webkit-box-shadow:none;
  9013. box-shadow:none;
  9014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9015. font-weight:400;
  9016. font-style:normal;
  9017. font-size:14px;
  9018. color:#00BFBF;
  9019. text-align:right;
  9020. line-height:30px;
  9021. }
  9022. #u131696 {
  9023. border-width:0px;
  9024. position:absolute;
  9025. left:1249px;
  9026. top:1264px;
  9027. width:29px;
  9028. height:30px;
  9029. display:flex;
  9030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9031. font-weight:400;
  9032. font-style:normal;
  9033. font-size:14px;
  9034. color:#00BFBF;
  9035. text-align:right;
  9036. line-height:30px;
  9037. }
  9038. #u131696 .text {
  9039. position:absolute;
  9040. align-self:center;
  9041. padding:0px 0px 0px 0px;
  9042. box-sizing:border-box;
  9043. width:100%;
  9044. }
  9045. #u131696_text {
  9046. border-width:0px;
  9047. white-space:nowrap;
  9048. text-transform:none;
  9049. }
  9050. #u131698_img {
  9051. border-width:0px;
  9052. position:absolute;
  9053. left:0px;
  9054. top:0px;
  9055. width:433px;
  9056. height:865px;
  9057. }
  9058. #u131698 {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:1359px;
  9062. top:894px;
  9063. width:433px;
  9064. height:865px;
  9065. display:flex;
  9066. }
  9067. #u131698 .text {
  9068. position:absolute;
  9069. align-self:center;
  9070. padding:2px 2px 2px 2px;
  9071. box-sizing:border-box;
  9072. width:100%;
  9073. }
  9074. #u131698_text {
  9075. border-width:0px;
  9076. word-wrap:break-word;
  9077. text-transform:none;
  9078. visibility:hidden;
  9079. }
  9080. #u131699_div {
  9081. border-width:0px;
  9082. position:absolute;
  9083. left:0px;
  9084. top:0px;
  9085. width:375px;
  9086. height:40px;
  9087. background:inherit;
  9088. background-color:rgba(255, 255, 255, 1);
  9089. box-sizing:border-box;
  9090. border-width:1px;
  9091. border-style:solid;
  9092. border-color:rgba(215, 215, 215, 1);
  9093. border-left:0px;
  9094. border-top:0px;
  9095. border-right:0px;
  9096. border-radius:0px;
  9097. border-bottom-right-radius:0px;
  9098. border-bottom-left-radius:0px;
  9099. -moz-box-shadow:none;
  9100. -webkit-box-shadow:none;
  9101. box-shadow:none;
  9102. }
  9103. #u131699 {
  9104. border-width:0px;
  9105. position:absolute;
  9106. left:1388px;
  9107. top:961px;
  9108. width:375px;
  9109. height:40px;
  9110. display:flex;
  9111. }
  9112. #u131699 .text {
  9113. position:absolute;
  9114. align-self:center;
  9115. padding:2px 2px 2px 2px;
  9116. box-sizing:border-box;
  9117. width:100%;
  9118. }
  9119. #u131699_text {
  9120. border-width:0px;
  9121. word-wrap:break-word;
  9122. text-transform:none;
  9123. visibility:hidden;
  9124. }
  9125. #u131700 {
  9126. border-width:0px;
  9127. position:absolute;
  9128. left:0px;
  9129. top:0px;
  9130. width:0px;
  9131. height:0px;
  9132. }
  9133. #u131701_div {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:0px;
  9137. top:0px;
  9138. width:88px;
  9139. height:32px;
  9140. background:inherit;
  9141. background-color:rgba(255, 255, 255, 1);
  9142. box-sizing:border-box;
  9143. border-width:1px;
  9144. border-style:solid;
  9145. border-color:rgba(242, 242, 242, 1);
  9146. border-radius:33px;
  9147. -moz-box-shadow:none;
  9148. -webkit-box-shadow:none;
  9149. box-shadow:none;
  9150. }
  9151. #u131701 {
  9152. border-width:0px;
  9153. position:absolute;
  9154. left:1668px;
  9155. top:965px;
  9156. width:88px;
  9157. height:32px;
  9158. display:flex;
  9159. }
  9160. #u131701 .text {
  9161. position:absolute;
  9162. align-self:center;
  9163. padding:2px 2px 2px 2px;
  9164. box-sizing:border-box;
  9165. width:100%;
  9166. }
  9167. #u131701_text {
  9168. border-width:0px;
  9169. word-wrap:break-word;
  9170. text-transform:none;
  9171. visibility:hidden;
  9172. }
  9173. #u131702 {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:0px;
  9177. top:0px;
  9178. width:0px;
  9179. height:0px;
  9180. }
  9181. #u131703_img {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:0px;
  9185. top:0px;
  9186. width:18px;
  9187. height:18px;
  9188. }
  9189. #u131703 {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:1731px;
  9193. top:972px;
  9194. width:18px;
  9195. height:18px;
  9196. display:flex;
  9197. }
  9198. #u131703 .text {
  9199. position:absolute;
  9200. align-self:center;
  9201. padding:2px 2px 2px 2px;
  9202. box-sizing:border-box;
  9203. width:100%;
  9204. }
  9205. #u131703_text {
  9206. border-width:0px;
  9207. word-wrap:break-word;
  9208. text-transform:none;
  9209. visibility:hidden;
  9210. }
  9211. #u131704_img {
  9212. border-width:0px;
  9213. position:absolute;
  9214. left:0px;
  9215. top:0px;
  9216. width:6px;
  9217. height:6px;
  9218. }
  9219. #u131704 {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:1737px;
  9223. top:978px;
  9224. width:6px;
  9225. height:6px;
  9226. display:flex;
  9227. }
  9228. #u131704 .text {
  9229. position:absolute;
  9230. align-self:center;
  9231. padding:2px 2px 2px 2px;
  9232. box-sizing:border-box;
  9233. width:100%;
  9234. }
  9235. #u131704_text {
  9236. border-width:0px;
  9237. word-wrap:break-word;
  9238. text-transform:none;
  9239. visibility:hidden;
  9240. }
  9241. #u131705 {
  9242. border-width:0px;
  9243. position:absolute;
  9244. left:0px;
  9245. top:0px;
  9246. width:0px;
  9247. height:0px;
  9248. }
  9249. #u131706_img {
  9250. border-width:0px;
  9251. position:absolute;
  9252. left:0px;
  9253. top:0px;
  9254. width:5px;
  9255. height:5px;
  9256. }
  9257. #u131706 {
  9258. border-width:0px;
  9259. position:absolute;
  9260. left:1682px;
  9261. top:979px;
  9262. width:5px;
  9263. height:5px;
  9264. display:flex;
  9265. }
  9266. #u131706 .text {
  9267. position:absolute;
  9268. align-self:center;
  9269. padding:2px 2px 2px 2px;
  9270. box-sizing:border-box;
  9271. width:100%;
  9272. }
  9273. #u131706_text {
  9274. border-width:0px;
  9275. word-wrap:break-word;
  9276. text-transform:none;
  9277. visibility:hidden;
  9278. }
  9279. #u131707_img {
  9280. border-width:0px;
  9281. position:absolute;
  9282. left:0px;
  9283. top:0px;
  9284. width:5px;
  9285. height:5px;
  9286. }
  9287. #u131707 {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:1698px;
  9291. top:979px;
  9292. width:5px;
  9293. height:5px;
  9294. display:flex;
  9295. }
  9296. #u131707 .text {
  9297. position:absolute;
  9298. align-self:center;
  9299. padding:2px 2px 2px 2px;
  9300. box-sizing:border-box;
  9301. width:100%;
  9302. }
  9303. #u131707_text {
  9304. border-width:0px;
  9305. word-wrap:break-word;
  9306. text-transform:none;
  9307. visibility:hidden;
  9308. }
  9309. #u131708_img {
  9310. border-width:0px;
  9311. position:absolute;
  9312. left:0px;
  9313. top:0px;
  9314. width:7px;
  9315. height:7px;
  9316. }
  9317. #u131708 {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:1689px;
  9321. top:978px;
  9322. width:7px;
  9323. height:7px;
  9324. display:flex;
  9325. }
  9326. #u131708 .text {
  9327. position:absolute;
  9328. align-self:center;
  9329. padding:2px 2px 2px 2px;
  9330. box-sizing:border-box;
  9331. width:100%;
  9332. }
  9333. #u131708_text {
  9334. border-width:0px;
  9335. word-wrap:break-word;
  9336. text-transform:none;
  9337. visibility:hidden;
  9338. }
  9339. #u131709_img {
  9340. border-width:0px;
  9341. position:absolute;
  9342. left:0px;
  9343. top:0px;
  9344. width:19px;
  9345. height:2px;
  9346. }
  9347. #u131709 {
  9348. border-width:0px;
  9349. position:absolute;
  9350. left:1706px;
  9351. top:981px;
  9352. width:18px;
  9353. height:1px;
  9354. display:flex;
  9355. -webkit-transform:rotate(90deg);
  9356. -moz-transform:rotate(90deg);
  9357. -ms-transform:rotate(90deg);
  9358. transform:rotate(90deg);
  9359. }
  9360. #u131709 .text {
  9361. position:absolute;
  9362. align-self:center;
  9363. padding:2px 2px 2px 2px;
  9364. box-sizing:border-box;
  9365. width:100%;
  9366. }
  9367. #u131709_text {
  9368. border-width:0px;
  9369. word-wrap:break-word;
  9370. text-transform:none;
  9371. visibility:hidden;
  9372. }
  9373. #u131710_img {
  9374. border-width:0px;
  9375. position:absolute;
  9376. left:0px;
  9377. top:0px;
  9378. width:375px;
  9379. height:44px;
  9380. }
  9381. #u131710 {
  9382. border-width:0px;
  9383. position:absolute;
  9384. left:1388px;
  9385. top:918px;
  9386. width:375px;
  9387. height:44px;
  9388. display:flex;
  9389. }
  9390. #u131710 .text {
  9391. position:absolute;
  9392. align-self:center;
  9393. padding:2px 2px 2px 2px;
  9394. box-sizing:border-box;
  9395. width:100%;
  9396. }
  9397. #u131710_text {
  9398. border-width:0px;
  9399. word-wrap:break-word;
  9400. text-transform:none;
  9401. visibility:hidden;
  9402. }
  9403. #u131711_div {
  9404. border-width:0px;
  9405. position:absolute;
  9406. left:0px;
  9407. top:0px;
  9408. width:375px;
  9409. height:50px;
  9410. background:inherit;
  9411. background-color:rgba(255, 255, 255, 1);
  9412. box-sizing:border-box;
  9413. border-width:1px;
  9414. border-style:solid;
  9415. border-color:rgba(242, 242, 242, 1);
  9416. border-radius:26px;
  9417. border-top-left-radius:0px;
  9418. border-top-right-radius:0px;
  9419. -moz-box-shadow:none;
  9420. -webkit-box-shadow:none;
  9421. box-shadow:none;
  9422. }
  9423. #u131711 {
  9424. border-width:0px;
  9425. position:absolute;
  9426. left:1388px;
  9427. top:1682px;
  9428. width:375px;
  9429. height:50px;
  9430. display:flex;
  9431. }
  9432. #u131711 .text {
  9433. position:absolute;
  9434. align-self:center;
  9435. padding:2px 2px 2px 2px;
  9436. box-sizing:border-box;
  9437. width:100%;
  9438. }
  9439. #u131711_text {
  9440. border-width:0px;
  9441. word-wrap:break-word;
  9442. text-transform:none;
  9443. visibility:hidden;
  9444. }
  9445. #u131712 {
  9446. border-width:0px;
  9447. position:absolute;
  9448. left:0px;
  9449. top:0px;
  9450. width:0px;
  9451. height:0px;
  9452. }
  9453. #u131713_img {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:24px;
  9459. height:24px;
  9460. }
  9461. #u131713 {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:1428px;
  9465. top:1686px;
  9466. width:24px;
  9467. height:24px;
  9468. display:flex;
  9469. font-size:8px;
  9470. }
  9471. #u131713 .text {
  9472. position:absolute;
  9473. align-self:center;
  9474. padding:2px 2px 2px 2px;
  9475. box-sizing:border-box;
  9476. width:100%;
  9477. }
  9478. #u131713_text {
  9479. border-width:0px;
  9480. word-wrap:break-word;
  9481. text-transform:none;
  9482. }
  9483. #u131714_div {
  9484. border-width:0px;
  9485. position:absolute;
  9486. left:0px;
  9487. top:0px;
  9488. width:25px;
  9489. height:17px;
  9490. background:inherit;
  9491. background-color:rgba(255, 255, 255, 0);
  9492. border:none;
  9493. border-radius:0px;
  9494. -moz-box-shadow:none;
  9495. -webkit-box-shadow:none;
  9496. box-shadow:none;
  9497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9498. font-weight:400;
  9499. font-style:normal;
  9500. font-size:12px;
  9501. }
  9502. #u131714 {
  9503. border-width:0px;
  9504. position:absolute;
  9505. left:1428px;
  9506. top:1711px;
  9507. width:25px;
  9508. height:17px;
  9509. display:flex;
  9510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9511. font-weight:400;
  9512. font-style:normal;
  9513. font-size:12px;
  9514. }
  9515. #u131714 .text {
  9516. position:absolute;
  9517. align-self:flex-start;
  9518. padding:0px 0px 0px 0px;
  9519. box-sizing:border-box;
  9520. width:100%;
  9521. }
  9522. #u131714_text {
  9523. border-width:0px;
  9524. white-space:nowrap;
  9525. text-transform:none;
  9526. }
  9527. #u131715 {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:0px;
  9531. top:0px;
  9532. width:0px;
  9533. height:0px;
  9534. }
  9535. #u131716_img {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:0px;
  9539. top:0px;
  9540. width:24px;
  9541. height:24px;
  9542. }
  9543. #u131716 {
  9544. border-width:0px;
  9545. position:absolute;
  9546. left:1698px;
  9547. top:1688px;
  9548. width:24px;
  9549. height:24px;
  9550. display:flex;
  9551. font-size:8px;
  9552. }
  9553. #u131716 .text {
  9554. position:absolute;
  9555. align-self:center;
  9556. padding:2px 2px 2px 2px;
  9557. box-sizing:border-box;
  9558. width:100%;
  9559. }
  9560. #u131716_text {
  9561. border-width:0px;
  9562. word-wrap:break-word;
  9563. text-transform:none;
  9564. }
  9565. #u131717_div {
  9566. border-width:0px;
  9567. position:absolute;
  9568. left:0px;
  9569. top:0px;
  9570. width:25px;
  9571. height:17px;
  9572. background:inherit;
  9573. background-color:rgba(255, 255, 255, 0);
  9574. border:none;
  9575. border-radius:0px;
  9576. -moz-box-shadow:none;
  9577. -webkit-box-shadow:none;
  9578. box-shadow:none;
  9579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9580. font-weight:400;
  9581. font-style:normal;
  9582. font-size:12px;
  9583. }
  9584. #u131717 {
  9585. border-width:0px;
  9586. position:absolute;
  9587. left:1698px;
  9588. top:1713px;
  9589. width:25px;
  9590. height:17px;
  9591. display:flex;
  9592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9593. font-weight:400;
  9594. font-style:normal;
  9595. font-size:12px;
  9596. }
  9597. #u131717 .text {
  9598. position:absolute;
  9599. align-self:flex-start;
  9600. padding:0px 0px 0px 0px;
  9601. box-sizing:border-box;
  9602. width:100%;
  9603. }
  9604. #u131717_text {
  9605. border-width:0px;
  9606. white-space:nowrap;
  9607. text-transform:none;
  9608. }
  9609. #u131718_div {
  9610. border-width:0px;
  9611. position:absolute;
  9612. left:0px;
  9613. top:0px;
  9614. width:375px;
  9615. height:681px;
  9616. background:inherit;
  9617. background-color:rgba(242, 242, 242, 0.462745098039216);
  9618. border:none;
  9619. border-radius:0px;
  9620. -moz-box-shadow:none;
  9621. -webkit-box-shadow:none;
  9622. box-shadow:none;
  9623. }
  9624. #u131718 {
  9625. border-width:0px;
  9626. position:absolute;
  9627. left:1388px;
  9628. top:1001px;
  9629. width:375px;
  9630. height:681px;
  9631. display:flex;
  9632. }
  9633. #u131718 .text {
  9634. position:absolute;
  9635. align-self:center;
  9636. padding:2px 2px 2px 2px;
  9637. box-sizing:border-box;
  9638. width:100%;
  9639. }
  9640. #u131718_text {
  9641. border-width:0px;
  9642. word-wrap:break-word;
  9643. text-transform:none;
  9644. visibility:hidden;
  9645. }
  9646. #u131719 {
  9647. border-width:0px;
  9648. position:absolute;
  9649. left:0px;
  9650. top:0px;
  9651. width:0px;
  9652. height:0px;
  9653. }
  9654. #u131720_img {
  9655. border-width:0px;
  9656. position:absolute;
  9657. left:0px;
  9658. top:0px;
  9659. width:24px;
  9660. height:24px;
  9661. }
  9662. #u131720 {
  9663. border-width:0px;
  9664. position:absolute;
  9665. left:1610px;
  9666. top:1686px;
  9667. width:24px;
  9668. height:24px;
  9669. display:flex;
  9670. font-size:8px;
  9671. }
  9672. #u131720 .text {
  9673. position:absolute;
  9674. align-self:center;
  9675. padding:2px 2px 2px 2px;
  9676. box-sizing:border-box;
  9677. width:100%;
  9678. }
  9679. #u131720_text {
  9680. border-width:0px;
  9681. word-wrap:break-word;
  9682. text-transform:none;
  9683. }
  9684. #u131721_div {
  9685. border-width:0px;
  9686. position:absolute;
  9687. left:0px;
  9688. top:0px;
  9689. width:37px;
  9690. height:17px;
  9691. background:inherit;
  9692. background-color:rgba(255, 255, 255, 0);
  9693. border:none;
  9694. border-radius:0px;
  9695. -moz-box-shadow:none;
  9696. -webkit-box-shadow:none;
  9697. box-shadow:none;
  9698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9699. font-weight:400;
  9700. font-style:normal;
  9701. font-size:12px;
  9702. }
  9703. #u131721 {
  9704. border-width:0px;
  9705. position:absolute;
  9706. left:1604px;
  9707. top:1711px;
  9708. width:37px;
  9709. height:17px;
  9710. display:flex;
  9711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9712. font-weight:400;
  9713. font-style:normal;
  9714. font-size:12px;
  9715. }
  9716. #u131721 .text {
  9717. position:absolute;
  9718. align-self:flex-start;
  9719. padding:0px 0px 0px 0px;
  9720. box-sizing:border-box;
  9721. width:100%;
  9722. }
  9723. #u131721_text {
  9724. border-width:0px;
  9725. white-space:nowrap;
  9726. text-transform:none;
  9727. }
  9728. #u131722 {
  9729. border-width:0px;
  9730. position:absolute;
  9731. left:0px;
  9732. top:0px;
  9733. width:0px;
  9734. height:0px;
  9735. }
  9736. #u131723_img {
  9737. border-width:0px;
  9738. position:absolute;
  9739. left:0px;
  9740. top:0px;
  9741. width:24px;
  9742. height:24px;
  9743. }
  9744. #u131723 {
  9745. border-width:0px;
  9746. position:absolute;
  9747. left:1516px;
  9748. top:1686px;
  9749. width:24px;
  9750. height:24px;
  9751. display:flex;
  9752. font-size:8px;
  9753. }
  9754. #u131723 .text {
  9755. position:absolute;
  9756. align-self:center;
  9757. padding:2px 2px 2px 2px;
  9758. box-sizing:border-box;
  9759. width:100%;
  9760. }
  9761. #u131723_text {
  9762. border-width:0px;
  9763. word-wrap:break-word;
  9764. text-transform:none;
  9765. }
  9766. #u131724_div {
  9767. border-width:0px;
  9768. position:absolute;
  9769. left:0px;
  9770. top:0px;
  9771. width:37px;
  9772. height:17px;
  9773. background:inherit;
  9774. background-color:rgba(255, 255, 255, 0);
  9775. border:none;
  9776. border-radius:0px;
  9777. -moz-box-shadow:none;
  9778. -webkit-box-shadow:none;
  9779. box-shadow:none;
  9780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9781. font-weight:400;
  9782. font-style:normal;
  9783. font-size:12px;
  9784. }
  9785. #u131724 {
  9786. border-width:0px;
  9787. position:absolute;
  9788. left:1510px;
  9789. top:1711px;
  9790. width:37px;
  9791. height:17px;
  9792. display:flex;
  9793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9794. font-weight:400;
  9795. font-style:normal;
  9796. font-size:12px;
  9797. }
  9798. #u131724 .text {
  9799. position:absolute;
  9800. align-self:flex-start;
  9801. padding:0px 0px 0px 0px;
  9802. box-sizing:border-box;
  9803. width:100%;
  9804. }
  9805. #u131724_text {
  9806. border-width:0px;
  9807. white-space:nowrap;
  9808. text-transform:none;
  9809. }
  9810. #u131725_img {
  9811. border-width:0px;
  9812. position:absolute;
  9813. left:0px;
  9814. top:0px;
  9815. width:375px;
  9816. height:739px;
  9817. }
  9818. #u131725 {
  9819. border-width:0px;
  9820. position:absolute;
  9821. left:1388px;
  9822. top:1000px;
  9823. width:375px;
  9824. height:739px;
  9825. display:flex;
  9826. }
  9827. #u131725 .text {
  9828. position:absolute;
  9829. align-self:center;
  9830. padding:2px 2px 2px 2px;
  9831. box-sizing:border-box;
  9832. width:100%;
  9833. }
  9834. #u131725_text {
  9835. border-width:0px;
  9836. word-wrap:break-word;
  9837. text-transform:none;
  9838. visibility:hidden;
  9839. }
  9840. #u131726_img {
  9841. border-width:0px;
  9842. position:absolute;
  9843. left:0px;
  9844. top:0px;
  9845. width:11px;
  9846. height:18px;
  9847. }
  9848. #u131726 {
  9849. border-width:0px;
  9850. position:absolute;
  9851. left:1399px;
  9852. top:973px;
  9853. width:11px;
  9854. height:18px;
  9855. display:flex;
  9856. }
  9857. #u131726 .text {
  9858. position:absolute;
  9859. align-self:center;
  9860. padding:2px 2px 2px 2px;
  9861. box-sizing:border-box;
  9862. width:100%;
  9863. }
  9864. #u131726_text {
  9865. border-width:0px;
  9866. word-wrap:break-word;
  9867. text-transform:none;
  9868. visibility:hidden;
  9869. }
  9870. #u131727_div {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:0px;
  9874. top:0px;
  9875. width:37px;
  9876. height:25px;
  9877. background:inherit;
  9878. background-color:rgba(255, 255, 255, 0);
  9879. border:none;
  9880. border-radius:0px;
  9881. -moz-box-shadow:none;
  9882. -webkit-box-shadow:none;
  9883. box-shadow:none;
  9884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9885. font-weight:400;
  9886. font-style:normal;
  9887. font-size:18px;
  9888. }
  9889. #u131727 {
  9890. border-width:0px;
  9891. position:absolute;
  9892. left:1541px;
  9893. top:969px;
  9894. width:37px;
  9895. height:25px;
  9896. display:flex;
  9897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9898. font-weight:400;
  9899. font-style:normal;
  9900. font-size:18px;
  9901. }
  9902. #u131727 .text {
  9903. position:absolute;
  9904. align-self:flex-start;
  9905. padding:0px 0px 0px 0px;
  9906. box-sizing:border-box;
  9907. width:100%;
  9908. }
  9909. #u131727_text {
  9910. border-width:0px;
  9911. white-space:nowrap;
  9912. text-transform:none;
  9913. }
  9914. #u131728 {
  9915. border-width:0px;
  9916. position:absolute;
  9917. left:0px;
  9918. top:0px;
  9919. width:0px;
  9920. height:0px;
  9921. }
  9922. #u131729_div {
  9923. border-width:0px;
  9924. position:absolute;
  9925. left:0px;
  9926. top:0px;
  9927. width:375px;
  9928. height:50px;
  9929. background:inherit;
  9930. background-color:rgba(255, 255, 255, 1);
  9931. border:none;
  9932. border-left:0px;
  9933. border-top:0px;
  9934. border-right:0px;
  9935. border-radius:0px;
  9936. border-bottom-right-radius:0px;
  9937. border-bottom-left-radius:0px;
  9938. -moz-box-shadow:none;
  9939. -webkit-box-shadow:none;
  9940. box-shadow:none;
  9941. }
  9942. #u131729 {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:1388px;
  9946. top:1000px;
  9947. width:375px;
  9948. height:50px;
  9949. display:flex;
  9950. }
  9951. #u131729 .text {
  9952. position:absolute;
  9953. align-self:center;
  9954. padding:2px 2px 2px 2px;
  9955. box-sizing:border-box;
  9956. width:100%;
  9957. }
  9958. #u131729_text {
  9959. border-width:0px;
  9960. word-wrap:break-word;
  9961. text-transform:none;
  9962. visibility:hidden;
  9963. }
  9964. #u131730_div {
  9965. border-width:0px;
  9966. position:absolute;
  9967. left:0px;
  9968. top:0px;
  9969. width:57px;
  9970. height:30px;
  9971. background:inherit;
  9972. background-color:rgba(255, 255, 255, 0);
  9973. border:none;
  9974. border-left:0px;
  9975. border-top:0px;
  9976. border-right:0px;
  9977. border-radius:0px;
  9978. border-bottom-right-radius:0px;
  9979. border-bottom-left-radius:0px;
  9980. -moz-box-shadow:none;
  9981. -webkit-box-shadow:none;
  9982. box-shadow:none;
  9983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9984. font-weight:400;
  9985. font-style:normal;
  9986. font-size:14px;
  9987. line-height:30px;
  9988. }
  9989. #u131730 {
  9990. border-width:0px;
  9991. position:absolute;
  9992. left:1408px;
  9993. top:1010px;
  9994. width:57px;
  9995. height:30px;
  9996. display:flex;
  9997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9998. font-weight:400;
  9999. font-style:normal;
  10000. font-size:14px;
  10001. line-height:30px;
  10002. }
  10003. #u131730 .text {
  10004. position:absolute;
  10005. align-self:center;
  10006. padding:0px 0px 0px 0px;
  10007. box-sizing:border-box;
  10008. width:100%;
  10009. }
  10010. #u131730_text {
  10011. border-width:0px;
  10012. white-space:nowrap;
  10013. text-transform:none;
  10014. }
  10015. #u131731_div {
  10016. border-width:0px;
  10017. position:absolute;
  10018. left:0px;
  10019. top:0px;
  10020. width:29px;
  10021. height:30px;
  10022. background:inherit;
  10023. background-color:rgba(255, 255, 255, 0);
  10024. border:none;
  10025. border-left:0px;
  10026. border-top:0px;
  10027. border-right:0px;
  10028. border-radius:0px;
  10029. border-bottom-right-radius:0px;
  10030. border-bottom-left-radius:0px;
  10031. -moz-box-shadow:none;
  10032. -webkit-box-shadow:none;
  10033. box-shadow:none;
  10034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10035. font-weight:400;
  10036. font-style:normal;
  10037. font-size:14px;
  10038. line-height:30px;
  10039. }
  10040. #u131731 {
  10041. border-width:0px;
  10042. position:absolute;
  10043. left:1505px;
  10044. top:1010px;
  10045. width:29px;
  10046. height:30px;
  10047. display:flex;
  10048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10049. font-weight:400;
  10050. font-style:normal;
  10051. font-size:14px;
  10052. line-height:30px;
  10053. }
  10054. #u131731 .text {
  10055. position:absolute;
  10056. align-self:center;
  10057. padding:0px 0px 0px 0px;
  10058. box-sizing:border-box;
  10059. width:100%;
  10060. }
  10061. #u131731_text {
  10062. border-width:0px;
  10063. white-space:nowrap;
  10064. text-transform:none;
  10065. }
  10066. #u131732 {
  10067. border-width:0px;
  10068. position:absolute;
  10069. left:0px;
  10070. top:0px;
  10071. width:0px;
  10072. height:0px;
  10073. }
  10074. #u131733_div {
  10075. border-width:0px;
  10076. position:absolute;
  10077. left:0px;
  10078. top:0px;
  10079. width:375px;
  10080. height:50px;
  10081. background:inherit;
  10082. background-color:rgba(255, 255, 255, 1);
  10083. border:none;
  10084. border-left:0px;
  10085. border-top:0px;
  10086. border-right:0px;
  10087. border-radius:0px;
  10088. border-bottom-right-radius:0px;
  10089. border-bottom-left-radius:0px;
  10090. -moz-box-shadow:none;
  10091. -webkit-box-shadow:none;
  10092. box-shadow:none;
  10093. }
  10094. #u131733 {
  10095. border-width:0px;
  10096. position:absolute;
  10097. left:1388px;
  10098. top:1051px;
  10099. width:375px;
  10100. height:50px;
  10101. display:flex;
  10102. }
  10103. #u131733 .text {
  10104. position:absolute;
  10105. align-self:center;
  10106. padding:2px 2px 2px 2px;
  10107. box-sizing:border-box;
  10108. width:100%;
  10109. }
  10110. #u131733_text {
  10111. border-width:0px;
  10112. word-wrap:break-word;
  10113. text-transform:none;
  10114. visibility:hidden;
  10115. }
  10116. #u131734_div {
  10117. border-width:0px;
  10118. position:absolute;
  10119. left:0px;
  10120. top:0px;
  10121. width:57px;
  10122. height:30px;
  10123. background:inherit;
  10124. background-color:rgba(255, 255, 255, 0);
  10125. border:none;
  10126. border-left:0px;
  10127. border-top:0px;
  10128. border-right:0px;
  10129. border-radius:0px;
  10130. border-bottom-right-radius:0px;
  10131. border-bottom-left-radius:0px;
  10132. -moz-box-shadow:none;
  10133. -webkit-box-shadow:none;
  10134. box-shadow:none;
  10135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10136. font-weight:400;
  10137. font-style:normal;
  10138. font-size:14px;
  10139. line-height:30px;
  10140. }
  10141. #u131734 {
  10142. border-width:0px;
  10143. position:absolute;
  10144. left:1408px;
  10145. top:1061px;
  10146. width:57px;
  10147. height:30px;
  10148. display:flex;
  10149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10150. font-weight:400;
  10151. font-style:normal;
  10152. font-size:14px;
  10153. line-height:30px;
  10154. }
  10155. #u131734 .text {
  10156. position:absolute;
  10157. align-self:center;
  10158. padding:0px 0px 0px 0px;
  10159. box-sizing:border-box;
  10160. width:100%;
  10161. }
  10162. #u131734_text {
  10163. border-width:0px;
  10164. white-space:nowrap;
  10165. text-transform:none;
  10166. }
  10167. #u131735_div {
  10168. border-width:0px;
  10169. position:absolute;
  10170. left:0px;
  10171. top:0px;
  10172. width:29px;
  10173. height:30px;
  10174. background:inherit;
  10175. background-color:rgba(255, 255, 255, 0);
  10176. border:none;
  10177. border-left:0px;
  10178. border-top:0px;
  10179. border-right:0px;
  10180. border-radius:0px;
  10181. border-bottom-right-radius:0px;
  10182. border-bottom-left-radius:0px;
  10183. -moz-box-shadow:none;
  10184. -webkit-box-shadow:none;
  10185. box-shadow:none;
  10186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10187. font-weight:400;
  10188. font-style:normal;
  10189. font-size:14px;
  10190. line-height:30px;
  10191. }
  10192. #u131735 {
  10193. border-width:0px;
  10194. position:absolute;
  10195. left:1505px;
  10196. top:1061px;
  10197. width:29px;
  10198. height:30px;
  10199. display:flex;
  10200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10201. font-weight:400;
  10202. font-style:normal;
  10203. font-size:14px;
  10204. line-height:30px;
  10205. }
  10206. #u131735 .text {
  10207. position:absolute;
  10208. align-self:center;
  10209. padding:0px 0px 0px 0px;
  10210. box-sizing:border-box;
  10211. width:100%;
  10212. }
  10213. #u131735_text {
  10214. border-width:0px;
  10215. white-space:nowrap;
  10216. text-transform:none;
  10217. }
  10218. #u131736 {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:0px;
  10222. top:0px;
  10223. width:0px;
  10224. height:0px;
  10225. }
  10226. #u131737_div {
  10227. border-width:0px;
  10228. position:absolute;
  10229. left:0px;
  10230. top:0px;
  10231. width:375px;
  10232. height:50px;
  10233. background:inherit;
  10234. background-color:rgba(255, 255, 255, 1);
  10235. border:none;
  10236. border-left:0px;
  10237. border-top:0px;
  10238. border-right:0px;
  10239. border-radius:0px;
  10240. border-bottom-right-radius:0px;
  10241. border-bottom-left-radius:0px;
  10242. -moz-box-shadow:none;
  10243. -webkit-box-shadow:none;
  10244. box-shadow:none;
  10245. }
  10246. #u131737 {
  10247. border-width:0px;
  10248. position:absolute;
  10249. left:1388px;
  10250. top:1102px;
  10251. width:375px;
  10252. height:50px;
  10253. display:flex;
  10254. }
  10255. #u131737 .text {
  10256. position:absolute;
  10257. align-self:center;
  10258. padding:2px 2px 2px 2px;
  10259. box-sizing:border-box;
  10260. width:100%;
  10261. }
  10262. #u131737_text {
  10263. border-width:0px;
  10264. word-wrap:break-word;
  10265. text-transform:none;
  10266. visibility:hidden;
  10267. }
  10268. #u131738_div {
  10269. border-width:0px;
  10270. position:absolute;
  10271. left:0px;
  10272. top:0px;
  10273. width:85px;
  10274. height:30px;
  10275. background:inherit;
  10276. background-color:rgba(255, 255, 255, 0);
  10277. border:none;
  10278. border-left:0px;
  10279. border-top:0px;
  10280. border-right:0px;
  10281. border-radius:0px;
  10282. border-bottom-right-radius:0px;
  10283. border-bottom-left-radius:0px;
  10284. -moz-box-shadow:none;
  10285. -webkit-box-shadow:none;
  10286. box-shadow:none;
  10287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10288. font-weight:400;
  10289. font-style:normal;
  10290. font-size:14px;
  10291. line-height:30px;
  10292. }
  10293. #u131738 {
  10294. border-width:0px;
  10295. position:absolute;
  10296. left:1408px;
  10297. top:1112px;
  10298. width:85px;
  10299. height:30px;
  10300. display:flex;
  10301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10302. font-weight:400;
  10303. font-style:normal;
  10304. font-size:14px;
  10305. line-height:30px;
  10306. }
  10307. #u131738 .text {
  10308. position:absolute;
  10309. align-self:center;
  10310. padding:0px 0px 0px 0px;
  10311. box-sizing:border-box;
  10312. width:100%;
  10313. }
  10314. #u131738_text {
  10315. border-width:0px;
  10316. white-space:nowrap;
  10317. text-transform:none;
  10318. }
  10319. #u131739_div {
  10320. border-width:0px;
  10321. position:absolute;
  10322. left:0px;
  10323. top:0px;
  10324. width:79px;
  10325. height:30px;
  10326. background:inherit;
  10327. background-color:rgba(255, 255, 255, 0);
  10328. border:none;
  10329. border-left:0px;
  10330. border-top:0px;
  10331. border-right:0px;
  10332. border-radius:0px;
  10333. border-bottom-right-radius:0px;
  10334. border-bottom-left-radius:0px;
  10335. -moz-box-shadow:none;
  10336. -webkit-box-shadow:none;
  10337. box-shadow:none;
  10338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10339. font-weight:400;
  10340. font-style:normal;
  10341. font-size:14px;
  10342. line-height:30px;
  10343. }
  10344. #u131739 {
  10345. border-width:0px;
  10346. position:absolute;
  10347. left:1505px;
  10348. top:1112px;
  10349. width:79px;
  10350. height:30px;
  10351. display:flex;
  10352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10353. font-weight:400;
  10354. font-style:normal;
  10355. font-size:14px;
  10356. line-height:30px;
  10357. }
  10358. #u131739 .text {
  10359. position:absolute;
  10360. align-self:center;
  10361. padding:0px 0px 0px 0px;
  10362. box-sizing:border-box;
  10363. width:100%;
  10364. }
  10365. #u131739_text {
  10366. border-width:0px;
  10367. white-space:nowrap;
  10368. text-transform:none;
  10369. }
  10370. #u131740 {
  10371. border-width:0px;
  10372. position:absolute;
  10373. left:0px;
  10374. top:0px;
  10375. width:0px;
  10376. height:0px;
  10377. }
  10378. #u131741_div {
  10379. border-width:0px;
  10380. position:absolute;
  10381. left:0px;
  10382. top:0px;
  10383. width:375px;
  10384. height:50px;
  10385. background:inherit;
  10386. background-color:rgba(255, 255, 255, 1);
  10387. border:none;
  10388. border-left:0px;
  10389. border-top:0px;
  10390. border-right:0px;
  10391. border-radius:0px;
  10392. border-bottom-right-radius:0px;
  10393. border-bottom-left-radius:0px;
  10394. -moz-box-shadow:none;
  10395. -webkit-box-shadow:none;
  10396. box-shadow:none;
  10397. }
  10398. #u131741 {
  10399. border-width:0px;
  10400. position:absolute;
  10401. left:1388px;
  10402. top:1153px;
  10403. width:375px;
  10404. height:50px;
  10405. display:flex;
  10406. }
  10407. #u131741 .text {
  10408. position:absolute;
  10409. align-self:center;
  10410. padding:2px 2px 2px 2px;
  10411. box-sizing:border-box;
  10412. width:100%;
  10413. }
  10414. #u131741_text {
  10415. border-width:0px;
  10416. word-wrap:break-word;
  10417. text-transform:none;
  10418. visibility:hidden;
  10419. }
  10420. #u131742_div {
  10421. border-width:0px;
  10422. position:absolute;
  10423. left:0px;
  10424. top:0px;
  10425. width:57px;
  10426. height:30px;
  10427. background:inherit;
  10428. background-color:rgba(255, 255, 255, 0);
  10429. border:none;
  10430. border-left:0px;
  10431. border-top:0px;
  10432. border-right:0px;
  10433. border-radius:0px;
  10434. border-bottom-right-radius:0px;
  10435. border-bottom-left-radius:0px;
  10436. -moz-box-shadow:none;
  10437. -webkit-box-shadow:none;
  10438. box-shadow:none;
  10439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10440. font-weight:400;
  10441. font-style:normal;
  10442. font-size:14px;
  10443. line-height:30px;
  10444. }
  10445. #u131742 {
  10446. border-width:0px;
  10447. position:absolute;
  10448. left:1408px;
  10449. top:1163px;
  10450. width:57px;
  10451. height:30px;
  10452. display:flex;
  10453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10454. font-weight:400;
  10455. font-style:normal;
  10456. font-size:14px;
  10457. line-height:30px;
  10458. }
  10459. #u131742 .text {
  10460. position:absolute;
  10461. align-self:center;
  10462. padding:0px 0px 0px 0px;
  10463. box-sizing:border-box;
  10464. width:100%;
  10465. }
  10466. #u131742_text {
  10467. border-width:0px;
  10468. white-space:nowrap;
  10469. text-transform:none;
  10470. }
  10471. #u131743_div {
  10472. border-width:0px;
  10473. position:absolute;
  10474. left:0px;
  10475. top:0px;
  10476. width:55px;
  10477. height:30px;
  10478. background:inherit;
  10479. background-color:rgba(255, 255, 255, 0);
  10480. border:none;
  10481. border-left:0px;
  10482. border-top:0px;
  10483. border-right:0px;
  10484. border-radius:0px;
  10485. border-bottom-right-radius:0px;
  10486. border-bottom-left-radius:0px;
  10487. -moz-box-shadow:none;
  10488. -webkit-box-shadow:none;
  10489. box-shadow:none;
  10490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10491. font-weight:400;
  10492. font-style:normal;
  10493. font-size:14px;
  10494. line-height:30px;
  10495. }
  10496. #u131743 {
  10497. border-width:0px;
  10498. position:absolute;
  10499. left:1505px;
  10500. top:1163px;
  10501. width:55px;
  10502. height:30px;
  10503. display:flex;
  10504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10505. font-weight:400;
  10506. font-style:normal;
  10507. font-size:14px;
  10508. line-height:30px;
  10509. }
  10510. #u131743 .text {
  10511. position:absolute;
  10512. align-self:center;
  10513. padding:0px 0px 0px 0px;
  10514. box-sizing:border-box;
  10515. width:100%;
  10516. }
  10517. #u131743_text {
  10518. border-width:0px;
  10519. white-space:nowrap;
  10520. text-transform:none;
  10521. }
  10522. #u131744 {
  10523. border-width:0px;
  10524. position:absolute;
  10525. left:0px;
  10526. top:0px;
  10527. width:0px;
  10528. height:0px;
  10529. }
  10530. #u131745_div {
  10531. border-width:0px;
  10532. position:absolute;
  10533. left:0px;
  10534. top:0px;
  10535. width:375px;
  10536. height:50px;
  10537. background:inherit;
  10538. background-color:rgba(255, 255, 255, 1);
  10539. border:none;
  10540. border-left:0px;
  10541. border-top:0px;
  10542. border-right:0px;
  10543. border-radius:0px;
  10544. border-bottom-right-radius:0px;
  10545. border-bottom-left-radius:0px;
  10546. -moz-box-shadow:none;
  10547. -webkit-box-shadow:none;
  10548. box-shadow:none;
  10549. }
  10550. #u131745 {
  10551. border-width:0px;
  10552. position:absolute;
  10553. left:1388px;
  10554. top:1204px;
  10555. width:375px;
  10556. height:50px;
  10557. display:flex;
  10558. }
  10559. #u131745 .text {
  10560. position:absolute;
  10561. align-self:center;
  10562. padding:2px 2px 2px 2px;
  10563. box-sizing:border-box;
  10564. width:100%;
  10565. }
  10566. #u131745_text {
  10567. border-width:0px;
  10568. word-wrap:break-word;
  10569. text-transform:none;
  10570. visibility:hidden;
  10571. }
  10572. #u131746_div {
  10573. border-width:0px;
  10574. position:absolute;
  10575. left:0px;
  10576. top:0px;
  10577. width:57px;
  10578. height:30px;
  10579. background:inherit;
  10580. background-color:rgba(255, 255, 255, 0);
  10581. border:none;
  10582. border-left:0px;
  10583. border-top:0px;
  10584. border-right:0px;
  10585. border-radius:0px;
  10586. border-bottom-right-radius:0px;
  10587. border-bottom-left-radius:0px;
  10588. -moz-box-shadow:none;
  10589. -webkit-box-shadow:none;
  10590. box-shadow:none;
  10591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10592. font-weight:400;
  10593. font-style:normal;
  10594. font-size:14px;
  10595. line-height:30px;
  10596. }
  10597. #u131746 {
  10598. border-width:0px;
  10599. position:absolute;
  10600. left:1408px;
  10601. top:1214px;
  10602. width:57px;
  10603. height:30px;
  10604. display:flex;
  10605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10606. font-weight:400;
  10607. font-style:normal;
  10608. font-size:14px;
  10609. line-height:30px;
  10610. }
  10611. #u131746 .text {
  10612. position:absolute;
  10613. align-self:center;
  10614. padding:0px 0px 0px 0px;
  10615. box-sizing:border-box;
  10616. width:100%;
  10617. }
  10618. #u131746_text {
  10619. border-width:0px;
  10620. white-space:nowrap;
  10621. text-transform:none;
  10622. }
  10623. #u131747_div {
  10624. border-width:0px;
  10625. position:absolute;
  10626. left:0px;
  10627. top:0px;
  10628. width:77px;
  10629. height:30px;
  10630. background:inherit;
  10631. background-color:rgba(255, 255, 255, 0);
  10632. border:none;
  10633. border-left:0px;
  10634. border-top:0px;
  10635. border-right:0px;
  10636. border-radius:0px;
  10637. border-bottom-right-radius:0px;
  10638. border-bottom-left-radius:0px;
  10639. -moz-box-shadow:none;
  10640. -webkit-box-shadow:none;
  10641. box-shadow:none;
  10642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10643. font-weight:400;
  10644. font-style:normal;
  10645. font-size:14px;
  10646. line-height:30px;
  10647. }
  10648. #u131747 {
  10649. border-width:0px;
  10650. position:absolute;
  10651. left:1505px;
  10652. top:1214px;
  10653. width:77px;
  10654. height:30px;
  10655. display:flex;
  10656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10657. font-weight:400;
  10658. font-style:normal;
  10659. font-size:14px;
  10660. line-height:30px;
  10661. }
  10662. #u131747 .text {
  10663. position:absolute;
  10664. align-self:center;
  10665. padding:0px 0px 0px 0px;
  10666. box-sizing:border-box;
  10667. width:100%;
  10668. }
  10669. #u131747_text {
  10670. border-width:0px;
  10671. white-space:nowrap;
  10672. text-transform:none;
  10673. }
  10674. #u131748 {
  10675. border-width:0px;
  10676. position:absolute;
  10677. left:0px;
  10678. top:0px;
  10679. width:0px;
  10680. height:0px;
  10681. }
  10682. #u131749_div {
  10683. border-width:0px;
  10684. position:absolute;
  10685. left:0px;
  10686. top:0px;
  10687. width:375px;
  10688. height:50px;
  10689. background:inherit;
  10690. background-color:rgba(255, 255, 255, 1);
  10691. border:none;
  10692. border-left:0px;
  10693. border-top:0px;
  10694. border-right:0px;
  10695. border-radius:0px;
  10696. border-bottom-right-radius:0px;
  10697. border-bottom-left-radius:0px;
  10698. -moz-box-shadow:none;
  10699. -webkit-box-shadow:none;
  10700. box-shadow:none;
  10701. }
  10702. #u131749 {
  10703. border-width:0px;
  10704. position:absolute;
  10705. left:1388px;
  10706. top:1255px;
  10707. width:375px;
  10708. height:50px;
  10709. display:flex;
  10710. }
  10711. #u131749 .text {
  10712. position:absolute;
  10713. align-self:center;
  10714. padding:2px 2px 2px 2px;
  10715. box-sizing:border-box;
  10716. width:100%;
  10717. }
  10718. #u131749_text {
  10719. border-width:0px;
  10720. word-wrap:break-word;
  10721. text-transform:none;
  10722. visibility:hidden;
  10723. }
  10724. #u131750_div {
  10725. border-width:0px;
  10726. position:absolute;
  10727. left:0px;
  10728. top:0px;
  10729. width:57px;
  10730. height:30px;
  10731. background:inherit;
  10732. background-color:rgba(255, 255, 255, 0);
  10733. border:none;
  10734. border-left:0px;
  10735. border-top:0px;
  10736. border-right:0px;
  10737. border-radius:0px;
  10738. border-bottom-right-radius:0px;
  10739. border-bottom-left-radius:0px;
  10740. -moz-box-shadow:none;
  10741. -webkit-box-shadow:none;
  10742. box-shadow:none;
  10743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10744. font-weight:400;
  10745. font-style:normal;
  10746. font-size:14px;
  10747. line-height:30px;
  10748. }
  10749. #u131750 {
  10750. border-width:0px;
  10751. position:absolute;
  10752. left:1408px;
  10753. top:1265px;
  10754. width:57px;
  10755. height:30px;
  10756. display:flex;
  10757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10758. font-weight:400;
  10759. font-style:normal;
  10760. font-size:14px;
  10761. line-height:30px;
  10762. }
  10763. #u131750 .text {
  10764. position:absolute;
  10765. align-self:center;
  10766. padding:0px 0px 0px 0px;
  10767. box-sizing:border-box;
  10768. width:100%;
  10769. }
  10770. #u131750_text {
  10771. border-width:0px;
  10772. white-space:nowrap;
  10773. text-transform:none;
  10774. }
  10775. #u131751_div {
  10776. border-width:0px;
  10777. position:absolute;
  10778. left:0px;
  10779. top:0px;
  10780. width:55px;
  10781. height:30px;
  10782. background:inherit;
  10783. background-color:rgba(255, 255, 255, 0);
  10784. border:none;
  10785. border-left:0px;
  10786. border-top:0px;
  10787. border-right:0px;
  10788. border-radius:0px;
  10789. border-bottom-right-radius:0px;
  10790. border-bottom-left-radius:0px;
  10791. -moz-box-shadow:none;
  10792. -webkit-box-shadow:none;
  10793. box-shadow:none;
  10794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10795. font-weight:400;
  10796. font-style:normal;
  10797. font-size:14px;
  10798. line-height:30px;
  10799. }
  10800. #u131751 {
  10801. border-width:0px;
  10802. position:absolute;
  10803. left:1505px;
  10804. top:1265px;
  10805. width:55px;
  10806. height:30px;
  10807. display:flex;
  10808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10809. font-weight:400;
  10810. font-style:normal;
  10811. font-size:14px;
  10812. line-height:30px;
  10813. }
  10814. #u131751 .text {
  10815. position:absolute;
  10816. align-self:center;
  10817. padding:0px 0px 0px 0px;
  10818. box-sizing:border-box;
  10819. width:100%;
  10820. }
  10821. #u131751_text {
  10822. border-width:0px;
  10823. white-space:nowrap;
  10824. text-transform:none;
  10825. }
  10826. #u131752_div {
  10827. border-width:0px;
  10828. position:absolute;
  10829. left:0px;
  10830. top:0px;
  10831. width:344px;
  10832. height:40px;
  10833. background:inherit;
  10834. background-color:rgba(24, 144, 255, 1);
  10835. border:none;
  10836. border-radius:81px;
  10837. -moz-box-shadow:none;
  10838. -webkit-box-shadow:none;
  10839. box-shadow:none;
  10840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10841. font-weight:400;
  10842. font-style:normal;
  10843. font-size:14px;
  10844. color:#FFFFFF;
  10845. }
  10846. #u131752 {
  10847. border-width:0px;
  10848. position:absolute;
  10849. left:1404px;
  10850. top:1435px;
  10851. width:344px;
  10852. height:40px;
  10853. display:flex;
  10854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10855. font-weight:400;
  10856. font-style:normal;
  10857. font-size:14px;
  10858. color:#FFFFFF;
  10859. }
  10860. #u131752 .text {
  10861. position:absolute;
  10862. align-self:center;
  10863. padding:2px 2px 2px 2px;
  10864. box-sizing:border-box;
  10865. width:100%;
  10866. }
  10867. #u131752_text {
  10868. border-width:0px;
  10869. word-wrap:break-word;
  10870. text-transform:none;
  10871. }
  10872. #u131753_div {
  10873. border-width:0px;
  10874. position:absolute;
  10875. left:0px;
  10876. top:0px;
  10877. width:344px;
  10878. height:40px;
  10879. background:inherit;
  10880. background-color:rgba(24, 144, 255, 1);
  10881. border:none;
  10882. border-radius:81px;
  10883. -moz-box-shadow:none;
  10884. -webkit-box-shadow:none;
  10885. box-shadow:none;
  10886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10887. font-weight:400;
  10888. font-style:normal;
  10889. font-size:14px;
  10890. color:#FFFFFF;
  10891. }
  10892. #u131753 {
  10893. border-width:0px;
  10894. position:absolute;
  10895. left:1404px;
  10896. top:1335px;
  10897. width:344px;
  10898. height:40px;
  10899. display:flex;
  10900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10901. font-weight:400;
  10902. font-style:normal;
  10903. font-size:14px;
  10904. color:#FFFFFF;
  10905. }
  10906. #u131753 .text {
  10907. position:absolute;
  10908. align-self:center;
  10909. padding:2px 2px 2px 2px;
  10910. box-sizing:border-box;
  10911. width:100%;
  10912. }
  10913. #u131753_text {
  10914. border-width:0px;
  10915. word-wrap:break-word;
  10916. text-transform:none;
  10917. }
  10918. #u131754_div {
  10919. border-width:0px;
  10920. position:absolute;
  10921. left:0px;
  10922. top:0px;
  10923. width:344px;
  10924. height:40px;
  10925. background:inherit;
  10926. background-color:rgba(24, 144, 255, 1);
  10927. border:none;
  10928. border-radius:81px;
  10929. -moz-box-shadow:none;
  10930. -webkit-box-shadow:none;
  10931. box-shadow:none;
  10932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10933. font-weight:400;
  10934. font-style:normal;
  10935. font-size:14px;
  10936. color:#FFFFFF;
  10937. }
  10938. #u131754 {
  10939. border-width:0px;
  10940. position:absolute;
  10941. left:1404px;
  10942. top:1385px;
  10943. width:344px;
  10944. height:40px;
  10945. display:flex;
  10946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10947. font-weight:400;
  10948. font-style:normal;
  10949. font-size:14px;
  10950. color:#FFFFFF;
  10951. }
  10952. #u131754 .text {
  10953. position:absolute;
  10954. align-self:center;
  10955. padding:2px 2px 2px 2px;
  10956. box-sizing:border-box;
  10957. width:100%;
  10958. }
  10959. #u131754_text {
  10960. border-width:0px;
  10961. word-wrap:break-word;
  10962. text-transform:none;
  10963. }
  10964. #u131755_div {
  10965. border-width:0px;
  10966. position:absolute;
  10967. left:0px;
  10968. top:0px;
  10969. width:392px;
  10970. height:50px;
  10971. background:inherit;
  10972. background-color:rgba(255, 255, 255, 0);
  10973. border:none;
  10974. border-radius:0px;
  10975. -moz-box-shadow:none;
  10976. -webkit-box-shadow:none;
  10977. box-shadow:none;
  10978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10979. font-weight:400;
  10980. font-style:normal;
  10981. font-size:18px;
  10982. color:#D9001B;
  10983. }
  10984. #u131755 {
  10985. border-width:0px;
  10986. position:absolute;
  10987. left:494px;
  10988. top:957px;
  10989. width:392px;
  10990. height:50px;
  10991. display:flex;
  10992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10993. font-weight:400;
  10994. font-style:normal;
  10995. font-size:18px;
  10996. color:#D9001B;
  10997. }
  10998. #u131755 .text {
  10999. position:absolute;
  11000. align-self:flex-start;
  11001. padding:0px 0px 0px 0px;
  11002. box-sizing:border-box;
  11003. width:100%;
  11004. }
  11005. #u131755_text {
  11006. border-width:0px;
  11007. word-wrap:break-word;
  11008. text-transform:none;
  11009. }
  11010. #u131756_div {
  11011. border-width:0px;
  11012. position:absolute;
  11013. left:0px;
  11014. top:0px;
  11015. width:349px;
  11016. height:50px;
  11017. background:inherit;
  11018. background-color:rgba(255, 255, 255, 0);
  11019. border:none;
  11020. border-radius:0px;
  11021. -moz-box-shadow:none;
  11022. -webkit-box-shadow:none;
  11023. box-shadow:none;
  11024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11025. font-weight:400;
  11026. font-style:normal;
  11027. font-size:18px;
  11028. color:#D9001B;
  11029. }
  11030. #u131756 {
  11031. border-width:0px;
  11032. position:absolute;
  11033. left:502px;
  11034. top:387px;
  11035. width:349px;
  11036. height:50px;
  11037. display:flex;
  11038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11039. font-weight:400;
  11040. font-style:normal;
  11041. font-size:18px;
  11042. color:#D9001B;
  11043. }
  11044. #u131756 .text {
  11045. position:absolute;
  11046. align-self:flex-start;
  11047. padding:0px 0px 0px 0px;
  11048. box-sizing:border-box;
  11049. width:100%;
  11050. }
  11051. #u131756_text {
  11052. border-width:0px;
  11053. word-wrap:break-word;
  11054. text-transform:none;
  11055. }