styles.css 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u131007_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. #u131007 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u131007 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u131007_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u131008_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. #u131008 {
  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. #u131008 .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. #u131008_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u131009_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. #u131009 {
  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. #u131009 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u131009_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u131010 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u131011_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u131011 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u131011 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u131011_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u131012_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. #u131012 {
  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. #u131012 .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. #u131012_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u131013_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. #u131013 {
  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. #u131013 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u131013_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u131014 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u131015_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. #u131015_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. #u131015_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. #u131015 {
  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. #u131015 .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. #u131015_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. #u131015.disabled {
  356. }
  357. .u131015_input_option {
  358. font-size:14px;
  359. }
  360. #u131016_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u131016 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u131016 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u131016_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u131017_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. #u131017 {
  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. #u131017 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u131017_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u131018_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. #u131018 {
  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. #u131018 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u131018_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u131019 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u131020_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. #u131020 {
  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. #u131020 .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. #u131020_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u131021_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u131021 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u131021 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u131021_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u131022 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u131023_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. #u131023 {
  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. #u131023 .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. #u131023_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u131024_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u131024 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u131024 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u131024_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u131025 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u131026_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. #u131026 {
  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. #u131026 .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. #u131026_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u131027_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u131027 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u131027 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u131027_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u131028 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u131029_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. #u131029 {
  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. #u131029 .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. #u131029_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u131030_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u131030 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u131030 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u131030_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u131031 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u131032_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. #u131032 {
  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. #u131032 .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. #u131032_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u131033_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u131033 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u131033 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u131033_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u131034 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u131035_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. #u131035 {
  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. #u131035 .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. #u131035_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u131036_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u131036 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u131036 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u131036_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u131037 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u131038_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. #u131038 {
  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. #u131038 .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. #u131038_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u131039_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u131039 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u131039 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u131039_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u131040 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u131041_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. #u131041 {
  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. #u131041 .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. #u131041_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u131042_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u131042 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u131042 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u131042_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u131043 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u131044_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. #u131044 {
  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. #u131044 .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. #u131044_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u131045_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u131045 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u131045 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u131045_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u131046 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u131047_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. #u131047 {
  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. #u131047 .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. #u131047_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u131048_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u131048 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u131048 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u131048_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u131049_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. #u131049 {
  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. #u131049 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u131049_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u131050_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u131050 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u131050 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u131050_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u131051_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. #u131051 {
  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. #u131051 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u131051_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u131052_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u131052 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u131052 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u131052_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u131053 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u131054_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. #u131054 {
  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. #u131054 .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. #u131054_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u131055_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u131055 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u131055 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u131055_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u131056 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u131057_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. #u131057 {
  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. #u131057 .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. #u131057_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u131058_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u131058 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u131058 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u131058_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u131059_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:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:12px;
  1656. color:#FFFFFF;
  1657. text-align:left;
  1658. }
  1659. #u131059 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:330px;
  1663. top:50px;
  1664. width:1258px;
  1665. height:1191px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. text-align:left;
  1673. }
  1674. #u131059 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 50px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u131059_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. visibility:hidden;
  1686. }
  1687. #u131060 {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:349px;
  1691. top:160px;
  1692. width:1230px;
  1693. height:293px;
  1694. }
  1695. #u131061_img {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:75px;
  1701. height:39px;
  1702. }
  1703. #u131061 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:75px;
  1709. height:39px;
  1710. display:flex;
  1711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1712. font-weight:400;
  1713. font-style:normal;
  1714. font-size:12px;
  1715. color:#FFFFFF;
  1716. }
  1717. #u131061 .text {
  1718. position:absolute;
  1719. align-self:center;
  1720. padding:2px 2px 2px 0px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u131061_text {
  1725. border-width:0px;
  1726. word-wrap:break-word;
  1727. text-transform:none;
  1728. }
  1729. #u131062_img {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:75px;
  1735. height:39px;
  1736. }
  1737. #u131062 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:75px;
  1741. top:0px;
  1742. width:75px;
  1743. height:39px;
  1744. display:flex;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:12px;
  1749. color:#FFFFFF;
  1750. }
  1751. #u131062 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 0px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u131062_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. }
  1763. #u131063_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:75px;
  1769. height:39px;
  1770. }
  1771. #u131063 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:150px;
  1775. top:0px;
  1776. width:75px;
  1777. height:39px;
  1778. display:flex;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:12px;
  1783. color:#FFFFFF;
  1784. }
  1785. #u131063 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 0px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u131063_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. }
  1797. #u131064_img {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:75px;
  1803. height:39px;
  1804. }
  1805. #u131064 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:225px;
  1809. top:0px;
  1810. width:75px;
  1811. height:39px;
  1812. display:flex;
  1813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:12px;
  1817. color:#FFFFFF;
  1818. }
  1819. #u131064 .text {
  1820. position:absolute;
  1821. align-self:center;
  1822. padding:2px 2px 2px 0px;
  1823. box-sizing:border-box;
  1824. width:100%;
  1825. }
  1826. #u131064_text {
  1827. border-width:0px;
  1828. word-wrap:break-word;
  1829. text-transform:none;
  1830. }
  1831. #u131065_img {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:75px;
  1837. height:39px;
  1838. }
  1839. #u131065 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:300px;
  1843. top:0px;
  1844. width:75px;
  1845. height:39px;
  1846. display:flex;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:12px;
  1851. color:#FFFFFF;
  1852. }
  1853. #u131065 .text {
  1854. position:absolute;
  1855. align-self:center;
  1856. padding:2px 2px 2px 0px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u131065_text {
  1861. border-width:0px;
  1862. word-wrap:break-word;
  1863. text-transform:none;
  1864. }
  1865. #u131066_img {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:84px;
  1871. height:39px;
  1872. }
  1873. #u131066 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:375px;
  1877. top:0px;
  1878. width:84px;
  1879. height:39px;
  1880. display:flex;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:12px;
  1885. color:#FFFFFF;
  1886. }
  1887. #u131066 .text {
  1888. position:absolute;
  1889. align-self:center;
  1890. padding:2px 2px 2px 0px;
  1891. box-sizing:border-box;
  1892. width:100%;
  1893. }
  1894. #u131066_text {
  1895. border-width:0px;
  1896. word-wrap:break-word;
  1897. text-transform:none;
  1898. }
  1899. #u131067_img {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:174px;
  1905. height:39px;
  1906. }
  1907. #u131067 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:459px;
  1911. top:0px;
  1912. width:174px;
  1913. height:39px;
  1914. display:flex;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:12px;
  1919. color:#FFFFFF;
  1920. text-align:left;
  1921. line-height:30px;
  1922. }
  1923. #u131067 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 10px 2px 10px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u131067_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. }
  1935. #u131068_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:60px;
  1941. height:39px;
  1942. }
  1943. #u131068 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:633px;
  1947. top:0px;
  1948. width:60px;
  1949. height:39px;
  1950. display:flex;
  1951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1952. font-weight:400;
  1953. font-style:normal;
  1954. font-size:12px;
  1955. color:#FFFFFF;
  1956. }
  1957. #u131068 .text {
  1958. position:absolute;
  1959. align-self:center;
  1960. padding:2px 2px 2px 0px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u131068_text {
  1965. border-width:0px;
  1966. word-wrap:break-word;
  1967. text-transform:none;
  1968. }
  1969. #u131069_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:75px;
  1975. height:39px;
  1976. }
  1977. #u131069 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:693px;
  1981. top:0px;
  1982. width:75px;
  1983. height:39px;
  1984. display:flex;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:12px;
  1989. color:#FFFFFF;
  1990. }
  1991. #u131069 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 0px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u131069_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. }
  2003. #u131070_img {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:75px;
  2009. height:39px;
  2010. }
  2011. #u131070 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:768px;
  2015. top:0px;
  2016. width:75px;
  2017. height:39px;
  2018. display:flex;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:12px;
  2023. color:#FFFFFF;
  2024. }
  2025. #u131070 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 0px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u131070_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. }
  2037. #u131071_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:75px;
  2043. height:39px;
  2044. }
  2045. #u131071 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:843px;
  2049. top:0px;
  2050. width:75px;
  2051. height:39px;
  2052. display:flex;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. font-size:12px;
  2057. color:#FFFFFF;
  2058. }
  2059. #u131071 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 2px 2px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u131071_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. }
  2071. #u131072_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:75px;
  2077. height:39px;
  2078. }
  2079. #u131072 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:918px;
  2083. top:0px;
  2084. width:75px;
  2085. height:39px;
  2086. display:flex;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:12px;
  2091. color:#FFFFFF;
  2092. }
  2093. #u131072 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u131072_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. }
  2105. #u131073_img {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:75px;
  2111. height:39px;
  2112. }
  2113. #u131073 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:993px;
  2117. top:0px;
  2118. width:75px;
  2119. height:39px;
  2120. display:flex;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:12px;
  2125. color:#FFFFFF;
  2126. }
  2127. #u131073 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u131073_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. }
  2139. #u131074_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:75px;
  2145. height:39px;
  2146. }
  2147. #u131074 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:1068px;
  2151. top:0px;
  2152. width:75px;
  2153. height:39px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. color:#FFFFFF;
  2160. }
  2161. #u131074 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:2px 2px 2px 0px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u131074_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. }
  2173. #u131075_img {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:87px;
  2179. height:39px;
  2180. }
  2181. #u131075 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:1143px;
  2185. top:0px;
  2186. width:87px;
  2187. height:39px;
  2188. display:flex;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:12px;
  2193. color:#FFFFFF;
  2194. }
  2195. #u131075 .text {
  2196. position:absolute;
  2197. align-self:center;
  2198. padding:2px 2px 2px 0px;
  2199. box-sizing:border-box;
  2200. width:100%;
  2201. }
  2202. #u131075_text {
  2203. border-width:0px;
  2204. word-wrap:break-word;
  2205. text-transform:none;
  2206. }
  2207. #u131076_img {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:75px;
  2213. height:38px;
  2214. }
  2215. #u131076 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:0px;
  2219. top:39px;
  2220. width:75px;
  2221. height:38px;
  2222. display:flex;
  2223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:12px;
  2227. }
  2228. #u131076 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:2px 2px 2px 0px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u131076_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. }
  2240. #u131077_img {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:75px;
  2246. height:38px;
  2247. }
  2248. #u131077 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:75px;
  2252. top:39px;
  2253. width:75px;
  2254. height:38px;
  2255. display:flex;
  2256. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:12px;
  2260. }
  2261. #u131077 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u131077_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u131078_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:75px;
  2280. height:38px;
  2281. }
  2282. #u131078 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:150px;
  2286. top:39px;
  2287. width:75px;
  2288. height:38px;
  2289. display:flex;
  2290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:12px;
  2294. }
  2295. #u131078 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u131078_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u131079_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:75px;
  2314. height:38px;
  2315. }
  2316. #u131079 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:225px;
  2320. top:39px;
  2321. width:75px;
  2322. height:38px;
  2323. display:flex;
  2324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:12px;
  2328. }
  2329. #u131079 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u131079_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u131080_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:75px;
  2348. height:38px;
  2349. }
  2350. #u131080 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:300px;
  2354. top:39px;
  2355. width:75px;
  2356. height:38px;
  2357. display:flex;
  2358. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:12px;
  2362. }
  2363. #u131080 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 0px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u131080_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u131081_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:84px;
  2382. height:38px;
  2383. }
  2384. #u131081 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:375px;
  2388. top:39px;
  2389. width:84px;
  2390. height:38px;
  2391. display:flex;
  2392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:12px;
  2396. }
  2397. #u131081 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 0px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u131081_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u131082_img {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:174px;
  2416. height:38px;
  2417. }
  2418. #u131082 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:459px;
  2422. top:39px;
  2423. width:174px;
  2424. height:38px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:12px;
  2430. text-align:left;
  2431. }
  2432. #u131082 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:2px 10px 2px 10px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u131082_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. }
  2444. #u131083_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:60px;
  2450. height:38px;
  2451. }
  2452. #u131083 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:633px;
  2456. top:39px;
  2457. width:60px;
  2458. height:38px;
  2459. display:flex;
  2460. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:12px;
  2464. }
  2465. #u131083 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 0px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u131083_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. visibility:hidden;
  2477. }
  2478. #u131084_img {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:75px;
  2484. height:38px;
  2485. }
  2486. #u131084 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:693px;
  2490. top:39px;
  2491. width:75px;
  2492. height:38px;
  2493. display:flex;
  2494. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. font-size:12px;
  2498. }
  2499. #u131084 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 0px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u131084_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. visibility:hidden;
  2511. }
  2512. #u131085_img {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:75px;
  2518. height:38px;
  2519. }
  2520. #u131085 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:768px;
  2524. top:39px;
  2525. width:75px;
  2526. height:38px;
  2527. display:flex;
  2528. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:12px;
  2532. }
  2533. #u131085 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 2px 2px 0px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u131085_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. visibility:hidden;
  2545. }
  2546. #u131086_img {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:75px;
  2552. height:38px;
  2553. }
  2554. #u131086 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:843px;
  2558. top:39px;
  2559. width:75px;
  2560. height:38px;
  2561. display:flex;
  2562. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:12px;
  2566. }
  2567. #u131086 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 0px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u131086_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. visibility:hidden;
  2579. }
  2580. #u131087_img {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:75px;
  2586. height:38px;
  2587. }
  2588. #u131087 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:918px;
  2592. top:39px;
  2593. width:75px;
  2594. height:38px;
  2595. display:flex;
  2596. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:12px;
  2600. }
  2601. #u131087 .text {
  2602. position:absolute;
  2603. align-self:center;
  2604. padding:2px 2px 2px 0px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u131087_text {
  2609. border-width:0px;
  2610. word-wrap:break-word;
  2611. text-transform:none;
  2612. visibility:hidden;
  2613. }
  2614. #u131088_img {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:75px;
  2620. height:38px;
  2621. }
  2622. #u131088 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:993px;
  2626. top:39px;
  2627. width:75px;
  2628. height:38px;
  2629. display:flex;
  2630. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2631. font-weight:400;
  2632. font-style:normal;
  2633. font-size:12px;
  2634. }
  2635. #u131088 .text {
  2636. position:absolute;
  2637. align-self:center;
  2638. padding:2px 2px 2px 0px;
  2639. box-sizing:border-box;
  2640. width:100%;
  2641. }
  2642. #u131088_text {
  2643. border-width:0px;
  2644. word-wrap:break-word;
  2645. text-transform:none;
  2646. visibility:hidden;
  2647. }
  2648. #u131089_img {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:75px;
  2654. height:38px;
  2655. }
  2656. #u131089 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:1068px;
  2660. top:39px;
  2661. width:75px;
  2662. height:38px;
  2663. display:flex;
  2664. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2665. font-weight:400;
  2666. font-style:normal;
  2667. font-size:12px;
  2668. }
  2669. #u131089 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 0px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u131089_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. visibility:hidden;
  2681. }
  2682. #u131090_img {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:87px;
  2688. height:38px;
  2689. }
  2690. #u131090 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:1143px;
  2694. top:39px;
  2695. width:87px;
  2696. height:38px;
  2697. display:flex;
  2698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2699. font-weight:400;
  2700. font-style:normal;
  2701. font-size:12px;
  2702. color:#1890FF;
  2703. }
  2704. #u131090 .text {
  2705. position:absolute;
  2706. align-self:center;
  2707. padding:2px 2px 2px 0px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u131090_text {
  2712. border-width:0px;
  2713. word-wrap:break-word;
  2714. text-transform:none;
  2715. }
  2716. #u131091_img {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:75px;
  2722. height:38px;
  2723. }
  2724. #u131091 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:77px;
  2729. width:75px;
  2730. height:38px;
  2731. display:flex;
  2732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2733. font-weight:400;
  2734. font-style:normal;
  2735. font-size:12px;
  2736. }
  2737. #u131091 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:2px 2px 2px 0px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u131091_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. }
  2749. #u131092_img {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:75px;
  2755. height:38px;
  2756. }
  2757. #u131092 {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:75px;
  2761. top:77px;
  2762. width:75px;
  2763. height:38px;
  2764. display:flex;
  2765. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2766. font-weight:400;
  2767. font-style:normal;
  2768. font-size:12px;
  2769. }
  2770. #u131092 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:2px 2px 2px 0px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u131092_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u131093_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:75px;
  2789. height:38px;
  2790. }
  2791. #u131093 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:150px;
  2795. top:77px;
  2796. width:75px;
  2797. height:38px;
  2798. display:flex;
  2799. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:12px;
  2803. }
  2804. #u131093 .text {
  2805. position:absolute;
  2806. align-self:center;
  2807. padding:2px 2px 2px 0px;
  2808. box-sizing:border-box;
  2809. width:100%;
  2810. }
  2811. #u131093_text {
  2812. border-width:0px;
  2813. word-wrap:break-word;
  2814. text-transform:none;
  2815. visibility:hidden;
  2816. }
  2817. #u131094_img {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:75px;
  2823. height:38px;
  2824. }
  2825. #u131094 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:225px;
  2829. top:77px;
  2830. width:75px;
  2831. height:38px;
  2832. display:flex;
  2833. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2834. font-weight:400;
  2835. font-style:normal;
  2836. font-size:12px;
  2837. }
  2838. #u131094 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 0px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u131094_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. visibility:hidden;
  2850. }
  2851. #u131095_img {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:75px;
  2857. height:38px;
  2858. }
  2859. #u131095 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:300px;
  2863. top:77px;
  2864. width:75px;
  2865. height:38px;
  2866. display:flex;
  2867. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2868. font-weight:400;
  2869. font-style:normal;
  2870. font-size:12px;
  2871. }
  2872. #u131095 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 2px 2px 0px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u131095_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. visibility:hidden;
  2884. }
  2885. #u131096_img {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:84px;
  2891. height:38px;
  2892. }
  2893. #u131096 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:375px;
  2897. top:77px;
  2898. width:84px;
  2899. height:38px;
  2900. display:flex;
  2901. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:12px;
  2905. }
  2906. #u131096 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 0px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u131096_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. visibility:hidden;
  2918. }
  2919. #u131097_img {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:174px;
  2925. height:38px;
  2926. }
  2927. #u131097 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:459px;
  2931. top:77px;
  2932. width:174px;
  2933. height:38px;
  2934. display:flex;
  2935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2936. font-weight:400;
  2937. font-style:normal;
  2938. font-size:12px;
  2939. text-align:left;
  2940. }
  2941. #u131097 .text {
  2942. position:absolute;
  2943. align-self:center;
  2944. padding:2px 10px 2px 10px;
  2945. box-sizing:border-box;
  2946. width:100%;
  2947. }
  2948. #u131097_text {
  2949. border-width:0px;
  2950. word-wrap:break-word;
  2951. text-transform:none;
  2952. }
  2953. #u131098_img {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:60px;
  2959. height:38px;
  2960. }
  2961. #u131098 {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:633px;
  2965. top:77px;
  2966. width:60px;
  2967. height:38px;
  2968. display:flex;
  2969. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2970. font-weight:400;
  2971. font-style:normal;
  2972. font-size:12px;
  2973. }
  2974. #u131098 .text {
  2975. position:absolute;
  2976. align-self:center;
  2977. padding:2px 2px 2px 0px;
  2978. box-sizing:border-box;
  2979. width:100%;
  2980. }
  2981. #u131098_text {
  2982. border-width:0px;
  2983. word-wrap:break-word;
  2984. text-transform:none;
  2985. visibility:hidden;
  2986. }
  2987. #u131099_img {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:75px;
  2993. height:38px;
  2994. }
  2995. #u131099 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:693px;
  2999. top:77px;
  3000. width:75px;
  3001. height:38px;
  3002. display:flex;
  3003. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:12px;
  3007. }
  3008. #u131099 .text {
  3009. position:absolute;
  3010. align-self:center;
  3011. padding:2px 2px 2px 0px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u131099_text {
  3016. border-width:0px;
  3017. word-wrap:break-word;
  3018. text-transform:none;
  3019. visibility:hidden;
  3020. }
  3021. #u131100_img {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:75px;
  3027. height:38px;
  3028. }
  3029. #u131100 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:768px;
  3033. top:77px;
  3034. width:75px;
  3035. height:38px;
  3036. display:flex;
  3037. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:12px;
  3041. }
  3042. #u131100 .text {
  3043. position:absolute;
  3044. align-self:center;
  3045. padding:2px 2px 2px 0px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u131100_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. visibility:hidden;
  3054. }
  3055. #u131101_img {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:75px;
  3061. height:38px;
  3062. }
  3063. #u131101 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:843px;
  3067. top:77px;
  3068. width:75px;
  3069. height:38px;
  3070. display:flex;
  3071. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:12px;
  3075. }
  3076. #u131101 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 0px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u131101_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u131102_img {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:75px;
  3095. height:38px;
  3096. }
  3097. #u131102 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:918px;
  3101. top:77px;
  3102. width:75px;
  3103. height:38px;
  3104. display:flex;
  3105. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:12px;
  3109. }
  3110. #u131102 .text {
  3111. position:absolute;
  3112. align-self:center;
  3113. padding:2px 2px 2px 0px;
  3114. box-sizing:border-box;
  3115. width:100%;
  3116. }
  3117. #u131102_text {
  3118. border-width:0px;
  3119. word-wrap:break-word;
  3120. text-transform:none;
  3121. visibility:hidden;
  3122. }
  3123. #u131103_img {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:75px;
  3129. height:38px;
  3130. }
  3131. #u131103 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:993px;
  3135. top:77px;
  3136. width:75px;
  3137. height:38px;
  3138. display:flex;
  3139. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:12px;
  3143. }
  3144. #u131103 .text {
  3145. position:absolute;
  3146. align-self:center;
  3147. padding:2px 2px 2px 0px;
  3148. box-sizing:border-box;
  3149. width:100%;
  3150. }
  3151. #u131103_text {
  3152. border-width:0px;
  3153. word-wrap:break-word;
  3154. text-transform:none;
  3155. visibility:hidden;
  3156. }
  3157. #u131104_img {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:75px;
  3163. height:38px;
  3164. }
  3165. #u131104 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:1068px;
  3169. top:77px;
  3170. width:75px;
  3171. height:38px;
  3172. display:flex;
  3173. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. font-size:12px;
  3177. }
  3178. #u131104 .text {
  3179. position:absolute;
  3180. align-self:center;
  3181. padding:2px 2px 2px 0px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u131104_text {
  3186. border-width:0px;
  3187. word-wrap:break-word;
  3188. text-transform:none;
  3189. visibility:hidden;
  3190. }
  3191. #u131105_img {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:87px;
  3197. height:38px;
  3198. }
  3199. #u131105 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:1143px;
  3203. top:77px;
  3204. width:87px;
  3205. height:38px;
  3206. display:flex;
  3207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:12px;
  3211. }
  3212. #u131105 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 0px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u131105_text {
  3220. border-width:0px;
  3221. word-wrap:break-word;
  3222. text-transform:none;
  3223. }
  3224. #u131106_img {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:75px;
  3230. height:38px;
  3231. }
  3232. #u131106 {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:0px;
  3236. top:115px;
  3237. width:75px;
  3238. height:38px;
  3239. display:flex;
  3240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3241. font-weight:400;
  3242. font-style:normal;
  3243. font-size:12px;
  3244. }
  3245. #u131106 .text {
  3246. position:absolute;
  3247. align-self:center;
  3248. padding:2px 2px 2px 0px;
  3249. box-sizing:border-box;
  3250. width:100%;
  3251. }
  3252. #u131106_text {
  3253. border-width:0px;
  3254. word-wrap:break-word;
  3255. text-transform:none;
  3256. }
  3257. #u131107_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:75px;
  3263. height:38px;
  3264. }
  3265. #u131107 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:75px;
  3269. top:115px;
  3270. width:75px;
  3271. height:38px;
  3272. display:flex;
  3273. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:12px;
  3277. }
  3278. #u131107 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 0px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u131107_text {
  3286. border-width:0px;
  3287. word-wrap:break-word;
  3288. text-transform:none;
  3289. visibility:hidden;
  3290. }
  3291. #u131108_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:75px;
  3297. height:38px;
  3298. }
  3299. #u131108 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:150px;
  3303. top:115px;
  3304. width:75px;
  3305. height:38px;
  3306. display:flex;
  3307. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:12px;
  3311. }
  3312. #u131108 .text {
  3313. position:absolute;
  3314. align-self:center;
  3315. padding:2px 2px 2px 0px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u131108_text {
  3320. border-width:0px;
  3321. word-wrap:break-word;
  3322. text-transform:none;
  3323. visibility:hidden;
  3324. }
  3325. #u131109_img {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:75px;
  3331. height:38px;
  3332. }
  3333. #u131109 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:225px;
  3337. top:115px;
  3338. width:75px;
  3339. height:38px;
  3340. display:flex;
  3341. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:12px;
  3345. }
  3346. #u131109 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 0px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u131109_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u131110_img {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:75px;
  3365. height:38px;
  3366. }
  3367. #u131110 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:300px;
  3371. top:115px;
  3372. width:75px;
  3373. height:38px;
  3374. display:flex;
  3375. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3376. font-weight:400;
  3377. font-style:normal;
  3378. font-size:12px;
  3379. }
  3380. #u131110 .text {
  3381. position:absolute;
  3382. align-self:center;
  3383. padding:2px 2px 2px 0px;
  3384. box-sizing:border-box;
  3385. width:100%;
  3386. }
  3387. #u131110_text {
  3388. border-width:0px;
  3389. word-wrap:break-word;
  3390. text-transform:none;
  3391. visibility:hidden;
  3392. }
  3393. #u131111_img {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:84px;
  3399. height:38px;
  3400. }
  3401. #u131111 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:375px;
  3405. top:115px;
  3406. width:84px;
  3407. height:38px;
  3408. display:flex;
  3409. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:12px;
  3413. }
  3414. #u131111 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 0px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u131111_text {
  3422. border-width:0px;
  3423. word-wrap:break-word;
  3424. text-transform:none;
  3425. visibility:hidden;
  3426. }
  3427. #u131112_img {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:174px;
  3433. height:38px;
  3434. }
  3435. #u131112 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:459px;
  3439. top:115px;
  3440. width:174px;
  3441. height:38px;
  3442. display:flex;
  3443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:12px;
  3447. text-align:left;
  3448. }
  3449. #u131112 .text {
  3450. position:absolute;
  3451. align-self:center;
  3452. padding:2px 10px 2px 10px;
  3453. box-sizing:border-box;
  3454. width:100%;
  3455. }
  3456. #u131112_text {
  3457. border-width:0px;
  3458. word-wrap:break-word;
  3459. text-transform:none;
  3460. }
  3461. #u131113_img {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:60px;
  3467. height:38px;
  3468. }
  3469. #u131113 {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:633px;
  3473. top:115px;
  3474. width:60px;
  3475. height:38px;
  3476. display:flex;
  3477. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3478. font-weight:400;
  3479. font-style:normal;
  3480. font-size:12px;
  3481. }
  3482. #u131113 .text {
  3483. position:absolute;
  3484. align-self:center;
  3485. padding:2px 2px 2px 0px;
  3486. box-sizing:border-box;
  3487. width:100%;
  3488. }
  3489. #u131113_text {
  3490. border-width:0px;
  3491. word-wrap:break-word;
  3492. text-transform:none;
  3493. visibility:hidden;
  3494. }
  3495. #u131114_img {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:0px;
  3499. top:0px;
  3500. width:75px;
  3501. height:38px;
  3502. }
  3503. #u131114 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:693px;
  3507. top:115px;
  3508. width:75px;
  3509. height:38px;
  3510. display:flex;
  3511. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3512. font-weight:400;
  3513. font-style:normal;
  3514. font-size:12px;
  3515. }
  3516. #u131114 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 0px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u131114_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u131115_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:75px;
  3535. height:38px;
  3536. }
  3537. #u131115 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:768px;
  3541. top:115px;
  3542. width:75px;
  3543. height:38px;
  3544. display:flex;
  3545. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:12px;
  3549. }
  3550. #u131115 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 0px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u131115_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. visibility:hidden;
  3562. }
  3563. #u131116_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:75px;
  3569. height:38px;
  3570. }
  3571. #u131116 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:843px;
  3575. top:115px;
  3576. width:75px;
  3577. height:38px;
  3578. display:flex;
  3579. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:12px;
  3583. }
  3584. #u131116 .text {
  3585. position:absolute;
  3586. align-self:center;
  3587. padding:2px 2px 2px 0px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u131116_text {
  3592. border-width:0px;
  3593. word-wrap:break-word;
  3594. text-transform:none;
  3595. visibility:hidden;
  3596. }
  3597. #u131117_img {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:75px;
  3603. height:38px;
  3604. }
  3605. #u131117 {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:918px;
  3609. top:115px;
  3610. width:75px;
  3611. height:38px;
  3612. display:flex;
  3613. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3614. font-weight:400;
  3615. font-style:normal;
  3616. font-size:12px;
  3617. }
  3618. #u131117 .text {
  3619. position:absolute;
  3620. align-self:center;
  3621. padding:2px 2px 2px 0px;
  3622. box-sizing:border-box;
  3623. width:100%;
  3624. }
  3625. #u131117_text {
  3626. border-width:0px;
  3627. word-wrap:break-word;
  3628. text-transform:none;
  3629. visibility:hidden;
  3630. }
  3631. #u131118_img {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:75px;
  3637. height:38px;
  3638. }
  3639. #u131118 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:993px;
  3643. top:115px;
  3644. width:75px;
  3645. height:38px;
  3646. display:flex;
  3647. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3648. font-weight:400;
  3649. font-style:normal;
  3650. font-size:12px;
  3651. }
  3652. #u131118 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 0px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u131118_text {
  3660. border-width:0px;
  3661. word-wrap:break-word;
  3662. text-transform:none;
  3663. visibility:hidden;
  3664. }
  3665. #u131119_img {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:75px;
  3671. height:38px;
  3672. }
  3673. #u131119 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:1068px;
  3677. top:115px;
  3678. width:75px;
  3679. height:38px;
  3680. display:flex;
  3681. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:12px;
  3685. }
  3686. #u131119 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 0px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u131119_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u131120_img {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:87px;
  3705. height:38px;
  3706. }
  3707. #u131120 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:1143px;
  3711. top:115px;
  3712. width:87px;
  3713. height:38px;
  3714. display:flex;
  3715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:12px;
  3719. }
  3720. #u131120 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 0px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u131120_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. }
  3732. #u131121_img {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:75px;
  3738. height:35px;
  3739. }
  3740. #u131121 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:153px;
  3745. width:75px;
  3746. height:35px;
  3747. display:flex;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:12px;
  3752. color:#606266;
  3753. }
  3754. #u131121 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:2px 2px 2px 0px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u131121_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. }
  3766. #u131122_img {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:75px;
  3772. height:35px;
  3773. }
  3774. #u131122 {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:75px;
  3778. top:153px;
  3779. width:75px;
  3780. height:35px;
  3781. display:flex;
  3782. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3783. font-weight:400;
  3784. font-style:normal;
  3785. font-size:12px;
  3786. color:#606266;
  3787. }
  3788. #u131122 .text {
  3789. position:absolute;
  3790. align-self:center;
  3791. padding:2px 2px 2px 0px;
  3792. box-sizing:border-box;
  3793. width:100%;
  3794. }
  3795. #u131122_text {
  3796. border-width:0px;
  3797. word-wrap:break-word;
  3798. text-transform:none;
  3799. visibility:hidden;
  3800. }
  3801. #u131123_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:75px;
  3807. height:35px;
  3808. }
  3809. #u131123 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:150px;
  3813. top:153px;
  3814. width:75px;
  3815. height:35px;
  3816. display:flex;
  3817. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. font-size:12px;
  3821. color:#606266;
  3822. }
  3823. #u131123 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 0px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u131123_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u131124_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:75px;
  3842. height:35px;
  3843. }
  3844. #u131124 {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:225px;
  3848. top:153px;
  3849. width:75px;
  3850. height:35px;
  3851. display:flex;
  3852. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3853. font-weight:400;
  3854. font-style:normal;
  3855. font-size:12px;
  3856. color:#606266;
  3857. }
  3858. #u131124 .text {
  3859. position:absolute;
  3860. align-self:center;
  3861. padding:2px 2px 2px 0px;
  3862. box-sizing:border-box;
  3863. width:100%;
  3864. }
  3865. #u131124_text {
  3866. border-width:0px;
  3867. word-wrap:break-word;
  3868. text-transform:none;
  3869. visibility:hidden;
  3870. }
  3871. #u131125_img {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:75px;
  3877. height:35px;
  3878. }
  3879. #u131125 {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:300px;
  3883. top:153px;
  3884. width:75px;
  3885. height:35px;
  3886. display:flex;
  3887. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:12px;
  3891. color:#606266;
  3892. }
  3893. #u131125 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:2px 2px 2px 0px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u131125_text {
  3901. border-width:0px;
  3902. word-wrap:break-word;
  3903. text-transform:none;
  3904. visibility:hidden;
  3905. }
  3906. #u131126_img {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:84px;
  3912. height:35px;
  3913. }
  3914. #u131126 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:375px;
  3918. top:153px;
  3919. width:84px;
  3920. height:35px;
  3921. display:flex;
  3922. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3923. font-weight:400;
  3924. font-style:normal;
  3925. font-size:12px;
  3926. color:#606266;
  3927. }
  3928. #u131126 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u131126_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. visibility:hidden;
  3940. }
  3941. #u131127_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:174px;
  3947. height:35px;
  3948. }
  3949. #u131127 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:459px;
  3953. top:153px;
  3954. width:174px;
  3955. height:35px;
  3956. display:flex;
  3957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. font-size:12px;
  3961. color:#606266;
  3962. }
  3963. #u131127 .text {
  3964. position:absolute;
  3965. align-self:center;
  3966. padding:2px 2px 2px 0px;
  3967. box-sizing:border-box;
  3968. width:100%;
  3969. }
  3970. #u131127_text {
  3971. border-width:0px;
  3972. word-wrap:break-word;
  3973. text-transform:none;
  3974. visibility:hidden;
  3975. }
  3976. #u131128_img {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:60px;
  3982. height:35px;
  3983. }
  3984. #u131128 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:633px;
  3988. top:153px;
  3989. width:60px;
  3990. height:35px;
  3991. display:flex;
  3992. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. font-size:12px;
  3996. color:#606266;
  3997. }
  3998. #u131128 .text {
  3999. position:absolute;
  4000. align-self:center;
  4001. padding:2px 2px 2px 0px;
  4002. box-sizing:border-box;
  4003. width:100%;
  4004. }
  4005. #u131128_text {
  4006. border-width:0px;
  4007. word-wrap:break-word;
  4008. text-transform:none;
  4009. visibility:hidden;
  4010. }
  4011. #u131129_img {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:75px;
  4017. height:35px;
  4018. }
  4019. #u131129 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:693px;
  4023. top:153px;
  4024. width:75px;
  4025. height:35px;
  4026. display:flex;
  4027. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:12px;
  4031. color:#606266;
  4032. }
  4033. #u131129 .text {
  4034. position:absolute;
  4035. align-self:center;
  4036. padding:2px 2px 2px 0px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u131129_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. visibility:hidden;
  4045. }
  4046. #u131130_img {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:75px;
  4052. height:35px;
  4053. }
  4054. #u131130 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:768px;
  4058. top:153px;
  4059. width:75px;
  4060. height:35px;
  4061. display:flex;
  4062. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4063. font-weight:400;
  4064. font-style:normal;
  4065. font-size:12px;
  4066. color:#606266;
  4067. }
  4068. #u131130 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 2px 2px 0px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u131130_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u131131_img {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:75px;
  4087. height:35px;
  4088. }
  4089. #u131131 {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:843px;
  4093. top:153px;
  4094. width:75px;
  4095. height:35px;
  4096. display:flex;
  4097. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:12px;
  4101. color:#606266;
  4102. }
  4103. #u131131 .text {
  4104. position:absolute;
  4105. align-self:center;
  4106. padding:2px 2px 2px 0px;
  4107. box-sizing:border-box;
  4108. width:100%;
  4109. }
  4110. #u131131_text {
  4111. border-width:0px;
  4112. word-wrap:break-word;
  4113. text-transform:none;
  4114. visibility:hidden;
  4115. }
  4116. #u131132_img {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:0px;
  4120. top:0px;
  4121. width:75px;
  4122. height:35px;
  4123. }
  4124. #u131132 {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:918px;
  4128. top:153px;
  4129. width:75px;
  4130. height:35px;
  4131. display:flex;
  4132. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4133. font-weight:400;
  4134. font-style:normal;
  4135. font-size:12px;
  4136. color:#606266;
  4137. }
  4138. #u131132 .text {
  4139. position:absolute;
  4140. align-self:center;
  4141. padding:2px 2px 2px 0px;
  4142. box-sizing:border-box;
  4143. width:100%;
  4144. }
  4145. #u131132_text {
  4146. border-width:0px;
  4147. word-wrap:break-word;
  4148. text-transform:none;
  4149. visibility:hidden;
  4150. }
  4151. #u131133_img {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:75px;
  4157. height:35px;
  4158. }
  4159. #u131133 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:993px;
  4163. top:153px;
  4164. width:75px;
  4165. height:35px;
  4166. display:flex;
  4167. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4168. font-weight:400;
  4169. font-style:normal;
  4170. font-size:12px;
  4171. color:#606266;
  4172. }
  4173. #u131133 .text {
  4174. position:absolute;
  4175. align-self:center;
  4176. padding:2px 2px 2px 0px;
  4177. box-sizing:border-box;
  4178. width:100%;
  4179. }
  4180. #u131133_text {
  4181. border-width:0px;
  4182. word-wrap:break-word;
  4183. text-transform:none;
  4184. visibility:hidden;
  4185. }
  4186. #u131134_img {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:0px;
  4190. top:0px;
  4191. width:75px;
  4192. height:35px;
  4193. }
  4194. #u131134 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:1068px;
  4198. top:153px;
  4199. width:75px;
  4200. height:35px;
  4201. display:flex;
  4202. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4203. font-weight:400;
  4204. font-style:normal;
  4205. font-size:12px;
  4206. color:#606266;
  4207. }
  4208. #u131134 .text {
  4209. position:absolute;
  4210. align-self:center;
  4211. padding:2px 2px 2px 0px;
  4212. box-sizing:border-box;
  4213. width:100%;
  4214. }
  4215. #u131134_text {
  4216. border-width:0px;
  4217. word-wrap:break-word;
  4218. text-transform:none;
  4219. visibility:hidden;
  4220. }
  4221. #u131135_img {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:87px;
  4227. height:35px;
  4228. }
  4229. #u131135 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:1143px;
  4233. top:153px;
  4234. width:87px;
  4235. height:35px;
  4236. display:flex;
  4237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:12px;
  4241. color:#02A7F0;
  4242. }
  4243. #u131135 .text {
  4244. position:absolute;
  4245. align-self:center;
  4246. padding:2px 2px 2px 0px;
  4247. box-sizing:border-box;
  4248. width:100%;
  4249. }
  4250. #u131135_text {
  4251. border-width:0px;
  4252. word-wrap:break-word;
  4253. text-transform:none;
  4254. visibility:hidden;
  4255. }
  4256. #u131136_img {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:0px;
  4261. width:75px;
  4262. height:35px;
  4263. }
  4264. #u131136 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:188px;
  4269. width:75px;
  4270. height:35px;
  4271. display:flex;
  4272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4273. font-weight:400;
  4274. font-style:normal;
  4275. font-size:12px;
  4276. color:#606266;
  4277. }
  4278. #u131136 .text {
  4279. position:absolute;
  4280. align-self:center;
  4281. padding:2px 2px 2px 0px;
  4282. box-sizing:border-box;
  4283. width:100%;
  4284. }
  4285. #u131136_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. }
  4290. #u131137_img {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:75px;
  4296. height:35px;
  4297. }
  4298. #u131137 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:75px;
  4302. top:188px;
  4303. width:75px;
  4304. height:35px;
  4305. display:flex;
  4306. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4307. font-weight:400;
  4308. font-style:normal;
  4309. font-size:12px;
  4310. color:#606266;
  4311. }
  4312. #u131137 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 0px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u131137_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u131138_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:75px;
  4331. height:35px;
  4332. }
  4333. #u131138 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:150px;
  4337. top:188px;
  4338. width:75px;
  4339. height:35px;
  4340. display:flex;
  4341. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:12px;
  4345. color:#606266;
  4346. }
  4347. #u131138 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:2px 2px 2px 0px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u131138_text {
  4355. border-width:0px;
  4356. word-wrap:break-word;
  4357. text-transform:none;
  4358. visibility:hidden;
  4359. }
  4360. #u131139_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:75px;
  4366. height:35px;
  4367. }
  4368. #u131139 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:225px;
  4372. top:188px;
  4373. width:75px;
  4374. height:35px;
  4375. display:flex;
  4376. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:12px;
  4380. color:#606266;
  4381. }
  4382. #u131139 .text {
  4383. position:absolute;
  4384. align-self:center;
  4385. padding:2px 2px 2px 0px;
  4386. box-sizing:border-box;
  4387. width:100%;
  4388. }
  4389. #u131139_text {
  4390. border-width:0px;
  4391. word-wrap:break-word;
  4392. text-transform:none;
  4393. visibility:hidden;
  4394. }
  4395. #u131140_img {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:75px;
  4401. height:35px;
  4402. }
  4403. #u131140 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:300px;
  4407. top:188px;
  4408. width:75px;
  4409. height:35px;
  4410. display:flex;
  4411. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:12px;
  4415. color:#606266;
  4416. }
  4417. #u131140 .text {
  4418. position:absolute;
  4419. align-self:center;
  4420. padding:2px 2px 2px 0px;
  4421. box-sizing:border-box;
  4422. width:100%;
  4423. }
  4424. #u131140_text {
  4425. border-width:0px;
  4426. word-wrap:break-word;
  4427. text-transform:none;
  4428. visibility:hidden;
  4429. }
  4430. #u131141_img {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:84px;
  4436. height:35px;
  4437. }
  4438. #u131141 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:375px;
  4442. top:188px;
  4443. width:84px;
  4444. height:35px;
  4445. display:flex;
  4446. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4447. font-weight:400;
  4448. font-style:normal;
  4449. font-size:12px;
  4450. color:#606266;
  4451. }
  4452. #u131141 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 0px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u131141_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u131142_img {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:174px;
  4471. height:35px;
  4472. }
  4473. #u131142 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:459px;
  4477. top:188px;
  4478. width:174px;
  4479. height:35px;
  4480. display:flex;
  4481. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4482. font-weight:400;
  4483. font-style:normal;
  4484. font-size:12px;
  4485. color:#606266;
  4486. }
  4487. #u131142 .text {
  4488. position:absolute;
  4489. align-self:center;
  4490. padding:2px 2px 2px 0px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u131142_text {
  4495. border-width:0px;
  4496. word-wrap:break-word;
  4497. text-transform:none;
  4498. visibility:hidden;
  4499. }
  4500. #u131143_img {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:60px;
  4506. height:35px;
  4507. }
  4508. #u131143 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:633px;
  4512. top:188px;
  4513. width:60px;
  4514. height:35px;
  4515. display:flex;
  4516. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:12px;
  4520. color:#606266;
  4521. }
  4522. #u131143 .text {
  4523. position:absolute;
  4524. align-self:center;
  4525. padding:2px 2px 2px 0px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u131143_text {
  4530. border-width:0px;
  4531. word-wrap:break-word;
  4532. text-transform:none;
  4533. visibility:hidden;
  4534. }
  4535. #u131144_img {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:0px;
  4539. top:0px;
  4540. width:75px;
  4541. height:35px;
  4542. }
  4543. #u131144 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:693px;
  4547. top:188px;
  4548. width:75px;
  4549. height:35px;
  4550. display:flex;
  4551. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4552. font-weight:400;
  4553. font-style:normal;
  4554. font-size:12px;
  4555. color:#606266;
  4556. }
  4557. #u131144 .text {
  4558. position:absolute;
  4559. align-self:center;
  4560. padding:2px 2px 2px 0px;
  4561. box-sizing:border-box;
  4562. width:100%;
  4563. }
  4564. #u131144_text {
  4565. border-width:0px;
  4566. word-wrap:break-word;
  4567. text-transform:none;
  4568. visibility:hidden;
  4569. }
  4570. #u131145_img {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:75px;
  4576. height:35px;
  4577. }
  4578. #u131145 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:768px;
  4582. top:188px;
  4583. width:75px;
  4584. height:35px;
  4585. display:flex;
  4586. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4587. font-weight:400;
  4588. font-style:normal;
  4589. font-size:12px;
  4590. color:#606266;
  4591. }
  4592. #u131145 .text {
  4593. position:absolute;
  4594. align-self:center;
  4595. padding:2px 2px 2px 0px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u131145_text {
  4600. border-width:0px;
  4601. word-wrap:break-word;
  4602. text-transform:none;
  4603. visibility:hidden;
  4604. }
  4605. #u131146_img {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:75px;
  4611. height:35px;
  4612. }
  4613. #u131146 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:843px;
  4617. top:188px;
  4618. width:75px;
  4619. height:35px;
  4620. display:flex;
  4621. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:12px;
  4625. color:#606266;
  4626. }
  4627. #u131146 .text {
  4628. position:absolute;
  4629. align-self:center;
  4630. padding:2px 2px 2px 0px;
  4631. box-sizing:border-box;
  4632. width:100%;
  4633. }
  4634. #u131146_text {
  4635. border-width:0px;
  4636. word-wrap:break-word;
  4637. text-transform:none;
  4638. visibility:hidden;
  4639. }
  4640. #u131147_img {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:75px;
  4646. height:35px;
  4647. }
  4648. #u131147 {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:918px;
  4652. top:188px;
  4653. width:75px;
  4654. height:35px;
  4655. display:flex;
  4656. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4657. font-weight:400;
  4658. font-style:normal;
  4659. font-size:12px;
  4660. color:#606266;
  4661. }
  4662. #u131147 .text {
  4663. position:absolute;
  4664. align-self:center;
  4665. padding:2px 2px 2px 0px;
  4666. box-sizing:border-box;
  4667. width:100%;
  4668. }
  4669. #u131147_text {
  4670. border-width:0px;
  4671. word-wrap:break-word;
  4672. text-transform:none;
  4673. visibility:hidden;
  4674. }
  4675. #u131148_img {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:0px;
  4679. top:0px;
  4680. width:75px;
  4681. height:35px;
  4682. }
  4683. #u131148 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:993px;
  4687. top:188px;
  4688. width:75px;
  4689. height:35px;
  4690. display:flex;
  4691. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:12px;
  4695. color:#606266;
  4696. }
  4697. #u131148 .text {
  4698. position:absolute;
  4699. align-self:center;
  4700. padding:2px 2px 2px 0px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u131148_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. visibility:hidden;
  4709. }
  4710. #u131149_img {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:75px;
  4716. height:35px;
  4717. }
  4718. #u131149 {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:1068px;
  4722. top:188px;
  4723. width:75px;
  4724. height:35px;
  4725. display:flex;
  4726. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4727. font-weight:400;
  4728. font-style:normal;
  4729. font-size:12px;
  4730. color:#606266;
  4731. }
  4732. #u131149 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:2px 2px 2px 0px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u131149_text {
  4740. border-width:0px;
  4741. word-wrap:break-word;
  4742. text-transform:none;
  4743. visibility:hidden;
  4744. }
  4745. #u131150_img {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:87px;
  4751. height:35px;
  4752. }
  4753. #u131150 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:1143px;
  4757. top:188px;
  4758. width:87px;
  4759. height:35px;
  4760. display:flex;
  4761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4762. font-weight:400;
  4763. font-style:normal;
  4764. font-size:12px;
  4765. color:#02A7F0;
  4766. }
  4767. #u131150 .text {
  4768. position:absolute;
  4769. align-self:center;
  4770. padding:2px 2px 2px 0px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u131150_text {
  4775. border-width:0px;
  4776. word-wrap:break-word;
  4777. text-transform:none;
  4778. visibility:hidden;
  4779. }
  4780. #u131151_img {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:75px;
  4786. height:35px;
  4787. }
  4788. #u131151 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:223px;
  4793. width:75px;
  4794. height:35px;
  4795. display:flex;
  4796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4797. font-weight:400;
  4798. font-style:normal;
  4799. font-size:12px;
  4800. color:#606266;
  4801. }
  4802. #u131151 .text {
  4803. position:absolute;
  4804. align-self:center;
  4805. padding:2px 2px 2px 0px;
  4806. box-sizing:border-box;
  4807. width:100%;
  4808. }
  4809. #u131151_text {
  4810. border-width:0px;
  4811. word-wrap:break-word;
  4812. text-transform:none;
  4813. visibility:hidden;
  4814. }
  4815. #u131152_img {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:75px;
  4821. height:35px;
  4822. }
  4823. #u131152 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:75px;
  4827. top:223px;
  4828. width:75px;
  4829. height:35px;
  4830. display:flex;
  4831. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4832. font-weight:400;
  4833. font-style:normal;
  4834. font-size:12px;
  4835. color:#606266;
  4836. }
  4837. #u131152 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:2px 2px 2px 0px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u131152_text {
  4845. border-width:0px;
  4846. word-wrap:break-word;
  4847. text-transform:none;
  4848. visibility:hidden;
  4849. }
  4850. #u131153_img {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:75px;
  4856. height:35px;
  4857. }
  4858. #u131153 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:150px;
  4862. top:223px;
  4863. width:75px;
  4864. height:35px;
  4865. display:flex;
  4866. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. font-size:12px;
  4870. color:#606266;
  4871. }
  4872. #u131153 .text {
  4873. position:absolute;
  4874. align-self:center;
  4875. padding:2px 2px 2px 0px;
  4876. box-sizing:border-box;
  4877. width:100%;
  4878. }
  4879. #u131153_text {
  4880. border-width:0px;
  4881. word-wrap:break-word;
  4882. text-transform:none;
  4883. visibility:hidden;
  4884. }
  4885. #u131154_img {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:75px;
  4891. height:35px;
  4892. }
  4893. #u131154 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:225px;
  4897. top:223px;
  4898. width:75px;
  4899. height:35px;
  4900. display:flex;
  4901. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4902. font-weight:400;
  4903. font-style:normal;
  4904. font-size:12px;
  4905. color:#606266;
  4906. }
  4907. #u131154 .text {
  4908. position:absolute;
  4909. align-self:center;
  4910. padding:2px 2px 2px 0px;
  4911. box-sizing:border-box;
  4912. width:100%;
  4913. }
  4914. #u131154_text {
  4915. border-width:0px;
  4916. word-wrap:break-word;
  4917. text-transform:none;
  4918. visibility:hidden;
  4919. }
  4920. #u131155_img {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:75px;
  4926. height:35px;
  4927. }
  4928. #u131155 {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:300px;
  4932. top:223px;
  4933. width:75px;
  4934. height:35px;
  4935. display:flex;
  4936. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:12px;
  4940. color:#606266;
  4941. }
  4942. #u131155 .text {
  4943. position:absolute;
  4944. align-self:center;
  4945. padding:2px 2px 2px 0px;
  4946. box-sizing:border-box;
  4947. width:100%;
  4948. }
  4949. #u131155_text {
  4950. border-width:0px;
  4951. word-wrap:break-word;
  4952. text-transform:none;
  4953. visibility:hidden;
  4954. }
  4955. #u131156_img {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:84px;
  4961. height:35px;
  4962. }
  4963. #u131156 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:375px;
  4967. top:223px;
  4968. width:84px;
  4969. height:35px;
  4970. display:flex;
  4971. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:12px;
  4975. color:#606266;
  4976. }
  4977. #u131156 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:2px 2px 2px 0px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u131156_text {
  4985. border-width:0px;
  4986. word-wrap:break-word;
  4987. text-transform:none;
  4988. visibility:hidden;
  4989. }
  4990. #u131157_img {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:174px;
  4996. height:35px;
  4997. }
  4998. #u131157 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:459px;
  5002. top:223px;
  5003. width:174px;
  5004. height:35px;
  5005. display:flex;
  5006. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5007. font-weight:400;
  5008. font-style:normal;
  5009. font-size:12px;
  5010. color:#606266;
  5011. }
  5012. #u131157 .text {
  5013. position:absolute;
  5014. align-self:center;
  5015. padding:2px 2px 2px 0px;
  5016. box-sizing:border-box;
  5017. width:100%;
  5018. }
  5019. #u131157_text {
  5020. border-width:0px;
  5021. word-wrap:break-word;
  5022. text-transform:none;
  5023. visibility:hidden;
  5024. }
  5025. #u131158_img {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:60px;
  5031. height:35px;
  5032. }
  5033. #u131158 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:633px;
  5037. top:223px;
  5038. width:60px;
  5039. height:35px;
  5040. display:flex;
  5041. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5042. font-weight:400;
  5043. font-style:normal;
  5044. font-size:12px;
  5045. color:#606266;
  5046. }
  5047. #u131158 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:2px 2px 2px 0px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u131158_text {
  5055. border-width:0px;
  5056. word-wrap:break-word;
  5057. text-transform:none;
  5058. visibility:hidden;
  5059. }
  5060. #u131159_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:75px;
  5066. height:35px;
  5067. }
  5068. #u131159 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:693px;
  5072. top:223px;
  5073. width:75px;
  5074. height:35px;
  5075. display:flex;
  5076. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. font-size:12px;
  5080. color:#606266;
  5081. }
  5082. #u131159 .text {
  5083. position:absolute;
  5084. align-self:center;
  5085. padding:2px 2px 2px 0px;
  5086. box-sizing:border-box;
  5087. width:100%;
  5088. }
  5089. #u131159_text {
  5090. border-width:0px;
  5091. word-wrap:break-word;
  5092. text-transform:none;
  5093. visibility:hidden;
  5094. }
  5095. #u131160_img {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:75px;
  5101. height:35px;
  5102. }
  5103. #u131160 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:768px;
  5107. top:223px;
  5108. width:75px;
  5109. height:35px;
  5110. display:flex;
  5111. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:12px;
  5115. color:#606266;
  5116. }
  5117. #u131160 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 0px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u131160_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. visibility:hidden;
  5129. }
  5130. #u131161_img {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:75px;
  5136. height:35px;
  5137. }
  5138. #u131161 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:843px;
  5142. top:223px;
  5143. width:75px;
  5144. height:35px;
  5145. display:flex;
  5146. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:12px;
  5150. color:#606266;
  5151. }
  5152. #u131161 .text {
  5153. position:absolute;
  5154. align-self:center;
  5155. padding:2px 2px 2px 0px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u131161_text {
  5160. border-width:0px;
  5161. word-wrap:break-word;
  5162. text-transform:none;
  5163. visibility:hidden;
  5164. }
  5165. #u131162_img {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:0px;
  5169. top:0px;
  5170. width:75px;
  5171. height:35px;
  5172. }
  5173. #u131162 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:918px;
  5177. top:223px;
  5178. width:75px;
  5179. height:35px;
  5180. display:flex;
  5181. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:12px;
  5185. color:#606266;
  5186. }
  5187. #u131162 .text {
  5188. position:absolute;
  5189. align-self:center;
  5190. padding:2px 2px 2px 0px;
  5191. box-sizing:border-box;
  5192. width:100%;
  5193. }
  5194. #u131162_text {
  5195. border-width:0px;
  5196. word-wrap:break-word;
  5197. text-transform:none;
  5198. visibility:hidden;
  5199. }
  5200. #u131163_img {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:0px;
  5204. top:0px;
  5205. width:75px;
  5206. height:35px;
  5207. }
  5208. #u131163 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:993px;
  5212. top:223px;
  5213. width:75px;
  5214. height:35px;
  5215. display:flex;
  5216. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:12px;
  5220. color:#606266;
  5221. }
  5222. #u131163 .text {
  5223. position:absolute;
  5224. align-self:center;
  5225. padding:2px 2px 2px 0px;
  5226. box-sizing:border-box;
  5227. width:100%;
  5228. }
  5229. #u131163_text {
  5230. border-width:0px;
  5231. word-wrap:break-word;
  5232. text-transform:none;
  5233. visibility:hidden;
  5234. }
  5235. #u131164_img {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:75px;
  5241. height:35px;
  5242. }
  5243. #u131164 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:1068px;
  5247. top:223px;
  5248. width:75px;
  5249. height:35px;
  5250. display:flex;
  5251. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:12px;
  5255. color:#606266;
  5256. }
  5257. #u131164 .text {
  5258. position:absolute;
  5259. align-self:center;
  5260. padding:2px 2px 2px 0px;
  5261. box-sizing:border-box;
  5262. width:100%;
  5263. }
  5264. #u131164_text {
  5265. border-width:0px;
  5266. word-wrap:break-word;
  5267. text-transform:none;
  5268. visibility:hidden;
  5269. }
  5270. #u131165_img {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:87px;
  5276. height:35px;
  5277. }
  5278. #u131165 {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:1143px;
  5282. top:223px;
  5283. width:87px;
  5284. height:35px;
  5285. display:flex;
  5286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5287. font-weight:400;
  5288. font-style:normal;
  5289. font-size:12px;
  5290. color:#02A7F0;
  5291. }
  5292. #u131165 .text {
  5293. position:absolute;
  5294. align-self:center;
  5295. padding:2px 2px 2px 0px;
  5296. box-sizing:border-box;
  5297. width:100%;
  5298. }
  5299. #u131165_text {
  5300. border-width:0px;
  5301. word-wrap:break-word;
  5302. text-transform:none;
  5303. visibility:hidden;
  5304. }
  5305. #u131166_img {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:75px;
  5311. height:35px;
  5312. }
  5313. #u131166 {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:258px;
  5318. width:75px;
  5319. height:35px;
  5320. display:flex;
  5321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5322. font-weight:400;
  5323. font-style:normal;
  5324. font-size:12px;
  5325. color:#606266;
  5326. }
  5327. #u131166 .text {
  5328. position:absolute;
  5329. align-self:center;
  5330. padding:2px 2px 2px 0px;
  5331. box-sizing:border-box;
  5332. width:100%;
  5333. }
  5334. #u131166_text {
  5335. border-width:0px;
  5336. word-wrap:break-word;
  5337. text-transform:none;
  5338. visibility:hidden;
  5339. }
  5340. #u131167_img {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:0px;
  5344. top:0px;
  5345. width:75px;
  5346. height:35px;
  5347. }
  5348. #u131167 {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:75px;
  5352. top:258px;
  5353. width:75px;
  5354. height:35px;
  5355. display:flex;
  5356. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5357. font-weight:400;
  5358. font-style:normal;
  5359. font-size:12px;
  5360. color:#606266;
  5361. }
  5362. #u131167 .text {
  5363. position:absolute;
  5364. align-self:center;
  5365. padding:2px 2px 2px 0px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u131167_text {
  5370. border-width:0px;
  5371. word-wrap:break-word;
  5372. text-transform:none;
  5373. visibility:hidden;
  5374. }
  5375. #u131168_img {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:75px;
  5381. height:35px;
  5382. }
  5383. #u131168 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:150px;
  5387. top:258px;
  5388. width:75px;
  5389. height:35px;
  5390. display:flex;
  5391. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. font-size:12px;
  5395. color:#606266;
  5396. }
  5397. #u131168 .text {
  5398. position:absolute;
  5399. align-self:center;
  5400. padding:2px 2px 2px 0px;
  5401. box-sizing:border-box;
  5402. width:100%;
  5403. }
  5404. #u131168_text {
  5405. border-width:0px;
  5406. word-wrap:break-word;
  5407. text-transform:none;
  5408. visibility:hidden;
  5409. }
  5410. #u131169_img {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:75px;
  5416. height:35px;
  5417. }
  5418. #u131169 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:225px;
  5422. top:258px;
  5423. width:75px;
  5424. height:35px;
  5425. display:flex;
  5426. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:12px;
  5430. color:#606266;
  5431. }
  5432. #u131169 .text {
  5433. position:absolute;
  5434. align-self:center;
  5435. padding:2px 2px 2px 0px;
  5436. box-sizing:border-box;
  5437. width:100%;
  5438. }
  5439. #u131169_text {
  5440. border-width:0px;
  5441. word-wrap:break-word;
  5442. text-transform:none;
  5443. visibility:hidden;
  5444. }
  5445. #u131170_img {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:75px;
  5451. height:35px;
  5452. }
  5453. #u131170 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:300px;
  5457. top:258px;
  5458. width:75px;
  5459. height:35px;
  5460. display:flex;
  5461. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. font-size:12px;
  5465. color:#606266;
  5466. }
  5467. #u131170 .text {
  5468. position:absolute;
  5469. align-self:center;
  5470. padding:2px 2px 2px 0px;
  5471. box-sizing:border-box;
  5472. width:100%;
  5473. }
  5474. #u131170_text {
  5475. border-width:0px;
  5476. word-wrap:break-word;
  5477. text-transform:none;
  5478. visibility:hidden;
  5479. }
  5480. #u131171_img {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:84px;
  5486. height:35px;
  5487. }
  5488. #u131171 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:375px;
  5492. top:258px;
  5493. width:84px;
  5494. height:35px;
  5495. display:flex;
  5496. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5497. font-weight:400;
  5498. font-style:normal;
  5499. font-size:12px;
  5500. color:#606266;
  5501. }
  5502. #u131171 .text {
  5503. position:absolute;
  5504. align-self:center;
  5505. padding:2px 2px 2px 0px;
  5506. box-sizing:border-box;
  5507. width:100%;
  5508. }
  5509. #u131171_text {
  5510. border-width:0px;
  5511. word-wrap:break-word;
  5512. text-transform:none;
  5513. visibility:hidden;
  5514. }
  5515. #u131172_img {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:0px;
  5519. top:0px;
  5520. width:174px;
  5521. height:35px;
  5522. }
  5523. #u131172 {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:459px;
  5527. top:258px;
  5528. width:174px;
  5529. height:35px;
  5530. display:flex;
  5531. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:12px;
  5535. color:#606266;
  5536. }
  5537. #u131172 .text {
  5538. position:absolute;
  5539. align-self:center;
  5540. padding:2px 2px 2px 0px;
  5541. box-sizing:border-box;
  5542. width:100%;
  5543. }
  5544. #u131172_text {
  5545. border-width:0px;
  5546. word-wrap:break-word;
  5547. text-transform:none;
  5548. visibility:hidden;
  5549. }
  5550. #u131173_img {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:60px;
  5556. height:35px;
  5557. }
  5558. #u131173 {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:633px;
  5562. top:258px;
  5563. width:60px;
  5564. height:35px;
  5565. display:flex;
  5566. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5567. font-weight:400;
  5568. font-style:normal;
  5569. font-size:12px;
  5570. color:#606266;
  5571. }
  5572. #u131173 .text {
  5573. position:absolute;
  5574. align-self:center;
  5575. padding:2px 2px 2px 0px;
  5576. box-sizing:border-box;
  5577. width:100%;
  5578. }
  5579. #u131173_text {
  5580. border-width:0px;
  5581. word-wrap:break-word;
  5582. text-transform:none;
  5583. visibility:hidden;
  5584. }
  5585. #u131174_img {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:0px;
  5589. top:0px;
  5590. width:75px;
  5591. height:35px;
  5592. }
  5593. #u131174 {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:693px;
  5597. top:258px;
  5598. width:75px;
  5599. height:35px;
  5600. display:flex;
  5601. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:12px;
  5605. color:#606266;
  5606. }
  5607. #u131174 .text {
  5608. position:absolute;
  5609. align-self:center;
  5610. padding:2px 2px 2px 0px;
  5611. box-sizing:border-box;
  5612. width:100%;
  5613. }
  5614. #u131174_text {
  5615. border-width:0px;
  5616. word-wrap:break-word;
  5617. text-transform:none;
  5618. visibility:hidden;
  5619. }
  5620. #u131175_img {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:0px;
  5624. top:0px;
  5625. width:75px;
  5626. height:35px;
  5627. }
  5628. #u131175 {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:768px;
  5632. top:258px;
  5633. width:75px;
  5634. height:35px;
  5635. display:flex;
  5636. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:12px;
  5640. color:#606266;
  5641. }
  5642. #u131175 .text {
  5643. position:absolute;
  5644. align-self:center;
  5645. padding:2px 2px 2px 0px;
  5646. box-sizing:border-box;
  5647. width:100%;
  5648. }
  5649. #u131175_text {
  5650. border-width:0px;
  5651. word-wrap:break-word;
  5652. text-transform:none;
  5653. visibility:hidden;
  5654. }
  5655. #u131176_img {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:75px;
  5661. height:35px;
  5662. }
  5663. #u131176 {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:843px;
  5667. top:258px;
  5668. width:75px;
  5669. height:35px;
  5670. display:flex;
  5671. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:12px;
  5675. color:#606266;
  5676. }
  5677. #u131176 .text {
  5678. position:absolute;
  5679. align-self:center;
  5680. padding:2px 2px 2px 0px;
  5681. box-sizing:border-box;
  5682. width:100%;
  5683. }
  5684. #u131176_text {
  5685. border-width:0px;
  5686. word-wrap:break-word;
  5687. text-transform:none;
  5688. visibility:hidden;
  5689. }
  5690. #u131177_img {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:75px;
  5696. height:35px;
  5697. }
  5698. #u131177 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:918px;
  5702. top:258px;
  5703. width:75px;
  5704. height:35px;
  5705. display:flex;
  5706. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5707. font-weight:400;
  5708. font-style:normal;
  5709. font-size:12px;
  5710. color:#606266;
  5711. }
  5712. #u131177 .text {
  5713. position:absolute;
  5714. align-self:center;
  5715. padding:2px 2px 2px 0px;
  5716. box-sizing:border-box;
  5717. width:100%;
  5718. }
  5719. #u131177_text {
  5720. border-width:0px;
  5721. word-wrap:break-word;
  5722. text-transform:none;
  5723. visibility:hidden;
  5724. }
  5725. #u131178_img {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:0px;
  5729. top:0px;
  5730. width:75px;
  5731. height:35px;
  5732. }
  5733. #u131178 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:993px;
  5737. top:258px;
  5738. width:75px;
  5739. height:35px;
  5740. display:flex;
  5741. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5742. font-weight:400;
  5743. font-style:normal;
  5744. font-size:12px;
  5745. color:#606266;
  5746. }
  5747. #u131178 .text {
  5748. position:absolute;
  5749. align-self:center;
  5750. padding:2px 2px 2px 0px;
  5751. box-sizing:border-box;
  5752. width:100%;
  5753. }
  5754. #u131178_text {
  5755. border-width:0px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. visibility:hidden;
  5759. }
  5760. #u131179_img {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:75px;
  5766. height:35px;
  5767. }
  5768. #u131179 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:1068px;
  5772. top:258px;
  5773. width:75px;
  5774. height:35px;
  5775. display:flex;
  5776. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:12px;
  5780. color:#606266;
  5781. }
  5782. #u131179 .text {
  5783. position:absolute;
  5784. align-self:center;
  5785. padding:2px 2px 2px 0px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u131179_text {
  5790. border-width:0px;
  5791. word-wrap:break-word;
  5792. text-transform:none;
  5793. visibility:hidden;
  5794. }
  5795. #u131180_img {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:87px;
  5801. height:35px;
  5802. }
  5803. #u131180 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:1143px;
  5807. top:258px;
  5808. width:87px;
  5809. height:35px;
  5810. display:flex;
  5811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:12px;
  5815. color:#02A7F0;
  5816. }
  5817. #u131180 .text {
  5818. position:absolute;
  5819. align-self:center;
  5820. padding:2px 2px 2px 0px;
  5821. box-sizing:border-box;
  5822. width:100%;
  5823. }
  5824. #u131180_text {
  5825. border-width:0px;
  5826. word-wrap:break-word;
  5827. text-transform:none;
  5828. visibility:hidden;
  5829. }
  5830. #u131181_div {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:109px;
  5836. height:50px;
  5837. background:inherit;
  5838. background-color:rgba(255, 255, 255, 0);
  5839. border:none;
  5840. border-left:0px;
  5841. border-top:0px;
  5842. border-right:0px;
  5843. border-radius:0px;
  5844. border-bottom-right-radius:0px;
  5845. border-bottom-left-radius:0px;
  5846. -moz-box-shadow:none;
  5847. -webkit-box-shadow:none;
  5848. box-shadow:none;
  5849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5850. font-weight:400;
  5851. font-style:normal;
  5852. font-size:18px;
  5853. }
  5854. #u131181 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:349px;
  5858. top:50px;
  5859. width:109px;
  5860. height:50px;
  5861. display:flex;
  5862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:18px;
  5866. }
  5867. #u131181 .text {
  5868. position:absolute;
  5869. align-self:center;
  5870. padding:0px 0px 0px 0px;
  5871. box-sizing:border-box;
  5872. width:100%;
  5873. }
  5874. #u131181_text {
  5875. border-width:0px;
  5876. white-space:nowrap;
  5877. text-transform:none;
  5878. }
  5879. #u131182_img {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:0px;
  5883. top:0px;
  5884. width:13px;
  5885. height:13px;
  5886. }
  5887. #u131182 {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:465px;
  5891. top:69px;
  5892. width:13px;
  5893. height:13px;
  5894. display:flex;
  5895. }
  5896. #u131182 .text {
  5897. position:absolute;
  5898. align-self:center;
  5899. padding:2px 2px 2px 2px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u131182_text {
  5904. border-width:0px;
  5905. word-wrap:break-word;
  5906. text-transform:none;
  5907. visibility:hidden;
  5908. }
  5909. #u131183 {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:0px;
  5913. top:0px;
  5914. width:0px;
  5915. height:0px;
  5916. }
  5917. #u131184 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:0px;
  5923. height:0px;
  5924. }
  5925. #u131185_div {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:59px;
  5931. height:30px;
  5932. background:inherit;
  5933. background-color:rgba(24, 144, 255, 1);
  5934. box-sizing:border-box;
  5935. border-width:1px;
  5936. border-style:solid;
  5937. border-color:rgba(0, 153, 255, 1);
  5938. border-radius:4px;
  5939. -moz-box-shadow:none;
  5940. -webkit-box-shadow:none;
  5941. box-shadow:none;
  5942. font-family:'Microsoft YaHei', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:14px;
  5946. color:#FFFFFF;
  5947. }
  5948. #u131185 {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:799px;
  5952. top:110px;
  5953. width:59px;
  5954. height:30px;
  5955. display:flex;
  5956. font-family:'Microsoft YaHei', sans-serif;
  5957. font-weight:400;
  5958. font-style:normal;
  5959. font-size:14px;
  5960. color:#FFFFFF;
  5961. }
  5962. #u131185 .text {
  5963. position:absolute;
  5964. align-self:center;
  5965. padding:5px 15px 5px 15px;
  5966. box-sizing:border-box;
  5967. width:100%;
  5968. }
  5969. #u131185_text {
  5970. border-width:0px;
  5971. white-space:nowrap;
  5972. text-transform:none;
  5973. }
  5974. #u131186_div {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:0px;
  5978. top:0px;
  5979. width:55px;
  5980. height:30px;
  5981. background:inherit;
  5982. background-color:rgba(255, 255, 255, 1);
  5983. box-sizing:border-box;
  5984. border-width:1px;
  5985. border-style:solid;
  5986. border-color:rgba(170, 170, 170, 1);
  5987. border-radius:4px;
  5988. -moz-box-shadow:none;
  5989. -webkit-box-shadow:none;
  5990. box-shadow:none;
  5991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5992. font-weight:400;
  5993. font-style:normal;
  5994. font-size:12px;
  5995. color:#555555;
  5996. }
  5997. #u131186 {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:868px;
  6001. top:110px;
  6002. width:55px;
  6003. height:30px;
  6004. display:flex;
  6005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6006. font-weight:400;
  6007. font-style:normal;
  6008. font-size:12px;
  6009. color:#555555;
  6010. }
  6011. #u131186 .text {
  6012. position:absolute;
  6013. align-self:center;
  6014. padding:5px 15px 5px 15px;
  6015. box-sizing:border-box;
  6016. width:100%;
  6017. }
  6018. #u131186_text {
  6019. border-width:0px;
  6020. white-space:nowrap;
  6021. text-transform:none;
  6022. }
  6023. #u131187 {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:0px;
  6029. height:0px;
  6030. }
  6031. #u131188_div {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:0px;
  6035. top:0px;
  6036. width:140px;
  6037. height:30px;
  6038. background:inherit;
  6039. background-color:rgba(255, 255, 255, 1);
  6040. box-sizing:border-box;
  6041. border-width:1px;
  6042. border-style:solid;
  6043. border-color:rgba(215, 215, 215, 1);
  6044. border-radius:4px;
  6045. -moz-box-shadow:none;
  6046. -webkit-box-shadow:none;
  6047. box-shadow:none;
  6048. font-size:11px;
  6049. }
  6050. #u131188 {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:349px;
  6054. top:110px;
  6055. width:140px;
  6056. height:30px;
  6057. display:flex;
  6058. font-size:11px;
  6059. }
  6060. #u131188 .text {
  6061. position:absolute;
  6062. align-self:center;
  6063. padding:2px 2px 2px 2px;
  6064. box-sizing:border-box;
  6065. width:100%;
  6066. }
  6067. #u131188_text {
  6068. border-width:0px;
  6069. word-wrap:break-word;
  6070. text-transform:none;
  6071. visibility:hidden;
  6072. }
  6073. #u131189_input {
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:126px;
  6078. height:23px;
  6079. padding:2px 2px 2px 2px;
  6080. font-family:'ArialMT', 'Arial', sans-serif;
  6081. font-weight:400;
  6082. font-style:normal;
  6083. font-size:11px;
  6084. letter-spacing:normal;
  6085. color:#AAAAAA;
  6086. vertical-align:none;
  6087. text-align:left;
  6088. text-transform:none;
  6089. background-color:transparent;
  6090. border-color:transparent;
  6091. }
  6092. #u131189_input.disabled {
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:126px;
  6097. height:23px;
  6098. padding:2px 2px 2px 2px;
  6099. font-family:'ArialMT', 'Arial', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:11px;
  6103. letter-spacing:normal;
  6104. color:#AAAAAA;
  6105. vertical-align:none;
  6106. text-align:left;
  6107. text-transform:none;
  6108. background-color:transparent;
  6109. border-color:transparent;
  6110. }
  6111. #u131189_div {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:126px;
  6117. height:23px;
  6118. background:inherit;
  6119. background-color:rgba(255, 255, 255, 1);
  6120. border:none;
  6121. border-radius:0px;
  6122. -moz-box-shadow:none;
  6123. -webkit-box-shadow:none;
  6124. box-shadow:none;
  6125. font-size:11px;
  6126. color:#AAAAAA;
  6127. }
  6128. #u131189 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:356px;
  6132. top:112px;
  6133. width:126px;
  6134. height:23px;
  6135. display:flex;
  6136. font-size:11px;
  6137. color:#AAAAAA;
  6138. }
  6139. #u131189 .text {
  6140. position:absolute;
  6141. align-self:flex-start;
  6142. padding:2px 2px 2px 2px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u131189_div.disabled {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:126px;
  6152. height:23px;
  6153. background:inherit;
  6154. background-color:rgba(240, 240, 240, 1);
  6155. border:none;
  6156. border-radius:0px;
  6157. -moz-box-shadow:none;
  6158. -webkit-box-shadow:none;
  6159. box-shadow:none;
  6160. font-size:11px;
  6161. color:#AAAAAA;
  6162. }
  6163. #u131189.disabled {
  6164. }
  6165. .u131189_input_option {
  6166. font-size:11px;
  6167. }
  6168. #u131190 {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:0px;
  6174. height:0px;
  6175. }
  6176. #u131191_div {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:140px;
  6182. height:30px;
  6183. background:inherit;
  6184. background-color:rgba(255, 255, 255, 1);
  6185. box-sizing:border-box;
  6186. border-width:1px;
  6187. border-style:solid;
  6188. border-color:rgba(201, 201, 201, 1);
  6189. border-radius:4px;
  6190. -moz-box-shadow:none;
  6191. -webkit-box-shadow:none;
  6192. box-shadow:none;
  6193. font-family:'Microsoft YaHei', sans-serif;
  6194. font-weight:400;
  6195. font-style:normal;
  6196. font-size:14px;
  6197. color:#CCCCCC;
  6198. text-align:left;
  6199. }
  6200. #u131191 {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:499px;
  6204. top:110px;
  6205. width:140px;
  6206. height:30px;
  6207. display:flex;
  6208. font-family:'Microsoft YaHei', sans-serif;
  6209. font-weight:400;
  6210. font-style:normal;
  6211. font-size:14px;
  6212. color:#CCCCCC;
  6213. text-align:left;
  6214. }
  6215. #u131191 .text {
  6216. position:absolute;
  6217. align-self:center;
  6218. padding:2px 8px 2px 8px;
  6219. box-sizing:border-box;
  6220. width:100%;
  6221. }
  6222. #u131191_text {
  6223. border-width:0px;
  6224. word-wrap:break-word;
  6225. text-transform:none;
  6226. visibility:hidden;
  6227. }
  6228. #u131192_input {
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:127px;
  6233. height:25px;
  6234. padding:2px 2px 2px 2px;
  6235. font-family:'Microsoft YaHei', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:10px;
  6239. letter-spacing:normal;
  6240. color:#000000;
  6241. vertical-align:none;
  6242. text-align:left;
  6243. text-transform:none;
  6244. background-color:transparent;
  6245. border-color:transparent;
  6246. }
  6247. #u131192_input.disabled {
  6248. position:absolute;
  6249. left:0px;
  6250. top:0px;
  6251. width:127px;
  6252. height:25px;
  6253. padding:2px 2px 2px 2px;
  6254. font-family:'Microsoft YaHei', sans-serif;
  6255. font-weight:400;
  6256. font-style:normal;
  6257. font-size:10px;
  6258. letter-spacing:normal;
  6259. color:#000000;
  6260. vertical-align:none;
  6261. text-align:left;
  6262. text-transform:none;
  6263. background-color:transparent;
  6264. border-color:transparent;
  6265. }
  6266. #u131192_div {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:127px;
  6272. height:25px;
  6273. background:inherit;
  6274. background-color:rgba(255, 255, 255, 1);
  6275. border:none;
  6276. border-radius:0px;
  6277. -moz-box-shadow:none;
  6278. -webkit-box-shadow:none;
  6279. box-shadow:none;
  6280. font-family:'Microsoft YaHei', sans-serif;
  6281. font-weight:400;
  6282. font-style:normal;
  6283. font-size:10px;
  6284. }
  6285. #u131192 {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:507px;
  6289. top:111px;
  6290. width:127px;
  6291. height:25px;
  6292. display:flex;
  6293. font-family:'Microsoft YaHei', sans-serif;
  6294. font-weight:400;
  6295. font-style:normal;
  6296. font-size:10px;
  6297. }
  6298. #u131192 .text {
  6299. position:absolute;
  6300. align-self:center;
  6301. padding:2px 2px 2px 2px;
  6302. box-sizing:border-box;
  6303. width:100%;
  6304. }
  6305. #u131192_div.disabled {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:127px;
  6311. height:25px;
  6312. background:inherit;
  6313. background-color:rgba(240, 240, 240, 1);
  6314. border:none;
  6315. border-radius:0px;
  6316. -moz-box-shadow:none;
  6317. -webkit-box-shadow:none;
  6318. box-shadow:none;
  6319. font-family:'Microsoft YaHei', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:10px;
  6323. }
  6324. #u131192.disabled {
  6325. }
  6326. #u131193 {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:0px;
  6332. height:0px;
  6333. }
  6334. #u131194_div {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:140px;
  6340. height:30px;
  6341. background:inherit;
  6342. background-color:rgba(255, 255, 255, 1);
  6343. box-sizing:border-box;
  6344. border-width:1px;
  6345. border-style:solid;
  6346. border-color:rgba(188, 188, 188, 1);
  6347. border-radius:4px;
  6348. -moz-box-shadow:none;
  6349. -webkit-box-shadow:none;
  6350. box-shadow:none;
  6351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6352. font-weight:400;
  6353. font-style:normal;
  6354. font-size:12px;
  6355. color:#FFFFFF;
  6356. }
  6357. #u131194 {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:649px;
  6361. top:110px;
  6362. width:140px;
  6363. height:30px;
  6364. display:flex;
  6365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6366. font-weight:400;
  6367. font-style:normal;
  6368. font-size:12px;
  6369. color:#FFFFFF;
  6370. }
  6371. #u131194 .text {
  6372. position:absolute;
  6373. align-self:center;
  6374. padding:8px 15px 8px 15px;
  6375. box-sizing:border-box;
  6376. width:100%;
  6377. }
  6378. #u131194_text {
  6379. border-width:0px;
  6380. word-wrap:break-word;
  6381. text-transform:none;
  6382. visibility:hidden;
  6383. }
  6384. #u131195_img {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:0px;
  6388. top:0px;
  6389. width:18px;
  6390. height:18px;
  6391. }
  6392. #u131195 {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:766px;
  6396. top:116px;
  6397. width:18px;
  6398. height:18px;
  6399. display:flex;
  6400. opacity:0.5;
  6401. }
  6402. #u131195 .text {
  6403. position:absolute;
  6404. align-self:center;
  6405. padding:2px 2px 2px 2px;
  6406. box-sizing:border-box;
  6407. width:100%;
  6408. }
  6409. #u131195_text {
  6410. border-width:0px;
  6411. word-wrap:break-word;
  6412. text-transform:none;
  6413. visibility:hidden;
  6414. }
  6415. #u131197 {
  6416. border-width:0px;
  6417. position:absolute;
  6418. left:0px;
  6419. top:0px;
  6420. width:0px;
  6421. height:0px;
  6422. }
  6423. #u131198_img {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:200px;
  6429. height:1191px;
  6430. }
  6431. #u131198 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:120px;
  6435. top:50px;
  6436. width:200px;
  6437. height:1191px;
  6438. display:flex;
  6439. }
  6440. #u131198 .text {
  6441. position:absolute;
  6442. align-self:center;
  6443. padding:2px 2px 2px 2px;
  6444. box-sizing:border-box;
  6445. width:100%;
  6446. }
  6447. #u131198_text {
  6448. border-width:0px;
  6449. word-wrap:break-word;
  6450. text-transform:none;
  6451. visibility:hidden;
  6452. }
  6453. #u131199_div {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:0px;
  6457. top:0px;
  6458. width:200px;
  6459. height:60px;
  6460. background:inherit;
  6461. background-color:rgba(224, 231, 247, 1);
  6462. border:none;
  6463. border-radius:0px;
  6464. -moz-box-shadow:none;
  6465. -webkit-box-shadow:none;
  6466. box-shadow:none;
  6467. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6468. font-weight:500;
  6469. font-style:normal;
  6470. font-size:18px;
  6471. }
  6472. #u131199 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:120px;
  6476. top:50px;
  6477. width:200px;
  6478. height:60px;
  6479. display:flex;
  6480. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6481. font-weight:500;
  6482. font-style:normal;
  6483. font-size:18px;
  6484. }
  6485. #u131199 .text {
  6486. position:absolute;
  6487. align-self:center;
  6488. padding:0px 0px 0px 20px;
  6489. box-sizing:border-box;
  6490. width:100%;
  6491. }
  6492. #u131199_text {
  6493. border-width:0px;
  6494. word-wrap:break-word;
  6495. text-transform:none;
  6496. }
  6497. #u131200 {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:120px;
  6501. top:130px;
  6502. width:200px;
  6503. height:1078px;
  6504. }
  6505. #u131200_state0 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:200px;
  6511. height:1078px;
  6512. overflow:auto;
  6513. -webkit-overflow-scrolling:touch;
  6514. -ms-overflow-x:hidden;
  6515. overflow-x:hidden;
  6516. background-image:none;
  6517. border:none;
  6518. border-radius:0px;
  6519. -moz-box-shadow:none;
  6520. -webkit-box-shadow:none;
  6521. box-shadow:none;
  6522. }
  6523. #u131200_state0_content {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:0px;
  6527. top:0px;
  6528. width:1px;
  6529. height:1px;
  6530. }
  6531. #u131201_div {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:0px;
  6535. top:0px;
  6536. width:97px;
  6537. height:22px;
  6538. background:inherit;
  6539. background-color:rgba(255, 255, 255, 0);
  6540. border:none;
  6541. border-radius:0px;
  6542. -moz-box-shadow:none;
  6543. -webkit-box-shadow:none;
  6544. box-shadow:none;
  6545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6546. font-weight:400;
  6547. font-style:normal;
  6548. font-size:16px;
  6549. }
  6550. #u131201 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:30px;
  6554. top:0px;
  6555. width:97px;
  6556. height:22px;
  6557. display:flex;
  6558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6559. font-weight:400;
  6560. font-style:normal;
  6561. font-size:16px;
  6562. }
  6563. #u131201 .text {
  6564. position:absolute;
  6565. align-self:flex-start;
  6566. padding:0px 0px 0px 0px;
  6567. box-sizing:border-box;
  6568. width:100%;
  6569. }
  6570. #u131201_text {
  6571. border-width:0px;
  6572. word-wrap:break-word;
  6573. text-transform:none;
  6574. }
  6575. #u131202_div {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:65px;
  6581. height:22px;
  6582. background:inherit;
  6583. background-color:rgba(255, 255, 255, 0);
  6584. border:none;
  6585. border-radius:0px;
  6586. -moz-box-shadow:none;
  6587. -webkit-box-shadow:none;
  6588. box-shadow:none;
  6589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6590. font-weight:400;
  6591. font-style:normal;
  6592. font-size:16px;
  6593. }
  6594. #u131202 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:30px;
  6598. top:42px;
  6599. width:65px;
  6600. height:22px;
  6601. display:flex;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:16px;
  6606. }
  6607. #u131202 .text {
  6608. position:absolute;
  6609. align-self:flex-start;
  6610. padding:0px 0px 0px 0px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u131202_text {
  6615. border-width:0px;
  6616. white-space:nowrap;
  6617. text-transform:none;
  6618. }
  6619. #u131203_div {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:49px;
  6625. height:22px;
  6626. background:inherit;
  6627. background-color:rgba(255, 255, 255, 0);
  6628. border:none;
  6629. border-radius:0px;
  6630. -moz-box-shadow:none;
  6631. -webkit-box-shadow:none;
  6632. box-shadow:none;
  6633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. font-size:16px;
  6637. }
  6638. #u131203 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:30px;
  6642. top:145px;
  6643. width:49px;
  6644. height:22px;
  6645. display:flex;
  6646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. font-size:16px;
  6650. }
  6651. #u131203 .text {
  6652. position:absolute;
  6653. align-self:flex-start;
  6654. padding:0px 0px 0px 0px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u131203_text {
  6659. border-width:0px;
  6660. white-space:nowrap;
  6661. text-transform:none;
  6662. }
  6663. #u131204_div {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:97px;
  6669. height:22px;
  6670. background:inherit;
  6671. background-color:rgba(255, 255, 255, 0);
  6672. border:none;
  6673. border-radius:0px;
  6674. -moz-box-shadow:none;
  6675. -webkit-box-shadow:none;
  6676. box-shadow:none;
  6677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:16px;
  6681. }
  6682. #u131204 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:30px;
  6686. top:187px;
  6687. width:97px;
  6688. height:22px;
  6689. display:flex;
  6690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6691. font-weight:400;
  6692. font-style:normal;
  6693. font-size:16px;
  6694. }
  6695. #u131204 .text {
  6696. position:absolute;
  6697. align-self:flex-start;
  6698. padding:0px 0px 0px 0px;
  6699. box-sizing:border-box;
  6700. width:100%;
  6701. }
  6702. #u131204_text {
  6703. border-width:0px;
  6704. word-wrap:break-word;
  6705. text-transform:none;
  6706. }
  6707. #u131205_img {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:0px;
  6711. top:0px;
  6712. width:201px;
  6713. height:2px;
  6714. }
  6715. #u131205 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:84px;
  6720. width:200px;
  6721. height:1px;
  6722. display:flex;
  6723. }
  6724. #u131205 .text {
  6725. position:absolute;
  6726. align-self:center;
  6727. padding:2px 2px 2px 2px;
  6728. box-sizing:border-box;
  6729. width:100%;
  6730. }
  6731. #u131205_text {
  6732. border-width:0px;
  6733. word-wrap:break-word;
  6734. text-transform:none;
  6735. visibility:hidden;
  6736. }
  6737. #u131206_div {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:0px;
  6741. top:0px;
  6742. width:49px;
  6743. height:17px;
  6744. background:inherit;
  6745. background-color:rgba(255, 255, 255, 0);
  6746. border:none;
  6747. border-radius:0px;
  6748. -moz-box-shadow:none;
  6749. -webkit-box-shadow:none;
  6750. box-shadow:none;
  6751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6752. font-weight:400;
  6753. font-style:normal;
  6754. font-size:12px;
  6755. color:#AAAAAA;
  6756. }
  6757. #u131206 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:30px;
  6761. top:105px;
  6762. width:49px;
  6763. height:17px;
  6764. display:flex;
  6765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6766. font-weight:400;
  6767. font-style:normal;
  6768. font-size:12px;
  6769. color:#AAAAAA;
  6770. }
  6771. #u131206 .text {
  6772. position:absolute;
  6773. align-self:flex-start;
  6774. padding:0px 0px 0px 0px;
  6775. box-sizing:border-box;
  6776. width:100%;
  6777. }
  6778. #u131206_text {
  6779. border-width:0px;
  6780. white-space:nowrap;
  6781. text-transform:none;
  6782. }
  6783. #u131207_div {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:97px;
  6789. height:22px;
  6790. background:inherit;
  6791. background-color:rgba(255, 255, 255, 0);
  6792. border:none;
  6793. border-radius:0px;
  6794. -moz-box-shadow:none;
  6795. -webkit-box-shadow:none;
  6796. box-shadow:none;
  6797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6798. font-weight:400;
  6799. font-style:normal;
  6800. font-size:16px;
  6801. }
  6802. #u131207 {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:30px;
  6806. top:229px;
  6807. width:97px;
  6808. height:22px;
  6809. display:flex;
  6810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6811. font-weight:400;
  6812. font-style:normal;
  6813. font-size:16px;
  6814. }
  6815. #u131207 .text {
  6816. position:absolute;
  6817. align-self:flex-start;
  6818. padding:0px 0px 0px 0px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u131207_text {
  6823. border-width:0px;
  6824. word-wrap:break-word;
  6825. text-transform:none;
  6826. }
  6827. #u131208_div {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:65px;
  6833. height:22px;
  6834. background:inherit;
  6835. background-color:rgba(255, 255, 255, 0);
  6836. border:none;
  6837. border-radius:0px;
  6838. -moz-box-shadow:none;
  6839. -webkit-box-shadow:none;
  6840. box-shadow:none;
  6841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6842. font-weight:400;
  6843. font-style:normal;
  6844. font-size:16px;
  6845. }
  6846. #u131208 {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:30px;
  6850. top:271px;
  6851. width:65px;
  6852. height:22px;
  6853. display:flex;
  6854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6855. font-weight:400;
  6856. font-style:normal;
  6857. font-size:16px;
  6858. }
  6859. #u131208 .text {
  6860. position:absolute;
  6861. align-self:flex-start;
  6862. padding:0px 0px 0px 0px;
  6863. box-sizing:border-box;
  6864. width:100%;
  6865. }
  6866. #u131208_text {
  6867. border-width:0px;
  6868. white-space:nowrap;
  6869. text-transform:none;
  6870. }
  6871. #u131209_img {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:201px;
  6877. height:2px;
  6878. }
  6879. #u131209 {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:0px;
  6883. top:313px;
  6884. width:200px;
  6885. height:1px;
  6886. display:flex;
  6887. }
  6888. #u131209 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:2px 2px 2px 2px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u131209_text {
  6896. border-width:0px;
  6897. word-wrap:break-word;
  6898. text-transform:none;
  6899. visibility:hidden;
  6900. }
  6901. #u131210_div {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:0px;
  6905. top:0px;
  6906. width:65px;
  6907. height:22px;
  6908. background:inherit;
  6909. background-color:rgba(255, 255, 255, 0);
  6910. border:none;
  6911. border-radius:0px;
  6912. -moz-box-shadow:none;
  6913. -webkit-box-shadow:none;
  6914. box-shadow:none;
  6915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6916. font-weight:400;
  6917. font-style:normal;
  6918. font-size:16px;
  6919. }
  6920. #u131210 {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:30px;
  6924. top:370px;
  6925. width:65px;
  6926. height:22px;
  6927. display:flex;
  6928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:16px;
  6932. }
  6933. #u131210 .text {
  6934. position:absolute;
  6935. align-self:flex-start;
  6936. padding:0px 0px 0px 0px;
  6937. box-sizing:border-box;
  6938. width:100%;
  6939. }
  6940. #u131210_text {
  6941. border-width:0px;
  6942. white-space:nowrap;
  6943. text-transform:none;
  6944. }
  6945. #u131211_div {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:0px;
  6949. top:0px;
  6950. width:49px;
  6951. height:17px;
  6952. background:inherit;
  6953. background-color:rgba(255, 255, 255, 0);
  6954. border:none;
  6955. border-radius:0px;
  6956. -moz-box-shadow:none;
  6957. -webkit-box-shadow:none;
  6958. box-shadow:none;
  6959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6960. font-weight:400;
  6961. font-style:normal;
  6962. font-size:12px;
  6963. color:#AAAAAA;
  6964. }
  6965. #u131211 {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:30px;
  6969. top:334px;
  6970. width:49px;
  6971. height:17px;
  6972. display:flex;
  6973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6974. font-weight:400;
  6975. font-style:normal;
  6976. font-size:12px;
  6977. color:#AAAAAA;
  6978. }
  6979. #u131211 .text {
  6980. position:absolute;
  6981. align-self:flex-start;
  6982. padding:0px 0px 0px 0px;
  6983. box-sizing:border-box;
  6984. width:100%;
  6985. }
  6986. #u131211_text {
  6987. border-width:0px;
  6988. white-space:nowrap;
  6989. text-transform:none;
  6990. }
  6991. #u131212_div {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:0px;
  6995. top:0px;
  6996. width:65px;
  6997. height:22px;
  6998. background:inherit;
  6999. background-color:rgba(255, 255, 255, 0);
  7000. border:none;
  7001. border-radius:0px;
  7002. -moz-box-shadow:none;
  7003. -webkit-box-shadow:none;
  7004. box-shadow:none;
  7005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7006. font-weight:400;
  7007. font-style:normal;
  7008. font-size:16px;
  7009. }
  7010. #u131212 {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:30px;
  7014. top:412px;
  7015. width:65px;
  7016. height:22px;
  7017. display:flex;
  7018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:16px;
  7022. }
  7023. #u131212 .text {
  7024. position:absolute;
  7025. align-self:flex-start;
  7026. padding:0px 0px 0px 0px;
  7027. box-sizing:border-box;
  7028. width:100%;
  7029. }
  7030. #u131212_text {
  7031. border-width:0px;
  7032. white-space:nowrap;
  7033. text-transform:none;
  7034. }
  7035. #u131213_div {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:0px;
  7039. top:0px;
  7040. width:65px;
  7041. height:22px;
  7042. background:inherit;
  7043. background-color:rgba(255, 255, 255, 0);
  7044. border:none;
  7045. border-radius:0px;
  7046. -moz-box-shadow:none;
  7047. -webkit-box-shadow:none;
  7048. box-shadow:none;
  7049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7050. font-weight:400;
  7051. font-style:normal;
  7052. font-size:16px;
  7053. }
  7054. #u131213 {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:30px;
  7058. top:454px;
  7059. width:65px;
  7060. height:22px;
  7061. display:flex;
  7062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:16px;
  7066. }
  7067. #u131213 .text {
  7068. position:absolute;
  7069. align-self:flex-start;
  7070. padding:0px 0px 0px 0px;
  7071. box-sizing:border-box;
  7072. width:100%;
  7073. }
  7074. #u131213_text {
  7075. border-width:0px;
  7076. white-space:nowrap;
  7077. text-transform:none;
  7078. }
  7079. #u131214_div {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:0px;
  7083. top:0px;
  7084. width:65px;
  7085. height:22px;
  7086. background:inherit;
  7087. background-color:rgba(255, 255, 255, 0);
  7088. border:none;
  7089. border-radius:0px;
  7090. -moz-box-shadow:none;
  7091. -webkit-box-shadow:none;
  7092. box-shadow:none;
  7093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7094. font-weight:400;
  7095. font-style:normal;
  7096. font-size:16px;
  7097. }
  7098. #u131214 {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:30px;
  7102. top:496px;
  7103. width:65px;
  7104. height:22px;
  7105. display:flex;
  7106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7107. font-weight:400;
  7108. font-style:normal;
  7109. font-size:16px;
  7110. }
  7111. #u131214 .text {
  7112. position:absolute;
  7113. align-self:flex-start;
  7114. padding:0px 0px 0px 0px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u131214_text {
  7119. border-width:0px;
  7120. white-space:nowrap;
  7121. text-transform:none;
  7122. }
  7123. #u131215_div {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:65px;
  7129. height:22px;
  7130. background:inherit;
  7131. background-color:rgba(255, 255, 255, 0);
  7132. border:none;
  7133. border-radius:0px;
  7134. -moz-box-shadow:none;
  7135. -webkit-box-shadow:none;
  7136. box-shadow:none;
  7137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7138. font-weight:400;
  7139. font-style:normal;
  7140. font-size:16px;
  7141. }
  7142. #u131215 {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:30px;
  7146. top:538px;
  7147. width:65px;
  7148. height:22px;
  7149. display:flex;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:16px;
  7154. }
  7155. #u131215 .text {
  7156. position:absolute;
  7157. align-self:flex-start;
  7158. padding:0px 0px 0px 0px;
  7159. box-sizing:border-box;
  7160. width:100%;
  7161. }
  7162. #u131215_text {
  7163. border-width:0px;
  7164. white-space:nowrap;
  7165. text-transform:none;
  7166. }
  7167. #u131216_div {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:65px;
  7173. height:22px;
  7174. background:inherit;
  7175. background-color:rgba(255, 255, 255, 0);
  7176. border:none;
  7177. border-radius:0px;
  7178. -moz-box-shadow:none;
  7179. -webkit-box-shadow:none;
  7180. box-shadow:none;
  7181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7182. font-weight:400;
  7183. font-style:normal;
  7184. font-size:16px;
  7185. }
  7186. #u131216 {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:30px;
  7190. top:580px;
  7191. width:65px;
  7192. height:22px;
  7193. display:flex;
  7194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:16px;
  7198. }
  7199. #u131216 .text {
  7200. position:absolute;
  7201. align-self:flex-start;
  7202. padding:0px 0px 0px 0px;
  7203. box-sizing:border-box;
  7204. width:100%;
  7205. }
  7206. #u131216_text {
  7207. border-width:0px;
  7208. white-space:nowrap;
  7209. text-transform:none;
  7210. }
  7211. #u131217_img {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:0px;
  7215. top:0px;
  7216. width:201px;
  7217. height:2px;
  7218. }
  7219. #u131217 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:1209px;
  7224. width:200px;
  7225. height:1px;
  7226. display:flex;
  7227. }
  7228. #u131217 .text {
  7229. position:absolute;
  7230. align-self:center;
  7231. padding:2px 2px 2px 2px;
  7232. box-sizing:border-box;
  7233. width:100%;
  7234. }
  7235. #u131217_text {
  7236. border-width:0px;
  7237. word-wrap:break-word;
  7238. text-transform:none;
  7239. visibility:hidden;
  7240. }
  7241. #u131218_div {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:0px;
  7245. top:0px;
  7246. width:65px;
  7247. height:22px;
  7248. background:inherit;
  7249. background-color:rgba(255, 255, 255, 0);
  7250. border:none;
  7251. border-radius:0px;
  7252. -moz-box-shadow:none;
  7253. -webkit-box-shadow:none;
  7254. box-shadow:none;
  7255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7256. font-weight:400;
  7257. font-style:normal;
  7258. font-size:16px;
  7259. }
  7260. #u131218 {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:30px;
  7264. top:1266px;
  7265. width:65px;
  7266. height:22px;
  7267. display:flex;
  7268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7269. font-weight:400;
  7270. font-style:normal;
  7271. font-size:16px;
  7272. }
  7273. #u131218 .text {
  7274. position:absolute;
  7275. align-self:flex-start;
  7276. padding:0px 0px 0px 0px;
  7277. box-sizing:border-box;
  7278. width:100%;
  7279. }
  7280. #u131218_text {
  7281. border-width:0px;
  7282. white-space:nowrap;
  7283. text-transform:none;
  7284. }
  7285. #u131219_div {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:49px;
  7291. height:17px;
  7292. background:inherit;
  7293. background-color:rgba(255, 255, 255, 0);
  7294. border:none;
  7295. border-radius:0px;
  7296. -moz-box-shadow:none;
  7297. -webkit-box-shadow:none;
  7298. box-shadow:none;
  7299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7300. font-weight:400;
  7301. font-style:normal;
  7302. font-size:12px;
  7303. color:#AAAAAA;
  7304. }
  7305. #u131219 {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:30px;
  7309. top:1230px;
  7310. width:49px;
  7311. height:17px;
  7312. display:flex;
  7313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7314. font-weight:400;
  7315. font-style:normal;
  7316. font-size:12px;
  7317. color:#AAAAAA;
  7318. }
  7319. #u131219 .text {
  7320. position:absolute;
  7321. align-self:flex-start;
  7322. padding:0px 0px 0px 0px;
  7323. box-sizing:border-box;
  7324. width:100%;
  7325. }
  7326. #u131219_text {
  7327. border-width:0px;
  7328. white-space:nowrap;
  7329. text-transform:none;
  7330. }
  7331. #u131220_div {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:0px;
  7335. top:0px;
  7336. width:65px;
  7337. height:22px;
  7338. background:inherit;
  7339. background-color:rgba(255, 255, 255, 0);
  7340. border:none;
  7341. border-radius:0px;
  7342. -moz-box-shadow:none;
  7343. -webkit-box-shadow:none;
  7344. box-shadow:none;
  7345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7346. font-weight:400;
  7347. font-style:normal;
  7348. font-size:16px;
  7349. }
  7350. #u131220 {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:30px;
  7354. top:1308px;
  7355. width:65px;
  7356. height:22px;
  7357. display:flex;
  7358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7359. font-weight:400;
  7360. font-style:normal;
  7361. font-size:16px;
  7362. }
  7363. #u131220 .text {
  7364. position:absolute;
  7365. align-self:flex-start;
  7366. padding:0px 0px 0px 0px;
  7367. box-sizing:border-box;
  7368. width:100%;
  7369. }
  7370. #u131220_text {
  7371. border-width:0px;
  7372. white-space:nowrap;
  7373. text-transform:none;
  7374. }
  7375. #u131221_div {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:0px;
  7379. top:0px;
  7380. width:65px;
  7381. height:22px;
  7382. background:inherit;
  7383. background-color:rgba(255, 255, 255, 0);
  7384. border:none;
  7385. border-radius:0px;
  7386. -moz-box-shadow:none;
  7387. -webkit-box-shadow:none;
  7388. box-shadow:none;
  7389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7390. font-weight:400;
  7391. font-style:normal;
  7392. font-size:16px;
  7393. }
  7394. #u131221 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:30px;
  7398. top:1392px;
  7399. width:65px;
  7400. height:22px;
  7401. display:flex;
  7402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. font-size:16px;
  7406. }
  7407. #u131221 .text {
  7408. position:absolute;
  7409. align-self:flex-start;
  7410. padding:0px 0px 0px 0px;
  7411. box-sizing:border-box;
  7412. width:100%;
  7413. }
  7414. #u131221_text {
  7415. border-width:0px;
  7416. white-space:nowrap;
  7417. text-transform:none;
  7418. }
  7419. #u131222_img {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:0px;
  7423. top:0px;
  7424. width:201px;
  7425. height:2px;
  7426. }
  7427. #u131222 {
  7428. border-width:0px;
  7429. position:absolute;
  7430. left:0px;
  7431. top:1434px;
  7432. width:200px;
  7433. height:1px;
  7434. display:flex;
  7435. }
  7436. #u131222 .text {
  7437. position:absolute;
  7438. align-self:center;
  7439. padding:2px 2px 2px 2px;
  7440. box-sizing:border-box;
  7441. width:100%;
  7442. }
  7443. #u131222_text {
  7444. border-width:0px;
  7445. word-wrap:break-word;
  7446. text-transform:none;
  7447. visibility:hidden;
  7448. }
  7449. #u131223_div {
  7450. border-width:0px;
  7451. position:absolute;
  7452. left:0px;
  7453. top:0px;
  7454. width:49px;
  7455. height:22px;
  7456. background:inherit;
  7457. background-color:rgba(255, 255, 255, 0);
  7458. border:none;
  7459. border-radius:0px;
  7460. -moz-box-shadow:none;
  7461. -webkit-box-shadow:none;
  7462. box-shadow:none;
  7463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7464. font-weight:400;
  7465. font-style:normal;
  7466. font-size:16px;
  7467. }
  7468. #u131223 {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:30px;
  7472. top:1491px;
  7473. width:49px;
  7474. height:22px;
  7475. display:flex;
  7476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7477. font-weight:400;
  7478. font-style:normal;
  7479. font-size:16px;
  7480. }
  7481. #u131223 .text {
  7482. position:absolute;
  7483. align-self:flex-start;
  7484. padding:0px 0px 0px 0px;
  7485. box-sizing:border-box;
  7486. width:100%;
  7487. }
  7488. #u131223_text {
  7489. border-width:0px;
  7490. white-space:nowrap;
  7491. text-transform:none;
  7492. }
  7493. #u131224_div {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:0px;
  7497. top:0px;
  7498. width:49px;
  7499. height:17px;
  7500. background:inherit;
  7501. background-color:rgba(255, 255, 255, 0);
  7502. border:none;
  7503. border-radius:0px;
  7504. -moz-box-shadow:none;
  7505. -webkit-box-shadow:none;
  7506. box-shadow:none;
  7507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7508. font-weight:400;
  7509. font-style:normal;
  7510. font-size:12px;
  7511. color:#AAAAAA;
  7512. }
  7513. #u131224 {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:30px;
  7517. top:1455px;
  7518. width:49px;
  7519. height:17px;
  7520. display:flex;
  7521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7522. font-weight:400;
  7523. font-style:normal;
  7524. font-size:12px;
  7525. color:#AAAAAA;
  7526. }
  7527. #u131224 .text {
  7528. position:absolute;
  7529. align-self:flex-start;
  7530. padding:0px 0px 0px 0px;
  7531. box-sizing:border-box;
  7532. width:100%;
  7533. }
  7534. #u131224_text {
  7535. border-width:0px;
  7536. white-space:nowrap;
  7537. text-transform:none;
  7538. }
  7539. #u131225_div {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:0px;
  7543. top:0px;
  7544. width:49px;
  7545. height:22px;
  7546. background:inherit;
  7547. background-color:rgba(255, 255, 255, 0);
  7548. border:none;
  7549. border-radius:0px;
  7550. -moz-box-shadow:none;
  7551. -webkit-box-shadow:none;
  7552. box-shadow:none;
  7553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7554. font-weight:400;
  7555. font-style:normal;
  7556. font-size:16px;
  7557. }
  7558. #u131225 {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:30px;
  7562. top:1533px;
  7563. width:49px;
  7564. height:22px;
  7565. display:flex;
  7566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7567. font-weight:400;
  7568. font-style:normal;
  7569. font-size:16px;
  7570. }
  7571. #u131225 .text {
  7572. position:absolute;
  7573. align-self:flex-start;
  7574. padding:0px 0px 0px 0px;
  7575. box-sizing:border-box;
  7576. width:100%;
  7577. }
  7578. #u131225_text {
  7579. border-width:0px;
  7580. white-space:nowrap;
  7581. text-transform:none;
  7582. }
  7583. #u131226_div {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:0px;
  7587. top:0px;
  7588. width:65px;
  7589. height:22px;
  7590. background:inherit;
  7591. background-color:rgba(255, 255, 255, 0);
  7592. border:none;
  7593. border-radius:0px;
  7594. -moz-box-shadow:none;
  7595. -webkit-box-shadow:none;
  7596. box-shadow:none;
  7597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7598. font-weight:400;
  7599. font-style:normal;
  7600. font-size:16px;
  7601. }
  7602. #u131226 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:30px;
  7606. top:1575px;
  7607. width:65px;
  7608. height:22px;
  7609. display:flex;
  7610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7611. font-weight:400;
  7612. font-style:normal;
  7613. font-size:16px;
  7614. }
  7615. #u131226 .text {
  7616. position:absolute;
  7617. align-self:flex-start;
  7618. padding:0px 0px 0px 0px;
  7619. box-sizing:border-box;
  7620. width:100%;
  7621. }
  7622. #u131226_text {
  7623. border-width:0px;
  7624. white-space:nowrap;
  7625. text-transform:none;
  7626. }
  7627. #u131227_img {
  7628. border-width:0px;
  7629. position:absolute;
  7630. left:0px;
  7631. top:0px;
  7632. width:201px;
  7633. height:2px;
  7634. }
  7635. #u131227 {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:0px;
  7639. top:1617px;
  7640. width:200px;
  7641. height:1px;
  7642. display:flex;
  7643. }
  7644. #u131227 .text {
  7645. position:absolute;
  7646. align-self:center;
  7647. padding:2px 2px 2px 2px;
  7648. box-sizing:border-box;
  7649. width:100%;
  7650. }
  7651. #u131227_text {
  7652. border-width:0px;
  7653. word-wrap:break-word;
  7654. text-transform:none;
  7655. visibility:hidden;
  7656. }
  7657. #u131228_div {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:0px;
  7661. top:0px;
  7662. width:81px;
  7663. height:22px;
  7664. background:inherit;
  7665. background-color:rgba(255, 255, 255, 0);
  7666. border:none;
  7667. border-radius:0px;
  7668. -moz-box-shadow:none;
  7669. -webkit-box-shadow:none;
  7670. box-shadow:none;
  7671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7672. font-weight:400;
  7673. font-style:normal;
  7674. font-size:16px;
  7675. }
  7676. #u131228 {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:30px;
  7680. top:1674px;
  7681. width:81px;
  7682. height:22px;
  7683. display:flex;
  7684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7685. font-weight:400;
  7686. font-style:normal;
  7687. font-size:16px;
  7688. }
  7689. #u131228 .text {
  7690. position:absolute;
  7691. align-self:flex-start;
  7692. padding:0px 0px 0px 0px;
  7693. box-sizing:border-box;
  7694. width:100%;
  7695. }
  7696. #u131228_text {
  7697. border-width:0px;
  7698. white-space:nowrap;
  7699. text-transform:none;
  7700. }
  7701. #u131229_div {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:0px;
  7705. top:0px;
  7706. width:49px;
  7707. height:17px;
  7708. background:inherit;
  7709. background-color:rgba(255, 255, 255, 0);
  7710. border:none;
  7711. border-radius:0px;
  7712. -moz-box-shadow:none;
  7713. -webkit-box-shadow:none;
  7714. box-shadow:none;
  7715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7716. font-weight:400;
  7717. font-style:normal;
  7718. font-size:12px;
  7719. color:#AAAAAA;
  7720. }
  7721. #u131229 {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:30px;
  7725. top:1638px;
  7726. width:49px;
  7727. height:17px;
  7728. display:flex;
  7729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7730. font-weight:400;
  7731. font-style:normal;
  7732. font-size:12px;
  7733. color:#AAAAAA;
  7734. }
  7735. #u131229 .text {
  7736. position:absolute;
  7737. align-self:flex-start;
  7738. padding:0px 0px 0px 0px;
  7739. box-sizing:border-box;
  7740. width:100%;
  7741. }
  7742. #u131229_text {
  7743. border-width:0px;
  7744. white-space:nowrap;
  7745. text-transform:none;
  7746. }
  7747. #u131230_div {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:81px;
  7753. height:22px;
  7754. background:inherit;
  7755. background-color:rgba(255, 255, 255, 0);
  7756. border:none;
  7757. border-radius:0px;
  7758. -moz-box-shadow:none;
  7759. -webkit-box-shadow:none;
  7760. box-shadow:none;
  7761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7762. font-weight:400;
  7763. font-style:normal;
  7764. font-size:16px;
  7765. }
  7766. #u131230 {
  7767. border-width:0px;
  7768. position:absolute;
  7769. left:30px;
  7770. top:1716px;
  7771. width:81px;
  7772. height:22px;
  7773. display:flex;
  7774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7775. font-weight:400;
  7776. font-style:normal;
  7777. font-size:16px;
  7778. }
  7779. #u131230 .text {
  7780. position:absolute;
  7781. align-self:flex-start;
  7782. padding:0px 0px 0px 0px;
  7783. box-sizing:border-box;
  7784. width:100%;
  7785. }
  7786. #u131230_text {
  7787. border-width:0px;
  7788. white-space:nowrap;
  7789. text-transform:none;
  7790. }
  7791. #u131231_div {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:0px;
  7795. top:0px;
  7796. width:81px;
  7797. height:22px;
  7798. background:inherit;
  7799. background-color:rgba(255, 255, 255, 0);
  7800. border:none;
  7801. border-radius:0px;
  7802. -moz-box-shadow:none;
  7803. -webkit-box-shadow:none;
  7804. box-shadow:none;
  7805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:16px;
  7809. }
  7810. #u131231 {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:30px;
  7814. top:1758px;
  7815. width:81px;
  7816. height:22px;
  7817. display:flex;
  7818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:16px;
  7822. }
  7823. #u131231 .text {
  7824. position:absolute;
  7825. align-self:flex-start;
  7826. padding:0px 0px 0px 0px;
  7827. box-sizing:border-box;
  7828. width:100%;
  7829. }
  7830. #u131231_text {
  7831. border-width:0px;
  7832. white-space:nowrap;
  7833. text-transform:none;
  7834. }
  7835. #u131232_div {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:65px;
  7841. height:22px;
  7842. background:inherit;
  7843. background-color:rgba(255, 255, 255, 0);
  7844. border:none;
  7845. border-radius:0px;
  7846. -moz-box-shadow:none;
  7847. -webkit-box-shadow:none;
  7848. box-shadow:none;
  7849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7850. font-weight:400;
  7851. font-style:normal;
  7852. font-size:16px;
  7853. }
  7854. #u131232 {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:30px;
  7858. top:1350px;
  7859. width:65px;
  7860. height:22px;
  7861. display:flex;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:16px;
  7866. }
  7867. #u131232 .text {
  7868. position:absolute;
  7869. align-self:flex-start;
  7870. padding:0px 0px 0px 0px;
  7871. box-sizing:border-box;
  7872. width:100%;
  7873. }
  7874. #u131232_text {
  7875. border-width:0px;
  7876. white-space:nowrap;
  7877. text-transform:none;
  7878. }
  7879. #u131233_img {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:0px;
  7883. top:0px;
  7884. width:201px;
  7885. height:2px;
  7886. }
  7887. #u131233 {
  7888. border-width:0px;
  7889. position:absolute;
  7890. left:0px;
  7891. top:629px;
  7892. width:200px;
  7893. height:1px;
  7894. display:flex;
  7895. }
  7896. #u131233 .text {
  7897. position:absolute;
  7898. align-self:center;
  7899. padding:2px 2px 2px 2px;
  7900. box-sizing:border-box;
  7901. width:100%;
  7902. }
  7903. #u131233_text {
  7904. border-width:0px;
  7905. word-wrap:break-word;
  7906. text-transform:none;
  7907. visibility:hidden;
  7908. }
  7909. #u131234_div {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:0px;
  7913. top:0px;
  7914. width:65px;
  7915. height:22px;
  7916. background:inherit;
  7917. background-color:rgba(255, 255, 255, 0);
  7918. border:none;
  7919. border-radius:0px;
  7920. -moz-box-shadow:none;
  7921. -webkit-box-shadow:none;
  7922. box-shadow:none;
  7923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7924. font-weight:400;
  7925. font-style:normal;
  7926. font-size:16px;
  7927. }
  7928. #u131234 {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:30px;
  7932. top:686px;
  7933. width:65px;
  7934. height:22px;
  7935. display:flex;
  7936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7937. font-weight:400;
  7938. font-style:normal;
  7939. font-size:16px;
  7940. }
  7941. #u131234 .text {
  7942. position:absolute;
  7943. align-self:flex-start;
  7944. padding:0px 0px 0px 0px;
  7945. box-sizing:border-box;
  7946. width:100%;
  7947. }
  7948. #u131234_text {
  7949. border-width:0px;
  7950. white-space:nowrap;
  7951. text-transform:none;
  7952. }
  7953. #u131235_div {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:0px;
  7957. top:0px;
  7958. width:49px;
  7959. height:17px;
  7960. background:inherit;
  7961. background-color:rgba(255, 255, 255, 0);
  7962. border:none;
  7963. border-radius:0px;
  7964. -moz-box-shadow:none;
  7965. -webkit-box-shadow:none;
  7966. box-shadow:none;
  7967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:12px;
  7971. color:#AAAAAA;
  7972. }
  7973. #u131235 {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:30px;
  7977. top:650px;
  7978. width:49px;
  7979. height:17px;
  7980. display:flex;
  7981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7982. font-weight:400;
  7983. font-style:normal;
  7984. font-size:12px;
  7985. color:#AAAAAA;
  7986. }
  7987. #u131235 .text {
  7988. position:absolute;
  7989. align-self:flex-start;
  7990. padding:0px 0px 0px 0px;
  7991. box-sizing:border-box;
  7992. width:100%;
  7993. }
  7994. #u131235_text {
  7995. border-width:0px;
  7996. white-space:nowrap;
  7997. text-transform:none;
  7998. }
  7999. #u131236_div {
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:0px;
  8003. top:0px;
  8004. width:65px;
  8005. height:22px;
  8006. background:inherit;
  8007. background-color:rgba(255, 255, 255, 0);
  8008. border:none;
  8009. border-radius:0px;
  8010. -moz-box-shadow:none;
  8011. -webkit-box-shadow:none;
  8012. box-shadow:none;
  8013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8014. font-weight:400;
  8015. font-style:normal;
  8016. font-size:16px;
  8017. }
  8018. #u131236 {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:30px;
  8022. top:728px;
  8023. width:65px;
  8024. height:22px;
  8025. display:flex;
  8026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8027. font-weight:400;
  8028. font-style:normal;
  8029. font-size:16px;
  8030. }
  8031. #u131236 .text {
  8032. position:absolute;
  8033. align-self:flex-start;
  8034. padding:0px 0px 0px 0px;
  8035. box-sizing:border-box;
  8036. width:100%;
  8037. }
  8038. #u131236_text {
  8039. border-width:0px;
  8040. white-space:nowrap;
  8041. text-transform:none;
  8042. }
  8043. #u131237_div {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:0px;
  8047. top:0px;
  8048. width:65px;
  8049. height:22px;
  8050. background:inherit;
  8051. background-color:rgba(255, 255, 255, 0);
  8052. border:none;
  8053. border-radius:0px;
  8054. -moz-box-shadow:none;
  8055. -webkit-box-shadow:none;
  8056. box-shadow:none;
  8057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8058. font-weight:400;
  8059. font-style:normal;
  8060. font-size:16px;
  8061. }
  8062. #u131237 {
  8063. border-width:0px;
  8064. position:absolute;
  8065. left:30px;
  8066. top:812px;
  8067. width:65px;
  8068. height:22px;
  8069. display:flex;
  8070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8071. font-weight:400;
  8072. font-style:normal;
  8073. font-size:16px;
  8074. }
  8075. #u131237 .text {
  8076. position:absolute;
  8077. align-self:flex-start;
  8078. padding:0px 0px 0px 0px;
  8079. box-sizing:border-box;
  8080. width:100%;
  8081. }
  8082. #u131237_text {
  8083. border-width:0px;
  8084. white-space:nowrap;
  8085. text-transform:none;
  8086. }
  8087. #u131238_div {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:0px;
  8091. top:0px;
  8092. width:65px;
  8093. height:22px;
  8094. background:inherit;
  8095. background-color:rgba(255, 255, 255, 0);
  8096. border:none;
  8097. border-radius:0px;
  8098. -moz-box-shadow:none;
  8099. -webkit-box-shadow:none;
  8100. box-shadow:none;
  8101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8102. font-weight:400;
  8103. font-style:normal;
  8104. font-size:16px;
  8105. }
  8106. #u131238 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:30px;
  8110. top:770px;
  8111. width:65px;
  8112. height:22px;
  8113. display:flex;
  8114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8115. font-weight:400;
  8116. font-style:normal;
  8117. font-size:16px;
  8118. }
  8119. #u131238 .text {
  8120. position:absolute;
  8121. align-self:flex-start;
  8122. padding:0px 0px 0px 0px;
  8123. box-sizing:border-box;
  8124. width:100%;
  8125. }
  8126. #u131238_text {
  8127. border-width:0px;
  8128. white-space:nowrap;
  8129. text-transform:none;
  8130. }
  8131. #u131239_div {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:0px;
  8135. top:0px;
  8136. width:65px;
  8137. height:22px;
  8138. background:inherit;
  8139. background-color:rgba(255, 255, 255, 0);
  8140. border:none;
  8141. border-radius:0px;
  8142. -moz-box-shadow:none;
  8143. -webkit-box-shadow:none;
  8144. box-shadow:none;
  8145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8146. font-weight:400;
  8147. font-style:normal;
  8148. font-size:16px;
  8149. }
  8150. #u131239 {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:30px;
  8154. top:854px;
  8155. width:65px;
  8156. height:22px;
  8157. display:flex;
  8158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8159. font-weight:400;
  8160. font-style:normal;
  8161. font-size:16px;
  8162. }
  8163. #u131239 .text {
  8164. position:absolute;
  8165. align-self:flex-start;
  8166. padding:0px 0px 0px 0px;
  8167. box-sizing:border-box;
  8168. width:100%;
  8169. }
  8170. #u131239_text {
  8171. border-width:0px;
  8172. white-space:nowrap;
  8173. text-transform:none;
  8174. }
  8175. #u131240_div {
  8176. border-width:0px;
  8177. position:absolute;
  8178. left:0px;
  8179. top:0px;
  8180. width:65px;
  8181. height:22px;
  8182. background:inherit;
  8183. background-color:rgba(255, 255, 255, 0);
  8184. border:none;
  8185. border-radius:0px;
  8186. -moz-box-shadow:none;
  8187. -webkit-box-shadow:none;
  8188. box-shadow:none;
  8189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8190. font-weight:400;
  8191. font-style:normal;
  8192. font-size:16px;
  8193. }
  8194. #u131240 {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:30px;
  8198. top:896px;
  8199. width:65px;
  8200. height:22px;
  8201. display:flex;
  8202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8203. font-weight:400;
  8204. font-style:normal;
  8205. font-size:16px;
  8206. }
  8207. #u131240 .text {
  8208. position:absolute;
  8209. align-self:flex-start;
  8210. padding:0px 0px 0px 0px;
  8211. box-sizing:border-box;
  8212. width:100%;
  8213. }
  8214. #u131240_text {
  8215. border-width:0px;
  8216. white-space:nowrap;
  8217. text-transform:none;
  8218. }
  8219. #u131241_img {
  8220. border-width:0px;
  8221. position:absolute;
  8222. left:0px;
  8223. top:0px;
  8224. width:201px;
  8225. height:2px;
  8226. }
  8227. #u131241 {
  8228. border-width:0px;
  8229. position:absolute;
  8230. left:0px;
  8231. top:938px;
  8232. width:200px;
  8233. height:1px;
  8234. display:flex;
  8235. }
  8236. #u131241 .text {
  8237. position:absolute;
  8238. align-self:center;
  8239. padding:2px 2px 2px 2px;
  8240. box-sizing:border-box;
  8241. width:100%;
  8242. }
  8243. #u131241_text {
  8244. border-width:0px;
  8245. word-wrap:break-word;
  8246. text-transform:none;
  8247. visibility:hidden;
  8248. }
  8249. #u131242_div {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:0px;
  8253. top:0px;
  8254. width:65px;
  8255. height:22px;
  8256. background:inherit;
  8257. background-color:rgba(255, 255, 255, 0);
  8258. border:none;
  8259. border-radius:0px;
  8260. -moz-box-shadow:none;
  8261. -webkit-box-shadow:none;
  8262. box-shadow:none;
  8263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8264. font-weight:400;
  8265. font-style:normal;
  8266. font-size:16px;
  8267. }
  8268. #u131242 {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:30px;
  8272. top:995px;
  8273. width:65px;
  8274. height:22px;
  8275. display:flex;
  8276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8277. font-weight:400;
  8278. font-style:normal;
  8279. font-size:16px;
  8280. }
  8281. #u131242 .text {
  8282. position:absolute;
  8283. align-self:flex-start;
  8284. padding:0px 0px 0px 0px;
  8285. box-sizing:border-box;
  8286. width:100%;
  8287. }
  8288. #u131242_text {
  8289. border-width:0px;
  8290. white-space:nowrap;
  8291. text-transform:none;
  8292. }
  8293. #u131243_div {
  8294. border-width:0px;
  8295. position:absolute;
  8296. left:0px;
  8297. top:0px;
  8298. width:49px;
  8299. height:17px;
  8300. background:inherit;
  8301. background-color:rgba(255, 255, 255, 0);
  8302. border:none;
  8303. border-radius:0px;
  8304. -moz-box-shadow:none;
  8305. -webkit-box-shadow:none;
  8306. box-shadow:none;
  8307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8308. font-weight:400;
  8309. font-style:normal;
  8310. font-size:12px;
  8311. color:#AAAAAA;
  8312. }
  8313. #u131243 {
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:30px;
  8317. top:959px;
  8318. width:49px;
  8319. height:17px;
  8320. display:flex;
  8321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8322. font-weight:400;
  8323. font-style:normal;
  8324. font-size:12px;
  8325. color:#AAAAAA;
  8326. }
  8327. #u131243 .text {
  8328. position:absolute;
  8329. align-self:flex-start;
  8330. padding:0px 0px 0px 0px;
  8331. box-sizing:border-box;
  8332. width:100%;
  8333. }
  8334. #u131243_text {
  8335. border-width:0px;
  8336. white-space:nowrap;
  8337. text-transform:none;
  8338. }
  8339. #u131244_div {
  8340. border-width:0px;
  8341. position:absolute;
  8342. left:0px;
  8343. top:0px;
  8344. width:65px;
  8345. height:22px;
  8346. background:inherit;
  8347. background-color:rgba(255, 255, 255, 0);
  8348. border:none;
  8349. border-radius:0px;
  8350. -moz-box-shadow:none;
  8351. -webkit-box-shadow:none;
  8352. box-shadow:none;
  8353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8354. font-weight:400;
  8355. font-style:normal;
  8356. font-size:16px;
  8357. }
  8358. #u131244 {
  8359. border-width:0px;
  8360. position:absolute;
  8361. left:30px;
  8362. top:1037px;
  8363. width:65px;
  8364. height:22px;
  8365. display:flex;
  8366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8367. font-weight:400;
  8368. font-style:normal;
  8369. font-size:16px;
  8370. }
  8371. #u131244 .text {
  8372. position:absolute;
  8373. align-self:flex-start;
  8374. padding:0px 0px 0px 0px;
  8375. box-sizing:border-box;
  8376. width:100%;
  8377. }
  8378. #u131244_text {
  8379. border-width:0px;
  8380. white-space:nowrap;
  8381. text-transform:none;
  8382. }
  8383. #u131245_div {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:0px;
  8387. top:0px;
  8388. width:65px;
  8389. height:22px;
  8390. background:inherit;
  8391. background-color:rgba(255, 255, 255, 0);
  8392. border:none;
  8393. border-radius:0px;
  8394. -moz-box-shadow:none;
  8395. -webkit-box-shadow:none;
  8396. box-shadow:none;
  8397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8398. font-weight:400;
  8399. font-style:normal;
  8400. font-size:16px;
  8401. }
  8402. #u131245 {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:30px;
  8406. top:1121px;
  8407. width:65px;
  8408. height:22px;
  8409. display:flex;
  8410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8411. font-weight:400;
  8412. font-style:normal;
  8413. font-size:16px;
  8414. }
  8415. #u131245 .text {
  8416. position:absolute;
  8417. align-self:flex-start;
  8418. padding:0px 0px 0px 0px;
  8419. box-sizing:border-box;
  8420. width:100%;
  8421. }
  8422. #u131245_text {
  8423. border-width:0px;
  8424. white-space:nowrap;
  8425. text-transform:none;
  8426. }
  8427. #u131246_div {
  8428. border-width:0px;
  8429. position:absolute;
  8430. left:0px;
  8431. top:0px;
  8432. width:65px;
  8433. height:22px;
  8434. background:inherit;
  8435. background-color:rgba(255, 255, 255, 0);
  8436. border:none;
  8437. border-radius:0px;
  8438. -moz-box-shadow:none;
  8439. -webkit-box-shadow:none;
  8440. box-shadow:none;
  8441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8442. font-weight:400;
  8443. font-style:normal;
  8444. font-size:16px;
  8445. }
  8446. #u131246 {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:30px;
  8450. top:1079px;
  8451. width:65px;
  8452. height:22px;
  8453. display:flex;
  8454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8455. font-weight:400;
  8456. font-style:normal;
  8457. font-size:16px;
  8458. }
  8459. #u131246 .text {
  8460. position:absolute;
  8461. align-self:flex-start;
  8462. padding:0px 0px 0px 0px;
  8463. box-sizing:border-box;
  8464. width:100%;
  8465. }
  8466. #u131246_text {
  8467. border-width:0px;
  8468. white-space:nowrap;
  8469. text-transform:none;
  8470. }
  8471. #u131247_div {
  8472. border-width:0px;
  8473. position:absolute;
  8474. left:0px;
  8475. top:0px;
  8476. width:65px;
  8477. height:22px;
  8478. background:inherit;
  8479. background-color:rgba(255, 255, 255, 0);
  8480. border:none;
  8481. border-radius:0px;
  8482. -moz-box-shadow:none;
  8483. -webkit-box-shadow:none;
  8484. box-shadow:none;
  8485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8486. font-weight:400;
  8487. font-style:normal;
  8488. font-size:16px;
  8489. }
  8490. #u131247 {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:30px;
  8494. top:1163px;
  8495. width:65px;
  8496. height:22px;
  8497. display:flex;
  8498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8499. font-weight:400;
  8500. font-style:normal;
  8501. font-size:16px;
  8502. }
  8503. #u131247 .text {
  8504. position:absolute;
  8505. align-self:flex-start;
  8506. padding:0px 0px 0px 0px;
  8507. box-sizing:border-box;
  8508. width:100%;
  8509. }
  8510. #u131247_text {
  8511. border-width:0px;
  8512. white-space:nowrap;
  8513. text-transform:none;
  8514. }