styles.css 207 KB

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