styles.css 126 KB

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